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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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:printrboard_revf]
  42. platform = teensy
  43. framework = arduino
  44. board = teensy20pp
  45. build_flags = -I $BUILDSRC_DIR -D MOTHERBOARD=BOARD_PRINTRBOARD_REVF
  46. lib_deps = ${common.lib_deps}
  47. [env:brainwavepro]
  48. platform = teensy
  49. framework = arduino
  50. board = teensy20pp
  51. build_flags = -I $BUILDSRC_DIR -D MOTHERBOARD=BOARD_BRAINWAVE_PRO
  52. lib_deps = ${common.lib_deps}
  53. [env:rambo]
  54. platform = atmelavr
  55. framework = arduino
  56. board = reprap_rambo
  57. build_flags = -I $BUILDSRC_DIR
  58. board_f_cpu = 16000000L
  59. lib_deps = ${common.lib_deps}
  60. [env:anet10]
  61. platform = atmelavr
  62. framework = arduino
  63. board = sanguino_atmega1284p
  64. upload_speed = 57600
  65. lib_deps = ${common.lib_deps}
  66. [env:sanguino_atmega644p]
  67. platform = atmelavr
  68. framework = arduino
  69. board = sanguino_atmega644p
  70. lib_deps = ${common.lib_deps}