keyboard input, serial com test

Dependencies:   mbed DISCO_L475VG_IOT01A_wifi TextLCD USBHost

Revision:
6:9d975a9d2728
diff -r 0466445897b8 -r 9d975a9d2728 src/config.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/config.cpp	Thu Aug 15 19:33:04 2019 +0000
@@ -0,0 +1,21 @@
+#include "config.h"
+
+std::string pause{"default"};
+std::string cycles{"default"};
+
+
+void setPause(std::string p){
+    pause = p;
+}
+
+void setCycles(std::string c){
+    cycles = c;
+}
+
+std::string getPause(void){
+    return pause;
+}
+
+std::string getCycles(void){
+    return cycles;
+}
\ No newline at end of file