|
|
@ -63,54 +63,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
static uint8_t LEDs[8] = { 0 };
|
|
|
|
static uint8_t LEDs[8] = { 0 };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef CPU_32_BIT
|
|
|
|
|
|
|
|
#define MS_DELAY() delayMicroseconds(5) // 32-bit processors need a delay to stabilize the signal
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define MS_DELAY() NOOP
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
void Max7219_PutByte(uint8_t data) {
|
|
|
|
void Max7219_PutByte(uint8_t data) {
|
|
|
|
CRITICAL_SECTION_START
|
|
|
|
CRITICAL_SECTION_START
|
|
|
|
for (uint8_t i = 8; i--;) {
|
|
|
|
for (uint8_t i = 8; i--;) {
|
|
|
|
#ifdef CPU_32_BIT // The 32-bit processors are so fast, a small delay in the code is needed
|
|
|
|
MS_DELAY();
|
|
|
|
delayMicroseconds(5); // to let the signal wires stabilize.
|
|
|
|
|
|
|
|
WRITE(MAX7219_CLK_PIN, LOW); // tick
|
|
|
|
WRITE(MAX7219_CLK_PIN, LOW); // tick
|
|
|
|
delayMicroseconds(5);
|
|
|
|
MS_DELAY();
|
|
|
|
WRITE(MAX7219_DIN_PIN, (data & 0x80) ? HIGH : LOW); // send 1 or 0 based on data bit
|
|
|
|
WRITE(MAX7219_DIN_PIN, (data & 0x80) ? HIGH : LOW); // send 1 or 0 based on data bit
|
|
|
|
delayMicroseconds(5);
|
|
|
|
MS_DELAY();
|
|
|
|
WRITE(MAX7219_CLK_PIN, HIGH); // tock
|
|
|
|
WRITE(MAX7219_CLK_PIN, HIGH); // tock
|
|
|
|
delayMicroseconds(5);
|
|
|
|
MS_DELAY();
|
|
|
|
#else
|
|
|
|
|
|
|
|
WRITE(MAX7219_CLK_PIN, LOW); // tick
|
|
|
|
|
|
|
|
WRITE(MAX7219_DIN_PIN, (data & 0x80) ? HIGH : LOW); // send 1 or 0 based on data bit
|
|
|
|
|
|
|
|
WRITE(MAX7219_CLK_PIN, HIGH); // tock
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
data <<= 1;
|
|
|
|
data <<= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CRITICAL_SECTION_END
|
|
|
|
CRITICAL_SECTION_END
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Max7219(const uint8_t reg, const uint8_t data) {
|
|
|
|
void Max7219(const uint8_t reg, const uint8_t data) {
|
|
|
|
#ifdef CPU_32_BIT
|
|
|
|
MS_DELAY();
|
|
|
|
delayMicroseconds(5);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
CRITICAL_SECTION_START
|
|
|
|
CRITICAL_SECTION_START
|
|
|
|
WRITE(MAX7219_LOAD_PIN, LOW); // begin
|
|
|
|
WRITE(MAX7219_LOAD_PIN, LOW); // begin
|
|
|
|
#ifdef CPU_32_BIT // The 32-bit processors are so fast, a small delay in the code is needed
|
|
|
|
MS_DELAY();
|
|
|
|
delayMicroseconds(5); // to let the signal wires stabilize.
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
Max7219_PutByte(reg); // specify register
|
|
|
|
Max7219_PutByte(reg); // specify register
|
|
|
|
#ifdef CPU_32_BIT
|
|
|
|
MS_DELAY();
|
|
|
|
delayMicroseconds(5);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
Max7219_PutByte(data); // put data
|
|
|
|
Max7219_PutByte(data); // put data
|
|
|
|
#ifdef CPU_32_BIT
|
|
|
|
MS_DELAY();
|
|
|
|
delayMicroseconds(5);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
WRITE(MAX7219_LOAD_PIN, LOW); // and tell the chip to load the data
|
|
|
|
WRITE(MAX7219_LOAD_PIN, LOW); // and tell the chip to load the data
|
|
|
|
#ifdef CPU_32_BIT
|
|
|
|
MS_DELAY();
|
|
|
|
delayMicroseconds(5);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
WRITE(MAX7219_LOAD_PIN, HIGH);
|
|
|
|
WRITE(MAX7219_LOAD_PIN, HIGH);
|
|
|
|
CRITICAL_SECTION_END
|
|
|
|
CRITICAL_SECTION_END
|
|
|
|
#ifdef CPU_32_BIT
|
|
|
|
MS_DELAY();
|
|
|
|
delayMicroseconds(5);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Max7219_LED_Set(const uint8_t row, const uint8_t col, const bool on) {
|
|
|
|
void Max7219_LED_Set(const uint8_t row, const uint8_t col, const bool on) {
|
|
|
@ -329,7 +316,6 @@ void Max7219_idle_tasks() {
|
|
|
|
|
|
|
|
|
|
|
|
#if ENABLED(MAX7219_DEBUG_PRINTER_ALIVE)
|
|
|
|
#if ENABLED(MAX7219_DEBUG_PRINTER_ALIVE)
|
|
|
|
static millis_t next_blink = 0;
|
|
|
|
static millis_t next_blink = 0;
|
|
|
|
|
|
|
|
|
|
|
|
if (ELAPSED(millis(), next_blink)) {
|
|
|
|
if (ELAPSED(millis(), next_blink)) {
|
|
|
|
Max7219_LED_Toggle(7, 7);
|
|
|
|
Max7219_LED_Toggle(7, 7);
|
|
|
|
next_blink = millis() + 750;
|
|
|
|
next_blink = millis() + 750;
|
|
|
|