From e7b70a2f44c94c1a7036b68df69c3bc2050e9d0c Mon Sep 17 00:00:00 2001 From: Anton Maklakov Date: Tue, 18 May 2021 11:37:21 +0700 Subject: [PATCH] hal: fix ee.get_gpio_in command for esp32-s3 --- components/hal/esp32s3/include/hal/cpu_ll.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/hal/esp32s3/include/hal/cpu_ll.h b/components/hal/esp32s3/include/hal/cpu_ll.h index ea50870f93..8445fdf44c 100644 --- a/components/hal/esp32s3/include/hal/cpu_ll.h +++ b/components/hal/esp32s3/include/hal/cpu_ll.h @@ -185,7 +185,7 @@ static inline void cpu_ll_waiti(void) static inline uint32_t cpu_ll_read_dedic_gpio_in(void) { uint32_t value = 0; - asm volatile("get_gpio_in %0" : "=r"(value) : :); + asm volatile("ee.get_gpio_in %0" : "=r"(value) : :); return value; }