From d3be6d5c235c4634a766ab0c463a57b14b7f30bd Mon Sep 17 00:00:00 2001
From: Martin Turski <turningtides@outlook.de>
Date: Mon, 23 Jan 2023 03:24:11 +0100
Subject: [PATCH] bugfix: add <stdint.h> for uint8_t to avoid compilation
 failure (GCC 11.2.0)

---
 cores/esp32/FunctionalInterrupt.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/cores/esp32/FunctionalInterrupt.h b/cores/esp32/FunctionalInterrupt.h
index b5e3181f986..69bb5aee7b3 100644
--- a/cores/esp32/FunctionalInterrupt.h
+++ b/cores/esp32/FunctionalInterrupt.h
@@ -9,6 +9,7 @@
 #define CORE_CORE_FUNCTIONALINTERRUPT_H_
 
 #include <functional>
+#include <stdint.h>
 
 struct InterruptArgStructure {
 	std::function<void(void)> interruptFunction;