22 lines
286 B
C
22 lines
286 B
C
#ifndef __ELITE_H__
|
|
#define __ELITE_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#include "app_config.h"
|
|
#include "app_error.h"
|
|
|
|
#include "elite_def.h"
|
|
|
|
void elite_init(void);
|
|
void elite_instr_send(void *p, size_t size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ! __ELITE_H__ */
|