sparkfun / BlackBoard_Artemis_Nano

Tiny Arduino compatible carrier board for SparkFun's Artemis module.
Other
2 stars 2 forks source link

Cannot upload code #1

Open iplayfast opened 5 years ago

iplayfast commented 5 years ago

Using Linux. Artemis SVL Bootloader

phase: setup cleared startup blip /dev/ttyUSB0 is currently open. Please close any other terminal programs that may be using /dev/ttyUSB0 and try again. Sketch uses 7348 bytes (0%) of program storage space. Maximum is 960000 bytes. /home/chris/.arduino15/packages/SparkFun/hardware/apollo3/1.0.4/tools/artemis/linux/artemis_svl /dev/ttyUSB0 -f /tmp/arduino_build_995052/Blink.ino.bin -b 921600 -v

Artemis SVL Bootloader

phase: setup cleared startup blip /dev/ttyUSB0 is currently open. Please close any other terminal programs that may be using /dev/ttyUSB0 and try again

Opening serial monitor and setting the baud to 9600 shows communication is ok. Shows errors on pins which I'm assuming is from test software missing test bed.

iplayfast commented 5 years ago

A similar problem with another board was due to flow control problems was worked around by the following python code `import serial.tools.miniterm serial.tools.miniterm.main(default_port='/dev/ttyACM0', default_baudrate=115200, default_dtr=False, default_rts=False)

` Not really a good solution. But perhaps will help you resolve this issue.