#include "includes.h"Go to the source code of this file.
Functions | |
| void | RtcTaskInit (void) |
| void | RtcTask (void) |
Variables | |
| U8 | RtcTaskName [] = "RTCTASK" |
| OS_STACK | RtcTaskStack [RTC_TASK_STACK_SIZE] |
| void RtcTask | ( | void | ) |
Definition at line 17 of file rtctask.c.
00017 { 00018 RtcTaskInit(); 00019 while(1){ 00020 while((RtcCtrl.HasUpdate==false)&&(RtcCtrl.HasPeriodic==false)) 00021 OsEventWait(&RtcCtrl.RtcEvent,0xffff); 00022 GuiStringPrint("\nRTC TASK EXECUTE"); 00023 RtcSvc(); 00024 } 00025 }
| U8 RtcTaskName[] = "RTCTASK" |
| OS_STACK RtcTaskStack[RTC_TASK_STACK_SIZE] |
1.5.9