uses pushing box to publish to google spreadsheets with a state machine instead of a while loop

Dependents:   DCS_FINAL_CODE

Fork of GSM_PUSHING_BOX_STATE_MACHINE by DCS_TEAM

Revision:
3:dac922a18af6
Parent:
1:c1458b739eb6
Child:
4:3264bc92993c
diff -r c1458b739eb6 -r dac922a18af6 gsmqueue.h
--- a/gsmqueue.h	Thu Mar 05 20:51:04 2015 +0000
+++ b/gsmqueue.h	Thu Mar 05 21:24:56 2015 +0000
@@ -8,7 +8,6 @@
 //Memory block of char size alocated for DMA
 #define BUFFER_LENGTH 255 //cannot exeede an int max value
 
-
 #define QUEUETAIL (char*)DMA_TCD0_DADDR
 
 
@@ -31,6 +30,9 @@
 //Parse through characters until first integer is found
 int parseInt();
 
+//Returns true if the character is numeric
+bool isNumeric(char* qPos);
+
 //Reset the GSM DMA idle bit to 0
 void resetGSMIdleBit();