mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 02:37:19 +02:00
hal: fix ee.get_gpio_in command for esp32-s3
This commit is contained in:
@ -185,7 +185,7 @@ static inline void cpu_ll_waiti(void)
|
|||||||
static inline uint32_t cpu_ll_read_dedic_gpio_in(void)
|
static inline uint32_t cpu_ll_read_dedic_gpio_in(void)
|
||||||
{
|
{
|
||||||
uint32_t value = 0;
|
uint32_t value = 0;
|
||||||
asm volatile("get_gpio_in %0" : "=r"(value) : :);
|
asm volatile("ee.get_gpio_in %0" : "=r"(value) : :);
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user