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 28KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796
  1. #
  2. # Marlin Firmware
  3. # PlatformIO Configuration File
  4. #
  5. # For detailed documentation with EXAMPLES:
  6. #
  7. # http://docs.platformio.org/en/latest/projectconf.html
  8. #
  9. # Automatic targets - enable auto-uploading
  10. # targets = upload
  11. #
  12. # By default platformio build will abort after 5 errors.
  13. # Remove '-fmax-errors=5' from build_flags below to see all.
  14. #
  15. [platformio]
  16. src_dir = Marlin
  17. boards_dir = buildroot/share/PlatformIO/boards
  18. default_envs = megaatmega2560
  19. [common]
  20. default_src_filter = +<src/*> -<src/config> -<src/HAL> +<src/HAL/shared>
  21. extra_scripts = pre:buildroot/share/PlatformIO/scripts/common-cxxflags.py
  22. build_flags = -fmax-errors=5 -g -D__MARLIN_FIRMWARE__ -fmerge-all-constants
  23. lib_deps =
  24. U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
  25. LiquidCrystal@1.3.4
  26. TMCStepper@>=0.5.2,<1.0.0
  27. Adafruit NeoPixel@1.2.5
  28. Adafruit_MAX31865=https://github.com/adafruit/Adafruit_MAX31865/archive/master.zip
  29. LiquidTWI2=https://github.com/lincomatic/LiquidTWI2/archive/master.zip
  30. Arduino-L6470=https://github.com/ameyer/Arduino-L6470/archive/dev.zip
  31. SailfishLCD=https://github.com/mikeshub/SailfishLCD/archive/master.zip
  32. SailfishRGB_LED=https://github.com/mikeshub/SailfishRGB_LED/archive/master.zip
  33. SlowSoftI2CMaster=https://github.com/mikeshub/SlowSoftI2CMaster/archive/master.zip
  34. # Globally defined properties
  35. # inherited by all environments
  36. [env]
  37. framework = arduino
  38. build_flags = ${common.build_flags}
  39. lib_deps = ${common.lib_deps}
  40. monitor_speed = 250000
  41. #################################
  42. # #
  43. # Unique Core Architectures #
  44. # #
  45. # Add a new "env" below if no #
  46. # entry has values suitable to #
  47. # build for a given board. #
  48. # #
  49. #################################
  50. #
  51. # ATmega2560
  52. #
  53. [env:megaatmega2560]
  54. platform = atmelavr
  55. board = megaatmega2560
  56. board_build.f_cpu = 16000000L
  57. lib_deps = ${common.lib_deps}
  58. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  59. src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
  60. #
  61. # ATmega1280
  62. #
  63. [env:megaatmega1280]
  64. platform = atmelavr
  65. board = megaatmega1280
  66. board_build.f_cpu = 16000000L
  67. lib_deps = ${common.lib_deps}
  68. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  69. src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
  70. #
  71. # RAMBo
  72. #
  73. [env:rambo]
  74. platform = atmelavr
  75. board = reprap_rambo
  76. board_build.f_cpu = 16000000L
  77. lib_deps = ${common.lib_deps}
  78. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  79. src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
  80. #
  81. # FYSETC F6 V1.3
  82. #
  83. [env:FYSETC_F6_13]
  84. platform = atmelavr
  85. board = fysetc_f6_13
  86. board_build.f_cpu = 16000000L
  87. lib_deps = ${common.lib_deps}
  88. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  89. src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
  90. #
  91. # Sanguinololu (ATmega644p)
  92. #
  93. [env:sanguino_atmega644p]
  94. platform = atmelavr
  95. board = sanguino_atmega644p
  96. lib_deps = ${common.lib_deps}
  97. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  98. src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
  99. #
  100. # Sanguinololu (ATmega1284p)
  101. #
  102. [env:sanguino_atmega1284p]
  103. platform = atmelavr
  104. board = sanguino_atmega1284p
  105. lib_deps = ${common.lib_deps}
  106. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  107. src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
  108. #
  109. # Melzi and clones (ATmega1284p)
  110. #
  111. [env:melzi]
  112. platform = atmelavr
  113. board = sanguino_atmega1284p
  114. lib_deps = ${common.lib_deps}
  115. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  116. src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
  117. build_flags = ${common.build_flags}
  118. lib_ignore = TMCStepper
  119. upload_speed = 57600
  120. #
  121. # Melzi and clones (Optiboot bootloader)
  122. #
  123. [env:melzi_optiboot]
  124. platform = atmelavr
  125. board = sanguino_atmega1284p
  126. lib_deps = ${common.lib_deps}
  127. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  128. src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
  129. build_flags = ${common.build_flags}
  130. lib_ignore = TMCStepper
  131. upload_speed = 115200
  132. #
  133. # AT90USB1286 boards using CDC bootloader
  134. # - BRAINWAVE
  135. # - BRAINWAVE_PRO
  136. # - SAV_MKI
  137. # - TEENSYLU
  138. #
  139. [env:at90usb1286_cdc]
  140. platform = teensy
  141. board = at90usb1286
  142. lib_deps = ${common.lib_deps}
  143. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  144. lib_ignore = TMCStepper
  145. src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
  146. #
  147. # AT90USB1286 boards using DFU bootloader
  148. # - PrintrBoard
  149. # - PrintrBoard Rev.F
  150. # - ? 5DPRINT ?
  151. #
  152. [env:at90usb1286_dfu]
  153. platform = teensy
  154. board = at90usb1286
  155. lib_deps = ${common.lib_deps}
  156. lib_ignore = TMCStepper
  157. src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
  158. #
  159. # Due (Atmel SAM3X8E ARM Cortex-M3)
  160. #
  161. # - RAMPS4DUE
  162. # - RADDS
  163. #
  164. [env:DUE]
  165. platform = atmelsam
  166. board = due
  167. src_filter = ${common.default_src_filter} +<src/HAL/HAL_DUE>
  168. [env:DUE_USB]
  169. platform = atmelsam
  170. board = dueUSB
  171. src_filter = ${common.default_src_filter} +<src/HAL/HAL_DUE>
  172. [env:DUE_debug]
  173. # Used when WATCHDOG_RESET_MANUAL is enabled
  174. platform = atmelsam
  175. board = due
  176. src_filter = ${common.default_src_filter} +<src/HAL/HAL_DUE>
  177. build_flags = ${common.build_flags}
  178. -funwind-tables
  179. -mpoke-function-name
  180. #
  181. # NXP LPC176x ARM Cortex-M3
  182. #
  183. [env:LPC1768]
  184. platform = https://github.com/p3p/pio-nxplpc-arduino-lpc176x/archive/0.1.2.zip
  185. board = nxp_lpc1768
  186. build_flags = -DU8G_HAL_LINKS -IMarlin/src/HAL/HAL_LPC1768/include -IMarlin/src/HAL/HAL_LPC1768/u8g ${common.build_flags}
  187. # debug options for backtrace
  188. # -funwind-tables
  189. # -mpoke-function-name
  190. lib_ldf_mode = off
  191. lib_compat_mode = strict
  192. extra_scripts = Marlin/src/HAL/HAL_LPC1768/upload_extra_script.py
  193. src_filter = ${common.default_src_filter} +<src/HAL/HAL_LPC1768>
  194. lib_deps = Servo
  195. LiquidCrystal
  196. U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
  197. TMCStepper@>=0.6.1,<1.0.0
  198. Adafruit NeoPixel=https://github.com/p3p/Adafruit_NeoPixel/archive/release.zip
  199. SailfishLCD=https://github.com/mikeshub/SailfishLCD/archive/master.zip
  200. [env:LPC1769]
  201. platform = https://github.com/p3p/pio-nxplpc-arduino-lpc176x/archive/0.1.2.zip
  202. board = nxp_lpc1769
  203. build_flags = -DU8G_HAL_LINKS -IMarlin/src/HAL/HAL_LPC1768/include -IMarlin/src/HAL/HAL_LPC1768/u8g ${common.build_flags}
  204. # debug options for backtrace
  205. # -funwind-tables
  206. # -mpoke-function-name
  207. lib_ldf_mode = off
  208. lib_compat_mode = strict
  209. extra_scripts = Marlin/src/HAL/HAL_LPC1768/upload_extra_script.py
  210. src_filter = ${common.default_src_filter} +<src/HAL/HAL_LPC1768>
  211. lib_deps = Servo
  212. LiquidCrystal
  213. U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
  214. TMCStepper@>=0.6.1,<1.0.0
  215. Adafruit NeoPixel=https://github.com/p3p/Adafruit_NeoPixel/archive/release.zip
  216. SailfishLCD=https://github.com/mikeshub/SailfishLCD/archive/master.zip
  217. #
  218. # STM32F103RC
  219. #
  220. [env:STM32F103RC]
  221. platform = ststm32
  222. board = genericSTM32F103RC
  223. platform_packages = tool-stm32duino
  224. build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
  225. ${common.build_flags} -std=gnu++14
  226. build_unflags = -std=gnu++11
  227. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
  228. lib_deps = ${common.lib_deps}
  229. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  230. lib_ignore = Adafruit NeoPixel, SPI
  231. monitor_speed = 115200
  232. #
  233. # STM32F103RC_fysetc
  234. #
  235. [env:STM32F103RC_fysetc]
  236. platform = ststm32
  237. board = genericSTM32F103RC
  238. #board_build.core = maple
  239. platform_packages = tool-stm32duino
  240. build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
  241. ${common.build_flags} -std=gnu++14 -DDEBUG_LEVEL=0 -DHAVE_SW_SERIAL
  242. build_unflags = -std=gnu++11
  243. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py
  244. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
  245. lib_deps = ${common.lib_deps}
  246. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  247. lib_ignore = Adafruit NeoPixel, SPI
  248. lib_ldf_mode = chain
  249. debug_tool = stlink
  250. upload_protocol = serial
  251. #
  252. # BigTree SKR Mini V1.1 / SKR mini E3 / SKR E3 DIP (STM32F103RCT6 ARM Cortex-M3)
  253. #
  254. # STM32F103RC_bigtree ............. RCT6 with 256K
  255. # STM32F103RC_bigtree_USB ......... RCT6 with 256K (USB mass storage)
  256. # STM32F103RC_bigtree_512K ........ RCT6 with 512K
  257. # STM32F103RC_bigtree_512K_USB .... RCT6 with 512K (USB mass storage)
  258. #
  259. [env:STM32F103RC_bigtree]
  260. platform = ststm32
  261. board = genericSTM32F103RC
  262. platform_packages = tool-stm32duino
  263. build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
  264. ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4
  265. build_unflags = -std=gnu++11
  266. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
  267. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
  268. lib_deps = ${common.lib_deps}
  269. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  270. lib_ignore = Adafruit NeoPixel, SPI
  271. monitor_speed = 115200
  272. [env:STM32F103RC_bigtree_USB]
  273. platform = ststm32
  274. board = genericSTM32F103RC
  275. platform_packages = tool-stm32duino
  276. build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
  277. ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DUSE_USB_COMPOSITE
  278. build_unflags = -std=gnu++11
  279. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
  280. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
  281. lib_deps = ${common.lib_deps}
  282. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  283. lib_ignore = Adafruit NeoPixel, SPI
  284. monitor_speed = 115200
  285. [env:STM32F103RC_bigtree_512K]
  286. platform = ststm32
  287. board = genericSTM32F103RC
  288. board_upload.maximum_size=524288
  289. platform_packages = tool-stm32duino
  290. build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
  291. ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DSTM32_FLASH_SIZE=512
  292. build_unflags = -std=gnu++11
  293. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
  294. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
  295. lib_deps = ${common.lib_deps}
  296. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  297. lib_ignore = Adafruit NeoPixel, SPI
  298. monitor_speed = 115200
  299. [env:STM32F103RC_bigtree_512K_USB]
  300. platform = ststm32
  301. board = genericSTM32F103RC
  302. board_upload.maximum_size=524288
  303. platform_packages = tool-stm32duino
  304. build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
  305. ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DSTM32_FLASH_SIZE=512 -DUSE_USB_COMPOSITE
  306. build_unflags = -std=gnu++11
  307. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
  308. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
  309. lib_deps = ${common.lib_deps}
  310. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  311. lib_ignore = Adafruit NeoPixel, SPI
  312. monitor_speed = 115200
  313. #
  314. # STM32F103RE
  315. #
  316. [env:STM32F103RE]
  317. platform = ststm32
  318. board = genericSTM32F103RE
  319. platform_packages = tool-stm32duino
  320. build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
  321. ${common.build_flags} -std=gnu++14
  322. build_unflags = -std=gnu++11
  323. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
  324. lib_deps = ${common.lib_deps}
  325. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  326. lib_ignore = Adafruit NeoPixel, SPI
  327. monitor_speed = 115200
  328. #
  329. # STM32F103RE_bigtree ............. RET6
  330. # STM32F103RE_bigtree_USB ......... RET6 (USB mass storage)
  331. #
  332. [env:STM32F103RE_bigtree]
  333. platform = ststm32
  334. board = genericSTM32F103RE
  335. platform_packages = tool-stm32duino
  336. build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
  337. ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4
  338. build_unflags = -std=gnu++11
  339. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py
  340. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
  341. lib_deps = ${common.lib_deps}
  342. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  343. lib_ignore = Adafruit NeoPixel, SPI
  344. debug_tool = stlink
  345. upload_protocol = stlink
  346. monitor_speed = 115200
  347. [env:STM32F103RE_bigtree_USB]
  348. platform = ststm32
  349. board = genericSTM32F103RE
  350. platform_packages = tool-stm32duino
  351. build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
  352. ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DUSE_USB_COMPOSITE
  353. build_unflags = -std=gnu++11
  354. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py
  355. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
  356. lib_deps = ${common.lib_deps}
  357. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  358. lib_ignore = Adafruit NeoPixel, SPI
  359. debug_tool = stlink
  360. upload_protocol = stlink
  361. monitor_speed = 115200
  362. #
  363. # STM32F4 with STM32GENERIC
  364. #
  365. [env:STM32F4]
  366. platform = ststm32
  367. board = disco_f407vg
  368. build_flags = ${common.build_flags} -DUSE_STM32GENERIC -DSTM32GENERIC -DSTM32F4 -DMENU_USB_SERIAL -DMENU_SERIAL=SerialUSB -DHAL_IWDG_MODULE_ENABLED
  369. lib_ignore = Adafruit NeoPixel, TMCStepper
  370. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32_F4_F7> -<src/HAL/HAL_STM32_F4_F7/STM32F7>
  371. #
  372. # STM32F7 with STM32GENERIC
  373. #
  374. [env:STM32F7]
  375. platform = ststm32
  376. board = remram_v1
  377. build_flags = ${common.build_flags} -DUSE_STM32GENERIC -DSTM32GENERIC -DSTM32F7 -DMENU_USB_SERIAL -DMENU_SERIAL=SerialUSB -DHAL_IWDG_MODULE_ENABLED
  378. lib_ignore = Adafruit NeoPixel, TMCStepper
  379. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32_F4_F7> -<src/HAL/HAL_STM32_F4_F7/STM32F4>
  380. #
  381. # ARMED (STM32)
  382. #
  383. [env:ARMED]
  384. platform = ststm32
  385. board = armed_v1
  386. build_flags = ${common.build_flags}
  387. -DUSBCON -DUSBD_VID=0x0483 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="ARMED_V1"' -DUSBD_USE_CDC
  388. -O2 -ffreestanding -fsigned-char -fno-move-loop-invariants -fno-strict-aliasing -std=gnu11 -std=gnu++11
  389. -IMarlin/src/HAL/HAL_STM32
  390. lib_ignore = Adafruit NeoPixel, SoftwareSerial
  391. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32>
  392. #
  393. # Longer 3D board in Alfawise U20 (STM32F103VET6)
  394. #
  395. [env:STM32F103VE_longer]
  396. platform = ststm32
  397. board = genericSTM32F103VE
  398. build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
  399. ${common.build_flags} -std=gnu++14 -USERIAL_USB
  400. -DSTM32F1xx -DU20 -DTS_V12
  401. build_unflags = -std=gnu++11 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DERROR_LED_PORT=GPIOE -DERROR_LED_PIN=6
  402. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103VE_longer.py
  403. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
  404. lib_ignore = Adafruit NeoPixel, LiquidTWI2, SPI
  405. #
  406. # MKS Robin (STM32F103ZET6)
  407. #
  408. [env:mks_robin]
  409. platform = ststm32
  410. board = genericSTM32F103ZE
  411. build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
  412. ${common.build_flags} -std=gnu++14 -DSTM32_XL_DENSITY
  413. build_unflags = -std=gnu++11
  414. extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin.py
  415. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
  416. lib_ignore = Adafruit NeoPixel, SPI
  417. #
  418. # MKS Robin Pro (STM32F103ZET6)
  419. #
  420. [env:mks_robin_pro]
  421. platform = ststm32
  422. board = genericSTM32F103ZE
  423. extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_pro.py
  424. build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
  425. ${common.build_flags} -std=gnu++14 -DSTM32_XL_DENSITY
  426. build_unflags = -std=gnu++11
  427. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
  428. lib_deps = ${common.lib_deps}
  429. lib_ignore = Adafruit NeoPixel, SPI, TMCStepper
  430. #
  431. # MKS Robin Lite/Lite2 (STM32F103RCT6)
  432. #
  433. [env:mks_robin_lite]
  434. platform = ststm32
  435. board = genericSTM32F103RC
  436. build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
  437. ${common.build_flags} -std=gnu++14
  438. build_unflags = -std=gnu++11
  439. extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_lite.py
  440. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
  441. lib_ignore = Adafruit NeoPixel, SPI
  442. #
  443. # MKS ROBIN LITE3 (STM32F103RCT6)
  444. #
  445. [env:mks_robin_lite3]
  446. platform = ststm32
  447. board = genericSTM32F103RC
  448. extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_lite3.py
  449. build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
  450. ${common.build_flags} -std=gnu++14
  451. build_unflags = -std=gnu++11
  452. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
  453. lib_deps = ${common.lib_deps}
  454. lib_ignore = Adafruit NeoPixel, SPI
  455. #
  456. # MKS Robin Mini (STM32F103VET6)
  457. #
  458. [env:mks_robin_mini]
  459. platform = ststm32
  460. board = genericSTM32F103VE
  461. build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
  462. ${common.build_flags} -std=gnu++14
  463. build_unflags = -std=gnu++11
  464. extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_mini.py
  465. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
  466. lib_ignore = Adafruit NeoPixel, SPI
  467. #
  468. # MKS Robin Nano (STM32F103VET6)
  469. #
  470. [env:mks_robin_nano]
  471. platform = ststm32
  472. board = genericSTM32F103VE
  473. build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
  474. ${common.build_flags} -std=gnu++14
  475. build_unflags = -std=gnu++11
  476. extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_nano.py
  477. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
  478. lib_ignore = Adafruit NeoPixel, SPI
  479. #
  480. # JGAurora A5S A1 (STM32F103ZET6)
  481. #
  482. [env:jgaurora_a5s_a1]
  483. platform = ststm32
  484. board = genericSTM32F103ZE
  485. build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
  486. ${common.build_flags} -DSTM32F1xx -std=gnu++14 -DSTM32_XL_DENSITY
  487. build_unflags = -std=gnu++11
  488. extra_scripts = buildroot/share/PlatformIO/scripts/jgaurora_a5s_a1_with_bootloader.py
  489. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
  490. lib_ignore = Adafruit NeoPixel, SPI
  491. #
  492. # Malyan M200 (STM32F103CB)
  493. #
  494. [env:STM32F103CB_malyan]
  495. platform = ststm32
  496. board = malyanM200
  497. build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py -DMCU_STM32F103CB -D __STM32F1__=1 -std=c++1y -D MOTHERBOARD="BOARD_MALYAN_M200" -DSERIAL_USB -ffunction-sections -fdata-sections -Wl,--gc-sections
  498. -DDEBUG_LEVEL=0 -D__MARLIN_FIRMWARE__
  499. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
  500. lib_ignore = Adafruit NeoPixel, LiquidCrystal, LiquidTWI2, TMCStepper, U8glib-HAL, SPI
  501. #
  502. # Chitu boards like Tronxy X5s (STM32F103ZET6)
  503. #
  504. [env:chitu_f103]
  505. platform = ststm32
  506. board = genericSTM32F103ZE
  507. build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
  508. ${common.build_flags} -DSTM32F1xx -std=gnu++14 -DSTM32_XL_DENSITY
  509. build_unflags = -std=gnu++11 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG= -DERROR_LED_PORT=GPIOE -DERROR_LED_PIN=6
  510. extra_scripts = buildroot/share/PlatformIO/scripts/chitu_crypt.py
  511. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
  512. lib_ignore = Adafruit NeoPixel
  513. #
  514. # STM32F401VE
  515. # 'STEVAL-3DP001)' STM32F401VE board - https://www.st.com/en/evaluation-tools/steval-3dp001v1.html
  516. #
  517. [env:STM32F401VE_STEVAL]
  518. platform = ststm32
  519. board = STEVAL_STM32F401VE
  520. platform_packages = framework-arduinoststm32@>=3.107,<4
  521. build_flags = ${common.build_flags}
  522. -DTARGET_STM32F4 -DARDUINO_STEVAL -DSTM32F401xE
  523. -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STEVAL_F401VE\"
  524. -DDISABLE_GENERIC_SERIALUSB
  525. -IMarlin/src/HAL/HAL_STM32
  526. build_unflags = -std=gnu++11
  527. extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
  528. buildroot/share/PlatformIO/scripts/STEVAL__F401XX.py
  529. lib_ignore = Adafruit NeoPixel, TMCStepper, SailfishLCD, SailfishRGB_LED, SlowSoftI2CMaster, SoftwareSerial
  530. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32>
  531. #
  532. # FLYF407ZG
  533. #
  534. [env:FLYF407ZG]
  535. platform = ststm32
  536. board = FLYF407ZG
  537. platform_packages = framework-arduinoststm32@>=3.107,<4
  538. build_flags = ${common.build_flags}
  539. -DSTM32F4 -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STM32F407ZG\"
  540. -DTARGET_STM32F4 -DVECT_TAB_OFFSET=0x8000
  541. -IMarlin/src/HAL/HAL_STM32
  542. build_unflags = -std=gnu++11
  543. extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
  544. lib_ignore = Adafruit NeoPixel, TMCStepper, SailfishLCD, SailfishRGB_LED, SlowSoftI2CMaster, SoftwareSerial
  545. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32>
  546. #
  547. # FYSETC S6 (STM32F446VET6 ARM Cortex-M4)
  548. #
  549. [env:FYSETC_S6]
  550. platform = ststm32
  551. board = fysetc_s6
  552. platform_packages = tool-stm32duino
  553. build_flags = ${common.build_flags}
  554. -DTARGET_STM32F4 -std=gnu++14
  555. -DVECT_TAB_OFFSET=0x10000
  556. -DUSBCON -DUSBD_USE_CDC -DHAL_PCD_MODULE_ENABLED -DUSBD_VID=0x0483 '-DUSB_PRODUCT="FYSETC_S6"'
  557. build_unflags = -std=gnu++11
  558. extra_scripts = buildroot/share/PlatformIO/scripts/fysetc_STM32S6.py
  559. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32>
  560. lib_ignore = Arduino-L6470
  561. debug_tool = stlink
  562. #upload_protocol = stlink
  563. upload_protocol = serial
  564. #
  565. # STM32F407VET6 with RAMPS-like shield
  566. # 'Black' STM32F407VET6 board - http://wiki.stm32duino.com/index.php?title=STM32F407
  567. # Shield - https://github.com/jmz52/Hardware
  568. #
  569. [env:STM32F407VE_black]
  570. platform = ststm32
  571. board = blackSTM32F407VET6
  572. platform_packages = framework-arduinoststm32@>=3.107,<4
  573. build_flags = ${common.build_flags}
  574. -DTARGET_STM32F4 -DARDUINO_BLACK_F407VE
  575. -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"BLACK_F407VE\"
  576. -IMarlin/src/HAL/HAL_STM32
  577. build_unflags = -std=gnu++11
  578. extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
  579. lib_ignore = Adafruit NeoPixel, TMCStepper, SailfishLCD, SailfishRGB_LED, SlowSoftI2CMaster, SoftwareSerial
  580. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32>
  581. #
  582. # BigTreeTech SKR Pro (STM32F407ZGT6 ARM Cortex-M4)
  583. #
  584. [env:BIGTREE_SKR_PRO]
  585. platform = ststm32
  586. board = BigTree_SKR_Pro
  587. platform_packages = framework-arduinoststm32@>=3.107,<4
  588. build_flags = ${common.build_flags}
  589. -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STM32F407ZG\"
  590. -DTARGET_STM32F4 -DSTM32F407_5ZX -DVECT_TAB_OFFSET=0x8000
  591. -DHAVE_HWSERIAL6
  592. -IMarlin/src/HAL/HAL_STM32
  593. build_unflags = -std=gnu++11
  594. extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
  595. lib_deps =
  596. U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
  597. LiquidCrystal
  598. TMCStepper@>=0.5.2,<1.0.0
  599. Adafruit NeoPixel
  600. LiquidTWI2=https://github.com/lincomatic/LiquidTWI2/archive/master.zip
  601. Arduino-L6470=https://github.com/ameyer/Arduino-L6470/archive/dev.zip
  602. lib_ignore = SoftwareSerial, SoftwareSerialM
  603. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32>
  604. #
  605. # BigTreeTech BTT002 (STM32F407VET6 ARM Cortex-M4)
  606. #
  607. [env:BIGTREE_BTT002]
  608. platform = ststm32@5.6.0
  609. board = BigTree_Btt002
  610. platform_packages = framework-arduinoststm32@>=3.107,<4
  611. build_flags = ${common.build_flags}
  612. -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STM32F407VE\"
  613. -DTARGET_STM32F4 -DSTM32F407_5VX -DVECT_TAB_OFFSET=0x8000
  614. -DHAVE_HWSERIAL2
  615. -DHAVE_HWSERIAL3
  616. -DPIN_SERIAL2_RX=PD_6
  617. -DPIN_SERIAL2_TX=PD_5
  618. build_unflags = -std=gnu++11
  619. extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
  620. lib_ignore = Adafruit NeoPixel, SailfishLCD, SailfishRGB_LED, SlowSoftI2CMaster
  621. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32>
  622. #
  623. # Teensy 3.1 / 3.2 (ARM Cortex-M4)
  624. #
  625. [env:teensy31]
  626. platform = teensy
  627. board = teensy31
  628. lib_deps = ${common.lib_deps}
  629. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  630. lib_ignore = Adafruit NeoPixel
  631. src_filter = ${common.default_src_filter} +<src/HAL/HAL_TEENSY31_32>
  632. #
  633. # Teensy 3.5 / 3.6 (ARM Cortex-M4)
  634. #
  635. [env:teensy35]
  636. platform = teensy
  637. board = teensy35
  638. lib_deps = ${common.lib_deps}
  639. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  640. lib_ignore = Adafruit NeoPixel
  641. src_filter = ${common.default_src_filter} +<src/HAL/HAL_TEENSY35_36>
  642. #
  643. # Espressif ESP32
  644. #
  645. [env:esp32]
  646. platform = espressif32
  647. board = esp32dev
  648. build_flags = ${common.build_flags} -DCORE_DEBUG_LEVEL=0
  649. lib_deps = ${common.lib_deps}
  650. AsyncTCP=https://github.com/me-no-dev/AsyncTCP/archive/master.zip
  651. ESPAsyncWebServer=https://github.com/me-no-dev/ESPAsyncWebServer/archive/master.zip
  652. lib_ignore = LiquidCrystal, LiquidTWI2, SailfishLCD, SailfishRGB_LED
  653. src_filter = ${common.default_src_filter} +<src/HAL/HAL_ESP32>
  654. upload_speed = 115200
  655. #upload_port = marlinesp.local
  656. #board_build.flash_mode = qio
  657. #
  658. # Native
  659. # No supported Arduino libraries, base Marlin only
  660. #
  661. [env:linux_native]
  662. platform = native
  663. framework =
  664. build_flags = -D__PLAT_LINUX__ -std=gnu++17 -ggdb -g -lrt -lpthread -D__MARLIN_FIRMWARE__ -Wno-expansion-to-defined
  665. src_build_flags = -Wall -IMarlin/src/HAL/HAL_LINUX/include
  666. build_unflags = -Wall
  667. lib_ldf_mode = off
  668. lib_deps =
  669. extra_scripts =
  670. src_filter = ${common.default_src_filter} +<src/HAL/HAL_LINUX>
  671. #
  672. # Adafruit Grand Central M4 (Atmel SAMD51P20A ARM Cortex-M4)
  673. #
  674. [env:SAMD51_grandcentral_m4]
  675. platform = atmelsam
  676. board = adafruit_grandcentral_m4
  677. build_flags = ${common.build_flags} -std=gnu++17
  678. extra_scripts = ${common.extra_scripts}
  679. build_unflags = -std=gnu++11
  680. src_filter = ${common.default_src_filter} +<src/HAL/HAL_SAMD51>
  681. debug_tool = jlink
  682. #
  683. # RUMBA32
  684. #
  685. [env:rumba32_f446ve]
  686. platform = ststm32
  687. board = rumba32_f446ve
  688. build_flags = ${common.build_flags}
  689. -DSTM32F4xx
  690. -DARDUINO_RUMBA32_F446VE
  691. -DARDUINO_ARCH_STM32
  692. "-DBOARD_NAME=\"RUMBA32_F446VE\""
  693. -DSTM32F446xx
  694. -DUSBCON
  695. -DUSBD_VID=0x0483
  696. "-DUSB_MANUFACTURER=\"Unknown\""
  697. "-DUSB_PRODUCT=\"RUMBA32_F446VE\""
  698. -DHAL_PCD_MODULE_ENABLED
  699. -DUSBD_USE_CDC
  700. -DDISABLE_GENERIC_SERIALUSB
  701. -DHAL_UART_MODULE_ENABLED
  702. -Os
  703. lib_ignore = Adafruit NeoPixel
  704. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32>
  705. monitor_speed = 500000
  706. upload_protocol = dfu
  707. #
  708. # MKS RUMBA32(add TMC2208/2209 UART interface and AUX-1)
  709. #
  710. [env:mks_rumba32]
  711. platform = ststm32
  712. board = rumba32_f446ve
  713. build_flags = ${common.build_flags}
  714. -DSTM32F4xx -DARDUINO_RUMBA32_F446VE -DARDUINO_ARCH_STM32 "-DBOARD_NAME=\"RUMBA32_F446VE\""
  715. -DSTM32F446xx -DUSBCON -DUSBD_VID=0x8000
  716. "-DUSB_MANUFACTURER=\"Unknown\""
  717. "-DUSB_PRODUCT=\"RUMBA32_F446VE\""
  718. -DHAL_PCD_MODULE_ENABLED
  719. -DUSBD_USE_CDC
  720. -DDISABLE_GENERIC_SERIALUSB
  721. -DHAL_UART_MODULE_ENABLED
  722. -Os
  723. lib_ignore = Adafruit NeoPixel
  724. src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32> +<src/HAL/HAL_STM32_F4_F7> -<src/HAL/HAL_STM32_F4_F7/STM32F7>
  725. upload_protocol = dfu
  726. #
  727. # Just print the dependency tree
  728. #
  729. [env:include_tree]
  730. platform = atmelavr
  731. board = megaatmega2560
  732. build_flags = -c -H -std=gnu++11 -Wall -Os -D__MARLIN_FIRMWARE__
  733. lib_deps = ${common.lib_deps}
  734. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  735. src_filter = +<src/Marlin.cpp>