Skip to content

Commit 9a79c37

Browse files
authored
Fix dependency in pins_arduino.h
without stdbool compilation on ESP32-S3-USB-OTG board examples fails. Example: esp32s3usbotg/pins_arduino.h:5:1: note: 'bool' is defined in header '<stdbool.h>'; did you forget to '#include <stdbool.h>'? 4 | #include <stdint.h> +++ |+#include <stdbool.h> 5 |
1 parent 8e62997 commit 9a79c37

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

variants/esp32/pins_arduino.h

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#define Pins_Arduino_h
33

44
#include <stdint.h>
5+
#include <stdbool.h>
56

67
static const uint8_t TX = 1;
78
static const uint8_t RX = 3;

0 commit comments

Comments
 (0)