瀏覽代碼

Serial4.setTX - used wrong SIm_SCGC4 test

Was using UART2, should be UART3
main
Kurt Eckhardt 8 年之前
父節點
當前提交
78189d6f15
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      teensy3/serial4.c

+ 1
- 1
teensy3/serial4.c 查看文件

@@ -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
}

Loading…
取消
儲存