Daniel_GT

platform.ini

May 27th, 2022 (edited)
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; PlatformIO Project Configuration File
  2. ;
  3. ;   Build options: build flags, source filter
  4. ;   Upload options: custom upload port, speed and extra flags
  5. ;   Library options: dependencies, extra library storages
  6. ;   Advanced options: extra scripting
  7. ;
  8. ; Please visit documentation for the other options and examples
  9. ; https://docs.platformio.org/page/projectconf.html
  10.  
  11. [env:seeed_xiao]
  12. board = seeed_xiao
  13. platform = atmelsam
  14. framework = arduino
  15. ;debug_tool = jlink
  16. debug_tool = custom
  17. debug_server =
  18.     ${platformio.packages_dir}/tool-jlink/JLinkGDBServer
  19.     -singlerun
  20.     -nogui
  21.     -if
  22.     SWD
  23.     -select
  24.     ip=192.168.0.96
  25.     -device
  26.     ATSAMD21G18
  27.     -port
  28.     2331
  29. upload_protocol = jlink
  30. upload_flags =
  31.     -ip
  32.     192.168.0.96
  33.  
Add Comment
Please, Sign In to add comment