Project

General

Profile

Statistics
| Revision:

root / branches / autonomous_recharging / code / projects / autonomous_recharging / charging_station / charging_defs.h @ 98

History | View | Annotate | Download (569 Bytes)

1 98 bcoltin
/**
2
 * @file charging_defs.h
3
 * @brief Definitions for charging
4
 *
5
 * Contains definitions convenient for use in the charging station.
6
 *
7
 * @author Brian Coltin, Colony Project, CMU Robotics Club
8
 **/
9
10
//comment this out to not output debugging information
11
#define STATION_DEBUG
12
13
#ifdef STATION_DEBUG
14
#define STATION_DEBUG_PRINT( s ) usb_puts( s )
15
#else
16
#define STATION_DEBUG_PRINT( s )
17
#endif
18
19
/**
20
 * @defgroup defs Charging Station Definitions
21
 * @brief Defines used in the charging station
22
 *
23
 * Definitions used in the charging station.
24
 *
25
 * @{
26
 **/
27
28
/** @} **/