Project

General

Profile

Statistics
| Branch: | Revision:

root / scout / libscout / src / WirelessSender.h @ c9638ad1

History | View | Annotate | Download (2.41 KB)

1
/**
2
 * Copyright (c) 2012 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
/**
28
 * @file WirelessSender.h
29
 * @brief Contains wireless declarations and functions
30
 * 
31
 * Contains functions and definitions for the use of
32
 * XBee wireless
33
 *
34
 * Uses the dest field of the wireless packet to specify which
35
 * scout the message is intended for, or SCOUT_ALL to send to
36
 * all scouts
37
 *
38
 * @author Colony Project, CMU Robotics Club
39
 * @author Tom Mullins
40
 **/
41

    
42
#ifndef _WIRELESS_SENDER_H_
43
#define _WIRELESS_SENDER_H_
44

    
45
#include <vector>
46
#include <ros/ros.h>
47
#include "messages/WirelessPacket.h"
48
#include "constants.h"
49

    
50
/// A macro to allow sending to all the scouts.
51
#define SCOUT_ALL (messages::WirelessPacket::DEST_BROADCAST)
52

    
53
class WirelessSender
54
{
55
    public:
56
        WirelessSender(const ros::NodeHandle& libscout_node,
57
                uint16_t type = 0,
58
                uint16_t pan = messages::WirelessPacket::PAN_DEFAULT,
59
                uint16_t channel = messages::WirelessPacket::CHANNEL_DEFAULT);
60
        
61
        void setType(uint16_t type);
62
        void setPan(uint16_t pan);
63
        void setChannel(uint16_t channel);
64
        
65
        void send(uint8_t data[], int length, uint16_t dest = SCOUT_ALL);
66
        void send(std::vector<uint8_t>& data, uint16_t dest = SCOUT_ALL);
67
        
68
    private:
69
        ros::NodeHandle node;
70
        ros::Publisher pub;
71
        messages::WirelessPacket packet;
72
};
73

    
74
#endif