Project

General

Profile

Statistics
| Branch: | Revision:

root / scout_avr / src / range.cpp @ 812788aa

History | View | Annotate | Download (1.86 KB)

1
#include "range.h"
2

    
3
extern "C"
4
{
5
#include <avr/io.h>
6
#include <avr/interrupt.h>
7
}
8

    
9
/* Ultrasonic Sensor:
10
 * -if RX pin is left open, it will continuously take readings
11
 * -PW output is 147us/in.
12
 * -PW will be high for a maximum of 37.5ms if no target is detected
13
 * 
14
 * 37.5ms * 8 MHz / 8 prescaler = 37500 max wait
15
 */
16

    
17
// so that we can test on a 328 or the stk600
18
#if defined(__AVR_ATmega128RFA1__) || defined(__AVR_ATmega2560__)
19
#  define read_INT0 (PIND & _BV(PD0))
20
#  define read_INT1 (PIND & _BV(PD1))
21
#elif defined(__AVR_ATmega328P__) || defined(__AVR_ATmega328__)
22
#  define read_INT0 (PIND & _BV(PD2))
23
#  define read_INT1 (PIND & _BV(PD3))
24
#else
25
#  error "Please define read_INTx for this device"
26
#endif
27

    
28
struct range_t {
29
  unsigned int start; // timer value on rising edge
30
  unsigned int value; // last measured range
31
} range[2];
32

    
33
static void on_edge(int which)
34
{
35
  unsigned char int_high;
36
  // TODO centralize timer 5
37
  // TODO ensure this is in microseconds even for 16MHz
38
  unsigned int time = TCNT5;
39
  
40
  if (which)
41
  {
42
    int_high = read_INT1;
43
  }
44
  else
45
  {
46
    int_high = read_INT0;
47
  }
48
  
49
  if (int_high)
50
  {
51
    range[which].start = time;
52
  }
53
  else
54
  {
55
    // if timer overflowed since start, this arithmetic should still work out
56
    range[which].value = time - range[which].start;
57
  }
58
}
59

    
60
ISR(INT0_vect)
61
{
62
  on_edge(0);
63
}
64

    
65
ISR(INT1_vect)
66
{
67
  on_edge(1);
68
}
69

    
70
void range_init()
71
{
72
  // ISCx = 1, edge triggered
73
  EICRA |= _BV(ISC10) | _BV(ISC00);
74
  // enable INT0 and INT1
75
  EIMSK |= _BV(INT1) | _BV(INT0);
76
  
77
  // CS1 = 2, 1/8 prescaler
78
  // if this is changed, remember to change recv_edge in bom.cpp!
79
  TCCR5B = _BV(CS51);
80
  
81
  range[0].value = RANGE_ERR;
82
  range[1].value = RANGE_ERR;
83
}
84

    
85
unsigned int range_get(int which)
86
{
87
  unsigned int ret;
88
  if (0 <= which && which <= 1)
89
  {
90
    cli();
91
    ret = range[which].value;
92
    sei();
93
    return ret;
94
  }
95
  else return RANGE_ERR;
96
}