Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: MPU6050_SIM5320_TEST
MotionFSM/State.cpp
- Committer:
- suads
- Date:
- 2017-11-09
- Revision:
- 0:79959cf2cc3e
File content as of revision 0:79959cf2cc3e:
#include <Fsm.h> #include <State.h> State::State(FsmStates& states,Timer& timer): states_(states),stateTimer_(timer){} State* State::handle(Stop& event) { return states_.currentState(); } State* State::handle(Move& event) { return states_.currentState(); }