Project

General

Profile

Statistics
| Branch: | Revision:

root / scout_avr / src / main.cpp @ 2853d46b

History | View | Annotate | Download (4.62 KB)

1 6e7f0a98 Tom Mullins
#if 1 ///////////////////////////////////////////////
2 807483bf Tom Mullins
3 49090532 Tom Mullins
#include "ros.h"
4 6e7f0a98 Tom Mullins
#include "bom.h"
5 47e26dee Tom Mullins
#include "range.h"
6 6c9146d5 Tom Mullins
#include "stepper.h"
7
#include <std_msgs/Int16.h> // TODO remove
8
#include <bom/bom.h>
9
#include <sonar/sonar_distance.h>
10
#include <sonar/sonar_toggle.h>
11
#include <sonar/sonar_set_scan.h>
12 47e26dee Tom Mullins
#include <util/delay.h>
13 88fb3a79 Tom Mullins
14 6c9146d5 Tom Mullins
/* Period of main loop in ms */
15 2853d46b Tom Mullins
#define MAINLOOP_PERIOD 100//50
16 6c9146d5 Tom Mullins
17
char range_enabled = 0;
18 49090532 Tom Mullins
19 812788aa Tom Mullins
void debug(const char *str)
20
{
21 31f4a032 Tom Mullins
}
22
23 cf115e3d Tom Mullins
void callback(const std_msgs::Int16& msg)
24 49090532 Tom Mullins
{
25
}
26
27 6c9146d5 Tom Mullins
/* dammit, Priya, this capitalization just looks ridiculous */
28
void range_toggle_cb(const sonar::sonar_toggleRequest& req,
29
    sonar::sonar_toggleResponse& resp)
30
{
31
  range_enabled = req.set_on;
32
  resp.ack = true;
33
}
34
35
void range_set_scan_cb(const sonar::sonar_set_scanRequest& req,
36
    sonar::sonar_set_scanResponse& resp)
