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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871
  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. [env:DUE_archim_debug]
  197. # Used when WATCHDOG_RESET_MANUAL is enabled
  198. platform = atmelsam
  199. board = due
  200. src_filter = ${common.default_src_filter} +<src/HAL/DUE>
  201. build_flags = ${common.build_flags}
  202. -DARDUINO_SAM_ARCHIM -DARDUINO_ARCH_SAM -D__SAM3X8E__ -DUSBCON
  203. -funwind-tables -mpoke-function-name
  204. #
  205. # NXP LPC176x ARM Cortex-M3
  206. #
  207. [env:LPC1768]
  208. platform = https://github.com/p3p/pio-nxplpc-arduino-lpc176x/archive/0.1.2.zip
  209. board = nxp_lpc1768
  210. build_flags = -DU8G_HAL_LINKS -IMarlin/src/HAL/LPC1768/include -IMarlin/src/HAL/LPC1768/u8g ${common.build_flags}
  211. # debug options for backtrace
  212. # -funwind-tables
  213. # -mpoke-function-name
  214. lib_ldf_mode = off
  215. lib_compat_mode = strict
  216. extra_scripts = Marlin/src/HAL/LPC1768/upload_extra_script.py
  217. src_filter = ${common.default_src_filter} +<src/HAL/LPC1768>
  218. lib_deps = Servo
  219. LiquidCrystal
  220. U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
  221. TMCStepper@>=0.6.1,<1.0.0
  222. Adafruit NeoPixel=https://github.com/p3p/Adafruit_NeoPixel/archive/release.zip
  223. SailfishLCD=https://github.com/mikeshub/SailfishLCD/archive/master.zip
  224. [env:LPC1769]
  225. platform = https://github.com/p3p/pio-nxplpc-arduino-lpc176x/archive/0.1.2.zip
  226. board = nxp_lpc1769
  227. build_flags = -DU8G_HAL_LINKS -IMarlin/src/HAL/LPC1768/include -IMarlin/src/HAL/LPC1768/u8g ${common.build_flags}
  228. # debug options for backtrace
  229. # -funwind-tables
  230. # -mpoke-function-name
  231. lib_ldf_mode = off
  232. lib_compat_mode = strict
  233. extra_scripts = Marlin/src/HAL/LPC1768/upload_extra_script.py
  234. src_filter = ${common.default_src_filter} +<src/HAL/LPC1768>
  235. lib_deps = Servo
  236. LiquidCrystal
  237. U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
  238. TMCStepper@>=0.6.1,<1.0.0
  239. Adafruit NeoPixel=https://github.com/p3p/Adafruit_NeoPixel/archive/release.zip
  240. SailfishLCD=https://github.com/mikeshub/SailfishLCD/archive/master.zip
  241. #
  242. # STM32F103RC
  243. #
  244. [env:STM32F103RC]
  245. platform = ststm32
  246. board = genericSTM32F103RC
  247. platform_packages = tool-stm32duino
  248. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  249. ${common.build_flags} -std=gnu++14
  250. build_unflags = -std=gnu++11
  251. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  252. lib_deps = ${common.lib_deps}
  253. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  254. lib_ignore = Adafruit NeoPixel, SPI
  255. monitor_speed = 115200
  256. #
  257. # STM32F103RC_fysetc
  258. #
  259. [env:STM32F103RC_fysetc]
  260. platform = ststm32
  261. board = genericSTM32F103RC
  262. #board_build.core = maple
  263. platform_packages = tool-stm32duino
  264. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  265. ${common.build_flags} -std=gnu++14 -DDEBUG_LEVEL=0 -DHAVE_SW_SERIAL
  266. build_unflags = -std=gnu++11
  267. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py
  268. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  269. lib_deps = ${common.lib_deps}
  270. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  271. lib_ignore = Adafruit NeoPixel, SPI
  272. lib_ldf_mode = chain
  273. debug_tool = stlink
  274. upload_protocol = serial
  275. #
  276. # BigTree SKR Mini V1.1 / SKR mini E3 / SKR E3 DIP (STM32F103RCT6 ARM Cortex-M3)
  277. #
  278. # STM32F103RC_btt ............. RCT6 with 256K
  279. # STM32F103RC_btt_USB ......... RCT6 with 256K (USB mass storage)
  280. # STM32F103RC_btt_512K ........ RCT6 with 512K
  281. # STM32F103RC_btt_512K_USB .... RCT6 with 512K (USB mass storage)
  282. #
  283. [env:STM32F103RC_btt]
  284. platform = ststm32
  285. board = genericSTM32F103RC
  286. platform_packages = tool-stm32duino
  287. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  288. ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4
  289. build_unflags = -std=gnu++11
  290. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
  291. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  292. lib_deps = ${common.lib_deps}
  293. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  294. USBComposite for STM32F1@==0.91
  295. lib_ignore = Adafruit NeoPixel, SPI
  296. monitor_speed = 115200
  297. [env:STM32F103RC_btt_USB]
  298. platform = ststm32
  299. board = genericSTM32F103RC
  300. platform_packages = tool-stm32duino
  301. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  302. ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DUSE_USB_COMPOSITE
  303. build_unflags = -std=gnu++11
  304. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
  305. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  306. lib_deps = ${common.lib_deps}
  307. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  308. USBComposite for STM32F1@==0.91
  309. lib_ignore = Adafruit NeoPixel, SPI
  310. monitor_speed = 115200
  311. [env:STM32F103RC_btt_512K]
  312. platform = ststm32
  313. board = genericSTM32F103RC
  314. board_upload.maximum_size=524288
  315. platform_packages = tool-stm32duino
  316. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  317. ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DSTM32_FLASH_SIZE=512
  318. build_unflags = -std=gnu++11
  319. extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
  320. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  321. lib_deps = ${common.lib_deps}
  322. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  323. USBComposite for STM32F1@==0.91
  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. lib_ignore = Adafruit NeoPixel, SPI
  387. debug_tool = stlink
  388. upload_protocol = stlink
  389. monitor_speed = 115200
  390. #
  391. # STM32F4 with STM32GENERIC
  392. #
  393. [env:STM32F4]
  394. platform = ststm32
  395. board = disco_f407vg
  396. build_flags = ${common.build_flags} -DUSE_STM32GENERIC -DSTM32GENERIC -DSTM32F4 -DMENU_USB_SERIAL -DMENU_SERIAL=SerialUSB -DHAL_IWDG_MODULE_ENABLED
  397. lib_ignore = Adafruit NeoPixel, TMCStepper
  398. src_filter = ${common.default_src_filter} +<src/HAL/STM32_F4_F7> -<src/HAL/STM32_F4_F7/STM32F7>
  399. #
  400. # STM32F7 with STM32GENERIC
  401. #
  402. [env:STM32F7]
  403. platform = ststm32
  404. board = remram_v1
  405. build_flags = ${common.build_flags} -DUSE_STM32GENERIC -DSTM32GENERIC -DSTM32F7 -DMENU_USB_SERIAL -DMENU_SERIAL=SerialUSB -DHAL_IWDG_MODULE_ENABLED
  406. lib_ignore = Adafruit NeoPixel, TMCStepper
  407. src_filter = ${common.default_src_filter} +<src/HAL/STM32_F4_F7> -<src/HAL/STM32_F4_F7/STM32F4>
  408. #
  409. # ARMED (STM32)
  410. #
  411. [env:ARMED]
  412. platform = ststm32
  413. board = armed_v1
  414. build_flags = ${common.build_flags}
  415. -DUSBCON -DUSBD_VID=0x0483 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="ARMED_V1"' -DUSBD_USE_CDC
  416. -O2 -ffreestanding -fsigned-char -fno-move-loop-invariants -fno-strict-aliasing -std=gnu11 -std=gnu++11
  417. -IMarlin/src/HAL/STM32
  418. lib_ignore = Adafruit NeoPixel, SoftwareSerial
  419. src_filter = ${common.default_src_filter} +<src/HAL/STM32>
  420. #
  421. # Geeetech GTM32 (STM32F103VET6)
  422. #
  423. [env:STM32F103VE_GTM32]
  424. platform = ststm32
  425. board = genericSTM32F103VE
  426. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  427. ${common.build_flags} -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++14 -MMD -ffunction-sections -fdata-sections -nostdlib
  428. -DBOARD_generic_stm32f103v -DARDUINO_GENERIC_STM32F103V -DARDUINO_ARCH_STM32F1
  429. -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOE -DERROR_LED_PIN=6
  430. build_unflags = -std=gnu++11
  431. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  432. lib_ignore = Adafruit NeoPixel, SPI
  433. upload_protocol = serial
  434. #
  435. # Longer 3D board in Alfawise U20 (STM32F103VET6)
  436. #
  437. [env:STM32F103VE_longer]
  438. platform = ststm32
  439. board = genericSTM32F103VE
  440. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  441. ${common.build_flags} -std=gnu++14 -USERIAL_USB
  442. -DSTM32F1xx -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
  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 -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 Lite/Lite2 (STM32F103RCT6)
  503. #
  504. [env:mks_robin_lite]
  505. platform = ststm32
  506. board = genericSTM32F103RC
  507. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  508. ${common.build_flags} -std=gnu++14
  509. build_unflags = -std=gnu++11
  510. extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_lite.py
  511. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  512. lib_ignore = Adafruit NeoPixel, SPI
  513. #
  514. # MKS ROBIN LITE3 (STM32F103RCT6)
  515. #
  516. [env:mks_robin_lite3]
  517. platform = ststm32
  518. board = genericSTM32F103RC
  519. extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_lite3.py
  520. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  521. ${common.build_flags} -std=gnu++14
  522. build_unflags = -std=gnu++11
  523. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  524. lib_deps = ${common.lib_deps}
  525. lib_ignore = Adafruit NeoPixel, SPI
  526. #
  527. # JGAurora A5S A1 (STM32F103ZET6)
  528. #
  529. [env:jgaurora_a5s_a1]
  530. platform = ststm32
  531. board = genericSTM32F103ZE
  532. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  533. ${common.build_flags} -DSTM32F1xx -std=gnu++14 -DSTM32_XL_DENSITY
  534. build_unflags = -std=gnu++11
  535. extra_scripts = buildroot/share/PlatformIO/scripts/jgaurora_a5s_a1_with_bootloader.py
  536. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  537. lib_ignore = Adafruit NeoPixel, SPI
  538. #
  539. # Malyan M200 (STM32F103CB)
  540. #
  541. [env:STM32F103CB_malyan]
  542. platform = ststm32
  543. board = malyanM200
  544. 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
  545. -DDEBUG_LEVEL=0 -D__MARLIN_FIRMWARE__
  546. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  547. lib_ignore = Adafruit NeoPixel, LiquidCrystal, LiquidTWI2, TMCStepper, U8glib-HAL, SPI
  548. #
  549. # Chitu boards like Tronxy X5s (STM32F103ZET6)
  550. #
  551. [env:chitu_f103]
  552. platform = ststm32
  553. board = genericSTM32F103ZE
  554. build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
  555. ${common.build_flags} -DSTM32F1xx -std=gnu++14 -DSTM32_XL_DENSITY
  556. build_unflags = -std=gnu++11 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG= -DERROR_LED_PORT=GPIOE -DERROR_LED_PIN=6
  557. extra_scripts = buildroot/share/PlatformIO/scripts/chitu_crypt.py
  558. src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
  559. lib_ignore = Adafruit NeoPixel
  560. #
  561. # STM32F401VE
  562. # 'STEVAL-3DP001V1' STM32F401VE board - https://www.st.com/en/evaluation-tools/steval-3dp001v1.html
  563. #
  564. [env:STM32F401VE_STEVAL]
  565. platform = ststm32
  566. board = STEVAL_STM32F401VE
  567. platform_packages = framework-arduinoststm32@>=3.107,<4
  568. build_flags = ${common.build_flags}
  569. -DTARGET_STM32F4 -DARDUINO_STEVAL -DSTM32F401xE
  570. -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STEVAL_F401VE\"
  571. -DDISABLE_GENERIC_SERIALUSB
  572. -IMarlin/src/HAL/STM32
  573. build_unflags = -std=gnu++11
  574. extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
  575. buildroot/share/PlatformIO/scripts/STEVAL__F401XX.py
  576. lib_ignore = Adafruit NeoPixel, TMCStepper, SailfishLCD, SlowSoftI2CMaster, SoftwareSerial
  577. src_filter = ${common.default_src_filter} +<src/HAL/STM32>
  578. #
  579. # FLYF407ZG
  580. #
  581. [env:FLYF407ZG]
  582. platform = ststm32
  583. board = FLYF407ZG
  584. platform_packages = framework-arduinoststm32@>=3.107,<4
  585. build_flags = ${common.build_flags}
  586. -DSTM32F4 -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STM32F407ZG\"
  587. -DTARGET_STM32F4 -DVECT_TAB_OFFSET=0x8000
  588. -IMarlin/src/HAL/STM32
  589. build_unflags = -std=gnu++11
  590. extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
  591. lib_ignore = Adafruit NeoPixel, TMCStepper, SailfishLCD, SlowSoftI2CMaster, SoftwareSerial
  592. src_filter = ${common.default_src_filter} +<src/HAL/STM32>
  593. #
  594. # FYSETC S6 (STM32F446VET6 ARM Cortex-M4)
  595. #
  596. [env:FYSETC_S6]
  597. platform = ststm32
  598. board = fysetc_s6
  599. platform_packages =
  600. tool-stm32duino
  601. framework-arduinoststm32@>=3.107,<4
  602. build_flags = ${common.build_flags}
  603. -DTARGET_STM32F4 -std=gnu++14
  604. -DVECT_TAB_OFFSET=0x10000
  605. -DUSBCON -DUSBD_USE_CDC -DHAL_PCD_MODULE_ENABLED -DUSBD_VID=0x0483 '-DUSB_PRODUCT="FYSETC_S6"'
  606. build_unflags = -std=gnu++11
  607. extra_scripts = pre:buildroot/share/PlatformIO/scripts/fysetc_STM32S6.py
  608. src_filter = ${common.default_src_filter} +<src/HAL/STM32>
  609. lib_ignore = Arduino-L6470
  610. debug_tool = stlink
  611. #upload_protocol = stlink
  612. upload_protocol = serial
  613. #
  614. # STM32F407VET6 with RAMPS-like shield
  615. # 'Black' STM32F407VET6 board - http://wiki.stm32duino.com/index.php?title=STM32F407
  616. # Shield - https://github.com/jmz52/Hardware
  617. #
  618. [env:STM32F407VE_black]
  619. platform = ststm32
  620. board = blackSTM32F407VET6
  621. platform_packages = framework-arduinoststm32@>=3.107,<4
  622. build_flags = ${common.build_flags}
  623. -DTARGET_STM32F4 -DARDUINO_BLACK_F407VE
  624. -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"BLACK_F407VE\"
  625. -IMarlin/src/HAL/STM32
  626. build_unflags = -std=gnu++11
  627. extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
  628. lib_ignore = Adafruit NeoPixel, TMCStepper, SailfishLCD, SlowSoftI2CMaster, SoftwareSerial
  629. src_filter = ${common.default_src_filter} +<src/HAL/STM32>
  630. #
  631. # BigTreeTech SKR Pro (STM32F407ZGT6 ARM Cortex-M4)
  632. #
  633. [env:BIGTREE_SKR_PRO]
  634. platform = ststm32
  635. board = BigTree_SKR_Pro
  636. platform_packages = framework-arduinoststm32@>=3.107,<4
  637. build_flags = ${common.build_flags}
  638. -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STM32F407ZG\"
  639. -DTARGET_STM32F4 -DSTM32F407_5ZX -DVECT_TAB_OFFSET=0x8000
  640. -IMarlin/src/HAL/STM32
  641. build_unflags = -std=gnu++11
  642. extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
  643. lib_ignore = SoftwareSerial, SoftwareSerialM
  644. src_filter = ${common.default_src_filter} +<src/HAL/STM32>
  645. #upload_protocol = stlink
  646. #upload_command = "$PROJECT_PACKAGES_DIR/tool-stm32duino/stlink/ST-LINK_CLI.exe" -c SWD -P "$BUILD_DIR/firmware.bin" 0x8008000 -Rst -Run
  647. debug_tool = stlink
  648. debug_init_break =
  649. #
  650. # Bigtreetech GTR V1.0 (STM32F407IGT6 ARM Cortex-M4)
  651. #
  652. [env:BIGTREE_GTR_V1_0]
  653. platform = ststm32@>=5.7.0
  654. framework = arduino
  655. platform_packages = framework-arduinoststm32@>=3.107,<4
  656. board = BigTree_SKR_Pro
  657. extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
  658. build_flags = ${common.build_flags}
  659. -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STM32F407IG\"
  660. -DTARGET_STM32F4 -DSTM32F407IX -DVECT_TAB_OFFSET=0x8000
  661. -IMarlin/src/HAL/STM32
  662. lib_deps =
  663. U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
  664. LiquidCrystal
  665. TMCStepper@>=0.5.2,<1.0.0
  666. Adafruit NeoPixel
  667. LiquidTWI2=https://github.com/lincomatic/LiquidTWI2/archive/master.zip
  668. Arduino-L6470=https://github.com/ameyer/Arduino-L6470/archive/dev.zip
  669. lib_ignore = SoftwareSerial, SoftwareSerialM
  670. src_filter = ${common.default_src_filter} +<src/HAL/STM32>
  671. monitor_speed = 250000
  672. #
  673. # BigTreeTech BTT002 V1.0 (STM32F407VGT6 ARM Cortex-M4)
  674. #
  675. [env:BIGTREE_BTT002]
  676. platform = ststm32@5.6.0
  677. board = BigTree_Btt002
  678. platform_packages = framework-arduinoststm32@>=3.107,<4
  679. build_flags = ${common.build_flags}
  680. -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STM32F407VG\"
  681. -DTARGET_STM32F4 -DSTM32F407_5VX -DVECT_TAB_OFFSET=0x8000
  682. -DHAVE_HWSERIAL2
  683. -DHAVE_HWSERIAL3
  684. -DPIN_SERIAL2_RX=PD_6
  685. -DPIN_SERIAL2_TX=PD_5
  686. build_unflags = -std=gnu++11
  687. extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
  688. lib_ignore = Adafruit NeoPixel, SailfishLCD, SlowSoftI2CMaster
  689. src_filter = ${common.default_src_filter} +<src/HAL/STM32>
  690. #
  691. # Teensy 3.1 / 3.2 (ARM Cortex-M4)
  692. #
  693. [env:teensy31]
  694. platform = teensy
  695. board = teensy31
  696. lib_deps = ${common.lib_deps}
  697. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  698. lib_ignore = Adafruit NeoPixel
  699. src_filter = ${common.default_src_filter} +<src/HAL/TEENSY31_32>
  700. #
  701. # Teensy 3.5 / 3.6 (ARM Cortex-M4)
  702. #
  703. [env:teensy35]
  704. platform = teensy
  705. board = teensy35
  706. lib_deps = ${common.lib_deps}
  707. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  708. lib_ignore = Adafruit NeoPixel
  709. src_filter = ${common.default_src_filter} +<src/HAL/TEENSY35_36>
  710. #
  711. # Espressif ESP32
  712. #
  713. [env:esp32]
  714. platform = espressif32@1.11.2
  715. board = esp32dev
  716. build_flags = ${common.build_flags} -DCORE_DEBUG_LEVEL=0
  717. lib_deps = ${common.lib_deps}
  718. AsyncTCP=https://github.com/me-no-dev/AsyncTCP/archive/master.zip
  719. ESPAsyncWebServer=https://github.com/me-no-dev/ESPAsyncWebServer/archive/master.zip
  720. ESP3DLib=https://github.com/luc-github/ESP3DLib.git
  721. arduinoWebSockets=https://github.com/Links2004/arduinoWebSockets.git
  722. ESP32SSDP=https://github.com/luc-github/ESP32SSDP.git
  723. lib_ignore = LiquidCrystal, LiquidTWI2, SailfishLCD, ESPAsyncTCP
  724. src_filter = ${common.default_src_filter} +<src/HAL/ESP32>
  725. upload_speed = 115200
  726. #upload_port = marlinesp.local
  727. #board_build.flash_mode = qio
  728. #
  729. # Native
  730. # No supported Arduino libraries, base Marlin only
  731. #
  732. [env:linux_native]
  733. platform = native
  734. framework =
  735. build_flags = -D__PLAT_LINUX__ -std=gnu++17 -ggdb -g -lrt -lpthread -D__MARLIN_FIRMWARE__ -Wno-expansion-to-defined
  736. src_build_flags = -Wall -IMarlin/src/HAL/LINUX/include
  737. build_unflags = -Wall
  738. lib_ldf_mode = off
  739. lib_deps =
  740. src_filter = ${common.default_src_filter} +<src/HAL/LINUX>
  741. #
  742. # Adafruit Grand Central M4 (Atmel SAMD51P20A ARM Cortex-M4)
  743. #
  744. [env:SAMD51_grandcentral_m4]
  745. platform = atmelsam
  746. board = adafruit_grandcentral_m4
  747. build_flags = ${common.build_flags} -std=gnu++17 -Wno-register
  748. build_unflags = -std=gnu++11
  749. src_filter = ${common.default_src_filter} +<src/HAL/SAMD51>
  750. lib_deps = ${common.lib_deps}
  751. SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
  752. Adafruit_SPIFlash=https://github.com/adafruit/Adafruit_SPIFlash/archive/master.zip
  753. debug_tool = jlink
  754. #
  755. # RUMBA32
  756. #
  757. [env:rumba32_f446ve]
  758. platform = ststm32
  759. board = rumba32_f446ve
  760. build_flags = ${common.build_flags}
  761. -DSTM32F4xx
  762. -DARDUINO_RUMBA32_F446VE
  763. -DARDUINO_ARCH_STM32
  764. "-DBOARD_NAME=\"RUMBA32_F446VE\""
  765. -DSTM32F446xx
  766. -DUSBCON
  767. -DUSBD_VID=0x0483
  768. "-DUSB_MANUFACTURER=\"Unknown\""
  769. "-DUSB_PRODUCT=\"RUMBA32_F446VE\""
  770. -DHAL_PCD_MODULE_ENABLED
  771. -DUSBD_USE_CDC
  772. -DDISABLE_GENERIC_SERIALUSB
  773. -DHAL_UART_MODULE_ENABLED
  774. -Os
  775. lib_ignore = Adafruit NeoPixel
  776. src_filter = ${common.default_src_filter} +<src/HAL/STM32>
  777. monitor_speed = 500000
  778. upload_protocol = dfu
  779. #
  780. # MKS RUMBA32 (adds TMC2208/2209 UART interface and AUX-1)
  781. #
  782. [env:rumba32_mks]
  783. platform = ststm32
  784. board = rumba32_f446ve
  785. build_flags = ${common.build_flags}
  786. -DSTM32F4xx -DARDUINO_RUMBA32_F446VE -DARDUINO_ARCH_STM32 "-DBOARD_NAME=\"RUMBA32_F446VE\""
  787. -DSTM32F446xx -DUSBCON -DUSBD_VID=0x8000
  788. "-DUSB_MANUFACTURER=\"Unknown\""
  789. "-DUSB_PRODUCT=\"RUMBA32_F446VE\""
  790. -DHAL_PCD_MODULE_ENABLED
  791. -DUSBD_USE_CDC
  792. -DDISABLE_GENERIC_SERIALUSB
  793. -DHAL_UART_MODULE_ENABLED
  794. -Os
  795. lib_ignore = Adafruit NeoPixel
  796. src_filter = ${common.default_src_filter} +<src/HAL/STM32> +<src/HAL/STM32_F4_F7> -<src/HAL/STM32_F4_F7/STM32F7>
  797. upload_protocol = dfu
  798. #
  799. # Just print the dependency tree
  800. #
  801. [env:include_tree]
  802. platform = atmelavr
  803. board = megaatmega2560
  804. build_flags = -c -H -std=gnu++11 -Wall -Os -D__MARLIN_FIRMWARE__
  805. lib_deps = ${common.lib_deps}
  806. TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
  807. src_filter = +<src/Marlin.cpp>