Project

General

Profile

Revision 1380

Added by Chris Mar over 14 years ago

fixed doxygen problems in wireless library, added new docs

View differences:

wl_basic.h
4 4
 *
5 5
 * Abstracted wireless functionality for sending and receiving packets
6 6
 *
7
 * @author Colony Project, CMU Robotics Club
7
 * @author Christopher Mar, Colony Project, CMU Robotics Club
8 8
 **/
9 9

  
10
/**
11
 * @defgroup wl_basic Wireless Basic
12
 * @brief Wireless abstraction for easily sending and receing packets.
13
 *
14
 * A high level abstraction of the wireless library.
15
 *
16
 * This will allow you to easily send and receive packets.
17
 *
18
 * @{
19
 **/
10 20

  
21
#ifndef WL_BASIC_H
22
#define WL_BASIC_H
23

  
11 24
#include <wireless.h>
12 25

  
13 26
#define WL_BASIC_GROUP 8
......
24 37
/** @brief PacketGroupHandler struct for Basic Group **/
25 38
PacketGroupHandler wl_basic_group_handler;
26 39

  
40
/** @} **/ // end defgroup
41

  
42
#endif
43

  

Also available in: Unified diff