mirror of
https://github.com/ThrowTheSwitch/CMock.git
synced 2026-06-05 21:15:20 +00:00
18 lines
487 B
C
18 lines
487 B
C
/* =========================================================================
|
|
CMock - Automatic Mock Generation for C
|
|
ThrowTheSwitch.org
|
|
Copyright (c) 2007-26 Mike Karlesky, Mark VanderVoord, & Greg Williams
|
|
SPDX-License-Identifier: MIT
|
|
========================================================================= */
|
|
|
|
#include "Model.h"
|
|
#include "TaskScheduler.h"
|
|
#include "TemperatureFilter.h"
|
|
|
|
void Model_Init(void)
|
|
{
|
|
TaskScheduler_Init();
|
|
TemperatureFilter_Init();
|
|
}
|
|
|