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.
18 lines
317 B
18 lines
317 B
/*
|
|
* 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_ */
|
|
|