diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-06-05 21:21:28 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-06-05 21:21:28 +0200 |
commit | 310c2837836d24e1335eafed4fda2701570c1760 (patch) | |
tree | 5dec2822850656080ff0dcf89d2772a057e56c8c /src/common/includes/Core/fsm.h | |
parent | 8618657695b2530f463d1e7e0fca11304d2b897e (diff) | |
download | glutte-o-matic-310c2837836d24e1335eafed4fda2701570c1760.tar.gz glutte-o-matic-310c2837836d24e1335eafed4fda2701570c1760.tar.bz2 glutte-o-matic-310c2837836d24e1335eafed4fda2701570c1760.zip |
Create objects for common/ fsm main minmea
Diffstat (limited to 'src/common/includes/Core/fsm.h')
-rw-r--r-- | src/common/includes/Core/fsm.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/includes/Core/fsm.h b/src/common/includes/Core/fsm.h index 41f0503..c061597 100644 --- a/src/common/includes/Core/fsm.h +++ b/src/common/includes/Core/fsm.h @@ -99,5 +99,8 @@ void fsm_update_inputs(struct fsm_input_signals_t* inputs); // Getter for outputs void fsm_get_outputs(struct fsm_output_signals_t* out); +// Announce a state change +void fsm_state_switched(const char *new_state); + #endif // _FSM_H_ |