Search found 1 match

by AI_stark
Sun Jan 23, 2022 4:34 pm
Forum: ESP-IDF 中文讨论版
Topic: uart_rxfifo_tout中断问题
Replies: 1
Views: 3653

uart_rxfifo_tout中断问题

开启uart_rxfifo_tout中断,一次性发送数据给单片机,理论上串口接收超时中断只能触发一次中断,但却触发了两次中断rxfifo_tout中断。求解答。 发送数据 0x61 0x61 0x61 总返回数据 0x61 0x61 0x61 0x4F 0x4B 0x01 0x4F 0x4B 0x02 (0x4F 0x4B为OK) #include <stdio.h> #include <string.h> #include "soc/uart_periph.h" #include "driver/uart.h" #include "soc/uhci_reg.h" #include "driv...