You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
354 B
11 lines
354 B
// ******************** 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;
|
|
|
|
// ********************* Globals **********************
|
|
uint8_t hw_type = 0;
|
|
const board *current_board;
|
|
bool is_enumerated = 0; |