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.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. env_default = mega2560
  14. [env:mega2560]
  15. platform = atmelavr
  16. framework = arduino
  17. board = megaatmega2560
  18. build_flags = -I $BUILDSRC_DIR
  19. board_f_cpu = 16000000L
  20. [env:mega1280]
  21. platform = atmelavr
  22. framework = arduino
  23. board = megaatmega1280
  24. build_flags = -I $BUILDSRC_DIR
  25. board_f_cpu = 16000000L
  26. [env:printrboard]
  27. platform = teensy
  28. framework = arduino
  29. board = teensy20pp
  30. build_flags = -I $BUILDSRC_DIR -D MOTHERBOARD=BOARD_PRINTRBOARD
  31. # Bug in arduino framework does not allow boards running at 20Mhz
  32. #board_f_cpu = 20000000L
  33. [env:brainwavepro]
  34. platform = teensy
  35. framework = arduino
  36. board = teensy20pp
  37. build_flags = -I $BUILDSRC_DIR -D MOTHERBOARD=BOARD_BRAINWAVE_PRO -D AT90USBxx_TEENSYPP_ASSIGNMENTS
  38. [env:rambo]
  39. platform = atmelavr
  40. framework = arduino
  41. board = reprap_rambo
  42. build_flags = -I $BUILDSRC_DIR
  43. board_f_cpu = 16000000L