Переглянути джерело

T4 fix typo in HardwareSerial

rx_pins should depend on cnt_rx_pins not cnt_tx_pins, currentlty the same so does not impact
main
Kurt Eckhardt 5 роки тому
джерело
коміт
fd20a48a80
1 змінених файлів з 1 додано та 1 видалено
  1. +1
    -1
      teensy4/HardwareSerial.h

+ 1
- 1
teensy4/HardwareSerial.h Переглянути файл

@@ -146,7 +146,7 @@ public:
void (*serial_event_handler_check)(void);
volatile uint32_t &ccm_register;
const uint32_t ccm_value;
pin_info_t rx_pins[cnt_tx_pins];
pin_info_t rx_pins[cnt_rx_pins];
pin_info_t tx_pins[cnt_tx_pins];
const uint8_t cts_pin;
const uint8_t cts_mux_val;

Завантаження…
Відмінити
Зберегти