The Hiking Pal tracking device firmware. See full description on the detail page: https://www.hackster.io/bowenfeng/hiking-pal-v1-07c02d

Dependencies:   FXOS8700CQ MODSERIAL mbed

Fork of Avnet_ATT_Cellular_IOT by Avnet

Revision:
42:be4b9ee3a615
Parent:
40:aec4d09fde23
Child:
68:6e311c747045
--- a/wnc_control.h	Sat Jul 23 20:13:01 2016 +0000
+++ b/wnc_control.h	Sun Jul 24 03:10:21 2016 +0000
@@ -8,13 +8,15 @@
 extern int send_wnc_cmd(const char * s, string ** r, int ms_timeout);
 
 // Low level command functions
-extern void at_init_wnc(void);
+extern void at_init_wnc(bool hardReset = false);
 extern void at_sockopen_wnc(const string & ipStr, const char * port );
 extern void at_sockclose_wnc(void);
 extern int at_dnsresolve_wnc(const char * s, string * ipStr);
 extern void at_sockwrite_wnc(const char * s);
 extern unsigned at_sockread_wnc(string * pS, unsigned n, unsigned retries);
 extern void at_at_wnc(void);
+extern int at_send_wnc_cmd(const char * s, string ** r, int ms_timeout);
+extern int check_wnc_ready(void);
 
 // High level functions that attempt to correct for things going bad with the WNC
 extern void software_init_mdm(void);