25 lines
368 B
C
25 lines
368 B
C
/*
|
|
* test_fuel_map.h
|
|
*
|
|
* Created on: Nov 6, 2013
|
|
* Author: pc
|
|
*/
|
|
|
|
#ifndef TEST_FUEL_MAP_H_
|
|
#define TEST_FUEL_MAP_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
void testFuelMap(void);
|
|
void testAngleResolver(void);
|
|
void testPinHelper(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* TEST_FUEL_MAP_H_ */
|