2016-07-03 09:33:24 -04:00
|
|
|
#
|
2017-09-25 21:05:22 -04:00
|
|
|
# Marlin Firmware
|
|
|
|
# PlatformIO Configuration File
|
|
|
|
#
|
|
|
|
# For detailed documentation with EXAMPLES:
|
2016-07-03 09:33:24 -04:00
|
|
|
#
|
|
|
|
# http://docs.platformio.org/en/latest/projectconf.html
|
|
|
|
#
|
|
|
|
|
|
|
|
# Automatic targets - enable auto-uploading
|
|
|
|
# targets = upload
|
|
|
|
|
|
|
|
[platformio]
|
2017-05-06 06:17:07 -04:00
|
|
|
src_dir = Marlin
|
|
|
|
envs_dir = .pioenvs
|
|
|
|
lib_dir = .piolib
|
|
|
|
libdeps_dir = .piolibdeps
|
2017-05-10 07:11:13 -04:00
|
|
|
env_default = megaatmega2560
|
2016-07-03 09:33:24 -04:00
|
|
|
|
2017-04-30 15:07:01 -04:00
|
|
|
[common]
|
2017-06-17 17:19:42 -04:00
|
|
|
lib_deps =
|
|
|
|
U8glib@1.19.1
|
|
|
|
LiquidCrystal_I2C@1.1.2
|
|
|
|
https://github.com/lincomatic/LiquidTWI2.git
|
|
|
|
https://github.com/teemuatlut/TMC2130Stepper.git
|
2017-09-06 07:28:33 -04:00
|
|
|
https://github.com/trinamic/TMC26XStepper.git
|
2017-07-19 16:34:30 -04:00
|
|
|
https://github.com/adafruit/Adafruit_NeoPixel.git
|
2017-09-07 04:36:39 -04:00
|
|
|
https://github.com/ameyer/Arduino-L6470.git
|
2017-04-30 15:07:01 -04:00
|
|
|
|
2017-09-25 21:05:22 -04:00
|
|
|
default_src_filter = +<src/*> -<src/config>
|
|
|
|
|
|
|
|
#################################
|
|
|
|
# #
|
|
|
|
# Unique Core Architectures #
|
|
|
|
# #
|
|
|
|
# Add a new "env" below if no #
|
|
|
|
# entry has values suitable to #
|
|
|
|
# build for a given board. #
|
|
|
|
# #
|
|
|
|
#################################
|
|
|
|
|
|
|
|
#
|
|
|
|
# ATmega2560
|
|
|
|
#
|
2017-05-09 12:28:39 -04:00
|
|
|
[env:megaatmega2560]
|
2017-09-25 21:05:22 -04:00
|
|
|
platform = atmelavr
|
|
|
|
framework = arduino
|
|
|
|
board = megaatmega2560
|
2016-07-03 09:33:24 -04:00
|
|
|
build_flags = -I $BUILDSRC_DIR
|
|
|
|
board_f_cpu = 16000000L
|
2017-09-25 21:05:22 -04:00
|
|
|
lib_deps = ${common.lib_deps}
|
|
|
|
src_filter = ${common.default_src_filter}
|
2016-07-03 09:33:24 -04:00
|
|
|
|
2017-09-25 21:05:22 -04:00
|
|
|
#
|
|
|
|
# ATmega1280
|
|
|
|
#
|
2017-05-09 12:28:39 -04:00
|
|
|
[env:megaatmega1280]
|
2017-09-25 21:05:22 -04:00
|
|
|
platform = atmelavr
|
|
|
|
framework = arduino
|
|
|
|
board = megaatmega1280
|
2016-07-03 09:33:24 -04:00
|
|
|
build_flags = -I $BUILDSRC_DIR
|
|
|
|
board_f_cpu = 16000000L
|
2017-09-25 21:05:22 -04:00
|
|
|
lib_deps = ${common.lib_deps}
|
|
|
|
src_filter = ${common.default_src_filter}
|
2016-07-03 09:33:24 -04:00
|
|
|
|
2017-09-25 21:05:22 -04:00
|
|
|
#
|
2017-10-02 23:53:36 -04:00
|
|
|
# Teensy++ 2.0
|
2017-09-25 21:05:22 -04:00
|
|
|
#
|
2017-10-02 23:53:36 -04:00
|
|
|
# - PrintrBoard
|
|
|
|
# - PrintrBoard Rev.F
|
|
|
|
# - Brainwave Pro
|
|
|
|
#
|
|
|
|
[env:teensy20]
|
2017-09-25 21:05:22 -04:00
|
|
|
platform = teensy
|
|
|
|
framework = arduino
|
|
|
|
board = teensy20pp
|
2017-10-02 23:53:36 -04:00
|
|
|
build_flags = -I $BUILDSRC_DIR
|
2017-09-25 21:05:22 -04:00
|
|
|
#board_f_cpu = 20000000L ; Bug in Arduino framework disallows boards running at 20Mhz
|
|
|
|
lib_deps = ${common.lib_deps}
|
|
|
|
src_filter = ${common.default_src_filter}
|
2016-07-03 09:33:24 -04:00
|
|
|
|
2017-09-25 21:05:22 -04:00
|
|
|
#
|
|
|
|
# RAMBo
|
|
|
|
#
|
2016-08-19 07:11:23 -04:00
|
|
|
[env:rambo]
|
2017-09-25 21:05:22 -04:00
|
|
|
platform = atmelavr
|
|
|
|
framework = arduino
|
|
|
|
board = reprap_rambo
|
2016-08-19 07:11:23 -04:00
|
|
|
build_flags = -I $BUILDSRC_DIR
|
|
|
|
board_f_cpu = 16000000L
|
2017-09-25 21:05:22 -04:00
|
|
|
lib_deps = ${common.lib_deps}
|
|
|
|
src_filter = ${common.default_src_filter}
|
2017-08-13 06:55:11 -04:00
|
|
|
|
2017-09-25 21:05:22 -04:00
|
|
|
#
|
|
|
|
# Anet 1.0 - Melzi clone (ATmega1284p)
|
|
|
|
#
|
2017-08-13 06:55:11 -04:00
|
|
|
[env:anet10]
|
2017-09-25 21:05:22 -04:00
|
|
|
platform = atmelavr
|
|
|
|
framework = arduino
|
|
|
|
board = sanguino_atmega1284p
|
2017-08-13 06:55:11 -04:00
|
|
|
upload_speed = 57600
|
2017-09-25 21:05:22 -04:00
|
|
|
lib_deps = ${common.lib_deps}
|
|
|
|
src_filter = ${common.default_src_filter}
|
2017-08-19 21:04:41 -04:00
|
|
|
|
2017-09-25 21:05:22 -04:00
|
|
|
#
|
|
|
|
# Sanguinololu (ATmega644p)
|
|
|
|
#
|
2017-08-19 21:04:41 -04:00
|
|
|
[env:sanguino_atmega644p]
|
2017-09-25 21:05:22 -04:00
|
|
|
platform = atmelavr
|
|
|
|
framework = arduino
|
|
|
|
board = sanguino_atmega644p
|
|
|
|
lib_deps = ${common.lib_deps}
|
|
|
|
src_filter = ${common.default_src_filter}
|
2017-07-18 19:29:06 -04:00
|
|
|
|
2017-09-25 21:05:22 -04:00
|
|
|
#
|
|
|
|
# Due (Atmel SAM3X8E ARM Cortex-M3)
|
|
|
|
#
|
|
|
|
# - RAMPS4DUE
|
|
|
|
# - RADDS
|
|
|
|
#
|
2017-07-18 19:29:06 -04:00
|
|
|
[env:DUE]
|
2017-09-25 21:05:22 -04:00
|
|
|
platform = atmelsam
|
|
|
|
framework = arduino
|
|
|
|
board = due
|
|
|
|
build_flags = -I $BUILDSRC_DIR
|
|
|
|
lib_deps = ${common.lib_deps}
|
|
|
|
src_filter = ${common.default_src_filter}
|
2017-07-11 16:59:27 -04:00
|
|
|
|
2017-09-25 21:05:22 -04:00
|
|
|
#
|
|
|
|
# Teensy 3.5 / 3.6 (ARM Cortex-M4)
|
|
|
|
#
|
2017-07-11 16:59:27 -04:00
|
|
|
[env:teensy35]
|
2017-09-25 21:05:22 -04:00
|
|
|
platform = teensy
|
|
|
|
framework = arduino
|
|
|
|
board = teensy35
|
2017-07-11 16:59:27 -04:00
|
|
|
build_flags = -I $BUILDSRC_DIR
|
2017-09-25 21:05:22 -04:00
|
|
|
lib_deps = ${common.lib_deps}
|
|
|
|
lib_ignore = Adafruit NeoPixel
|
|
|
|
src_filter = ${common.default_src_filter}
|
2017-06-17 17:19:42 -04:00
|
|
|
|
2017-09-25 21:05:22 -04:00
|
|
|
#
|
|
|
|
# Re-ARM (NXP LPC1768 ARM Cortex-M3)
|
|
|
|
#
|
2017-06-17 17:19:42 -04:00
|
|
|
[env:Re-ARM]
|
2017-09-25 21:05:22 -04:00
|
|
|
platform = nxplpc
|
|
|
|
board_f_cpu = 100000000L
|
|
|
|
build_flags = !python Marlin/src/HAL/HAL_LPC1768/lpc1768_flag_script.py
|
2017-09-19 20:25:59 -04:00
|
|
|
src_build_flags = -Wall
|
2017-09-25 21:05:22 -04:00
|
|
|
build_unflags = -Wall
|
|
|
|
lib_ldf_mode = off
|
|
|
|
lib_extra_dirs = frameworks
|
|
|
|
lib_deps = U8glib-ARM, CMSIS-LPC1768
|
|
|
|
extra_scripts = Marlin/src/HAL/HAL_LPC1768/lpc1768_flag_script.py
|
|
|
|
src_filter = ${common.default_src_filter}
|
2017-06-17 19:36:10 -04:00
|
|
|
|
2017-09-25 21:05:22 -04:00
|
|
|
#
|
|
|
|
# Re-ARM (for debugging and development)
|
|
|
|
#
|
2017-06-17 19:36:10 -04:00
|
|
|
[env:Re-ARM_debug_and_upload]
|
|
|
|
# Segger JLink
|
2017-10-04 16:40:54 -04:00
|
|
|
platform = nxplpc
|
|
|
|
#framework = mbed
|
|
|
|
board = lpc1768
|
|
|
|
board_f_cpu = 100000000L
|
|
|
|
build_flags = !python Marlin/src/HAL/HAL_LPC1768/lpc1768_flag_script.py
|
|
|
|
lib_ldf_mode = off
|
|
|
|
lib_extra_dirs = frameworks
|
|
|
|
lib_deps = U8glib-ARM, CMSIS-LPC1768
|
|
|
|
src_filter = ${common.default_src_filter}
|
|
|
|
extra_scripts = Marlin/src/HAL/HAL_LPC1768/debug_extra_script.py, Marlin/src/HAL/HAL_LPC1768/lpc1768_flag_script.py
|
|
|
|
debug_tool = custom
|
|
|
|
debug_server =
|
2017-06-17 19:36:10 -04:00
|
|
|
C:\Program Files (x86)\SEGGER\JLink_V618d\JLinkGDBServerCL.exe
|
|
|
|
-select
|
|
|
|
USB
|
|
|
|
-port
|
|
|
|
2331
|
|
|
|
-device
|
|
|
|
LPC1768
|
|
|
|
-if
|
|
|
|
JTAG
|
|
|
|
-speed
|
|
|
|
auto
|
|
|
|
-noir
|