mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
hal: fix ee.get_gpio_in command for esp32-s3
This commit is contained in:
parent
0ed7af2c4c
commit
5a982ffe7a
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user