xmodem协议源码,好不容易找到,分享给大家,值得拥有,有需要的朋友可以下载,希望对你的学习工作有所帮助。
2021-11-15 16:11:52 6KB xmodem xmodem源码
1
带移植说明的xmodem源码(STM32)
2021-05-18 15:26:10 4KB stm、xmode
1
带移植说明的xmodem源码(STM32) //移植时,需要修改该函数 //串口收发,实用查询方式。 void xm_port_write(uint8 *ch) { while(USART_GetFlagStatus(USART1,USART_FLAG_TXE) == RESET); USART1->DR = *ch; } //串口接收函数,需要移植 sint8 xm_port_read(uint8 *ch) { if(USART_GetFlagStatus(USART1, USART_IT_RXNE) != RESET) { *ch = USART_ReceiveData(USART1); return 1; } return 0; } //在定时中断里调用该函数 //定时时间5ms void xm_timer(void) { xmodem_timeout++; }
2019-12-21 19:27:45 4KB xmodem 源码 代码 移植
1