mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-02-20 08:04:15 +00:00
make Max7219 usable at ISR time
This commit is contained in:
parent
cb02b6ec60
commit
b95a1b94cb
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@
|
||||||
static uint8_t LEDs[8] = { 0 };
|
static uint8_t LEDs[8] = { 0 };
|
||||||
|
|
||||||
#ifdef CPU_32_BIT
|
#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
|
#else
|
||||||
#define MS_DELAY() DELAY_3_NOP
|
#define MS_DELAY() DELAY_3_NOP
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue