Project

General

Profile

Statistics
| Revision:

root / branches / autonomous_recharging / code / projects / libwireless / lib / sensor_matrix.h @ 883

History | View | Annotate | Download (2.92 KB)

1 17 bcoltin
/**
2 340 bcoltin
 * Copyright (c) 2007 Colony Project
3 726 gtress
 *
4 340 bcoltin
 * 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 726 gtress
 *
13 340 bcoltin
 * The above copyright notice and this permission notice shall be
14
 * included in all copies or substantial portions of the Software.
15 726 gtress
 *
16 340 bcoltin
 * 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 17 bcoltin
 * @file sensor_matrix.h
28
 * @brief Definitions for sensor matrices
29
 *
30
 * Contains functions and declarations for using sensor matrices.
31
 *
32
 * @author Brian Coltin, Colony Project, CMU Robotics Club
33
 **/
34
35 340 bcoltin
#ifndef SENSOR_MATRIX_H
36
#define SENSOR_MATRIX_H
37
38
39 17 bcoltin
/**
40
 * @defgroup sensormatrix Sensor Matrix
41
 * @brief the robot sensor matrix
42
 *
43
 * These functions and structures are used for localization
44
 * to determine the relative directions of robots.
45
 *
46
 * @{
47
 **/
48
49 793 bcoltin
#define MAXIMUM_XBEE_ID                0x10
50
#define READING_UNKNOWN                0xFF
51
52 17 bcoltin
/**
53
 * @struct SensorMatrix
54
 *
55
 * A sensor matrix.
56
 **/
57 793 bcoltin
//TODO: the order of member variables in this struct should be changed in case the compile packs the struct
58
// In order to achieve the best packing, the variables should be listed in order of decreasing memory size.
59
// Thus, pointers should be first, followed by int, followed by char.
60 17 bcoltin
typedef struct
61
{
62
        /**
63 793 bcoltin
         * The number of robots in the token ring.
64
         **/
65
        int numJoined;
66
        /**
67 17 bcoltin
         * The element representing a robot is true if that robot
68
         * is in the token ring and false otherwise.
69
         **/
70 793 bcoltin
        unsigned char joined[MAXIMUM_XBEE_ID];
71 17 bcoltin
} SensorMatrix;
72
73
/**@brief Create a sensor matrix **/
74 793 bcoltin
void sensor_matrix_create(void);
75 17 bcoltin
/**@brief Set a reading in a sensor matrix **/
76 793 bcoltin
void sensor_matrix_set_reading(int observer, int robot, int reading);
77 17 bcoltin
/**@brief Get a reading in a sensor matrix **/
78 793 bcoltin
int sensor_matrix_get_reading(int observer, int robot);
79 17 bcoltin
/**@brief Set whether the robot is in the token ring **/
80 793 bcoltin
void sensor_matrix_set_in_ring(int robot, int in);
81 17 bcoltin
/**@brief Get whether the robot is in the sensor ring **/
82 793 bcoltin
int sensor_matrix_get_in_ring(int robot);
83 17 bcoltin
/**@brief Get the number of robots which have joined the token ring **/
84 793 bcoltin
int sensor_matrix_get_joined(void);
85
/**@brief Get the maximum size of the sensor matrix **/
86
int sensor_matrix_get_size(void);
87 17 bcoltin
88
/** @} **/ //end defgroup
89
90 340 bcoltin
91
#endif