Update Arduino framework for Atmel AVR development platform to 1.6.7

This commit is contained in:
Ivan Kravets
2015-12-24 23:39:25 +02:00
parent dfe39f386d
commit 36912c0fe6
4 changed files with 47 additions and 4 deletions

View File

@@ -39,19 +39,19 @@ env.Replace(
"-Wall", # show warnings
"-ffunction-sections", # place each function in its own section
"-fdata-sections",
# "-MMD", # output dependency info
"-mmcu=$BOARD_MCU"
],
CPPDEFINES=[
"F_CPU=$BOARD_F_CPU"
],
CFLAGS=["-std=gnu11"],
CXXFLAGS=[
"-std=gnu++11",
"-fno-exceptions",
"-fno-threadsafe-statics"
],
CPPDEFINES=["F_CPU=$BOARD_F_CPU"],
LINKFLAGS=[
"-Os",
"-mmcu=$BOARD_MCU",