19 lines
258 B
C
19 lines
258 B
C
#ifndef MENU_PORT_H
|
|
#define MENU_PORT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void menu_port_init(void);
|
|
uint32_t menu_port_get_tick(void);
|
|
void menu_port_log(const char* fmt, ...);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // MENU_PORT_H
|