cellular port

Dependencies:   Beep C027_Support C12832 LM75B MMA7660 mbed-rtos mbed nsdl_lib

This is a port of the NSDL HelloWorld for cellular.

To run the example you need a C027 and the ARM mbed application shield. The example uses cellular instead of ethernet and takes the true position from the GPS instead of using a fixed position.

Committer:
mazgch
Date:
Wed Jun 18 08:29:25 2014 +0000
Revision:
11:fa12b9f50538
retrieve location from GPS

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mazgch 11:fa12b9f50538 1 // GPS resource implementation
mazgch 11:fa12b9f50538 2
mazgch 11:fa12b9f50538 3 #ifndef GPS_RES_H
mazgch 11:fa12b9f50538 4 #define GPS_RES_H
mazgch 11:fa12b9f50538 5
mazgch 11:fa12b9f50538 6 #include "nsdl_support.h"
mazgch 11:fa12b9f50538 7
mazgch 11:fa12b9f50538 8 void gps_resource_set(double lat, double lon);
mazgch 11:fa12b9f50538 9 int create_gps_resource(sn_nsdl_resource_info_s *resource_ptr);
mazgch 11:fa12b9f50538 10
mazgch 11:fa12b9f50538 11 #endif