boards: remote-common: fancy_leds.h asm -> __asm__

This commit is contained in:
Kaspar Schleiser 2016-09-06 17:59:25 +02:00
parent 517efe4ccc
commit ff151d1568

View File

@ -42,11 +42,11 @@
j = k > 400 ? 800 - k : k; \
led##_ON; \
for(i = 0; i < j; ++i) { \
asm("nop"); \
__asm__("nop"); \
} \
led##_OFF; \
for(i = 0; i < 400 - j; ++i) { \
asm("nop"); \
__asm__("nop"); \
} \
}