firmware  v0.1.2
Chromation Spectrometer Dev-Kit
ReturnValues.h
1 #ifndef _RETURNVALUES_H
2 #define _RETURNVALUES_H
3 
4 #include <stdbool.h> // bool, true, false
5 #include <stdint.h> // uint8_t
6 
7 // mockist tests assign a DOF_Returns() function pointer to these functions
8 bool StubReturnsFalse(void);
9 bool StubReturnsTrue(void);
10 uint8_t StubReturns_uint8_t(uint8_t return_value);
11 
12 #endif // _RETURNVALUES_H