Project

General

Profile

Statistics
| Branch: | Revision:

root / scout / motors / src / motors.h @ 2814387f

History | View | Annotate | Download (2.31 KB)

1 c406f16b Ben
/**
2 c9f87aaf bwasserm
 * Copyright (c) 2011 Colony Project
3 c406f16b Ben
 * 
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 motors.h
28 18e2028b Alex
 * @brief Contains motor declarations and functions.
29 c406f16b Ben
 * 
30
 * Contains functions and definitions for the use of
31 18e2028b Alex
 * motors.
32 c406f16b Ben
 *
33
 * @author Colony Project, CMU Robotics Club
34 18e2028b Alex
 * @author Benjamin Wasserman
35 c406f16b Ben
 **/
36
37
#ifndef _MOTORS_H_
38
#define _MOTORS_H_
39
40
#include "motors/query_motors.h"
41
#include "motors/set_motors.h"
42
43 2814387f Alex Zirbel
#define MAXSPEED 255
44 c9f87aaf bwasserm
#define MOTOR_PERCENT 'p'
45
#define MOTOR_MMS 'm'
46
#define MOTOR_CMS 'c'
47
#define MOTOR_ABSOLUTE 'a'
48
49 14736c0c Ben Wasserman
/* The number of messages in the queue. If messages arrive faster than they are
50
 * handled, old ones are thrown out */
51
#define QUEUE_SIZE 4
52
53 c9f87aaf bwasserm
54 18e2028b Alex
/** @brief Initialize the motors module and driver. **/
55 c406f16b Ben
int main(int argc, char **argv);
56 18e2028b Alex
57
/** @brief Responds to topic to set motor speeds and configs. **/
58 c406f16b Ben
void motors_set(const motors::set_motors::ConstPtr& msg);
59 18e2028b Alex
60
/** @brief Responds to service to query motor speeds. **/
61 c406f16b Ben
bool motors_query(motors::query_motors::Request &req,
62 18e2028b Alex
                  motors::query_motors::Response &res);
63 c406f16b Ben
64 c9f87aaf bwasserm
/** @brief Converts speeds from speeds in units to absolute speeds. **/
65
int motors_rel_to_abs(int rel_speed, int units);
66
67
/** @brief Converts speeds from absolute speeds to speeds in units. **/
68
int motors_abs_to_rel(int rel_speed, int units);
69
70 c406f16b Ben
#endif