Browse Source

Fix M43 timer report on AVR (#16645)

pull/1/head
ellensp 4 years ago
committed by Scott Lahteine
parent
commit
c49e987b1e
  1. 4
      Marlin/src/HAL/HAL_AVR/pinsDebug.h

4
Marlin/src/HAL/HAL_AVR/pinsDebug.h

@ -231,10 +231,10 @@ static void err_is_interrupt() { SERIAL_ECHOPGM(" compare interrupt enabled"
static void err_prob_interrupt() { SERIAL_ECHOPGM(" overflow interrupt enabled"); }
static void print_is_also_tied() { SERIAL_ECHOPGM(" is also tied to this pin"); SERIAL_ECHO_SP(14); }
void com_print(uint8_t N, uint8_t Z) {
inline void com_print(const uint8_t N, const uint8_t Z) {
const uint8_t *TCCRA = (uint8_t*)TCCR_A(N);
SERIAL_ECHOPGM(" COM");
SERIAL_CHAR('0' + N, 'A' + Z);
SERIAL_CHAR('0' + N, Z);
SERIAL_ECHOPAIR(": ", int((*TCCRA >> (6 - Z * 2)) & 0x03));
}

Loading…
Cancel
Save