Skip to content

Commit 16fcdeb

Browse files
pillo79SuGlider
andauthored
fix(arduino): restore proper pin remapping functionality (#11315)
Commit 0773dd7 from PR #10841 broke pin remapping by moving its application too early in the definition process. This commit restores the original order of includes, ensuring that pin remapping is applied correctly. Signed-off-by: Luca Burelli <[email protected]> Co-authored-by: Sugar Glider <[email protected]>
1 parent b461e01 commit 16fcdeb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

cores/esp32/Arduino.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
#include "extra_attr.h"
4242

4343
#include "pins_arduino.h"
44-
#include "io_pin_remap.h"
4544
#include "esp32-hal.h"
4645

4746
#define PI 3.1415926535897932384626433832795
@@ -251,4 +250,8 @@ void tone(uint8_t _pin, unsigned int frequency, unsigned long duration = 0);
251250
void noTone(uint8_t _pin);
252251

253252
#endif /* __cplusplus */
253+
254+
// must be applied last as it overrides some of the above
255+
#include "io_pin_remap.h"
256+
254257
#endif /* _ESP32_CORE_ARDUINO_H_ */

0 commit comments

Comments
 (0)