Prototyping the Adaptable Emergency System on an C027 board.

Dependencies:   C027_Support mbed

Fork of c027_prototyping by Philémon Favrod

Committer:
philemonf
Date:
Tue Sep 30 14:38:57 2014 +0000
Revision:
1:23ffa0e091bc
Add tests for the CellLocate

Who changed what in which revision?

UserRevisionLine numberNew contents of line
philemonf 1:23ffa0e091bc 1
philemonf 1:23ffa0e091bc 2 #ifndef __CELL_LOCATE_H__
philemonf 1:23ffa0e091bc 3 #define __CELL_LOCATE_H__
philemonf 1:23ffa0e091bc 4
philemonf 1:23ffa0e091bc 5 struct cell_locate_data_t {
philemonf 1:23ffa0e091bc 6 float latitude;
philemonf 1:23ffa0e091bc 7 float longitude;
philemonf 1:23ffa0e091bc 8 };
philemonf 1:23ffa0e091bc 9
philemonf 1:23ffa0e091bc 10 int cell_locate(cell_locate_data_t *cell_locate_data);
philemonf 1:23ffa0e091bc 11
philemonf 1:23ffa0e091bc 12 #endif