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:
5:320d2babfb41
Parent:
3:dac922a18af6
Child:
6:3ccc86304c2c
diff -r 3264bc92993c -r 320d2babfb41 gsmqueue.cpp
--- a/gsmqueue.cpp	Thu Mar 05 21:27:47 2015 +0000
+++ b/gsmqueue.cpp	Thu Mar 05 21:29:17 2015 +0000
@@ -19,7 +19,7 @@
 //Find an occurrence of the given string in the buffer.
 //Only advance queueHead until a matching string is found.
 //The given string terminates in NULL (\0)
-bool findInQueue(char* str, int strLen)
+bool findInQueue(char* str)
 {
     //Check that string to find is not empty
     if (*str == NULL) return false;