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

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