-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathIOControl.h
More file actions
38 lines (29 loc) · 1.61 KB
/
IOControl.h
File metadata and controls
38 lines (29 loc) · 1.61 KB
1
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
35
36
37
38
//-----------------------------------------------------------------------------
//By using and accessing this material you agree to the terms of the Sample Code
//License Agreement found here. If you do not agree you may not access
//or otherwise use this information.
//-----------------------------------------------------------------------------
#ifndef IOCONTROL_H
#define IOCONTROL_H
#include "IOExpander.h"
//-----------------------------------------------------------------------------
// Macros
//-----------------------------------------------------------------------------
#define MODEM_TRANSMISSION_RESULT 0
//-----------------------------------------------------------------------------
// User defined types
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// Public function declarations
//-----------------------------------------------------------------------------
extern void IOControl_Init(void);
// -------------------- Message Handlers ---------------------------------------
extern void IOControl_ResetHandler(IOExpanderMsg_t * Msg);
extern void IOControl_WakeupHandler(IOExpanderMsg_t * Msg);
extern void IOControl_SleepHandler(IOExpanderMsg_t * Msg);
extern void IOControl_PollHandler(IOExpanderMsg_t * Msg);
extern void IOControl_TxHandler(IOExpanderMsg_t * Msg);
extern void IOControl_ApplicationSpecificHandler(IOExpanderMsg_t * IOExpanderMsg);
// -----------------------------------------------------------------------------
#endif // IOCONTROL_H
// End of file