Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
bugfix: add <stdint.h> for uint8_t to avoid compilation failure (GCC …
…11.2.0)
  • Loading branch information
quiret committed Jan 23, 2023
commit d3be6d5c235c4634a766ab0c463a57b14b7f30bd
1 change: 1 addition & 0 deletions cores/esp32/FunctionalInterrupt.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#define CORE_CORE_FUNCTIONALINTERRUPT_H_

#include <functional>
#include <stdint.h>

struct InterruptArgStructure {
std::function<void(void)> interruptFunction;
Expand Down