动态UI样例绘制、测试

This commit is contained in:
kidneygood
2023-01-26 15:07:00 +08:00
parent 846a8b1caf
commit 67940a4e38
6 changed files with 233 additions and 176 deletions

View File

@@ -40,7 +40,7 @@ referee_info_t *RefereeInit(UART_HandleTypeDef *referee_usart_handle)
void RefereeSend(uint8_t *send,uint16_t tx_len)
{
USARTSend(referee_usart_instance,send,tx_len);
/* syhtodo DMA请求过快会导致数据发送丢失考虑数据尽可能打成一个整包以及队列发送 */
/* syhtodo DMA请求过快会导致数据发送丢失考虑数据尽可能打成一个整包以及队列发送,并且发送函数添加缓冲区 */
HAL_Delay(5);
}