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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. envs_dir = .pioenvs
  14. lib_dir = .piolib
  15. libdeps_dir = .piolibdeps
  16. env_default = megaatmega2560
  17. [common]
  18. lib_deps = U8glib@1.19.1
  19. [env:megaatmega2560]
  20. platform = atmelavr
  21. framework = arduino
  22. board = megaatmega2560
  23. build_flags = -I $BUILDSRC_DIR
  24. board_f_cpu = 16000000L
  25. lib_deps = ${common.lib_deps}
  26. [env:megaatmega1280]
  27. platform = atmelavr
  28. framework = arduino
  29. board = megaatmega1280
  30. build_flags = -I $BUILDSRC_DIR
  31. board_f_cpu = 16000000L
  32. lib_deps = ${common.lib_deps}
  33. [env:printrboard]
  34. platform = teensy
  35. framework = arduino
  36. board = teensy20pp
  37. build_flags = -I $BUILDSRC_DIR -D MOTHERBOARD=BOARD_PRINTRBOARD
  38. # Bug in arduino framework does not allow boards running at 20Mhz
  39. #board_f_cpu = 20000000L
  40. lib_deps = ${common.lib_deps}
  41. [env:brainwavepro]
  42. platform = teensy
  43. framework = arduino
  44. board = teensy20pp
  45. build_flags = -I $BUILDSRC_DIR -D MOTHERBOARD=BOARD_BRAINWAVE_PRO
  46. lib_deps = ${common.lib_deps}
  47. [env:rambo]
  48. platform = atmelavr
  49. framework = arduino
  50. board = reprap_rambo
  51. build_flags = -I $BUILDSRC_DIR
  52. board_f_cpu = 16000000L
  53. lib_deps = ${common.lib_deps}