mirror of
https://github.com/ThrowTheSwitch/CMock.git
synced 2026-06-05 21:15:20 +00:00
23 lines
606 B
C
23 lines
606 B
C
/* =========================================================================
|
|
CMock - Automatic Mock Generation for C
|
|
ThrowTheSwitch.org
|
|
Copyright (c) 2007-25 Mike Karlesky, Mark VanderVoord, & Greg Williams
|
|
SPDX-License-Identifier: MIT
|
|
========================================================================= */
|
|
|
|
#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());
|
|
}
|