fast-feedback virtual target task code on STM Nucleo

Dependencies:   mbed

Revision:
4:fcf597f82632
Child:
7:6744ec9ccc25
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/states.h	Wed May 23 15:15:03 2018 +0000
@@ -0,0 +1,28 @@
+#ifndef STATES_H_
+#define STATES_H_
+
+struct Delay {
+    static void setup();
+    static void teardown();
+};
+
+struct Cued {
+    static void setup();
+    static void teardown();
+};
+
+struct WithResp {
+    static void setup();
+    static void teardown();
+};
+
+struct NoResp {
+    static void setup();
+    static void teardown();
+};
+
+struct End {
+    static void setup();
+};
+
+#endif
\ No newline at end of file