source: svn/newcon3bcm2_21bu/magnum/syslib/synclib/7552/bsynclib_timer.c @ 44

Last change on this file since 44 was 44, checked in by megakiss, 11 years ago

광주방송 OTC 주파수 369Mhz로 변경

  • Property svn:executable set to *
File size: 344 bytes
Line 
1
2#include "bstd.h"
3#include "bsynclib_timer.h"
4
5BDBG_MODULE(synclib);
6
7/*
8Summary:
9*/
10void BSYNClib_Timer_Init(BSYNClib_Timer * psTimer)
11{
12        BDBG_ASSERT(psTimer);
13        BKNI_Memset(psTimer, 0, sizeof(BSYNClib_Timer));
14}
15
16/*
17Summary:
18*/
19void BSYNClib_Timer_Reset_isr(BSYNClib_Timer * psTimer)
20{
21        BDBG_ASSERT(psTimer);
22        psTimer->bScheduled = false;
23}
24
Note: See TracBrowser for help on using the repository browser.