mirror of
https://github.com/ThrowTheSwitch/CMock.git
synced 2026-07-05 20:00:32 +00:00
16 lines
276 B
C
16 lines
276 B
C
#include "Types.h"
|
|
#include "TimerConductor.h"
|
|
#include "TimerModel.h"
|
|
#include "TimerHardware.h"
|
|
#include "TimerInterruptHandler.h"
|
|
|
|
void TimerConductor_Init(void)
|
|
{
|
|
TimerHardware_Init();
|
|
}
|
|
|
|
void TimerConductor_Run(void)
|
|
{
|
|
TimerModel_UpdateTime(Timer_GetSystemTime());
|
|
}
|