Skip to content

Latest commit

 

History

History
39 lines (20 loc) · 805 Bytes

File metadata and controls

39 lines (20 loc) · 805 Bytes

Compiling, Flashing and Debugging

Test the manual Commands

Compile the ino sketch:

  • Goto your sketch folder
  • and execute the arduino-cli command

manualcompilation

cd /home/arduino/ArduinoApps/heartratemonitor/sketch 
arduino-cli compile --fqbn arduino:zephyr:unoq sketch.ino

Upload the sketch

you can check the used board:

arduino-cli board list

usedboard

arduino-cli compile --upload --fqbn arduino:zephyr:unoq sketch.ino

upload

Configuring a VSCode Task

Doing compiling and uploading, we can configure a task. / lauch.json:

tasks.json

launch.json

task

Written with StackEdit.