We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c96e99 commit 84c0126Copy full SHA for 84c0126
builder/frameworks/arduino.py
@@ -36,7 +36,7 @@
36
37
env.Prepend(
38
CPPDEFINES=[
39
- "ARDUINO=%s" % FRAMEWORK_VERSION.split(".")[1],
+ ("ARDUINO", int(FRAMEWORK_VERSION.split(".")[1])),
40
"LWIP_OPEN_SRC"
41
],
42
CPPPATH=[
builder/main.py
@@ -88,7 +88,7 @@ def _get_board_f_flash(env):
88
89
90
91
- "F_CPU=$BOARD_F_CPU",
+ ("F_CPU", "$BOARD_F_CPU"),
92
"__ets__",
93
"ICACHE_FLASH"
94
0 commit comments