fix(core): Add missing 'FSM_NAME' associated constant

This one got lost while moving from the prototype code to the proper
library.
This commit is contained in:
Vincent Ambo 2018-09-26 16:51:33 +02:00
parent 60824a06f1
commit c03e14758f
2 changed files with 6 additions and 0 deletions

View file

@ -40,6 +40,7 @@ pub enum DoorAction {
}
impl FSM for DoorState {
const FSM_NAME: &'static str = "door";
type Event = DoorEvent;
type Action = DoorAction;