Ver código fonte

Serial4.setTX - used wrong SIm_SCGC4 test

Was using UART2, should be UART3
main
Kurt Eckhardt 8 anos atrás
pai
commit
78189d6f15
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      teensy3/serial4.c

+ 1
- 1
teensy3/serial4.c Ver arquivo

@@ -161,7 +161,7 @@ void serial4_set_tx(uint8_t pin, uint8_t opendrain)

if (opendrain) pin |= 128;
if (pin == tx_pin_num) return;
if ((SIM_SCGC4 & SIM_SCGC4_UART2)) {
if ((SIM_SCGC4 & SIM_SCGC4_UART3)) {
switch (tx_pin_num & 127) {
case 32: CORE_PIN32_CONFIG = 0; break; // PTB11
}

Carregando…
Cancelar
Salvar