My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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