root / demos / joystick / lib / src / libwireless / wl_defs.h @ 1736
History | View | Annotate | Download (2.3 KB)
| 1 | /**
|
|---|---|
| 2 | * Copyright (c) 2007 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 wl_defs.h |
| 28 | * @brief Definitions for Wireless |
| 29 | * |
| 30 | * Contains definitions for wireless packet groups, packet types, |
| 31 | * debugging information, etc. |
| 32 | * |
| 33 | * @author Brian Coltin, Colony Project, CMU Robotics Club |
| 34 | **/ |
| 35 | |
| 36 | #ifndef WL_DEFS_H
|
| 37 | #define WL_DEFS_H
|
| 38 | |
| 39 | //comment out this line if using a computer hooked up to an xbee
|
| 40 | //#define ROBOT
|
| 41 | |
| 42 | //uncomment this line for debug information
|
| 43 | //#define WL_DEBUG
|
| 44 | |
| 45 | // Packet Groups and Types
|
| 46 | |
| 47 | // Error group
|
| 48 | #define WL_ERROR_GROUP 1 |
| 49 | |
| 50 | #define WL_ERROR_STRING_TYPE 1 |
| 51 | |
| 52 | // Token Ring group
|
| 53 | #define WL_TOKEN_RING_GROUP 2 |
| 54 | |
| 55 | #define WL_TOKEN_PASS 1 |
| 56 | #define WL_TOKEN_SENSOR_MATRIX 2 |
| 57 | #define WL_TOKEN_BOM_ON 3 |
| 58 | #define WL_TOKEN_JOIN 4 |
| 59 | #define WL_TOKEN_JOIN_ACCEPT 5 |
| 60 | |
| 61 | // timing constants
|
| 62 | #ifndef FIREFLY
|
| 63 | #define BOM_DELAY 100 |
| 64 | #else
|
| 65 | #define BOM_DELAY 200 |
| 66 | #endif
|
| 67 | |
| 68 | #define DEATH_DELAY 4 |
| 69 | #define JOIN_DELAY 8 |
| 70 | |
| 71 | #ifdef WL_DEBUG
|
| 72 | |
| 73 | #ifdef ROBOT
|
| 74 | #include <serial.h> |
| 75 | #endif
|
| 76 | |
| 77 | #ifdef ROBOT
|
| 78 | #define WL_DEBUG_PRINT( s ) usb_puts( s )
|
| 79 | #else
|
| 80 | #define WL_DEBUG_PRINT( s ) printf( s )
|
| 81 | #endif
|
| 82 | |
| 83 | #ifdef ROBOT
|
| 84 | #define WL_DEBUG_PRINT_INT( i ) usb_puti(i)
|
| 85 | #else
|
| 86 | #define WL_DEBUG_PRINT_INT( i ) printf("%i", i) |
| 87 | #endif
|
| 88 | |
| 89 | #else
|
| 90 | |
| 91 | #define WL_DEBUG_PRINT( s )
|
| 92 | #define WL_DEBUG_PRINT_INT( i )
|
| 93 | |
| 94 | #endif
|
| 95 | |
| 96 | #endif
|
| 97 |