Procházet zdrojové kódy

Merge pull request #208 from thewknd/patch-1

fix serial6_set_tx
main
Paul Stoffregen před 7 roky
rodič
revize
1f116f80dc
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      teensy3/serial6.c

+ 1
- 1
teensy3/serial6.c Zobrazit soubor

@@ -171,7 +171,7 @@ void serial6_set_tx(uint8_t pin, uint8_t opendrain)

if (opendrain) pin |= 128;
if (pin == tx_pin_num) return;
if ((SIM_SCGC1 |= SIM_SCGC1_UART5)) {
if ((SIM_SCGC1 & SIM_SCGC1_UART5)) {
switch (tx_pin_num & 127) {
case 48: CORE_PIN48_CONFIG = 0; break; // PTE24
}

Načítá se…
Zrušit
Uložit