Project

General

Profile

Statistics
| Revision:

root / branches / wireless / code / projects / libwireless / wireless.h @ 1581

History | View | Annotate | Download (4.12 KB)

1
/**
2
 * Copyright (c) 2009 Colony Project
3
 * 
4
 * Permission is hereby granted, free of charge, to any person
5
 * obtaining a copy of this software and associated documentation
6
 * files (the "Software"), to deal in the Software without
7
 * restriction, including without limitation the rights to use,
8
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
9
 * copies of the Software, and to permit persons to whom the
10
 * Software is furnished to do so, subject to the following
11
 * conditions:
12
 * 
13
 * The above copyright notice and this permission notice shall be
14
 * included in all copies or substantial portions of the Software.
15
 * 
16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
18
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
20
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23
 * OTHER DEALINGS IN THE SOFTWARE.
24
 **/
25

    
26
/**
27
 * @file wireless.h
28
 * @brief Contains definitions for using the wireless library
29
 *
30
 * Contains definitions for interfacing with the 
31
 * wireless library.
32
 *
33
 * @author Colony Project, CMU Robotics Club
34
 **/
35

    
36
#ifndef WIRELESS_H
37
#define WIRELESS_H
38

    
39
// need this for C99 int types
40
#ifndef STDINT_H
41
#define STDINT_H
42
#include <stdint.h>
43
#endif
44

    
45

    
46
/**
47
 * @defgroup wireless Wireless
48
 * @brief Interface with the wireless library
49
 *
50
 * Interface with the wireless library.
51
 *
52
 * @{
53
 **/
54
 
55
/**@defgroup wl_defines Public Constants
56
 * @{ **/
57

    
58
/**@brief global scope **/
59
#define GLOBAL UINT8_C(0)
60

    
61
/**@brief local pan scope **/
62
#define PAN UINT8_C(1)
63

    
64
/**@brief broadcast address **/
65
#define BROADCAST UINT16_C(0xFFFF)
66

    
67
/**@brief reliable (TCP) mode **/
68
#define RELIABLE UINT8_C(0)
69

    
70
/**@brief fast (UDP) mode **/
71
#define FAST UINT8_C(1)
72

    
73
/**@brief standard priority **/
74
#define NORMAL_PRIORITY UINT8_C(0)
75

    
76
/**@brief high priority, handle immediately **/
77
#define HIGH_PRIORITY UINT8_C(1)
78

    
79
/**@} **/ // end defines group
80

    
81

    
82
/**@defgroup wl_functions Public API Functions 
83
 * @{ **/
84
 
85
// the init function
86

    
87
/**@brief Initialize wireless. **/
88
int8_t wl_init(void);
89

    
90
/**@brief Terminate wireless. **/
91
int8_t wl_terminate(void);
92

    
93

    
94
// the send functions
95

    
96
/**@brief The core send function. This will take all possible arguments and send all types of packets. **/
97
int8_t wl_send(char *data, uint8_t length, uint8_t group, uint8_t scope, uint8_t dest, uint8_t mode);
98

    
99
/**@brief Wrapper for core send function that will send a global packet across the current channel. **/
100
int8_t wl_send_global(char *data, uint8_t length, uint8_t group);
101

    
102
/**@brief Wrapper for core send function that will send a packet across the current channel on the current pan. **/
103
int8_t wl_send_pan(char *data, uint8_t length, uint8_t group);
104

    
105
/**@brief Wrapper for core send function that will send a packet across the current channel to a specific robot. **/
106
int8_t wl_send_robot(char *data, uint8_t length, uint8_t group, uint8_t dest, uint8_t mode);
107

    
108
/**@brief Default (i.e. basic) send wrapper. **/
109
int8_t wl_send_basic(char *data, uint8_t length);
110

    
111

    
112
// the ack function
113

    
114
/**@brief Returns the number of acknowledgment errors. **/
115
int8_t wl_ack_error(void);
116

    
117
/**@brief Checks a specific packet for the acknowledgement status. **/
118
int8_t wl_ack_check(uint8_t packet);
119

    
120
/**@brief Resets acknowledgement statistics back to zero. **/
121
void wl_ack_reset(void);
122

    
123

    
124
// the receive functions
125

    
126
/**@brief The main receive function.  Dispatches packets for registered handlers and returns next basic packet if available. **/
127
int8_t wl_get(char *data, uint8_t length);
128

    
129
/**@brief Returns the next basic packet if available. **/
130
int8_t wl_get_basic(char *data, uint8_t length);
131

    
132
/**@brief Dispatches packets for registered handlers. **/
133
int8_t wl_dispatch(void);
134

    
135

    
136
// the group register function
137

    
138
/**@brief Function to register new packet handlers (for non-default groups only). **/
139
int8_t wl_register_handler(uint8_t group, void (*func)(void), uint8_t priority);
140

    
141
/**@} **/ //end functions group
142

    
143
/**@} **/ //end wireless group
144

    
145
#endif