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.
32 lines
594 B
32 lines
594 B
|
3 weeks ago
|
/*
|
||
|
|
* motors_power_action.h
|
||
|
|
*
|
||
|
|
* Created on: 2025年7月14日
|
||
|
|
* Author: akeguo
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef FSM_INC_MOTORS_POWER_ACTION_H_
|
||
|
|
#define FSM_INC_MOTORS_POWER_ACTION_H_
|
||
|
|
|
||
|
|
#include "fsm_state.h"
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
void Motors_Power_On_Do(transition_t *p_this);
|
||
|
|
void Motors_Power_Off_Do(transition_t *p_this);
|
||
|
|
void Motors_Power_On_Enter(transition_t *p_this);
|
||
|
|
void Motors_Power_On_Exit(transition_t *p_this);
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
extern transition_t current_motor_power_state;
|
||
|
|
|
||
|
|
extern transition_state_t motor_power_on_state;
|
||
|
|
extern transition_state_t motor_power_off_state;
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#endif /* FSM_INC_MOTORS_POWER_ACTION_H_ */
|