19 lines
197 B
C
19 lines
197 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "bsp_def.h"
|
|
|
|
typedef struct {
|
|
void (*fn)(void *);
|
|
void *arg;
|
|
} bsp_callback_t;
|
|
|
|
void bsp_init(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|