m4_init/platform/hal.h

16 lines
224 B
C
Raw Permalink Normal View History

2023-02-02 16:50:31 +00:00
#include <stdint.h>
2023-02-06 12:06:10 +00:00
#define UNUSED(x) (void)(x)
2023-02-02 16:50:31 +00:00
#ifndef HAL_H
#define HAL_H
enum clock_mode {
CLOCK_FAST,
CLOCK_BENCHMARK
};
2023-02-07 14:52:47 +00:00
void hal_setup(const enum clock_mode clock);
void hal_send_str(const char* in);
2023-02-02 16:50:31 +00:00
#endif