mirror of
https://github.com/ThrowTheSwitch/CMock.git
synced 2026-06-05 21:15:20 +00:00
18 lines
552 B
C
18 lines
552 B
C
/* =========================================================================
|
|
CMock - Automatic Mock Generation for C
|
|
ThrowTheSwitch.org
|
|
Copyright (c) 2007-26 Mike Karlesky, Mark VanderVoord, & Greg Williams
|
|
SPDX-License-Identifier: MIT
|
|
========================================================================= */
|
|
|
|
#ifndef _ADCHARDWARECONFIGURATOR_H
|
|
#define _ADCHARDWARECONFIGURATOR_H
|
|
|
|
#include "Types.h"
|
|
|
|
void Adc_Reset(void);
|
|
void Adc_ConfigureMode(void);
|
|
void Adc_EnableTemperatureChannel(void);
|
|
|
|
#endif // _ADCHARDWARECONFIGURATOR_H
|