Merge branch 'feature/toolchain_2021r1' into 'master'

Bring 2021r1 toolchains

Closes IDFGH-5009

See merge request espressif/esp-idf!13554
This commit is contained in:
Angus Gratton
2021-06-09 05:06:23 +00:00
21 changed files with 125 additions and 144 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;
}