delayMicroseconds() cannot be called in critical section (#10535)

on the STM32 platform
This commit is contained in:
Karl Andersson 2018-04-26 21:31:01 +02:00 committed by Roxy-3D
parent 00dfaae8df
commit 58ca3be1ec

View File

@ -64,7 +64,7 @@
static uint8_t LEDs[8] = { 0 };
#ifdef CPU_32_BIT
#define MS_DELAY() delayMicroseconds(7) // 32-bit processors need a delay to stabilize the signal
void MS_DELAY() { DELAY_1US; } // 32-bit processors need a delay to stabilize the signal
#else
#define MS_DELAY() DELAY_3_NOP
#endif