mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-06 22:22:11 +08:00
52f4bd9600
old-commit-hash: 98cd6147c3
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; |