|
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/**** protocolLevel = 12, toolsVersion = 12.0.0.201211010336 ****/
#ifndef MyApp__H
#define MyApp__H
#include "Em_Types.h"
#include "Em_Message.h"
#ifdef __cplusplus
extern "C" {
#endif
/* resource someRes */
typedef uint8_t MyApp_someRes_t;
extern void MyApp_someRes_fetch(MyApp_someRes_t* const output);
extern void MyApp_someRes_store(MyApp_someRes_t* const input);
void MyApp_reset(void);
void MyApp_run(void);
void MyApp_accept(bool enable);
void MyApp_disconnect(void);
void MyApp_pairingOn(uint8_t secs, void(*handler)(void));
void MyApp_pairingOff(void(*handler)(void));
void MyApp_connectHandler(void);
void MyApp_disconnectHandler(void);
#ifdef __cplusplus
}
#endif
#endif /* MyApp__H */
|