blob: c37fc8a87d7f073d531636244cc07298f7b2df54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
#ifndef GPS_H
#define GPS_H
#include "stm32.h"
#include "interrupt.h"
#include "thread.h"
#include "pool.h"
struct GPSMsg {
unsigned int n;
uint8_t buf[128];
GPSMsg() : n(0) {}
};
class GPS {
friend void interrupt<Interrupt::USART3>();
private:
static GPS* self;
void irq();
Pool<GPSMsg, 4> msg_pool;
P<GPSMsg> incomplete_msg;
volatile P<GPSMsg> complete_msg;
volatile bool complete;
public:
GPS() {
self = this;
}
void enable() {
RCC.enable(RCC.USART3);
USART3.BRR = 7500; // 4800 baud
USART3.CR1 = 0x202c;
Interrupt::enable(Interrupt::USART3);
}
P<GPSMsg> read() {
while(!complete) {
Thread::yield();
}
complete = false;
P<GPSMsg> msg = const_cast<P<GPSMsg>&>(complete_msg);
const_cast<P<GPSMsg>&>(complete_msg).reset();
return msg;
}
};
#endif
|