make Max7219 usable at ISR time

This commit is contained in:
Roxy-3D 2018-04-26 14:32:24 -05:00 committed by GitHub
parent cb02b6ec60
commit b95a1b94cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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