123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845 |
- #
- # Marlin Firmware
- # PlatformIO Configuration File
- #
- # For detailed documentation with EXAMPLES:
- #
- # http://docs.platformio.org/en/latest/projectconf.html
- #
-
- # Automatic targets - enable auto-uploading
- # targets = upload
-
- #
- # By default platformio build will abort after 5 errors.
- # Remove '-fmax-errors=5' from build_flags below to see all.
- #
-
- [platformio]
- src_dir = Marlin
- boards_dir = buildroot/share/PlatformIO/boards
- default_envs = megaatmega2560
-
- [common]
- default_src_filter = +<src/*> -<src/config> -<src/HAL> +<src/HAL/shared>
- extra_scripts = pre:buildroot/share/PlatformIO/scripts/common-cxxflags.py
- build_flags = -fmax-errors=5 -g -D__MARLIN_FIRMWARE__ -fmerge-all-constants
- lib_deps =
- LiquidCrystal
- TMCStepper@>=0.6.2,<1.0.0
- Adafruit NeoPixel
- U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
- Adafruit_MAX31865=https://github.com/adafruit/Adafruit_MAX31865/archive/master.zip
- LiquidTWI2=https://github.com/lincomatic/LiquidTWI2/archive/master.zip
- Arduino-L6470=https://github.com/ameyer/Arduino-L6470/archive/0.8.0.zip
- SailfishLCD=https://github.com/mikeshub/SailfishLCD/archive/master.zip
- SailfishRGB_LED=https://github.com/mikeshub/SailfishRGB_LED/archive/master.zip
- SlowSoftI2CMaster=https://github.com/mikeshub/SlowSoftI2CMaster/archive/master.zip
-
- # Globally defined properties
- # inherited by all environments
- [env]
- framework = arduino
- build_flags = ${common.build_flags}
- lib_deps = ${common.lib_deps}
- monitor_speed = 250000
-
- #################################
- # #
- # Unique Core Architectures #
- # #
- # Add a new "env" below if no #
- # entry has values suitable to #
- # build for a given board. #
- # #
- #################################
-
- #
- # ATmega2560
- #
- [env:megaatmega2560]
- platform = atmelavr
- board = megaatmega2560
- board_build.f_cpu = 16000000L
- lib_deps = ${common.lib_deps}
- TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
-
- #
- # ATmega1280
- #
- [env:megaatmega1280]
- platform = atmelavr
- board = megaatmega1280
- board_build.f_cpu = 16000000L
- lib_deps = ${common.lib_deps}
- TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
-
- #
- # RAMBo
- #
- [env:rambo]
- platform = atmelavr
- board = reprap_rambo
- board_build.f_cpu = 16000000L
- lib_deps = ${common.lib_deps}
- TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
-
- #
- # FYSETC F6 V1.3
- #
- [env:FYSETC_F6_13]
- platform = atmelavr
- board = fysetc_f6_13
- board_build.f_cpu = 16000000L
- lib_deps = ${common.lib_deps}
- TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
-
- #
- # FYSETC F6 V1.4
- #
- [env:FYSETC_F6_14]
- platform = atmelavr
- board = fysetc_f6_14
- board_build.f_cpu = 16000000L
- lib_deps = ${common.lib_deps}
- TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
-
- #
- # Sanguinololu (ATmega644p)
- #
- [env:sanguino_atmega644p]
- platform = atmelavr
- board = sanguino_atmega644p
- lib_deps = ${common.lib_deps}
- TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
-
- #
- # Sanguinololu (ATmega1284p)
- #
- [env:sanguino_atmega1284p]
- platform = atmelavr
- board = sanguino_atmega1284p
- lib_deps = ${common.lib_deps}
- TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
-
- #
- # Melzi and clones (ATmega1284p)
- #
- [env:melzi]
- platform = atmelavr
- board = sanguino_atmega1284p
- lib_deps = ${common.lib_deps}
- TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
- lib_ignore = TMCStepper
- upload_speed = 57600
-
- #
- # Melzi and clones (Optiboot bootloader)
- #
- [env:melzi_optiboot]
- platform = atmelavr
- board = sanguino_atmega1284p
- lib_deps = ${common.lib_deps}
- TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
- lib_ignore = TMCStepper
- upload_speed = 115200
-
- #
- # AT90USB1286 boards using CDC bootloader
- # - BRAINWAVE
- # - BRAINWAVE_PRO
- # - SAV_MKI
- # - TEENSYLU
- #
- [env:at90usb1286_cdc]
- platform = teensy
- board = at90usb1286
- lib_deps = ${common.lib_deps}
- TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
- lib_ignore = TMCStepper
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
-
- #
- # AT90USB1286 boards using DFU bootloader
- # - PrintrBoard
- # - PrintrBoard Rev.F
- # - ? 5DPRINT ?
- #
- [env:at90usb1286_dfu]
- platform = teensy
- board = at90usb1286
- lib_deps = ${common.lib_deps}
- lib_ignore = TMCStepper
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_AVR>
-
- #
- # Due (Atmel SAM3X8E ARM Cortex-M3)
- #
- # - RAMPS4DUE
- # - RADDS
- #
- [env:DUE]
- platform = atmelsam
- board = due
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_DUE>
-
- [env:DUE_USB]
- platform = atmelsam
- board = dueUSB
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_DUE>
-
- [env:DUE_debug]
- # Used when WATCHDOG_RESET_MANUAL is enabled
- platform = atmelsam
- board = due
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_DUE>
- build_flags = ${common.build_flags}
- -funwind-tables
- -mpoke-function-name
-
- #
- # NXP LPC176x ARM Cortex-M3
- #
- [env:LPC1768]
- platform = https://github.com/p3p/pio-nxplpc-arduino-lpc176x/archive/0.1.2.zip
- board = nxp_lpc1768
- build_flags = -DU8G_HAL_LINKS -IMarlin/src/HAL/HAL_LPC1768/include -IMarlin/src/HAL/HAL_LPC1768/u8g ${common.build_flags}
- # debug options for backtrace
- # -funwind-tables
- # -mpoke-function-name
- lib_ldf_mode = off
- lib_compat_mode = strict
- extra_scripts = Marlin/src/HAL/HAL_LPC1768/upload_extra_script.py
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_LPC1768>
- lib_deps = Servo
- LiquidCrystal
- U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
- TMCStepper@>=0.6.1,<1.0.0
- Adafruit NeoPixel=https://github.com/p3p/Adafruit_NeoPixel/archive/release.zip
- SailfishLCD=https://github.com/mikeshub/SailfishLCD/archive/master.zip
-
- [env:LPC1769]
- platform = https://github.com/p3p/pio-nxplpc-arduino-lpc176x/archive/0.1.2.zip
- board = nxp_lpc1769
- build_flags = -DU8G_HAL_LINKS -IMarlin/src/HAL/HAL_LPC1768/include -IMarlin/src/HAL/HAL_LPC1768/u8g ${common.build_flags}
- # debug options for backtrace
- # -funwind-tables
- # -mpoke-function-name
- lib_ldf_mode = off
- lib_compat_mode = strict
- extra_scripts = Marlin/src/HAL/HAL_LPC1768/upload_extra_script.py
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_LPC1768>
- lib_deps = Servo
- LiquidCrystal
- U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
- TMCStepper@>=0.6.1,<1.0.0
- Adafruit NeoPixel=https://github.com/p3p/Adafruit_NeoPixel/archive/release.zip
- SailfishLCD=https://github.com/mikeshub/SailfishLCD/archive/master.zip
-
- #
- # STM32F103RC
- #
- [env:STM32F103RC]
- platform = ststm32
- board = genericSTM32F103RC
- platform_packages = tool-stm32duino
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
- ${common.build_flags} -std=gnu++14
- build_unflags = -std=gnu++11
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_deps = ${common.lib_deps}
- SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
- lib_ignore = Adafruit NeoPixel, SPI
- monitor_speed = 115200
-
- #
- # STM32F103RC_fysetc
- #
- [env:STM32F103RC_fysetc]
- platform = ststm32
- board = genericSTM32F103RC
- #board_build.core = maple
- platform_packages = tool-stm32duino
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
- ${common.build_flags} -std=gnu++14 -DDEBUG_LEVEL=0 -DHAVE_SW_SERIAL
- build_unflags = -std=gnu++11
- extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_deps = ${common.lib_deps}
- SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
- lib_ignore = Adafruit NeoPixel, SPI
- lib_ldf_mode = chain
- debug_tool = stlink
- upload_protocol = serial
-
- #
- # BigTree SKR Mini V1.1 / SKR mini E3 / SKR E3 DIP (STM32F103RCT6 ARM Cortex-M3)
- #
- # STM32F103RC_bigtree ............. RCT6 with 256K
- # STM32F103RC_bigtree_USB ......... RCT6 with 256K (USB mass storage)
- # STM32F103RC_bigtree_512K ........ RCT6 with 512K
- # STM32F103RC_bigtree_512K_USB .... RCT6 with 512K (USB mass storage)
- #
-
- [env:STM32F103RC_bigtree]
- platform = ststm32
- board = genericSTM32F103RC
- platform_packages = tool-stm32duino
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
- ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4
- build_unflags = -std=gnu++11
- extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_deps = ${common.lib_deps}
- SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
- lib_ignore = Adafruit NeoPixel, SPI
- monitor_speed = 115200
-
- [env:STM32F103RC_bigtree_USB]
- platform = ststm32
- board = genericSTM32F103RC
- platform_packages = tool-stm32duino
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
- ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DUSE_USB_COMPOSITE
- build_unflags = -std=gnu++11
- extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_deps = ${common.lib_deps}
- SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
- lib_ignore = Adafruit NeoPixel, SPI
- monitor_speed = 115200
-
- [env:STM32F103RC_bigtree_512K]
- platform = ststm32
- board = genericSTM32F103RC
- board_upload.maximum_size=524288
- platform_packages = tool-stm32duino
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
- ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DSTM32_FLASH_SIZE=512
- build_unflags = -std=gnu++11
- extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_deps = ${common.lib_deps}
- SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
- lib_ignore = Adafruit NeoPixel, SPI
- monitor_speed = 115200
-
- [env:STM32F103RC_bigtree_512K_USB]
- platform = ststm32
- board = genericSTM32F103RC
- board_upload.maximum_size=524288
- platform_packages = tool-stm32duino
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
- ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DSTM32_FLASH_SIZE=512 -DUSE_USB_COMPOSITE
- build_unflags = -std=gnu++11
- extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_deps = ${common.lib_deps}
- SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
- lib_ignore = Adafruit NeoPixel, SPI
- monitor_speed = 115200
-
- #
- # STM32F103RE
- #
- [env:STM32F103RE]
- platform = ststm32
- board = genericSTM32F103RE
- platform_packages = tool-stm32duino
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
- ${common.build_flags} -std=gnu++14
- build_unflags = -std=gnu++11
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_deps = ${common.lib_deps}
- SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
- lib_ignore = Adafruit NeoPixel, SPI
- monitor_speed = 115200
-
- #
- # STM32F103RE_bigtree ............. RET6
- # STM32F103RE_bigtree_USB ......... RET6 (USB mass storage)
- #
- [env:STM32F103RE_bigtree]
- platform = ststm32
- board = genericSTM32F103RE
- platform_packages = tool-stm32duino
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
- ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4
- build_unflags = -std=gnu++11
- extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_deps = ${common.lib_deps}
- SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
- lib_ignore = Adafruit NeoPixel, SPI
- debug_tool = stlink
- upload_protocol = stlink
- monitor_speed = 115200
-
- [env:STM32F103RE_bigtree_USB]
- platform = ststm32
- board = genericSTM32F103RE
- platform_packages = tool-stm32duino
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
- ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DUSE_USB_COMPOSITE
- build_unflags = -std=gnu++11
- extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_deps = ${common.lib_deps}
- SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
- lib_ignore = Adafruit NeoPixel, SPI
- debug_tool = stlink
- upload_protocol = stlink
- monitor_speed = 115200
-
- #
- # STM32F4 with STM32GENERIC
- #
- [env:STM32F4]
- platform = ststm32
- board = disco_f407vg
- build_flags = ${common.build_flags} -DUSE_STM32GENERIC -DSTM32GENERIC -DSTM32F4 -DMENU_USB_SERIAL -DMENU_SERIAL=SerialUSB -DHAL_IWDG_MODULE_ENABLED
- lib_ignore = Adafruit NeoPixel, TMCStepper
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32_F4_F7> -<src/HAL/HAL_STM32_F4_F7/STM32F7>
-
- #
- # STM32F7 with STM32GENERIC
- #
- [env:STM32F7]
- platform = ststm32
- board = remram_v1
- build_flags = ${common.build_flags} -DUSE_STM32GENERIC -DSTM32GENERIC -DSTM32F7 -DMENU_USB_SERIAL -DMENU_SERIAL=SerialUSB -DHAL_IWDG_MODULE_ENABLED
- lib_ignore = Adafruit NeoPixel, TMCStepper
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32_F4_F7> -<src/HAL/HAL_STM32_F4_F7/STM32F4>
-
- #
- # ARMED (STM32)
- #
- [env:ARMED]
- platform = ststm32
- board = armed_v1
- build_flags = ${common.build_flags}
- -DUSBCON -DUSBD_VID=0x0483 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="ARMED_V1"' -DUSBD_USE_CDC
- -O2 -ffreestanding -fsigned-char -fno-move-loop-invariants -fno-strict-aliasing -std=gnu11 -std=gnu++11
- -IMarlin/src/HAL/HAL_STM32
- lib_ignore = Adafruit NeoPixel, SoftwareSerial
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32>
-
- #
- # Geeetech GTM32 (STM32F103VET6)
- #
- [env:STM32F103VE_GTM32]
- platform = ststm32
- board = genericSTM32F103VE
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
- ${common.build_flags} -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++14 -MMD -ffunction-sections -fdata-sections -nostdlib
- -DBOARD_generic_stm32f103v -DARDUINO_GENERIC_STM32F103V -DARDUINO_ARCH_STM32F1
- -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOE -DERROR_LED_PIN=6
- build_unflags = -std=gnu++11
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_ignore = Adafruit NeoPixel, SPI
- upload_protocol = serial
-
- #
- # Longer 3D board in Alfawise U20 (STM32F103VET6)
- #
- [env:STM32F103VE_longer]
- platform = ststm32
- board = genericSTM32F103VE
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
- ${common.build_flags} -std=gnu++14 -USERIAL_USB
- -DSTM32F1xx -DU20 -DTS_V12
- build_unflags = -std=gnu++11 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DERROR_LED_PORT=GPIOE -DERROR_LED_PIN=6
- extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103VE_longer.py
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_ignore = Adafruit NeoPixel, LiquidTWI2, SPI
-
- #
- # MKS Robin Mini (STM32F103VET6)
- #
- [env:mks_robin_mini]
- platform = ststm32
- board = genericSTM32F103VE
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
- ${common.build_flags} -std=gnu++14
- build_unflags = -std=gnu++11
- extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_mini.py
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_ignore = Adafruit NeoPixel, SPI
-
- #
- # MKS Robin Nano (STM32F103VET6)
- #
- [env:mks_robin_nano]
- platform = ststm32
- board = genericSTM32F103VE
- platform_packages = tool-stm32duino
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
- ${common.build_flags} -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4
- build_unflags = -std=gnu++11
- extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_nano.py
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_deps = ${common.lib_deps}
- SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
- lib_ignore = Adafruit NeoPixel, SPI
-
- #
- # MKS Robin (STM32F103ZET6)
- #
- [env:mks_robin]
- platform = ststm32
- board = genericSTM32F103ZE
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
- ${common.build_flags} -std=gnu++14 -DSTM32_XL_DENSITY
- build_unflags = -std=gnu++11
- extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin.py
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_ignore = Adafruit NeoPixel, SPI
-
- #
- # MKS Robin Pro (STM32F103ZET6)
- #
- [env:mks_robin_pro]
- platform = ststm32
- board = genericSTM32F103ZE
- extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_pro.py
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
- ${common.build_flags} -std=gnu++14 -DSTM32_XL_DENSITY
- build_unflags = -std=gnu++11
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_deps = ${common.lib_deps}
- lib_ignore = Adafruit NeoPixel, SPI, TMCStepper
-
- #
- # MKS Robin Lite/Lite2 (STM32F103RCT6)
- #
- [env:mks_robin_lite]
- platform = ststm32
- board = genericSTM32F103RC
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
- ${common.build_flags} -std=gnu++14
- build_unflags = -std=gnu++11
- extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_lite.py
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_ignore = Adafruit NeoPixel, SPI
-
- #
- # MKS ROBIN LITE3 (STM32F103RCT6)
- #
- [env:mks_robin_lite3]
- platform = ststm32
- board = genericSTM32F103RC
- extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_lite3.py
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
- ${common.build_flags} -std=gnu++14
- build_unflags = -std=gnu++11
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_deps = ${common.lib_deps}
- lib_ignore = Adafruit NeoPixel, SPI
-
- #
- # JGAurora A5S A1 (STM32F103ZET6)
- #
- [env:jgaurora_a5s_a1]
- platform = ststm32
- board = genericSTM32F103ZE
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
- ${common.build_flags} -DSTM32F1xx -std=gnu++14 -DSTM32_XL_DENSITY
- build_unflags = -std=gnu++11
- extra_scripts = buildroot/share/PlatformIO/scripts/jgaurora_a5s_a1_with_bootloader.py
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_ignore = Adafruit NeoPixel, SPI
-
- #
- # Malyan M200 (STM32F103CB)
- #
- [env:STM32F103CB_malyan]
- platform = ststm32
- board = malyanM200
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py -DMCU_STM32F103CB -D __STM32F1__=1 -std=c++1y -D MOTHERBOARD="BOARD_MALYAN_M200" -DSERIAL_USB -ffunction-sections -fdata-sections -Wl,--gc-sections
- -DDEBUG_LEVEL=0 -D__MARLIN_FIRMWARE__
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_ignore = Adafruit NeoPixel, LiquidCrystal, LiquidTWI2, TMCStepper, U8glib-HAL, SPI
-
- #
- # Chitu boards like Tronxy X5s (STM32F103ZET6)
- #
- [env:chitu_f103]
- platform = ststm32
- board = genericSTM32F103ZE
- build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py
- ${common.build_flags} -DSTM32F1xx -std=gnu++14 -DSTM32_XL_DENSITY
- build_unflags = -std=gnu++11 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG= -DERROR_LED_PORT=GPIOE -DERROR_LED_PIN=6
- extra_scripts = buildroot/share/PlatformIO/scripts/chitu_crypt.py
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32F1>
- lib_ignore = Adafruit NeoPixel
-
- #
- # STM32F401VE
- # 'STEVAL-3DP001V1' STM32F401VE board - https://www.st.com/en/evaluation-tools/steval-3dp001v1.html
- #
- [env:STM32F401VE_STEVAL]
- platform = ststm32
- board = STEVAL_STM32F401VE
- platform_packages = framework-arduinoststm32@>=3.107,<4
- build_flags = ${common.build_flags}
- -DTARGET_STM32F4 -DARDUINO_STEVAL -DSTM32F401xE
- -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STEVAL_F401VE\"
- -DDISABLE_GENERIC_SERIALUSB
- -IMarlin/src/HAL/HAL_STM32
- build_unflags = -std=gnu++11
- extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
- buildroot/share/PlatformIO/scripts/STEVAL__F401XX.py
- lib_ignore = Adafruit NeoPixel, TMCStepper, SailfishLCD, SailfishRGB_LED, SlowSoftI2CMaster, SoftwareSerial
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32>
-
- #
- # FLYF407ZG
- #
- [env:FLYF407ZG]
- platform = ststm32
- board = FLYF407ZG
- platform_packages = framework-arduinoststm32@>=3.107,<4
- build_flags = ${common.build_flags}
- -DSTM32F4 -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STM32F407ZG\"
- -DTARGET_STM32F4 -DVECT_TAB_OFFSET=0x8000
- -IMarlin/src/HAL/HAL_STM32
- build_unflags = -std=gnu++11
- extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
- lib_ignore = Adafruit NeoPixel, TMCStepper, SailfishLCD, SailfishRGB_LED, SlowSoftI2CMaster, SoftwareSerial
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32>
-
-
- #
- # FYSETC S6 (STM32F446VET6 ARM Cortex-M4)
- #
- [env:FYSETC_S6]
- platform = ststm32
- board = fysetc_s6
- platform_packages = tool-stm32duino
- build_flags = ${common.build_flags}
- -DTARGET_STM32F4 -std=gnu++14
- -DVECT_TAB_OFFSET=0x10000
- -DUSBCON -DUSBD_USE_CDC -DHAL_PCD_MODULE_ENABLED -DUSBD_VID=0x0483 '-DUSB_PRODUCT="FYSETC_S6"'
- build_unflags = -std=gnu++11
- extra_scripts = pre:buildroot/share/PlatformIO/scripts/fysetc_STM32S6.py
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32>
- lib_ignore = Arduino-L6470
- debug_tool = stlink
- #upload_protocol = stlink
- upload_protocol = serial
-
- #
- # STM32F407VET6 with RAMPS-like shield
- # 'Black' STM32F407VET6 board - http://wiki.stm32duino.com/index.php?title=STM32F407
- # Shield - https://github.com/jmz52/Hardware
- #
- [env:STM32F407VE_black]
- platform = ststm32
- board = blackSTM32F407VET6
- platform_packages = framework-arduinoststm32@>=3.107,<4
- build_flags = ${common.build_flags}
- -DTARGET_STM32F4 -DARDUINO_BLACK_F407VE
- -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"BLACK_F407VE\"
- -IMarlin/src/HAL/HAL_STM32
- build_unflags = -std=gnu++11
- extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
- lib_ignore = Adafruit NeoPixel, TMCStepper, SailfishLCD, SailfishRGB_LED, SlowSoftI2CMaster, SoftwareSerial
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32>
-
- #
- # BigTreeTech SKR Pro (STM32F407ZGT6 ARM Cortex-M4)
- #
- [env:BIGTREE_SKR_PRO]
- platform = ststm32
- board = BigTree_SKR_Pro
- platform_packages = framework-arduinoststm32@>=3.107,<4
- build_flags = ${common.build_flags}
- -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STM32F407ZG\"
- -DTARGET_STM32F4 -DSTM32F407_5ZX -DVECT_TAB_OFFSET=0x8000
- -IMarlin/src/HAL/HAL_STM32
- build_unflags = -std=gnu++11
- extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
- lib_ignore = SoftwareSerial, SoftwareSerialM
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32>
- #upload_protocol = stlink
- #upload_command = "$PROJECT_PACKAGES_DIR/tool-stm32duino/stlink/ST-LINK_CLI.exe" -c SWD -P "$BUILD_DIR/firmware.bin" 0x8008000 -Rst -Run
- debug_tool = stlink
- debug_init_break =
-
- #
- # Bigtreetech GTR V1.0 (STM32F407IGT6 ARM Cortex-M4)
- #
- [env:BIGTREE_GTR_V1_0]
- platform = ststm32@>=5.7.0
- framework = arduino
- platform_packages = framework-arduinoststm32@>=3.10700.191028
- board = BigTree_SKR_Pro
- extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
- build_flags = ${common.build_flags}
- -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STM32F407IG\"
- -DTARGET_STM32F4 -DSTM32F407IX -DVECT_TAB_OFFSET=0x8000
-
- -IMarlin/src/HAL/HAL_STM32
- lib_deps =
- U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
- LiquidCrystal
- TMCStepper@>=0.5.2,<1.0.0
- Adafruit NeoPixel
- LiquidTWI2=https://github.com/lincomatic/LiquidTWI2/archive/master.zip
- Arduino-L6470=https://github.com/ameyer/Arduino-L6470/archive/0.7.0.zip
- lib_ignore = SoftwareSerial, SoftwareSerialM
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32>
- monitor_speed = 250000
-
- #
- # BigTreeTech BTT002 (STM32F407VET6 ARM Cortex-M4)
- #
- [env:BIGTREE_BTT002]
- platform = ststm32@5.6.0
- board = BigTree_Btt002
- platform_packages = framework-arduinoststm32@>=3.107,<4
- build_flags = ${common.build_flags}
- -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STM32F407VE\"
- -DTARGET_STM32F4 -DSTM32F407_5VX -DVECT_TAB_OFFSET=0x8000
- -DHAVE_HWSERIAL2
- -DHAVE_HWSERIAL3
- -DPIN_SERIAL2_RX=PD_6
- -DPIN_SERIAL2_TX=PD_5
- build_unflags = -std=gnu++11
- extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
- lib_ignore = Adafruit NeoPixel, SailfishLCD, SailfishRGB_LED, SlowSoftI2CMaster
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32>
-
- #
- # Teensy 3.1 / 3.2 (ARM Cortex-M4)
- #
- [env:teensy31]
- platform = teensy
- board = teensy31
- lib_deps = ${common.lib_deps}
- TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
- lib_ignore = Adafruit NeoPixel
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_TEENSY31_32>
-
- #
- # Teensy 3.5 / 3.6 (ARM Cortex-M4)
- #
- [env:teensy35]
- platform = teensy
- board = teensy35
- lib_deps = ${common.lib_deps}
- TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
- lib_ignore = Adafruit NeoPixel
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_TEENSY35_36>
-
- #
- # Espressif ESP32
- #
- [env:esp32]
- platform = espressif32@1.11.2
- board = esp32dev
- build_flags = ${common.build_flags} -DCORE_DEBUG_LEVEL=0
- lib_deps = ${common.lib_deps}
- AsyncTCP=https://github.com/me-no-dev/AsyncTCP/archive/master.zip
- ESPAsyncWebServer=https://github.com/me-no-dev/ESPAsyncWebServer/archive/master.zip
- ESP3DLib=https://github.com/luc-github/ESP3DLib.git
- arduinoWebSockets=https://github.com/Links2004/arduinoWebSockets.git
- ESP32SSDP=https://github.com/luc-github/ESP32SSDP.git
- lib_ignore = LiquidCrystal, LiquidTWI2, SailfishLCD, SailfishRGB_LED, ESPAsyncTCP
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_ESP32>
- upload_speed = 115200
- #upload_port = marlinesp.local
- #board_build.flash_mode = qio
-
- #
- # Native
- # No supported Arduino libraries, base Marlin only
- #
- [env:linux_native]
- platform = native
- framework =
- build_flags = -D__PLAT_LINUX__ -std=gnu++17 -ggdb -g -lrt -lpthread -D__MARLIN_FIRMWARE__ -Wno-expansion-to-defined
- src_build_flags = -Wall -IMarlin/src/HAL/HAL_LINUX/include
- build_unflags = -Wall
- lib_ldf_mode = off
- lib_deps =
- extra_scripts =
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_LINUX>
-
- #
- # Adafruit Grand Central M4 (Atmel SAMD51P20A ARM Cortex-M4)
- #
- [env:SAMD51_grandcentral_m4]
- platform = atmelsam
- board = adafruit_grandcentral_m4
- build_flags = ${common.build_flags} -std=gnu++17
- extra_scripts = ${common.extra_scripts}
- build_unflags = -std=gnu++11
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_SAMD51>
- debug_tool = jlink
-
- #
- # RUMBA32
- #
- [env:rumba32_f446ve]
- platform = ststm32
- board = rumba32_f446ve
- build_flags = ${common.build_flags}
- -DSTM32F4xx
- -DARDUINO_RUMBA32_F446VE
- -DARDUINO_ARCH_STM32
- "-DBOARD_NAME=\"RUMBA32_F446VE\""
- -DSTM32F446xx
- -DUSBCON
- -DUSBD_VID=0x0483
- "-DUSB_MANUFACTURER=\"Unknown\""
- "-DUSB_PRODUCT=\"RUMBA32_F446VE\""
- -DHAL_PCD_MODULE_ENABLED
- -DUSBD_USE_CDC
- -DDISABLE_GENERIC_SERIALUSB
- -DHAL_UART_MODULE_ENABLED
- -Os
- lib_ignore = Adafruit NeoPixel
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32>
- monitor_speed = 500000
- upload_protocol = dfu
-
- #
- # MKS RUMBA32 (adds TMC2208/2209 UART interface and AUX-1)
- #
- [env:rumba32_mks]
- platform = ststm32
- board = rumba32_f446ve
- build_flags = ${common.build_flags}
- -DSTM32F4xx -DARDUINO_RUMBA32_F446VE -DARDUINO_ARCH_STM32 "-DBOARD_NAME=\"RUMBA32_F446VE\""
- -DSTM32F446xx -DUSBCON -DUSBD_VID=0x8000
- "-DUSB_MANUFACTURER=\"Unknown\""
- "-DUSB_PRODUCT=\"RUMBA32_F446VE\""
- -DHAL_PCD_MODULE_ENABLED
- -DUSBD_USE_CDC
- -DDISABLE_GENERIC_SERIALUSB
- -DHAL_UART_MODULE_ENABLED
- -Os
- lib_ignore = Adafruit NeoPixel
- src_filter = ${common.default_src_filter} +<src/HAL/HAL_STM32> +<src/HAL/HAL_STM32_F4_F7> -<src/HAL/HAL_STM32_F4_F7/STM32F7>
- upload_protocol = dfu
-
- #
- # Just print the dependency tree
- #
- [env:include_tree]
- platform = atmelavr
- board = megaatmega2560
- build_flags = -c -H -std=gnu++11 -Wall -Os -D__MARLIN_FIRMWARE__
- lib_deps = ${common.lib_deps}
- TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
- src_filter = +<src/Marlin.cpp>
|