mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2026-01-05 22:27:43 -07:00
Some checks failed
CI - Build Tests / Build Test (push) Waiting to run
CI - Unit Tests / Unit Test (push) Waiting to run
CI - Validate Source Files / Validate Source Files (push) Waiting to run
CI - Validate boards.h / Validate boards.h (push) Has been cancelled
CI - Validate Pins Files / Validate Pins Files (push) Has been cancelled
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
90 lines
2 KiB
INI
90 lines
2 KiB
INI
#
|
|
# Marlin Firmware
|
|
# PlatformIO Configuration File
|
|
#
|
|
|
|
#################################
|
|
# #
|
|
# Teensy Architectures #
|
|
# #
|
|
#################################
|
|
|
|
#
|
|
# Teensy AVR
|
|
#
|
|
[teensy_avr]
|
|
platform = teensy
|
|
platform_packages = toolchain-atmelavr@~1.70300.0
|
|
extends = common_avr8
|
|
lib_ignore = ${env:common_avr8.lib_ignore}, NativeEthernet
|
|
|
|
#
|
|
# AT90USB1286 boards using CDC bootloader
|
|
# e.g., BRAINWAVE, BRAINWAVE_PRO, SAV_MKI, TEENSYLU
|
|
#
|
|
[env:at90usb1286_cdc]
|
|
extends = teensy_avr
|
|
board = marlin_at90usb1286
|
|
lib_ignore = ${teensy_avr.lib_ignore}, Teensy_ADC
|
|
|
|
#
|
|
# AT90USB1286 boards using DFU bootloader
|
|
# e.g., Printrboard, Printrboard Rev.F, 5DPRINT
|
|
#
|
|
[env:at90usb1286_dfu]
|
|
extends = env:at90usb1286_cdc
|
|
|
|
#
|
|
# Teensy++ 2.0
|
|
#
|
|
[env:teensy20]
|
|
extends = teensy_avr
|
|
board = teensy2pp
|
|
|
|
#
|
|
# Teensy 3.x - 4.x
|
|
#
|
|
[teensy_arm]
|
|
platform = teensy@~4.12.0
|
|
build_src_filter = ${common.default_src_filter}
|
|
lib_ignore = NativeEthernet
|
|
|
|
#
|
|
# Teensy 3.1 / 3.2 (ARM Cortex-M4)
|
|
#
|
|
[env:teensy31]
|
|
extends = teensy_arm
|
|
board = teensy31
|
|
build_src_filter = ${teensy_arm.build_src_filter} +<src/HAL/TEENSY31_32>
|
|
|
|
#
|
|
# Teensy 3.5 / 3.6 (ARM Cortex-M4)
|
|
#
|
|
[env:teensy35]
|
|
extends = teensy_arm
|
|
board = teensy35
|
|
build_src_filter = ${teensy_arm.build_src_filter} +<src/HAL/TEENSY35_36>
|
|
|
|
[env:teensy36]
|
|
extends = teensy_arm
|
|
board = teensy36
|
|
build_src_filter = ${teensy_arm.build_src_filter} +<src/HAL/TEENSY35_36>
|
|
|
|
#
|
|
# Teensy 4.0 (ARM Cortex-M7)
|
|
#
|
|
[env:teensy40]
|
|
extends = teensy_arm
|
|
board = teensy40
|
|
build_src_filter = ${teensy_arm.build_src_filter} +<src/HAL/TEENSY40_41>
|
|
build_flags = -DIS_TEENSY40
|
|
|
|
#
|
|
# Teensy 4.1 (ARM Cortex-M7)
|
|
#
|
|
[env:teensy41]
|
|
extends = teensy_arm
|
|
board = teensy41
|
|
build_src_filter = ${teensy_arm.build_src_filter} +<src/HAL/TEENSY40_41>
|
|
build_flags = -DIS_TEENSY41
|
|
lib_ignore =
|