18 lines
234 B
C
18 lines
234 B
C
#ifndef __ELITE_DEV_H__
|
|
#define __ELITE_DEV_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "app_config.h"
|
|
#include "elite.h"
|
|
|
|
const elite_instance_t *dev_init(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ! __ELITE_DEV_H__ */
|