m4_init/platform/hal.h
2023-02-07 14:52:47 +00:00

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