Move LPC1768 framework out of Marlin source folder
This commit is contained in:
@ -1,6 +1,8 @@
|
||||
import sys
|
||||
|
||||
#dynamic build flags for generic compile options
|
||||
if __name__ == "__main__":
|
||||
print " ".join([ "-std=gnu11",
|
||||
args = " ".join([ "-std=gnu11",
|
||||
"-std=gnu++11",
|
||||
"-Os",
|
||||
"-mcpu=cortex-m3",
|
||||
@ -10,13 +12,11 @@ if __name__ == "__main__":
|
||||
"-fsigned-char",
|
||||
"-fno-move-loop-invariants",
|
||||
|
||||
"-Wall",
|
||||
"--specs=nano.specs",
|
||||
"--specs=nosys.specs",
|
||||
|
||||
"-IMarlin/frameworks/CMSIS/LPC1768/include",
|
||||
"-IMarlin/frameworks/CMSIS/LPC1768/lib",
|
||||
"-IMarlin/src/HAL",
|
||||
"-IMarlin/src/HAL/HAL_LPC1768/include",
|
||||
|
||||
"-MMD",
|
||||
"-MP",
|
||||
@ -24,6 +24,11 @@ if __name__ == "__main__":
|
||||
"-DIS_REARM"
|
||||
])
|
||||
|
||||
for i in range(1, len(sys.argv)):
|
||||
args += " " + sys.argv[i]
|
||||
|
||||
print args
|
||||
|
||||
# extra script for linker options
|
||||
else:
|
||||
from SCons.Script import DefaultEnvironment
|
||||
@ -46,6 +51,5 @@ else:
|
||||
"--specs=nano.specs",
|
||||
"--specs=nosys.specs",
|
||||
"-u_printf_float",
|
||||
"-Wl,-TMarlin/frameworks/CMSIS/LPC1768/Re-ARM/LPC1768.ld,--gc-sections"
|
||||
],
|
||||
)
|
||||
|
@ -46,6 +46,10 @@
|
||||
#include "../module/delta.h"
|
||||
#endif
|
||||
|
||||
#if ENABLED(BABYSTEP_ZPROBE_OFFSET)
|
||||
#include "planner.h"
|
||||
#endif
|
||||
|
||||
float zprobe_zoffset; // Initialized by settings.load()
|
||||
|
||||
#if HAS_Z_SERVO_ENDSTOP
|
||||
|
Reference in New Issue
Block a user