You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
317 B
19 lines
317 B
|
3 weeks ago
|
/*
|
||
|
|
* fsm_state_control.h
|
||
|
|
*
|
||
|
|
* Created on: Jan 13, 2026
|
||
|
|
* Author: bm673
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef FSM_INC_FSM_STATE_CONTROL_H_
|
||
|
|
#define FSM_INC_FSM_STATE_CONTROL_H_
|
||
|
|
|
||
|
|
void Fsm_Init();
|
||
|
|
void GF_Dispatch();
|
||
|
|
void IV_control();
|
||
|
|
int AbnormalDetect();
|
||
|
|
|
||
|
|
typedef void (*ActionFunc)(void);
|
||
|
|
|
||
|
|
#endif /* FSM_INC_FSM_STATE_CONTROL_H_ */
|