fast-feedback virtual target task code on STM Nucleo

Dependencies:   mbed

states.h

Committer:
gwappa
Date:
2018-05-29
Revision:
7:6744ec9ccc25
Parent:
4:fcf597f82632
Child:
8:973dcd190672

File content as of revision 7:6744ec9ccc25:

#ifndef STATES_H_
#define STATES_H_

struct Delay {
    static void setup();
    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();
};

struct NoResp {
    static void setup();
    static void teardown();
};

struct End {
    static void setup();
};

#endif