Project

General

Profile

Statistics
| Revision:

root / branches / autonomous_recharging / code / projects / autonomous_recharging / charging_station / wl_error_group.h @ 198

History | View | Annotate | Download (752 Bytes)

1
#ifndef WL_ERROR_GROUP_H
2
#define WL_ERROR_GROUP_H
3

    
4
/**
5
 * @file wl_error_group.h
6
 * @brief A packet group for error messages.
7
 *
8
 * A packet group for sending and receiving error
9
 * messages.
10
 *
11
 * @author Brian Coltin, Colony Project, CMU Robotics Club
12
 **/
13

    
14
/**
15
 * @defgroup wlerror Error Packets
16
 * @brief Functions for sending and receiving error packets
17
 * 
18
 * Functions for sending and receiving error packets.
19
 * 
20
 * @{
21
 **/
22

    
23
/**@brief Register this packet group with the wireless library **/
24
void wl_error_register(void);
25
/**@brief Unregister this packet group with the wireless library **/
26
void wl_error_unregister(void);
27
/**@brief Send a string in an error packet **/
28
void wl_error_send_string(char* str);
29

    
30
/** @} **/ // end defgroup
31

    
32
#endif