My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

platformio.ini 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #
  2. # Project Configuration File
  3. #
  4. # A detailed documentation with the EXAMPLES is located here:
  5. # http://docs.platformio.org/en/latest/projectconf.html
  6. #
  7. # A sign `#` at the beginning of the line indicates a comment
  8. # Comment lines are ignored.
  9. # Automatic targets - enable auto-uploading
  10. # targets = upload
  11. [platformio]
  12. src_dir = ./
  13. envs_dir = ../.pioenvs
  14. lib_dir = ../.piolib
  15. env_default = mega2560
  16. [env:mega2560]
  17. platform = atmelavr
  18. framework = arduino
  19. board = megaatmega2560
  20. build_flags = -I $BUILDSRC_DIR
  21. board_f_cpu = 16000000L
  22. [env:mega1280]
  23. platform = atmelavr
  24. framework = arduino
  25. board = megaatmega1280
  26. build_flags = -I $BUILDSRC_DIR
  27. board_f_cpu = 16000000L
  28. [env:printrboard]
  29. platform = teensy
  30. framework = arduino
  31. board = teensy20pp
  32. build_flags = -I $BUILDSRC_DIR -D MOTHERBOARD=BOARD_PRINTRBOARD
  33. # Bug in arduino framework does not allow boards running at 20Mhz
  34. #board_f_cpu = 20000000L
  35. [env:brainwavepro]
  36. platform = teensy
  37. framework = arduino
  38. board = teensy20pp
  39. build_flags = -I $BUILDSRC_DIR -D MOTHERBOARD=BOARD_BRAINWAVE_PRO -D AT90USBxx_TEENSYPP_ASSIGNMENTS
  40. [env:rambo]
  41. platform = atmelavr
  42. framework = arduino
  43. board = reprap_rambo
  44. build_flags = -I $BUILDSRC_DIR
  45. board_f_cpu = 16000000L