platformio.ini 960 B

12345678910111213141516171819202122232425262728293031323334
  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. [env:teensy35_BLOBCNC_LOW]
  11. platform = teensy
  12. board = teensy35
  13. framework = arduino
  14. src_filter = +<*> +<blobcnc_low/> -<blobcnc_top/> -<blobcnc_feeder/>; -<slave/>
  15. ;upload_port = /dev/ttyACM0
  16. ;lib_ignore =
  17. [env:teensy32_BLOBCNC_TOP]
  18. platform = teensy
  19. board = teensy31
  20. framework = arduino
  21. src_filter = +<*> +<blobcnc_top/> -<blobcnc_low/> -<blobcnc_feeder/>
  22. ;upload_port = /dev/ttyACM0
  23. ;lib_ignore =
  24. [env:teensy32_BLOBCNC_FEEDER]
  25. platform = teensy
  26. board = teensy31
  27. framework = arduino
  28. src_filter = +<*> +<blobcnc_feeder/> -<blobcnc_low/> -<blobcnc_top/>
  29. ;upload_port = /dev/ttyACM0
  30. ;lib_ignore =