Guido Ottaviani / Mbed 2 deprecated LeonardoMbos

Dependencies:   mbos Watchdog TextLCD mbed ConfigFile

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Common.h Source File

Common.h

00001 #define PCBAUD 115200
00002 #define GPSRX p10
00003 #define GPSBAUD 4800
00004 #define BUFF_SIZE 256
00005 
00006 #define LCD_LIGHT_DIM_TIMER 5000
00007 #define SHOW_LCD_TIMER 500
00008 #define TEMP_TIMER 500
00009 #define WDT_TIMER 250
00010 #define WDT_TIMEOUT .3f
00011 
00012 
00013 typedef struct _DegMinSec
00014 {
00015     int Deg;         
00016     int Min; 
00017     double Sec;        
00018  } DegMinSec;
00019 
00020 typedef struct _DistAzimuth
00021 {
00022     double Dist; 
00023     double Azimuth[2];
00024  } DistAzimuth;
00025  
00026  enum DirLab{Mag, Dir, Gps};