12345678910111213141516171819202122232425 |
- #include "includes.h"
- PT_THREAD (ptModemUartTask(struct pt *pt)){
- static timer_t ptTimer;
- PT_BEGIN(pt);
- while(1){
- Uart2RecvProcess();
- PTTimerStart(&pt_timerPool, &ptTimer, 1);
- PT_WAIT_UNTIL(pt, PTTimerIsExpired(&ptTimer));
- }
- PT_END(pt);
- }
|