From 261e6be038754388212e7a7b69da1318d6a171d2 Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Mon, 10 Oct 2011 01:13:52 +0200 Subject: Add GPS code. --- gps.cpp | 40 ++++++++++++++++++++++++++++++++++++++++ gps.h | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ main.cpp | 19 +++++++++++++++++++ 3 files changed, 119 insertions(+) create mode 100644 gps.cpp create mode 100644 gps.h diff --git a/gps.cpp b/gps.cpp new file mode 100644 index 0000000..1ae3684 --- /dev/null +++ b/gps.cpp @@ -0,0 +1,40 @@ +#include "gps.h" + +GPS* GPS::self; + +template<> +void interrupt() { + GPS::self->irq(); +} + +void GPS::irq() { + + uint8_t c = USART3.DR; + + if(!incomplete_msg) { + incomplete_msg = msg_pool.create(); + + if(!incomplete_msg) { + return; + } + } + + if(incomplete_msg->n == 0 && c != '$') { + return; + } + + if(incomplete_msg->n >= 128) { + incomplete_msg->n = 0; + return; + } + + incomplete_msg->buf[incomplete_msg->n++] = c; + + if(c == '\n') { + GPIOB.ODR ^= 1 << 1; + + const_cast&>(complete_msg) = incomplete_msg; + incomplete_msg.reset(); + complete = true; + } +} diff --git a/gps.h b/gps.h new file mode 100644 index 0000000..c37fc8a --- /dev/null +++ b/gps.h @@ -0,0 +1,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(); + + private: + static GPS* self; + + void irq(); + + Pool msg_pool; + + P incomplete_msg; + volatile P 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 read() { + while(!complete) { + Thread::yield(); + } + + complete = false; + + P msg = const_cast&>(complete_msg); + + const_cast&>(complete_msg).reset(); + + return msg; + } +}; + +#endif diff --git a/main.cpp b/main.cpp index 471e40e..c95731f 100644 --- a/main.cpp +++ b/main.cpp @@ -11,6 +11,7 @@ #include "usart.h" #include "xbee.h" +#include "gps.h" template inline void saturate(T& var, T absmax) { @@ -82,6 +83,22 @@ uint32_t thstack[1024]; Thread thread(thstack, sizeof(thstack), threadmain); +GPS gps; + +void gps_thread_main() { + while(1) { + P msg = gps.read(); + + if(msg->n < 128) { + xbee_send(2, msg->n, msg->buf); + } + } +} + +uint32_t gps_stack[256]; + +Thread gps_thread(gps_stack, sizeof(gps_stack), gps_thread_main); + int main() { // Initialize system timer. Time::init(); @@ -124,8 +141,10 @@ int main() { PID pid_yaw(6000, 0, 0); usart_enable(); + gps.enable(); thread.start(); + gps_thread.start(); while(1) { // Wait for a new update. -- cgit v1.2.3