fast-feedback virtual target task code on STM Nucleo

Dependencies:   mbed

Revision:
7:6744ec9ccc25
Parent:
4:fcf597f82632
Child:
8:973dcd190672
--- a/states.h	Thu May 24 15:34:58 2018 +0000
+++ b/states.h	Tue May 29 14:40:50 2018 +0000
@@ -6,13 +6,25 @@
     static void teardown();
 };
 
+struct Prepare {
+    static void setup();
+    static void teardown();
+};
+
+struct Abort {
+    static void setup();
+    static void teardown();
+};
+
 struct Cued {
     static void setup();
+    static void gate();
     static void teardown();
 };
 
 struct WithResp {
     static void setup();
+    static void stopReward();
     static void teardown();
 };