Junjie Wang

Results 2 issues of Junjie Wang

希望能加一个接口,可以无需主机请求,主动推送对应的数据。 接口只需要传入功能码,起始地址,结束地址即可。

在 `rt_hw_serial_isr` 中的 `RT_SERIAL_EVENT_TX_DMADONE` 分支逻辑如下: ```c case RT_SERIAL_EVENT_TX_DMADONE: { struct rt_serial_tx_fifo *tx_fifo; tx_fifo = (struct rt_serial_tx_fifo *)serial->serial_tx; RT_ASSERT(tx_fifo != RT_NULL); tx_fifo->activated = RT_FALSE; /* Trigger the transmit completion callback */...