2024-05-30 22:44:22 +08:00
|
|
|
#ifndef __ELITE_DEV_H__
|
|
|
|
|
#define __ELITE_DEV_H__
|
|
|
|
|
|
2024-06-25 14:55:14 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2024-05-30 22:44:22 +08:00
|
|
|
#include "app_config.h"
|
|
|
|
|
#include "elite.h"
|
|
|
|
|
|
|
|
|
|
const elite_instance_t *dev_init(void);
|
|
|
|
|
|
2024-06-25 14:55:14 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif /* ! __ELITE_DEV_H__ */
|