16 lines
224 B
C
16 lines
224 B
C
#include <stdint.h>
|
|
#define UNUSED(x) (void)(x)
|
|
|
|
#ifndef HAL_H
|
|
#define HAL_H
|
|
|
|
enum clock_mode {
|
|
CLOCK_FAST,
|
|
CLOCK_BENCHMARK
|
|
};
|
|
|
|
void hal_setup(const enum clock_mode clock);
|
|
void hal_send_str(const char* in);
|
|
|
|
#endif
|