Prototyping the Adaptable Emergency System on an C027 board.

Dependencies:   C027_Support mbed

Fork of c027_prototyping by Philémon Favrod

gps_locate.h

Committer:
aroulin
Date:
2014-09-30
Revision:
3:12e1c2c71cf2
Child:
4:f1708f6ec905

File content as of revision 3:12e1c2c71cf2:

#ifndef __GPS_LOCATE_H__
#define __GPS_LOCATE_H__

struct gps_data_t {
    double la;
    double lo;
    double altitude;
    double speed;
}; 

int gps_on(void);

int gps_off(void);

int gps_locate(gps_data_t* gps_data);

#endif