Ошибка при загрузке скетча в Arduino UNO с помощью CLI

Я подключил Arduino UNO через USB к Raspberry pi 3B. Я использую интерфейс командной строки для редактирования, компиляции и загрузки скетчей > загрузка arduino-cli --fqbn arduino:avr:uno cli-test. Однако после попытки загрузить скетч выдает ошибку Ошибка при загрузке: Ошибка загрузки: порт загрузки не указан Я даже проверил, обнаружен ли Arduino на соответствующем порту, используя arduino- cli board list и он показывает

/dev/ttyACM0 serial   Serial Port (USB) Arduino Uno arduino:avr:uno arduino:avr
/dev/ttyAMA0 serial   Serial Port       Unknown

форум поддержки Arduino говорит «выбрать» порт. Тем не менее, форум поддержки устраняет ошибку для приложения с графическим интерфейсом, а не для CLI. Искал как выбрать порт в CLI, но тщетно. Любая помощь приветствуется.

, 👍1

Обсуждение

https://arduino.github.io/arduino-cli/0.23/getting-started/#compile-and-upload-the-sketch, @Juraj


1 ответ


Лучший ответ:

2

Вы указываете порт с флагом --port для команды загрузки:

$ arduino-cli upload --fqbn arduino:avr:uno --port /dev/ttyACM0 cli-test

Вы можете узнать обо всем этом сами, воспользовавшись --help в любое время. Например:

$ arduino-cli upload --help
Upload Arduino sketches. This does NOT compile the sketch prior to upload.

Usage:
  arduino-cli upload [flags]

Examples:
  arduino-cli upload /home/user/Arduino/MySketch

Flags:
      --board-options strings        List of board options separated by commas. Or can be used multiple times for multiple options.
      --discovery-timeout duration   Max time to wait for port discovery, e.g.: 30s, 1m (default 1s)
  -b, --fqbn string                  Fully Qualified Board Name, e.g.: arduino:avr:uno
  -h, --help                         help for upload
      --input-dir string             Directory containing binaries to upload.
  -i, --input-file string            Binary file to upload.
  -p, --port string                  Upload port address, e.g.: COM3 or /dev/ttyACM2
  -P, --programmer string            Programmer to use, e.g: atmel_ice
  -l, --protocol string              Upload port protocol, e.g: serial
  -t, --verify                       Verify uploaded binary after the upload.

Global Flags:
      --additional-urls strings   Comma-separated list of additional URLs for the Boards Manager.
      --config-file string        The custom config file (if not specified the default will be used).
      --format string             The output format for the logs, can be: text, json, jsonmini, yaml (default "text")
      --log-file string           Path to the file where logs will be written.
      --log-format string         The output format for the logs, can be: text, json
      --log-level string          Messages with this level and above will be logged. Valid levels are: trace, debug, info, warn, error, fatal, panic
      --no-color                  Disable colored output.
  -v, --verbose                   Print the logs on the standard output.
,