Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (3.34 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

    
56
// the init function
57

    
58
/**@brief Initialize wireless. **/
59
int8_t wl_init(void);
60

    
61
/**@brief Terminate wireless. **/
62
int8_t wl_terminate(void);
63

    
64

    
65
// the send functions
66

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

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

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

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

    
79
/**@brief Default (i.e. basic) send wrapper. **/
80
int8_t wl_send_basic(char *data, uint8_t length);
81

    
82

    
83
// the ack function
84

    
85
/**@brief Returns the number of acknowledgment errors, and resets number to zero. **/
86
int8_t wl_ack_error(void);
87

    
88

    
89
// the receive functions
90

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

    
94
/**@brief Returns the next basic packet if available. **/
95
int8_t wl_get_basic(char *data, uint8_t length);
96

    
97
/**@brief Dispatches packets for registered handlers. **/
98
int8_t wl_dispatch(void);
99

    
100

    
101
// the group register function
102

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

    
106

    
107
/**@} **/ //end defgroup
108

    
109
#endif