24 lines
317 B
C
24 lines
317 B
C
#ifndef __ELITE_H__
|
|
#define __ELITE_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "elite_def.h"
|
|
|
|
#include "app_config.h"
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
void elite_init(void);
|
|
void elite_instr_send(void *p, size_t size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ! __ELITE_H__ */
|