From 866c5cefa4b5855245b503934f8b985d3c3c9de1 Mon Sep 17 00:00:00 2001 From: Gustavo Henrique Nihei Date: Fri, 10 Feb 2023 10:29:35 -0300 Subject: [PATCH] hal: Fix missing definition for "bool" type Signed-off-by: Gustavo Henrique Nihei --- components/hal/esp32c6/include/hal/regi2c_ctrl_ll.h | 1 + components/hal/esp32h2/include/hal/regi2c_ctrl_ll.h | 1 + 2 files changed, 2 insertions(+) diff --git a/components/hal/esp32c6/include/hal/regi2c_ctrl_ll.h b/components/hal/esp32c6/include/hal/regi2c_ctrl_ll.h index dc96bc1402..597cbdf368 100644 --- a/components/hal/esp32c6/include/hal/regi2c_ctrl_ll.h +++ b/components/hal/esp32c6/include/hal/regi2c_ctrl_ll.h @@ -6,6 +6,7 @@ #pragma once +#include #include #include "soc/soc.h" #include "soc/regi2c_defs.h" diff --git a/components/hal/esp32h2/include/hal/regi2c_ctrl_ll.h b/components/hal/esp32h2/include/hal/regi2c_ctrl_ll.h index 8659673a69..d728e53f67 100644 --- a/components/hal/esp32h2/include/hal/regi2c_ctrl_ll.h +++ b/components/hal/esp32h2/include/hal/regi2c_ctrl_ll.h @@ -6,6 +6,7 @@ #pragma once +#include #include #include "soc/soc.h" #include "soc/regi2c_defs.h"