33 lines
580 B
C
33 lines
580 B
C
|
|
#ifndef BOARDS_FT_H_
|
|
#define BOARDS_FT_H_
|
|
|
|
|
|
#define ADC_LOGIC_TPS 0
|
|
#define ADC_LOGIC_AFR 0
|
|
#define ADC_LOGIC_MAF 0
|
|
#define ADC_LOGIC_MAP 0
|
|
#define ADC_CHANNEL_VREF 0
|
|
#define ADC_CHANNEL_VBATT 0
|
|
#define ADC_LOGIC_INTAKE_AIR 0
|
|
#define ADC_LOGIC_COOLANT 0
|
|
|
|
#define DELEGATE (&SD1)
|
|
|
|
#define EFI_CONSOLE_UART_DEVICE (&testStream)
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
//float getVoltageDivided(int);
|
|
int getAdcValue(int channel);
|
|
void initFakeBoard(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* BOARDS_FT_H_ */
|