2016-07-03 15:33:24 +02:00
|
|
|
#
|
|
|
|
# Project Configuration File
|
|
|
|
#
|
|
|
|
# A detailed documentation with the EXAMPLES is located here:
|
|
|
|
# http://docs.platformio.org/en/latest/projectconf.html
|
|
|
|
#
|
|
|
|
|
2017-12-20 06:59:19 +01:00
|
|
|
#
|
|
|
|
# By default platformio build will abort after 5 errors.
|
|
|
|
# Remove '-fmax-errors=5' from build_flags below to see all.
|
|
|
|
#
|
2016-07-03 15:33:24 +02:00
|
|
|
|
|
|
|
# Automatic targets - enable auto-uploading
|
|
|
|
# targets = upload
|
|
|
|
|
|
|
|
[platformio]
|
2017-05-06 12:17:07 +02:00
|
|
|
src_dir = Marlin
|
|
|
|
envs_dir = .pioenvs
|
|
|
|
lib_dir = .piolib
|
|
|
|
libdeps_dir = .piolibdeps
|
2017-05-10 13:11:13 +02:00
|
|
|
env_default = megaatmega2560
|
2016-07-03 15:33:24 +02:00
|
|
|
|
2017-04-30 21:07:01 +02:00
|
|
|
[common]
|
2017-11-16 22:16:21 +01:00
|
|
|
lib_deps =
|
|
|
|
U8glib@1.19.1
|
|
|
|
TMC2130Stepper
|
|
|
|
Adafruit NeoPixel
|
|
|
|
https://github.com/lincomatic/LiquidTWI2.git
|
|
|
|
https://github.com/trinamic/TMC26XStepper.git
|
2018-05-11 09:22:44 +02:00
|
|
|
https://github.com/ameyer/Arduino-L6470.git
|
2017-12-20 06:59:19 +01:00
|
|
|
build_flags = -I $BUILDSRC_DIR -fmax-errors=5
|
2017-04-30 21:07:01 +02:00
|
|
|
|
2018-02-10 22:49:39 +01:00
|
|
|
#
|
|
|
|
# ATmega2560
|
|
|
|
#
|
2017-05-09 18:28:39 +02:00
|
|
|
[env:megaatmega2560]
|
2016-07-03 15:33:24 +02:00
|
|
|
platform = atmelavr
|
|
|
|
framework = arduino
|
2017-05-09 18:28:39 +02:00
|
|
|
board = megaatmega2560
|
2017-12-20 06:59:19 +01:00
|
|
|
build_flags = ${common.build_flags}
|
2016-07-03 15:33:24 +02:00
|
|
|
board_f_cpu = 16000000L
|
2017-04-30 21:07:01 +02:00
|
|
|
lib_deps = ${common.lib_deps}
|
2018-02-27 02:31:46 +01:00
|
|
|
monitor_baud = 250000
|
2016-07-03 15:33:24 +02:00
|
|
|
|
2018-02-10 22:49:39 +01:00
|
|
|
#
|
|
|
|
# ATmega1280
|
|
|
|
#
|
2017-05-09 18:28:39 +02:00
|
|
|
[env:megaatmega1280]
|
2016-07-03 15:33:24 +02:00
|
|
|
platform = atmelavr
|
|
|
|
framework = arduino
|
2017-05-09 18:28:39 +02:00
|
|
|
board = megaatmega1280
|
2017-12-20 06:59:19 +01:00
|
|
|
build_flags = ${common.build_flags}
|
2016-07-03 15:33:24 +02:00
|
|
|
board_f_cpu = 16000000L
|
2017-04-30 21:07:01 +02:00
|
|
|
lib_deps = ${common.lib_deps}
|
2016-07-03 15:33:24 +02:00
|
|
|
|
2018-03-01 10:05:27 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Melzi and clones (ATmega1284p)
|
|
|
|
#
|
|
|
|
[env:melzi]
|
|
|
|
platform = atmelavr
|
|
|
|
framework = arduino
|
|
|
|
board = sanguino_atmega1284p
|
|
|
|
build_flags = ${common.build_flags}
|
|
|
|
upload_speed = 57600
|
|
|
|
lib_deps = ${common.lib_deps}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Melzi and clones (ATmega1284p)
|
|
|
|
# with Optiboot bootloader
|
|
|
|
#
|
|
|
|
[env:melzi_optiboot]
|
|
|
|
platform = atmelavr
|
|
|
|
framework = arduino
|
|
|
|
board = sanguino_atmega1284p
|
|
|
|
build_flags = ${common.build_flags}
|
|
|
|
upload_speed = 115200
|
|
|
|
lib_deps = ${common.lib_deps}
|
|
|
|
|
2018-02-10 22:49:39 +01:00
|
|
|
#
|
|
|
|
# RAMBo
|
|
|
|
#
|
2016-08-19 13:11:23 +02:00
|
|
|
[env:rambo]
|
|
|
|
platform = atmelavr
|
|
|
|
framework = arduino
|
|
|
|
board = reprap_rambo
|
2017-12-20 06:59:19 +01:00
|
|
|
build_flags = ${common.build_flags}
|
2016-08-19 13:11:23 +02:00
|
|
|
board_f_cpu = 16000000L
|
2017-04-30 21:07:01 +02:00
|
|
|
lib_deps = ${common.lib_deps}
|
2017-08-13 12:55:11 +02:00
|
|
|
|
2018-02-10 22:49:39 +01:00
|
|
|
#
|
2018-03-01 10:05:27 +01:00
|
|
|
# Sanguinololu (ATmega644p)
|
2018-02-10 22:49:39 +01:00
|
|
|
#
|
2018-03-01 10:05:27 +01:00
|
|
|
[env:sanguino_atmega644p]
|
2017-08-13 12:55:11 +02:00
|
|
|
platform = atmelavr
|
|
|
|
framework = arduino
|
2018-03-01 10:05:27 +01:00
|
|
|
board = sanguino_atmega644p
|
2017-12-20 06:59:19 +01:00
|
|
|
build_flags = ${common.build_flags}
|
2017-08-13 12:55:11 +02:00
|
|
|
lib_deps = ${common.lib_deps}
|
2017-08-20 03:04:41 +02:00
|
|
|
|
2018-02-10 22:49:39 +01:00
|
|
|
#
|
2018-03-01 10:05:27 +01:00
|
|
|
# Sanguinololu (ATmega1284p)
|
2018-02-10 22:49:39 +01:00
|
|
|
#
|
2018-03-01 10:05:27 +01:00
|
|
|
[env:sanguino_atmega1284p]
|
|
|
|
platform = atmelavr
|
|
|
|
framework = arduino
|
|
|
|
board = sanguino_atmega1284p
|
2018-02-09 14:16:37 +01:00
|
|
|
build_flags = ${common.build_flags}
|
|
|
|
lib_deps = ${common.lib_deps}
|
|
|
|
|
2018-04-28 18:30:40 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Teensy++ 2.0
|
|
|
|
#
|
|
|
|
# - PrintrBoard
|
|
|
|
# - PrintrBoard Rev.F
|
|
|
|
# - Brainwave Pro
|
|
|
|
#
|
|
|
|
[env:teensy20]
|
|
|
|
platform = teensy
|
|
|
|
framework = arduino
|
|
|
|
board = teensy20pp
|
|
|
|
build_flags = ${common.build_flags}
|
2018-05-11 09:22:44 +02:00
|
|
|
lib_deps = ${common.lib_deps}
|