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:
7:eeef6f9fa1db
Parent:
4:f1708f6ec905
Child:
16:2b2f2a3bde5a

File content as of revision 7:eeef6f9fa1db:

#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(struct gps_data_t* gps_data);

#endif