Fix compile error using asm

In function 'xPortGetCoreID':
error: expected ')' before ':' token
         :"=r"(id));

Merges https://github.com/espressif/esp-idf/pull/1965
This commit is contained in:
Stefan Profanter 2018-05-16 13:25:38 +02:00 committed by Angus Gratton
parent c83c3b64cd
commit 18533346b8
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ BaseType_t xPortInterruptedFromISRContext();
/* Multi-core: get current core ID */
static inline uint32_t IRAM_ATTR xPortGetCoreID() {
int id;
asm (
__asm__ (
"rsr.prid %0\n"
" extui %0,%0,13,1"
:"=r"(id));