Tags: arduino/arduino-esp32
Tags
platform.txt: use iwithprefixbefore to shorten the command lines
The command line for the ESP32 compilers is very long, and it is
causing problems on Windows systems, which enforce a hard 32kbytes
line limit.
This patch uses the iprefix/iwithprefixbefore options to shorten the
compiler command line by changing
"-I{compiler.sdk.path}/include/aaa"
"-I{compiler.sdk.path}/include/bbb"
"-I{compiler.sdk.path}/include/ccc" ...
to:
-iprefix "{compiler.sdk.path}/include/"
-iwithprefixbefore aaa
-iwithprefixbefore bbb
-iwithprefixbefore ccc ...
Some targets have up to 200 paths so this can save A LOT of space.
On a sample run this patch shortened a single compile command from
28777 bytes to 10728.
digitalPinToInterrupt: fix double pin remapping The digitalPinToInterrupt() macro currently remaps the pin number to the GPIO number. This is not necessary, as most users will then use the returned value in attachInterrupt() or other similar API functions, which already perform the same remapping. The first half of the macro (the condition) does indeed require the remapping to ensure the check operates on GPIO numbers. Fixes espressif#10367.
PreviousNext