fast-feedback virtual target task code on STM Nucleo

Dependencies:   mbed

Revision:
32:1416e015016c
Parent:
30:5f975f572ffb
--- a/trial.h	Sun Oct 14 14:45:02 2018 +0000
+++ b/trial.h	Thu Dec 13 07:18:43 2018 +0000
@@ -10,7 +10,7 @@
 struct TrialFlag {
     bool cued;
     bool responded;
-    bool rewarded; // only used during Condition mode
+    bool rewarded; // only used during Pair mode
     bool reset;
     
     TrialFlag(): cued(false), responded(false), rewarded(false), reset(false) {}
@@ -22,7 +22,7 @@
 struct Trial {
     
     /**
-    *   the trial count used during the Condition/Report/Associate modes
+    *   the trial count used during the Pair/Report/Associate modes
     */
     uint8_t      index;