mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-21 21:43:52 +08:00
519e39e49 Changed heartbeat timeout to be 2 seconds on no ignition 996dc4049 Added heartbeat to black loopback testing 79b44cb7e bump version 59f581317 Black (#254) 096486693 no need to store safety only misra output anymore git-subtree-dir: panda git-subtree-split: 519e39e494c0b3dd0cf38581302788b779a03c7b
14 lines
492 B
C
14 lines
492 B
C
// ******************** Prototypes ********************
|
|
void puts(const char *a);
|
|
void puth(unsigned int i);
|
|
void puth2(unsigned int i);
|
|
typedef struct board board;
|
|
typedef struct harness_configuration harness_configuration;
|
|
void can_flip_buses(uint8_t bus1, uint8_t bus2);
|
|
void can_set_obd(uint8_t harness_orientation, bool obd);
|
|
|
|
// ********************* Globals **********************
|
|
uint8_t hw_type = 0;
|
|
const board *current_board;
|
|
bool is_enumerated = 0;
|
|
uint32_t heartbeat_counter = 0; |