17 lines
313 B
C
17 lines
313 B
C
#ifndef COIL_H_
|
|
#define COIL_H_
|
|
|
|
/**** Includes ****/
|
|
#include <stdint.h>
|
|
|
|
/**** Public definitions ****/
|
|
#define COIL_TARGET_HANDBRAKE -1
|
|
#define COIL_LOCK_VOLTAGE 6500
|
|
|
|
/**** Public function declarations ****/
|
|
int16_t coil_target(uint8_t force, uint8_t hbrake_act);
|
|
|
|
#ifdef TESTING
|
|
#endif
|
|
|
|
#endif /* COIL_H_ */ |