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:
4:f1708f6ec905
Parent:
3:12e1c2c71cf2
Child:
7:eeef6f9fa1db

File content as of revision 4:f1708f6ec905:

#ifndef __GPS_LOCATE_H__
#define __GPS_LOCATE_H__

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

int gps_on(void);

int gps_off(void);

int gps_locate(struct gps_data_t* gps_data);

#endif