mirror of
https://github.com/ThrowTheSwitch/CMock.git
synced 2026-06-05 21:15:20 +00:00
17 lines
488 B
C
17 lines
488 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 "TimerModel.h"
|
|
#include "TaskScheduler.h"
|
|
|
|
void TimerModel_UpdateTime(uint32 systemTime)
|
|
{
|
|
TaskScheduler_Update(systemTime);
|
|
}
|
|
|