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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900
  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 = mega2560
  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. LiquidCrystal
  25. TMCStepper@>=0.6.2,<1.0.0
  26. Adafruit NeoPixel
  27. U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
  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/0.8.0.zip
  31. SailfishLCD=https://github.com/mikeshub/SailfishLCD/archive/master.zip
  32. SlowSoftI2CMaster=https://github.com/mikeshub/SlowSoftI2CMaster/archive/master.zip
  33. # Globally defined properties
  34. # inherited by all environments
  35. [env]
  36. framework = arduino
  37. build_flags = ${common.build_flags}
  38. lib_deps = ${common.lib_deps}
  39. monitor_speed = 250000
  40. #################################
  41. # #
  42. # Unique Core Architectures #
  43. # #
  44. # Add a new "env" below if no #
  45. # entry has values suitable to #
  46. # build for a given board. #
  47. # #
  48. #################################
  49. #
  50. # ATmega2560
  51. #
  52. [env:mega2560]
  53. platform = atmelavr
  54. board = megaatmega2560
  55. board_build.f_cpu = 16000000L
  56. lib_deps = ${common.lib_deps}
  57. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  58. src_filter = ${common.default_src_filter} +<src/HAL/AVR>
  59. #
  60. # ATmega1280
  61. #
  62. [env:mega1280]
  63. platform = atmelavr
  64. board = megaatmega1280
  65. board_build.f_cpu = 16000000L
  66. lib_deps = ${common.lib_deps}
  67. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  68. src_filter = ${common.default_src_filter} +<src/HAL/AVR>
  69. #
  70. # RAMBo
  71. #
  72. [env:rambo]
  73. platform = atmelavr
  74. board = reprap_rambo
  75. board_build.f_cpu = 16000000L
  76. lib_deps = ${common.lib_deps}
  77. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  78. src_filter = ${common.default_src_filter} +<src/HAL/AVR>
  79. #
  80. # FYSETC F6 V1.3
  81. #
  82. [env:FYSETC_F6_13]
  83. platform = atmelavr
  84. board = fysetc_f6_13
  85. board_build.f_cpu = 16000000L
  86. lib_deps = ${common.lib_deps}
  87. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  88. src_filter = ${common.default_src_filter} +<src/HAL/AVR>
  89. #
  90. # FYSETC F6 V1.4
  91. #
  92. [env:FYSETC_F6_14]
  93. platform = atmelavr
  94. board = fysetc_f6_14
  95. board_build.f_cpu = 16000000L
  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/AVR>
  99. #
  100. # Sanguinololu (ATmega644p)
  101. #
  102. [env:sanguino644p]
  103. platform = atmelavr
  104. board = sanguino_atmega644p
  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/AVR>
  108. #
  109. # Sanguinololu (ATmega1284p)
  110. #
  111. [env:sanguino1284p]
  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/AVR>
  117. #
  118. # Melzi and clones (ATmega1284p)
  119. #
  120. [env:melzi]
  121. platform = atmelavr
  122. board = sanguino_atmega1284p
  123. lib_deps = ${common.lib_deps}
  124. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  125. src_filter = ${common.default_src_filter} +<src/HAL/AVR>
  126. lib_ignore = TMCStepper
  127. upload_speed = 57600
  128. #
  129. # Melzi and clones (Optiboot bootloader)
  130. #
  131. [env:melzi_optiboot]
  132. platform = atmelavr
  133. board = sanguino_atmega1284p
  134. lib_deps = ${common.lib_deps}
  135. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  136. src_filter = ${common.default_src_filter} +<src/HAL/AVR>
  137. lib_ignore = TMCStepper
  138. upload_speed = 115200
  139. #
  140. # AT90USB1286 boards using CDC bootloader
  141. # - BRAINWAVE
  142. # - BRAINWAVE_PRO
  143. # - SAV_MKI
  144. # - TEENSYLU
  145. #
  146. [env:at90usb1286_cdc]
  147. platform = teensy
  148. board = at90usb1286
  149. lib_deps = ${common.lib_deps}
  150. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  151. lib_ignore = TMCStepper
  152. src_filter = ${common.default_src_filter} +<src/HAL/AVR>
  153. #
  154. # AT90USB1286 boards using DFU bootloader
  155. # - PrintrBoard
  156. # - PrintrBoard Rev.F
  157. # - ? 5DPRINT ?
  158. #
  159. [env:at90usb1286_dfu]
  160. platform = teensy
  161. board = at90usb1286
  162. lib_deps = ${common.lib_deps}
  163. lib_ignore = TMCStepper
  164. src_filter = ${common.default_src_filter} +<src/HAL/AVR>
  165. #
  166. # Due (Atmel SAM3X8E ARM Cortex-M3)
  167. #
  168. # - RAMPS4DUE
  169. # - RADDS
  170. #
  171. [env:DUE]
  172. platform = atmelsam
  173. board = due
  174. src_filter = ${common.default_src_filter} +<src/HAL/DUE>
  175. [env:DUE_USB]
  176. platform = atmelsam
  177. board = dueUSB
  178. src_filter = ${common.default_src_filter} +<src/HAL/DUE>
  179. [env:DUE_debug]
  180. # Used when WATCHDOG_RESET_MANUAL is enabled
  181. platform = atmelsam
  182. board = due
  183. src_filter = ${common.default_src_filter} +<src/HAL/DUE>
  184. build_flags = ${common.build_flags}
  185. -funwind-tables
  186. -mpoke-function-name
  187. #
  188. # Archim SAM
  189. #
  190. [env:DUE_archim]
  191. platform = atmelsam
  192. board = due
  193. src_filter = ${common.default_src_filter} +<src/HAL/DUE>
  194. build_flags = ${common.build_flags}
  195. -DARDUINO_SAM_ARCHIM -DARDUINO_ARCH_SAM -D__SAM3X8E__ -DUSBCON
  196. extra_scripts = Marlin/src/HAL/DUE/upload_extra_script.py
  197. [env:DUE_archim_debug]
  198. # Used when WATCHDOG_RESET_MANUAL is enabled
  199. platform = atmelsam
  200. board = due
  201. src_filter = ${common.default_src_filter} +<src/HAL/DUE>
  202. build_flags = ${common.build_flags}
  203. -DARDUINO_SAM_ARCHIM -DARDUINO_ARCH_SAM -D__SAM3X8E__ -DUSBCON
  204. -funwind-tables -mpoke-function-name
  205. extra_scripts = Marlin/src/HAL/DUE/upload_extra_script.py
  206. #
  207. # NXP LPC176x ARM Cortex-M3
  208. #
  209. [env:LPC1768]
  210. platform = https://github.com/p3p/pio-nxplpc-arduino-lpc176x/archive/0.1.2.zip
  211. board = nxp_lpc1768
  212. build_flags = -DU8G_HAL_LINKS -IMarlin/src/HAL/LPC1768/include -IMarlin/src/HAL/LPC1768/u8g ${common.build_flags}
  213. # debug options for backtrace
  214. # -funwind-tables
  215. # -mpoke-function-name
  216. lib_ldf_mode = off
  217. lib_compat_mode = strict
  218. extra_scripts = Marlin/src/HAL/LPC1768/upload_extra_script.py
  219. src_filter = ${common.default_src_filter} +<src/HAL/LPC1768>
  220. lib_deps = Servo
  221. LiquidCrystal
  222. U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
  223. TMCStepper@>=0.6.1,<1.0.0
  224. Adafruit NeoPixel=https://github.com/p3p/Adafruit_NeoPixel/archive/release.zip
  225. SailfishLCD=https://github.com/mikeshub/SailfishLCD/archive/master.zip
  226. [env:LPC1769]
  227. platform = https://github.com/p3p/pio-nxplpc-arduino-lpc176x/archive/0.1.2.zip
  228. board = nxp_lpc1769
  229. build_flags = -DU8G_HAL_LINKS -IMarlin/src/HAL/LPC1768/include -IMarlin/src/HAL/LPC1768/u8g ${common.build_flags}
  230. # debug options for backtrace
  231. # -funwind-tables
  232. # -mpoke-function-name
  233. lib_ldf_mode = off
  234. lib_compat_mode = strict
  235. extra_scripts = Marlin/src/HAL/LPC1768/upload_extra_script.py
  236. src_filter = ${common.default_src_filter} +<src/HAL/LPC1768>
  237. lib_deps = Servo
  238. LiquidCrystal
  239. U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
  240. TMCStepper@>=0.6.1,<1.0.0
  241. Adafruit NeoPixel=https://github.com/p3p/Adafruit_NeoPixel/archive/release.zip
  242. SailfishLCD=https://github.com/mikeshub/SailfishLCD/archive/master.zip
  243. #
  244. # STM32F103RC
  245. #
  246. [env:STM32F103RC]
  247. platform = ststm32
  248. board = genericSTM32F103RC
  249. platform_packages = tool-stm32duino
  250. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  251. ${common.build_flags} -std=gnu++14
  252. build_unflags = -std=gnu++11
  253. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  254. lib_deps = ${common.lib_deps}
  255. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  256. lib_ignore = Adafruit NeoPixel, SPI
  257. monitor_speed = 115200
  258. #
  259. # STM32F103RC_fysetc
  260. #
  261. [env:STM32F103RC_fysetc]
  262. platform = ststm32
  263. board = genericSTM32F103RC
  264. #board_build.core = maple
  265. platform_packages = tool-stm32duino
  266. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  267. ${common.build_flags} -std=gnu++14 -DDEBUG_LEVEL=0 -DHAVE_SW_SERIAL
  268. build_unflags = -std=gnu++11
  269. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py
  270. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  271. lib_deps = ${common.lib_deps}
  272. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  273. lib_ignore = Adafruit NeoPixel, SPI
  274. lib_ldf_mode = chain
  275. debug_tool = stlink
  276. upload_protocol = serial
  277. #
  278. # BigTree SKR Mini V1.1 / SKR mini E3 / SKR E3 DIP (STM32F103RCT6 ARM Cortex-M3)
  279. #
  280. # STM32F103RC_btt ............. RCT6 with 256K
  281. # STM32F103RC_btt_USB ......... RCT6 with 256K (USB mass storage)
  282. # STM32F103RC_btt_512K ........ RCT6 with 512K
  283. # STM32F103RC_btt_512K_USB .... RCT6 with 512K (USB mass storage)
  284. #
  285. [env:STM32F103RC_btt]
  286. platform = ststm32
  287. board = genericSTM32F103RC
  288. platform_packages = tool-stm32duino
  289. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  290. ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4
  291. build_unflags = -std=gnu++11
  292. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
  293. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  294. lib_deps = ${common.lib_deps}
  295. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  296. lib_ignore = Adafruit NeoPixel, SPI
  297. monitor_speed = 115200
  298. [env:STM32F103RC_btt_USB]
  299. platform = ststm32
  300. board = genericSTM32F103RC
  301. platform_packages = tool-stm32duino
  302. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  303. ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DUSE_USB_COMPOSITE
  304. build_unflags = -std=gnu++11
  305. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
  306. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  307. lib_deps = ${common.lib_deps}
  308. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  309. USBComposite for STM32F1@==0.91
  310. lib_ignore = Adafruit NeoPixel, SPI
  311. monitor_speed = 115200
  312. [env:STM32F103RC_btt_512K]
  313. platform = ststm32
  314. board = genericSTM32F103RC
  315. board_upload.maximum_size=524288
  316. platform_packages = tool-stm32duino
  317. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  318. ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DSTM32_FLASH_SIZE=512
  319. build_unflags = -std=gnu++11
  320. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
  321. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  322. lib_deps = ${common.lib_deps}
  323. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  324. lib_ignore = Adafruit NeoPixel, SPI
  325. monitor_speed = 115200
  326. [env:STM32F103RC_btt_512K_USB]
  327. platform = ststm32
  328. board = genericSTM32F103RC
  329. board_upload.maximum_size=524288
  330. platform_packages = tool-stm32duino
  331. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  332. ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DSTM32_FLASH_SIZE=512 -DUSE_USB_COMPOSITE
  333. build_unflags = -std=gnu++11
  334. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
  335. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  336. lib_deps = ${common.lib_deps}
  337. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  338. USBComposite for STM32F1@==0.91
  339. lib_ignore = Adafruit NeoPixel, SPI
  340. monitor_speed = 115200
  341. #
  342. # STM32F103RE
  343. #
  344. [env:STM32F103RE]
  345. platform = ststm32
  346. board = genericSTM32F103RE
  347. platform_packages = tool-stm32duino
  348. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  349. ${common.build_flags} -std=gnu++14
  350. build_unflags = -std=gnu++11
  351. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  352. lib_deps = ${common.lib_deps}
  353. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  354. lib_ignore = Adafruit NeoPixel, SPI
  355. monitor_speed = 115200
  356. #
  357. # STM32F103RE_btt ............. RET6
  358. # STM32F103RE_btt_USB ......... RET6 (USB mass storage)
  359. #
  360. [env:STM32F103RE_btt]
  361. platform = ststm32
  362. board = genericSTM32F103RE
  363. platform_packages = tool-stm32duino
  364. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  365. ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4
  366. build_unflags = -std=gnu++11
  367. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py
  368. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  369. lib_deps = ${common.lib_deps}
  370. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  371. lib_ignore = Adafruit NeoPixel, SPI
  372. debug_tool = stlink
  373. upload_protocol = stlink
  374. monitor_speed = 115200
  375. [env:STM32F103RE_btt_USB]
  376. platform = ststm32
  377. board = genericSTM32F103RE
  378. platform_packages = tool-stm32duino
  379. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  380. ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DUSE_USB_COMPOSITE
  381. build_unflags = -std=gnu++11
  382. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py
  383. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  384. lib_deps = ${common.lib_deps}
  385. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  386. USBComposite for STM32F1@==0.91
  387. lib_ignore = Adafruit NeoPixel, SPI
  388. debug_tool = stlink
  389. upload_protocol = stlink
  390. monitor_speed = 115200
  391. #
  392. # STM32F4 with STM32GENERIC
  393. #
  394. [env:STM32F4]
  395. platform = ststm32
  396. board = disco_f407vg
  397. build_flags = ${common.build_flags} -DUSE_STM32GENERIC -DSTM32GENERIC -DSTM32F4 -DMENU_USB_SERIAL -DMENU_SERIAL=SerialUSB -DHAL_IWDG_MODULE_ENABLED
  398. lib_ignore = Adafruit NeoPixel, TMCStepper
  399. src_filter = ${common.default_src_filter} +<src/HAL/STM32_F4_F7> -<src/HAL/STM32_F4_F7/STM32F7>
  400. #
  401. # STM32F7 with STM32GENERIC
  402. #
  403. [env:STM32F7]
  404. platform = ststm32
  405. board = remram_v1
  406. build_flags = ${common.build_flags} -DUSE_STM32GENERIC -DSTM32GENERIC -DSTM32F7 -DMENU_USB_SERIAL -DMENU_SERIAL=SerialUSB -DHAL_IWDG_MODULE_ENABLED
  407. lib_ignore = Adafruit NeoPixel, TMCStepper
  408. src_filter = ${common.default_src_filter} +<src/HAL/STM32_F4_F7> -<src/HAL/STM32_F4_F7/STM32F4>
  409. #
  410. # ARMED (STM32)
  411. #
  412. [env:ARMED]
  413. platform = ststm32
  414. board = armed_v1
  415. build_flags = ${common.build_flags}
  416. -DUSBCON -DUSBD_VID=0x0483 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="ARMED_V1"' -DUSBD_USE_CDC
  417. -O2 -ffreestanding -fsigned-char -fno-move-loop-invariants -fno-strict-aliasing -std=gnu11 -std=gnu++11
  418. -IMarlin/src/HAL/STM32
  419. lib_ignore = Adafruit NeoPixel, SoftwareSerial
  420. src_filter = ${common.default_src_filter} +<src/HAL/STM32>
  421. #
  422. # Geeetech GTM32 (STM32F103VET6)
  423. #
  424. [env:STM32F103VE_GTM32]
  425. platform = ststm32
  426. board = genericSTM32F103VE
  427. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  428. ${common.build_flags} -std=gnu++14 -ffunction-sections -fdata-sections -nostdlib -MMD
  429. -DMCU_STM32F103VE -DARDUINO_GENERIC_STM32F103V -DARDUINO_ARCH_STM32F1 -DBOARD_generic_stm32f103v
  430. -DDEBUG_LEVEL=DEBUG_NONE -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOE -DERROR_LED_PIN=6
  431. build_unflags = -std=gnu++11
  432. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  433. lib_ignore = Adafruit NeoPixel, SPI
  434. upload_protocol = serial
  435. #
  436. # Longer 3D board in Alfawise U20 (STM32F103VET6)
  437. #
  438. [env:STM32F103VE_longer]
  439. platform = ststm32
  440. board = genericSTM32F103VE
  441. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  442. ${common.build_flags} -std=gnu++14 -DMCU_STM32F103VE -DSTM32F1xx -USERIAL_USB -DU20 -DTS_V12
  443. build_unflags = -std=gnu++11 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DERROR_LED_PORT=GPIOE -DERROR_LED_PIN=6
  444. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103VE_longer.py
  445. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  446. lib_ignore = Adafruit NeoPixel, LiquidTWI2, SPI
  447. #
  448. # MKS Robin Mini (STM32F103VET6)
  449. #
  450. [env:mks_robin_mini]
  451. platform = ststm32
  452. board = genericSTM32F103VE
  453. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  454. ${common.build_flags} -std=gnu++14 -DMCU_STM32F103VE
  455. build_unflags = -std=gnu++11
  456. extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_mini.py
  457. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  458. lib_ignore = Adafruit NeoPixel, SPI
  459. #
  460. # MKS Robin Nano (STM32F103VET6)
  461. #
  462. [env:mks_robin_nano]
  463. platform = ststm32
  464. board = genericSTM32F103VE
  465. platform_packages = tool-stm32duino
  466. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  467. ${common.build_flags} -std=gnu++14 -DMCU_STM32F103VE -DHAVE_SW_SERIAL -DSS_TIMER=4
  468. build_unflags = -std=gnu++11
  469. extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_nano.py
  470. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  471. lib_deps = ${common.lib_deps}
  472. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  473. lib_ignore = Adafruit NeoPixel, SPI
  474. #
  475. # MKS Robin (STM32F103ZET6)
  476. #
  477. [env:mks_robin]
  478. platform = ststm32
  479. board = genericSTM32F103ZE
  480. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  481. ${common.build_flags} -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DSTM32_XL_DENSITY
  482. build_unflags = -std=gnu++11
  483. extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin.py
  484. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  485. lib_deps = ${common.lib_deps}
  486. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  487. lib_ignore = Adafruit NeoPixel, SPI
  488. #
  489. # MKS Robin Pro (STM32F103ZET6)
  490. #
  491. [env:mks_robin_pro]
  492. platform = ststm32
  493. board = genericSTM32F103ZE
  494. extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_pro.py
  495. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  496. ${common.build_flags} -std=gnu++14 -DSTM32_XL_DENSITY
  497. build_unflags = -std=gnu++11
  498. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  499. lib_deps = ${common.lib_deps}
  500. lib_ignore = Adafruit NeoPixel, SPI, TMCStepper
  501. #
  502. # MKS Robin E3D (STM32F103RCT6) and
  503. # MKS Robin E3 with TMC2209
  504. #
  505. [env:mks_robin_e3]
  506. platform = ststm32
  507. board = genericSTM32F103RC
  508. platform_packages = tool-stm32duino
  509. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  510. ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4
  511. build_unflags = -std=gnu++11
  512. extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_e3.py
  513. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  514. lib_deps = ${common.lib_deps}
  515. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  516. lib_ignore = Adafruit NeoPixel, SPI
  517. #
  518. # MKS Robin Lite/Lite2 (STM32F103RCT6)
  519. #
  520. [env:mks_robin_lite]
  521. platform = ststm32
  522. board = genericSTM32F103RC
  523. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  524. ${common.build_flags} -std=gnu++14
  525. build_unflags = -std=gnu++11
  526. extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_lite.py
  527. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  528. lib_ignore = Adafruit NeoPixel, SPI
  529. #
  530. # MKS ROBIN LITE3 (STM32F103RCT6)
  531. #
  532. [env:mks_robin_lite3]
  533. platform = ststm32
  534. board = genericSTM32F103RC
  535. extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_lite3.py
  536. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  537. ${common.build_flags} -std=gnu++14
  538. build_unflags = -std=gnu++11
  539. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  540. lib_deps = ${common.lib_deps}
  541. lib_ignore = Adafruit NeoPixel, SPI
  542. #
  543. # JGAurora A5S A1 (STM32F103ZET6)
  544. #
  545. [env:jgaurora_a5s_a1]
  546. platform = ststm32
  547. board = genericSTM32F103ZE
  548. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  549. ${common.build_flags} -DSTM32F1xx -std=gnu++14 -DSTM32_XL_DENSITY
  550. build_unflags = -std=gnu++11
  551. extra_scripts = buildroot/share/PlatformIO/scripts/jgaurora_a5s_a1_with_bootloader.py
  552. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  553. lib_ignore = Adafruit NeoPixel, SPI
  554. #
  555. # Malyan M200 (STM32F103CB)
  556. #
  557. [env:STM32F103CB_malyan]
  558. platform = ststm32
  559. board = malyanM200
  560. build_flags = !python Marlin/src/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
  561. -DDEBUG_LEVEL=0 -D__MARLIN_FIRMWARE__
  562. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  563. lib_ignore = Adafruit NeoPixel, LiquidCrystal, LiquidTWI2, TMCStepper, U8glib-HAL, SPI
  564. #
  565. # Malyan M300 (STM32F070CB)
  566. #
  567. [env:malyan_M300]
  568. platform = ststm32@>=6.1.0
  569. board = malyanm300_f070cb
  570. build_flags = ${common.build_flags}
  571. -DUSBCON -DUSBD_VID=0x0483 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"MALYAN_M300\""
  572. -DHAL_PCD_MODULE_ENABLED -DUSBD_USE_CDC -DDISABLE_GENERIC_SERIALUSB -DHAL_UART_MODULE_ENABLED
  573. src_filter = ${common.default_src_filter} +<src/HAL/STM32>
  574. lib_ignore = U8glib, LiquidCrystal_I2C, LiquidCrystal, NewliquidCrystal, LiquidTWI2, Adafruit NeoPixel, TMCStepper, Servo(STM32F1), TMC26XStepper, U8glib-HAL
  575. #
  576. # Chitu boards like Tronxy X5s (STM32F103ZET6)
  577. #
  578. [env:chitu_f103]
  579. platform = ststm32
  580. board = genericSTM32F103ZE
  581. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  582. ${common.build_flags} -DSTM32F1xx -std=gnu++14 -DSTM32_XL_DENSITY
  583. build_unflags = -std=gnu++11 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG= -DERROR_LED_PORT=GPIOE -DERROR_LED_PIN=6
  584. extra_scripts = buildroot/share/PlatformIO/scripts/chitu_crypt.py
  585. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  586. lib_ignore = Adafruit NeoPixel
  587. #
  588. # STM32F401VE
  589. # 'STEVAL-3DP001V1' STM32F401VE board - https://www.st.com/en/evaluation-tools/steval-3dp001v1.html
  590. #
  591. [env:STM32F401VE_STEVAL]
  592. platform = ststm32
  593. board = STEVAL_STM32F401VE
  594. platform_packages = framework-arduinoststm32@>=3.10700,<4
  595. build_flags = ${common.build_flags}
  596. -DTARGET_STM32F4 -DARDUINO_STEVAL -DSTM32F401xE
  597. -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STEVAL_F401VE\"
  598. -DDISABLE_GENERIC_SERIALUSB
  599. -IMarlin/src/HAL/STM32
  600. build_unflags = -std=gnu++11
  601. extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
  602. buildroot/share/PlatformIO/scripts/STEVAL__F401XX.py
  603. lib_ignore = Adafruit NeoPixel, TMCStepper, SailfishLCD, SlowSoftI2CMaster, SoftwareSerial
  604. src_filter = ${common.default_src_filter} +<src/HAL/STM32>
  605. #
  606. # FLYF407ZG
  607. #
  608. [env:FLYF407ZG]
  609. platform = ststm32
  610. board = FLYF407ZG
  611. platform_packages = framework-arduinoststm32@>=3.10700,<4
  612. build_flags = ${common.build_flags}
  613. -DSTM32F4 -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STM32F407ZG\"
  614. -DTARGET_STM32F4 -DVECT_TAB_OFFSET=0x8000
  615. -IMarlin/src/HAL/STM32
  616. build_unflags = -std=gnu++11
  617. extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
  618. lib_ignore = Adafruit NeoPixel, TMCStepper, SailfishLCD, SlowSoftI2CMaster, SoftwareSerial
  619. src_filter = ${common.default_src_filter} +<src/HAL/STM32>
  620. #
  621. # FYSETC S6 (STM32F446VET6 ARM Cortex-M4)
  622. #
  623. [env:FYSETC_S6]
  624. platform = ststm32
  625. board = fysetc_s6
  626. platform_packages =
  627. tool-stm32duino
  628. framework-arduinoststm32@>=3.10700,<4
  629. build_flags = ${common.build_flags}
  630. -DTARGET_STM32F4 -std=gnu++14
  631. -DVECT_TAB_OFFSET=0x10000
  632. -DUSBCON -DUSBD_USE_CDC -DHAL_PCD_MODULE_ENABLED -DUSBD_VID=0x0483 '-DUSB_PRODUCT="FYSETC_S6"'
  633. build_unflags = -std=gnu++11
  634. extra_scripts = pre:buildroot/share/PlatformIO/scripts/fysetc_STM32S6.py
  635. src_filter = ${common.default_src_filter} +<src/HAL/STM32>
  636. lib_ignore = Arduino-L6470
  637. debug_tool = stlink
  638. #upload_protocol = stlink
  639. upload_protocol = serial
  640. #
  641. # STM32F407VET6 with RAMPS-like shield
  642. # 'Black' STM32F407VET6 board - http://wiki.stm32duino.com/index.php?title=STM32F407
  643. # Shield - https://github.com/jmz52/Hardware
  644. #
  645. [env:STM32F407VE_black]
  646. platform = ststm32
  647. board = blackSTM32F407VET6
  648. platform_packages = framework-arduinoststm32@>=3.10700,<4
  649. build_flags = ${common.build_flags}
  650. -DTARGET_STM32F4 -DARDUINO_BLACK_F407VE
  651. -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"BLACK_F407VE\"
  652. -IMarlin/src/HAL/STM32
  653. build_unflags = -std=gnu++11
  654. extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
  655. lib_ignore = Adafruit NeoPixel, TMCStepper, SailfishLCD, SlowSoftI2CMaster, SoftwareSerial
  656. src_filter = ${common.default_src_filter} +<src/HAL/STM32>
  657. #
  658. # BigTreeTech SKR Pro (STM32F407ZGT6 ARM Cortex-M4)
  659. #
  660. [env:BIGTREE_SKR_PRO]
  661. platform = ststm32
  662. board = BigTree_SKR_Pro
  663. platform_packages = framework-arduinoststm32@>=3.10700,<4
  664. build_flags = ${common.build_flags}
  665. -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STM32F407ZG\"
  666. -DTARGET_STM32F4 -DSTM32F407_5ZX -DVECT_TAB_OFFSET=0x8000
  667. -IMarlin/src/HAL/STM32
  668. build_unflags = -std=gnu++11
  669. extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
  670. lib_ignore = SoftwareSerial, SoftwareSerialM
  671. src_filter = ${common.default_src_filter} +<src/HAL/STM32>
  672. #upload_protocol = stlink
  673. #upload_command = "$PROJECT_PACKAGES_DIR/tool-stm32duino/stlink/ST-LINK_CLI.exe" -c SWD -P "$BUILD_DIR/firmware.bin" 0x8008000 -Rst -Run
  674. debug_tool = stlink
  675. debug_init_break =
  676. #
  677. # Bigtreetech GTR V1.0 (STM32F407IGT6 ARM Cortex-M4)
  678. #
  679. [env:BIGTREE_GTR_V1_0]
  680. platform = ststm32@>=5.7.0
  681. framework = arduino
  682. platform_packages = framework-arduinoststm32@>=3.10700,<4
  683. board = BigTree_SKR_Pro
  684. extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
  685. build_flags = ${common.build_flags}
  686. -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STM32F407IG\"
  687. -DTARGET_STM32F4 -DSTM32F407IX -DVECT_TAB_OFFSET=0x8000
  688. -IMarlin/src/HAL/STM32
  689. lib_deps =
  690. U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
  691. LiquidCrystal
  692. TMCStepper@>=0.5.2,<1.0.0
  693. Adafruit NeoPixel
  694. LiquidTWI2=https://github.com/lincomatic/LiquidTWI2/archive/master.zip
  695. Arduino-L6470=https://github.com/ameyer/Arduino-L6470/archive/dev.zip
  696. lib_ignore = SoftwareSerial, SoftwareSerialM
  697. src_filter = ${common.default_src_filter} +<src/HAL/STM32>
  698. monitor_speed = 250000
  699. #
  700. # BigTreeTech BTT002 V1.0 (STM32F407VGT6 ARM Cortex-M4)
  701. #
  702. [env:BIGTREE_BTT002]
  703. platform = ststm32@5.6.0
  704. board = BigTree_Btt002
  705. platform_packages = framework-arduinoststm32@>=3.10700,<4
  706. build_flags = ${common.build_flags}
  707. -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STM32F407VG\"
  708. -DTARGET_STM32F4 -DSTM32F407_5VX -DVECT_TAB_OFFSET=0x8000
  709. -DHAVE_HWSERIAL2
  710. -DHAVE_HWSERIAL3
  711. -DPIN_SERIAL2_RX=PD_6
  712. -DPIN_SERIAL2_TX=PD_5
  713. build_unflags = -std=gnu++11
  714. extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
  715. lib_ignore = Adafruit NeoPixel, SailfishLCD, SlowSoftI2CMaster
  716. src_filter = ${common.default_src_filter} +<src/HAL/STM32>
  717. #
  718. # Teensy 3.1 / 3.2 (ARM Cortex-M4)
  719. #
  720. [env:teensy31]
  721. platform = teensy
  722. board = teensy31
  723. lib_deps = ${common.lib_deps}
  724. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  725. lib_ignore = Adafruit NeoPixel
  726. src_filter = ${common.default_src_filter} +<src/HAL/TEENSY31_32>
  727. #
  728. # Teensy 3.5 / 3.6 (ARM Cortex-M4)
  729. #
  730. [env:teensy35]
  731. platform = teensy
  732. board = teensy35
  733. lib_deps = ${common.lib_deps}
  734. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  735. lib_ignore = Adafruit NeoPixel
  736. src_filter = ${common.default_src_filter} +<src/HAL/TEENSY35_36>
  737. #
  738. # Espressif ESP32
  739. #
  740. [env:esp32]
  741. platform = espressif32@1.11.2
  742. board = esp32dev
  743. build_flags = ${common.build_flags} -DCORE_DEBUG_LEVEL=0
  744. lib_deps = ${common.lib_deps}
  745. AsyncTCP=https://github.com/me-no-dev/AsyncTCP/archive/master.zip
  746. ESPAsyncWebServer=https://github.com/me-no-dev/ESPAsyncWebServer/archive/master.zip
  747. ESP3DLib=https://github.com/luc-github/ESP3DLib.git
  748. arduinoWebSockets=https://github.com/Links2004/arduinoWebSockets.git
  749. ESP32SSDP=https://github.com/luc-github/ESP32SSDP.git
  750. lib_ignore = LiquidCrystal, LiquidTWI2, SailfishLCD, ESPAsyncTCP
  751. src_filter = ${common.default_src_filter} +<src/HAL/ESP32>
  752. upload_speed = 115200
  753. #upload_port = marlinesp.local
  754. #board_build.flash_mode = qio
  755. #
  756. # Native
  757. # No supported Arduino libraries, base Marlin only
  758. #
  759. [env:linux_native]
  760. platform = native
  761. framework =
  762. build_flags = -D__PLAT_LINUX__ -std=gnu++17 -ggdb -g -lrt -lpthread -D__MARLIN_FIRMWARE__ -Wno-expansion-to-defined
  763. src_build_flags = -Wall -IMarlin/src/HAL/LINUX/include
  764. build_unflags = -Wall
  765. lib_ldf_mode = off
  766. lib_deps =
  767. src_filter = ${common.default_src_filter} +<src/HAL/LINUX>
  768. #
  769. # Adafruit Grand Central M4 (Atmel SAMD51P20A ARM Cortex-M4)
  770. #
  771. [env:SAMD51_grandcentral_m4]
  772. platform = atmelsam
  773. board = adafruit_grandcentral_m4
  774. build_flags = ${common.build_flags} -std=gnu++17 -Wno-register
  775. build_unflags = -std=gnu++11
  776. src_filter = ${common.default_src_filter} +<src/HAL/SAMD51>
  777. lib_deps = ${common.lib_deps}
  778. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  779. Adafruit_SPIFlash=https://github.com/adafruit/Adafruit_SPIFlash/archive/master.zip
  780. debug_tool = jlink
  781. #
  782. # RUMBA32
  783. #
  784. [env:rumba32_f446ve]
  785. platform = ststm32
  786. board = rumba32_f446ve
  787. build_flags = ${common.build_flags}
  788. -DSTM32F4xx
  789. -DARDUINO_RUMBA32_F446VE
  790. -DARDUINO_ARCH_STM32
  791. "-DBOARD_NAME=\"RUMBA32_F446VE\""
  792. -DSTM32F446xx
  793. -DUSBCON
  794. -DUSBD_VID=0x0483
  795. "-DUSB_MANUFACTURER=\"Unknown\""
  796. "-DUSB_PRODUCT=\"RUMBA32_F446VE\""
  797. -DHAL_PCD_MODULE_ENABLED
  798. -DUSBD_USE_CDC
  799. -DDISABLE_GENERIC_SERIALUSB
  800. -DHAL_UART_MODULE_ENABLED
  801. -Os
  802. lib_ignore = Adafruit NeoPixel
  803. src_filter = ${common.default_src_filter} +<src/HAL/STM32>
  804. monitor_speed = 500000
  805. upload_protocol = dfu
  806. #
  807. # MKS RUMBA32 (adds TMC2208/2209 UART interface and AUX-1)
  808. #
  809. [env:rumba32_mks]
  810. platform = ststm32
  811. board = rumba32_f446ve
  812. build_flags = ${common.build_flags}
  813. -DSTM32F4xx -DARDUINO_RUMBA32_F446VE -DARDUINO_ARCH_STM32 "-DBOARD_NAME=\"RUMBA32_F446VE\""
  814. -DSTM32F446xx -DUSBCON -DUSBD_VID=0x8000
  815. "-DUSB_MANUFACTURER=\"Unknown\""
  816. "-DUSB_PRODUCT=\"RUMBA32_F446VE\""
  817. -DHAL_PCD_MODULE_ENABLED
  818. -DUSBD_USE_CDC
  819. -DDISABLE_GENERIC_SERIALUSB
  820. -DHAL_UART_MODULE_ENABLED
  821. -Os
  822. lib_ignore = Adafruit NeoPixel
  823. src_filter = ${common.default_src_filter} +<src/HAL/STM32> +<src/HAL/STM32_F4_F7> -<src/HAL/STM32_F4_F7/STM32F7>
  824. upload_protocol = dfu
  825. #
  826. # Just print the dependency tree
  827. #
  828. [env:include_tree]
  829. platform = atmelavr
  830. board = megaatmega2560
  831. build_flags = -c -H -std=gnu++11 -Wall -Os -D__MARLIN_FIRMWARE__
  832. lib_deps = ${common.lib_deps}
  833. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  834. src_filter = +<src/Marlin.cpp>