37
{
38
  step_sweep_bounds(req.stop_l, req.stop_r);
39
  resp.ack = true;
40
}
41
42 49090532 Tom Mullins
int main()
43 88fb3a79 Tom Mullins
{
44 6c9146d5 Tom Mullins
  unsigned long now, next;
45
  unsigned int ranges[2];
46 6e7f0a98 Tom Mullins
  char i, id;
47 6c9146d5 Tom Mullins
48 88fb3a79 Tom Mullins
  ros::NodeHandle nh;
49 6c9146d5 Tom Mullins
  nh.initNode();
50 49090532 Tom Mullins
51 6c9146d5 Tom Mullins
  /* To be removed later; just an example of a subscirber */
52
  ros::Subscriber<std_msgs::Int16> test_in("test_in", callback);
53
  nh.subscribe(test_in);
54 88fb3a79 Tom Mullins
55 2853d46b Tom Mullins
  /* Stepper */
56
  // TODO ROS messages to set bounds
57
  step_init();
58
  step_dir(1);
59
  step_set_size(STEP_WHOLE);
60
  step_sweep_bounds(-26, 26);
61
62 6c9146d5 Tom Mullins
  /* Range */
63 47e26dee Tom Mullins
  range_init();
64 6c9146d5 Tom Mullins
  sonar::sonar_distance range_msg;
65 86b48573 Tom Mullins
  ros::Publisher range_pub("sonar_distance", &range_msg);
66 6c9146d5 Tom Mullins
  ros::ServiceServer
67
    <sonar::sonar_toggleRequest, sonar::sonar_toggleResponse>
68
    range_toggle("sonar_toggle", range_toggle_cb);
69
  ros::ServiceServer
70
    <sonar::sonar_set_scanRequest, sonar::sonar_set_scanResponse>
71
    range_set_scan("sonar_set_scan", range_set_scan_cb);
72 86b48573 Tom Mullins
  nh.advertise(range_pub);
73 6c9146d5 Tom Mullins
74
  /* BOM */
75 47e26dee Tom Mullins
  bom_init();
76 6c9146d5 Tom Mullins
  bom::bom bom_msg;
77
  ros::Publisher bom_pub("bom", &bom_msg);
78 6e7f0a98 Tom Mullins
  nh.advertise(bom_pub);
79 88fb3a79 Tom Mullins
80 6e7f0a98 Tom Mullins
  id = 0;
81 6c9146d5 Tom Mullins
  next = 0;
82 88fb3a79 Tom Mullins
  while (1)
83
  {
84 6c9146d5 Tom Mullins
    nh.spinOnce();
85
86
    /* Skip loop if the loop period hasn't passed yet */
87
    /* TODO if we need more exact timing, we can enter a tight loop when now
88
     * gets close to next, and avoid the uncertainty of nh.spinOnce() */
89
    now = nh.getHardware()->time();
90
    if (now < next) {
91
      continue;
92
    }
93
    next = now + MAINLOOP_PERIOD;
94
95
    /* Temporary, for BOM testing */
96 6e7f0a98 Tom Mullins
    id++;
97
    if (id == 0x40) {
98
      id = 0;
99
    }
100
    set_robot_id(id);
101 47e26dee Tom Mullins
    bom_send(id & 1);
102 6c9146d5 Tom Mullins
103
    /* BOM */
104 6e7f0a98 Tom Mullins
    for (i = 0; i < 4; i++) {
105
      int msg = bom_get(i);
106
      if (msg != BOM_NO_DATA) {
107
        bom_msg.sender = bom_msg_get_robot_id(msg);
108
        bom_msg.send_dir = bom_msg_get_dir(msg);
109
        bom_msg.recv_dir = i;
110
        bom_pub.publish(&bom_msg);
111
      }
112
    }
113 47e26dee Tom Mullins
114 6c9146d5 Tom Mullins
    /* Stepper / range sensor */
115 2853d46b Tom Mullins
    if (range_enabled) {
116
      step_sweep();
117
      range_measure(ranges);
118
      range_msg.header.stamp = nh.now();
119
      range_msg.header.seq++;
120
      range_msg.pos = 0; // TODO fill this
121
      range_msg.distance0 = ranges[0];
122
      range_msg.distance1 = ranges[1];
123
      range_pub.publish(&range_msg);
124
    }
125 6c9146d5 Tom Mullins
126 88fb3a79 Tom Mullins
  }
127
128
  return 0;
129 49090532 Tom Mullins
}
130 88fb3a79 Tom Mullins
131 807483bf Tom Mullins
#else ///////////////////////////////////////////////
132
133
extern "C"
134 88fb3a79 Tom Mullins
{
135
#include <stdlib.h>
136
#include <string.h>
137 fd73d758 Tom Mullins
#include <avr/io.h>
138
#include <util/delay.h>
139 88fb3a79 Tom Mullins
}
140
141 49090532 Tom Mullins
#include "Atmega128rfa1.h"
142 1c3c96ce Tom Mullins
#include "range.h"
143 f115416e Tom Mullins
#include "bom.h"
144 6c9146d5 Tom Mullins
#include "stepper.h"
145 49090532 Tom Mullins
146 31f4a032 Tom Mullins
Atmega128rfa1 avr;
147
148 812788aa Tom Mullins
void debug(const char *str)
149
{
150 31f4a032 Tom Mullins
  avr.puts(str);
151
}
152
153 88fb3a79 Tom Mullins
int main()
154
{
155 1c3c96ce Tom Mullins
  char buf[20];
156 86b48573 Tom Mullins
  //int i;
157
  //char id = 0;
158 2853d46b Tom Mullins
  /*unsigned long now, next = 0;
159
  unsigned int ranges[2];*/
160 88fb3a79 Tom Mullins
  avr.init();
161 1c3c96ce Tom Mullins
  range_init();
162 f115416e Tom Mullins
  bom_init();
163 2853d46b Tom Mullins
  func step_sweep_cb = step_init(10);
164 6c9146d5 Tom Mullins
  step_sweep_bounds(-26, 26);
165
  step_dir(1);
166 2853d46b Tom Mullins
  step_sweep_speed(50);
167
  PORTF |= _BV(PF4);
168
  _delay_ms(500);
169
  PORTF = (PORTF & ~_BV(PF4)) | _BV(PF5);
170
  _delay_ms(500);
171
  PORTF &= ~_BV(PF5);
172 88fb3a79 Tom Mullins
  while (1)
173
  {
174 2853d46b Tom Mullins
    step_sweep_cb();
175
    _delay_ms(10);
176
    /*now = avr.time();
177 49090532 Tom Mullins
    if (now > next) {
178 2853d46b Tom Mullins
      next = now + 500;*/
179 fd73d758 Tom Mullins
      /*ultoa(now, buf, 10);
180 812788aa Tom Mullins
      avr.puts(buf);
181 fd73d758 Tom Mullins
      avr.puts("\r\n");*/
182 6c9146d5 Tom Mullins
      /*id++;
183 31f4a032 Tom Mullins
      if (id == 0x40) {
184
        id = 0;
185
      }
186 6c9146d5 Tom Mullins
      set_robot_id(id);*/
187 2853d46b Tom Mullins
      /*range_measure(ranges);
188 86b48573 Tom Mullins
      utoa(ranges[0], buf, 10);
189 f115416e Tom Mullins
      avr.puts("Range: ");
190
      avr.puts(buf);
191
      avr.puts(", ");
192 86b48573 Tom Mullins
      utoa(ranges[1], buf, 10);
193
      avr.puts(buf);
194 2853d46b Tom Mullins
      avr.puts("\r\n");*/
195 6c9146d5 Tom Mullins
      /*for (i = 0; i < 4; i++) {
196 f115416e Tom Mullins
        bom_send(i);
197
        int msg = bom_get(i);
198
        if (msg != BOM_NO_DATA) {
199
          avr.puts("BOM ");
200
          itoa(i, buf, 10);
201
          avr.puts(buf);
202
          avr.puts(": ");
203 31f4a032 Tom Mullins
          itoa(bom_msg_get_robot_id(msg), buf, 10);
204
          avr.puts(buf);
205
          avr.puts(" (");
206
          itoa(bom_msg_get_dir(msg), buf, 10);
207 f115416e Tom Mullins
          avr.puts(buf);
208 31f4a032 Tom Mullins
          avr.puts(")\r\n");
209 f115416e Tom Mullins
        }
210 6c9146d5 Tom Mullins
      }*/
211 2853d46b Tom Mullins
    //}
212 88fb3a79 Tom Mullins
  }
213
  return 0;
214 cf115e3d Tom Mullins
}
215 807483bf Tom Mullins
216
#endif //////////////////////////////////////////////