fast-feedback virtual target task code on STM Nucleo

Dependencies:   mbed

Committer:
gwappa
Date:
Thu May 31 15:25:37 2018 +0000
Revision:
8:973dcd190672
Parent:
7:6744ec9ccc25
Child:
9:e136394bdb39
current working

Who changed what in which revision?

UserRevisionLine numberNew contents of line
gwappa 4:fcf597f82632 1 #ifndef STATES_H_
gwappa 4:fcf597f82632 2 #define STATES_H_
gwappa 4:fcf597f82632 3
gwappa 4:fcf597f82632 4 struct Delay {
gwappa 4:fcf597f82632 5 static void setup();
gwappa 4:fcf597f82632 6 static void teardown();
gwappa 4:fcf597f82632 7 };
gwappa 4:fcf597f82632 8
gwappa 7:6744ec9ccc25 9 struct Prepare {
gwappa 7:6744ec9ccc25 10 static void setup();
gwappa 7:6744ec9ccc25 11 static void teardown();
gwappa 7:6744ec9ccc25 12 };
gwappa 7:6744ec9ccc25 13
gwappa 7:6744ec9ccc25 14 struct Abort {
gwappa 7:6744ec9ccc25 15 static void setup();
gwappa 7:6744ec9ccc25 16 static void teardown();
gwappa 7:6744ec9ccc25 17 };
gwappa 7:6744ec9ccc25 18
gwappa 4:fcf597f82632 19 struct Cued {
gwappa 4:fcf597f82632 20 static void setup();
gwappa 7:6744ec9ccc25 21 static void gate();
gwappa 4:fcf597f82632 22 static void teardown();
gwappa 4:fcf597f82632 23 };
gwappa 4:fcf597f82632 24
gwappa 4:fcf597f82632 25 struct WithResp {
gwappa 4:fcf597f82632 26 static void setup();
gwappa 7:6744ec9ccc25 27 static void stopReward();
gwappa 4:fcf597f82632 28 static void teardown();
gwappa 4:fcf597f82632 29 };
gwappa 4:fcf597f82632 30
gwappa 4:fcf597f82632 31 struct NoResp {
gwappa 4:fcf597f82632 32 static void setup();
gwappa 4:fcf597f82632 33 static void teardown();
gwappa 4:fcf597f82632 34 };
gwappa 4:fcf597f82632 35
gwappa 4:fcf597f82632 36 struct End {
gwappa 4:fcf597f82632 37 static void setup();
gwappa 4:fcf597f82632 38 };
gwappa 4:fcf597f82632 39
gwappa 8:973dcd190672 40 struct TestReward {
gwappa 8:973dcd190672 41 static void setup();
gwappa 8:973dcd190672 42 static void teardown();
gwappa 8:973dcd190672 43 };
gwappa 8:973dcd190672 44
gwappa 4:fcf597f82632 45 #endif