Merge branch 'feature/toolchain_2021r1_v4.3' into 'release/v4.3'

Bring 2021r1 toolchains (backport v4.3)

See merge request espressif/esp-idf!13996
This commit is contained in:
Roland Dobai
2021-06-28 16:15:05 +00:00
19 changed files with 162 additions and 155 deletions

View File

@@ -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;
}