25 lines
657 B
C
Raw Normal View History

2026-05-10 21:35:40 +08:00
#ifndef __DEHY_TEST_H__
#define __DEHY_TEST_H__
#include "stdint.h"
typedef enum
{
LOGIC_INIT = 0x5AA5,
LOGIC_RUN = 0x1111
// LOGIC_CLOSE = 0x2222
}LOGIC_STATE_ENUM_T;
void dehy_speed_up(LOGIC_STATE_ENUM_T init_cmd, uint16_t acc_val, uint16_t current_speed, uint16_t target_speed);
2026-05-10 21:35:40 +08:00
/*************************************************************************************
* @brief
* @return uint16_t
*
* @warning
* @note
*************************************************************************************/
uint16_t supershake_speed_limit(LOGIC_STATE_ENUM_T cmd);
2026-05-10 21:35:40 +08:00
#endif