mirror of
https://github.com/ThrowTheSwitch/CMock.git
synced 2026-07-05 03:40:34 +00:00
14 lines
371 B
C
14 lines
371 B
C
#ifndef _ADCMODEL_H
|
|
#define _ADCMODEL_H
|
|
|
|
#include "Types.h"
|
|
|
|
bool AdcModel_DoGetSample(void);
|
|
void AdcModel_ProcessInput(uint16 millivolts);
|
|
|
|
bool AdcModel_DoNothingExceptTestASpecialType(EXAMPLE_STRUCT_T ExampleStruct);
|
|
bool AdModel_DoNothingExceptTestPointers(uint32* pExample);
|
|
EXAMPLE_STRUCT_T AdcModel_DoNothingExceptReturnASpecialType(void);
|
|
|
|
#endif // _ADCMODEL_H
|