소스 검색

Fix 9 bit mode on Serial1 & Serial2 on Teensy LC

main
PaulStoffregen 7 년 전
부모
커밋
e8748e9b3c
2개의 변경된 파일10개의 추가작업 그리고 4개의 파일을 삭제
  1. +5
    -2
      teensy3/serial1.c
  2. +5
    -2
      teensy3/serial2.c

+ 5
- 2
teensy3/serial1.c 파일 보기

@@ -553,8 +553,11 @@ void uart0_status_isr(void)
}
#else
if (UART0_S1 & UART_S1_RDRF) {
n = UART0_D;
if (use9Bits && (UART0_C3 & 0x80)) n |= 0x100;
if (use9Bits && (UART0_C3 & 0x80)) {
n = UART0_D | 0x100;
} else {
n = UART0_D;
}
head = rx_buffer_head + 1;
if (head >= SERIAL1_RX_BUFFER_SIZE) head = 0;
if (head != rx_buffer_tail) {

+ 5
- 2
teensy3/serial2.c 파일 보기

@@ -565,8 +565,11 @@ void uart1_status_isr(void)
}
#else
if (UART1_S1 & UART_S1_RDRF) {
n = UART1_D;
if (use9Bits && (UART1_C3 & 0x80)) n |= 0x100;
if (use9Bits && (UART1_C3 & 0x80)) {
n = UART1_D | 0x100;
} else {
n = UART1_D;
}
head = rx_buffer_head + 1;
if (head >= SERIAL2_RX_BUFFER_SIZE) head = 0;
if (head != rx_buffer_tail) {

Loading…
취소
저장