Merge pull request #7695 from tcm0116/move_framework
Move LPC1768 framework out of Marlin source folder
This commit is contained in:
commit
ff1f211eb4
105 changed files with 38 additions and 10 deletions
|
@ -1,6 +1,8 @@
|
||||||
|
import sys
|
||||||
|
|
||||||
#dynamic build flags for generic compile options
|
#dynamic build flags for generic compile options
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
print " ".join([ "-std=gnu11",
|
args = " ".join([ "-std=gnu11",
|
||||||
"-std=gnu++11",
|
"-std=gnu++11",
|
||||||
"-Os",
|
"-Os",
|
||||||
"-mcpu=cortex-m3",
|
"-mcpu=cortex-m3",
|
||||||
|
@ -10,13 +12,11 @@ if __name__ == "__main__":
|
||||||
"-fsigned-char",
|
"-fsigned-char",
|
||||||
"-fno-move-loop-invariants",
|
"-fno-move-loop-invariants",
|
||||||
|
|
||||||
"-Wall",
|
|
||||||
"--specs=nano.specs",
|
"--specs=nano.specs",
|
||||||
"--specs=nosys.specs",
|
"--specs=nosys.specs",
|
||||||
|
|
||||||
"-IMarlin/frameworks/CMSIS/LPC1768/include",
|
|
||||||
"-IMarlin/frameworks/CMSIS/LPC1768/lib",
|
|
||||||
"-IMarlin/src/HAL",
|
"-IMarlin/src/HAL",
|
||||||
|
"-IMarlin/src/HAL/HAL_LPC1768/include",
|
||||||
|
|
||||||
"-MMD",
|
"-MMD",
|
||||||
"-MP",
|
"-MP",
|
||||||
|
@ -24,6 +24,11 @@ if __name__ == "__main__":
|
||||||
"-DIS_REARM"
|
"-DIS_REARM"
|
||||||
])
|
])
|
||||||
|
|
||||||
|
for i in range(1, len(sys.argv)):
|
||||||
|
args += " " + sys.argv[i]
|
||||||
|
|
||||||
|
print args
|
||||||
|
|
||||||
# extra script for linker options
|
# extra script for linker options
|
||||||
else:
|
else:
|
||||||
from SCons.Script import DefaultEnvironment
|
from SCons.Script import DefaultEnvironment
|
||||||
|
@ -46,6 +51,5 @@ else:
|
||||||
"--specs=nano.specs",
|
"--specs=nano.specs",
|
||||||
"--specs=nosys.specs",
|
"--specs=nosys.specs",
|
||||||
"-u_printf_float",
|
"-u_printf_float",
|
||||||
"-Wl,-TMarlin/frameworks/CMSIS/LPC1768/Re-ARM/LPC1768.ld,--gc-sections"
|
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
|
@ -46,6 +46,10 @@
|
||||||
#include "../module/delta.h"
|
#include "../module/delta.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if ENABLED(BABYSTEP_ZPROBE_OFFSET)
|
||||||
|
#include "planner.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
float zprobe_zoffset; // Initialized by settings.load()
|
float zprobe_zoffset; // Initialized by settings.load()
|
||||||
|
|
||||||
#if HAS_Z_SERVO_ENDSTOP
|
#if HAS_Z_SERVO_ENDSTOP
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <HAL_LPC1768/arduino.h>
|
#include "arduino.h"
|
||||||
|
|
||||||
// When the display powers up, it is configured as follows:
|
// When the display powers up, it is configured as follows:
|
||||||
//
|
//
|
|
@ -23,7 +23,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <HAL_LPC1768/arduino.h>
|
#include <arduino.h>
|
||||||
|
|
||||||
#include "Stream.h"
|
#include "Stream.h"
|
||||||
|
|
18
frameworks/CMSIS/library.json
Normal file
18
frameworks/CMSIS/library.json
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"name": "CMSIS-LPC1768",
|
||||||
|
"version": "0.0.0",
|
||||||
|
"frameworks": [],
|
||||||
|
"platforms": [
|
||||||
|
"nxplpc",
|
||||||
|
"ststm32"
|
||||||
|
],
|
||||||
|
"description": "CMSIS library for LPC1768",
|
||||||
|
"build": {
|
||||||
|
"src_filter": "+<LPC1768/*>",
|
||||||
|
"flags": [
|
||||||
|
"-ILPC1768/include",
|
||||||
|
"-ILPC1768/lib",
|
||||||
|
"-Wl,-Tframeworks/CMSIS/LPC1768/Re-ARM/LPC1768.ld,--gc-sections"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
|
@ -27,7 +27,7 @@ lib_deps =
|
||||||
https://github.com/trinamic/TMC26XStepper.git
|
https://github.com/trinamic/TMC26XStepper.git
|
||||||
https://github.com/adafruit/Adafruit_NeoPixel.git
|
https://github.com/adafruit/Adafruit_NeoPixel.git
|
||||||
https://github.com/ameyer/Arduino-L6470.git
|
https://github.com/ameyer/Arduino-L6470.git
|
||||||
default_src_filter = +<*> -<src/config/examples> -<frameworks>
|
default_src_filter = +<*> -<src/config/examples>
|
||||||
|
|
||||||
[env:megaatmega2560]
|
[env:megaatmega2560]
|
||||||
platform = atmelavr
|
platform = atmelavr
|
||||||
|
@ -115,7 +115,9 @@ src_filter = ${common.default_src_filter}
|
||||||
platform = nxplpc
|
platform = nxplpc
|
||||||
board_f_cpu = 100000000L
|
board_f_cpu = 100000000L
|
||||||
build_flags = !python Marlin/src/HAL/HAL_LPC1768/lpc1768_flag_script.py
|
build_flags = !python Marlin/src/HAL/HAL_LPC1768/lpc1768_flag_script.py
|
||||||
|
src_build_flags = -Wall
|
||||||
|
build_unflags = -Wall
|
||||||
lib_ldf_mode = off
|
lib_ldf_mode = off
|
||||||
lib_deps = U8glib-ARM
|
lib_extra_dirs = frameworks
|
||||||
src_filter = ${common.default_src_filter} +<frameworks/CMSIS/LPC1768>
|
lib_deps = U8glib-ARM, CMSIS-LPC1768
|
||||||
extra_scripts = Marlin/src/HAL/HAL_LPC1768/lpc1768_flag_script.py
|
extra_scripts = Marlin/src/HAL/HAL_LPC1768/lpc1768_flag_script.py
|
||||||
|
|
Reference in a new issue