From 7f68fe1cff65e81b73498c30018285e7de9e15b4 Mon Sep 17 00:00:00 2001 From: Xiao Xufeng Date: Fri, 22 Sep 2023 11:56:56 +0800 Subject: [PATCH] fix(soc): fixed uart_periph.h not including reg.h issue This will cause rom/uart.h can't compile. --- components/soc/include/soc/uart_periph.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/soc/include/soc/uart_periph.h b/components/soc/include/soc/uart_periph.h index 2cf1fe9333..45781b208a 100644 --- a/components/soc/include/soc/uart_periph.h +++ b/components/soc/include/soc/uart_periph.h @@ -10,6 +10,8 @@ #include "soc/gpio_sig_map.h" #include "soc/io_mux_reg.h" #include "soc/uart_pins.h" +#include "soc/uart_struct.h" +#include "soc/uart_reg.h" #ifdef __cplusplus extern "C" {