2016-07-03 09:33:24 -04:00
|
|
|
#
|
|
|
|
# Project Configuration File
|
|
|
|
#
|
|
|
|
# A detailed documentation with the EXAMPLES is located here:
|
|
|
|
# http://docs.platformio.org/en/latest/projectconf.html
|
|
|
|
#
|
|
|
|
|
|
|
|
# A sign `#` at the beginning of the line indicates a comment
|
|
|
|
# Comment lines are ignored.
|
|
|
|
|
|
|
|
# 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-09-19 20:25:59 -04:00
|
|
|
default_src_filter = +<*> -<src/config/examples>
|
2017-04-30 15:07:01 -04:00
|
|
|
|
2017-05-09 12:28:39 -04:00
|
|
|
[env:megaatmega2560]
|
2016-07-03 09:33:24 -04:00
|
|
|
platform = atmelavr
|
|
|
|
framework = arduino
|
2017-05-09 12:28:39 -04:00
|
|
|
board = megaatmega2560
|
2016-07-03 09:33:24 -04:00
|
|
|
build_flags = -I $BUILDSRC_DIR
|
|
|
|
board_f_cpu = 16000000L
|
2017-04-30 15:07:01 -04:00
|
|
|
lib_deps = ${common.lib_deps}
|
2017-08-26 16:25:25 -04:00
|
|
|
src_filter = ${common.default_src_filter}
|
2016-07-03 09:33:24 -04:00
|
|
|
|
2017-05-09 12:28:39 -04:00
|
|
|
[env:megaatmega1280]
|
2016-07-03 09:33:24 -04:00
|
|
|
platform = atmelavr
|
|
|
|
framework = arduino
|
2017-05-09 12:28:39 -04:00
|
|
|
board = megaatmega1280
|
2016-07-03 09:33:24 -04:00
|
|
|
build_flags = -I $BUILDSRC_DIR
|
|
|
|
board_f_cpu = 16000000L
|
2017-04-30 15:07:01 -04:00
|
|
|
lib_deps = ${common.lib_deps}
|
2017-08-26 16:25:25 -04:00
|
|
|
src_filter = ${common.default_src_filter}
|
2016-07-03 09:33:24 -04:00
|
|
|
|
|
|
|
[env:printrboard]
|
|
|
|
platform = teensy
|
|
|
|
framework = arduino
|
|
|
|
board = teensy20pp
|
2017-05-09 12:28:39 -04:00
|
|
|
build_flags = -I $BUILDSRC_DIR -D MOTHERBOARD=BOARD_PRINTRBOARD
|
2016-07-03 09:33:24 -04:00
|
|
|
# Bug in arduino framework does not allow boards running at 20Mhz
|
|
|
|
#board_f_cpu = 20000000L
|
2017-04-30 15:07:01 -04:00
|
|
|
lib_deps = ${common.lib_deps}
|
2017-08-26 16:25:25 -04:00
|
|
|
src_filter = ${common.default_src_filter}
|
2016-07-03 09:33:24 -04:00
|
|
|
|
2017-07-25 22:09:08 -04:00
|
|
|
[env:printrboard_revf]
|
|
|
|
platform = teensy
|
|
|
|
framework = arduino
|
|
|
|
board = teensy20pp
|
|
|
|
build_flags = -I $BUILDSRC_DIR -D MOTHERBOARD=BOARD_PRINTRBOARD_REVF
|
|
|
|
lib_deps = ${common.lib_deps}
|
|
|
|
|
2016-07-03 09:33:24 -04:00
|
|
|
[env:brainwavepro]
|
|
|
|
platform = teensy
|
|
|
|
framework = arduino
|
|
|
|
board = teensy20pp
|
2017-06-08 19:05:14 -04:00
|
|
|
build_flags = -I $BUILDSRC_DIR -D MOTHERBOARD=BOARD_BRAINWAVE_PRO
|
2017-04-30 15:07:01 -04:00
|
|
|
lib_deps = ${common.lib_deps}
|
2017-08-26 16:25:25 -04:00
|
|
|
src_filter = ${common.default_src_filter}
|
2016-08-19 07:11:23 -04:00
|
|
|
|
|
|
|
[env:rambo]
|
|
|
|
platform = atmelavr
|
|
|
|
framework = arduino
|
|
|
|
board = reprap_rambo
|
|
|
|
build_flags = -I $BUILDSRC_DIR
|
|
|
|
board_f_cpu = 16000000L
|
2017-04-30 15:07:01 -04:00
|
|
|
lib_deps = ${common.lib_deps}
|
2017-08-26 16:25:25 -04:00
|
|
|
src_filter = ${common.default_src_filter}
|
2017-08-13 06:55:11 -04:00
|
|
|
|
|
|
|
[env:anet10]
|
|
|
|
platform = atmelavr
|
|
|
|
framework = arduino
|
|
|
|
board = sanguino_atmega1284p
|
|
|
|
upload_speed = 57600
|
|
|
|
lib_deps = ${common.lib_deps}
|
2017-08-19 21:04:41 -04:00
|
|
|
|
|
|
|
[env:sanguino_atmega644p]
|
|
|
|
platform = atmelavr
|
|
|
|
framework = arduino
|
|
|
|
board = sanguino_atmega644p
|
|
|
|
lib_deps = ${common.lib_deps}
|
2017-07-18 19:29:06 -04:00
|
|
|
|
|
|
|
[env:DUE]
|
|
|
|
platform = atmelsam
|
|
|
|
framework = arduino
|
|
|
|
board = due
|
2017-07-19 16:34:30 -04:00
|
|
|
build_flags = -I $BUILDSRC_DIR -D MOTHERBOARD=BOARD_RAMPS4DUE_EFB
|
2017-07-18 19:29:06 -04:00
|
|
|
lib_deps = ${common.lib_deps}
|
2017-08-26 16:25:25 -04:00
|
|
|
src_filter = ${common.default_src_filter}
|
2017-07-11 16:59:27 -04:00
|
|
|
|
|
|
|
[env:teensy35]
|
|
|
|
platform = teensy
|
|
|
|
framework = arduino
|
|
|
|
board = teensy35
|
|
|
|
build_flags = -I $BUILDSRC_DIR
|
|
|
|
lib_deps = ${common.lib_deps}
|
2017-08-01 12:19:23 -04:00
|
|
|
lib_ignore = Adafruit NeoPixel
|
2017-08-26 16:25:25 -04:00
|
|
|
src_filter = ${common.default_src_filter}
|
2017-06-17 17:19:42 -04:00
|
|
|
|
|
|
|
[env:Re-ARM]
|
|
|
|
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
|
|
|
|
build_unflags = -Wall
|
2017-06-17 17:19:42 -04:00
|
|
|
lib_ldf_mode = off
|
2017-09-19 20:25:59 -04:00
|
|
|
lib_extra_dirs = frameworks
|
|
|
|
lib_deps = U8glib-ARM, CMSIS-LPC1768
|
2017-06-17 17:19:42 -04:00
|
|
|
extra_scripts = Marlin/src/HAL/HAL_LPC1768/lpc1768_flag_script.py
|