My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

platformio.ini 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 = ../Marlin
  13. [env:mega2560]
  14. platform = atmelavr
  15. framework = arduino
  16. board = megaatmega2560
  17. extra_script = ./generate_version_header_for_marlin
  18. build_flags = -D USE_AUTOMATIC_VERSIONING -I $BUILDSRC_DIR
  19. board_f_cpu = 16000000L
  20. [env:mega1280]
  21. platform = atmelavr
  22. framework = arduino
  23. board = megaatmega1280
  24. extra_script = ./generate_version_header_for_marlin
  25. build_flags = -D USE_AUTOMATIC_VERSIONING -I $BUILDSRC_DIR
  26. board_f_cpu = 16000000L
  27. [env:printrboard]
  28. platform = teensy
  29. framework = arduino
  30. board = teensy20pp
  31. extra_script = ./generate_version_header_for_marlin
  32. build_flags = -D USE_AUTOMATIC_VERSIONING -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. extra_script = ./generate_version_header_for_marlin
  40. build_flags = -D USE_AUTOMATIC_VERSIONING -I $BUILDSRC_DIR -D MOTHERBOARD=BOARD_BRAINWAVE_PRO -D AT90USBxx_TEENSYPP_ASSIGNMENTS