16 lines
281 B
C
16 lines
281 B
C
#ifndef __DEHY_TEST_H__
|
|
#define __DEHY_TEST_H__
|
|
|
|
#include "stdint.h"
|
|
|
|
typedef enum
|
|
{
|
|
LOGIC_INIT = 0x5AA5,
|
|
LOGIC_RUN = 0x0000
|
|
}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);
|
|
|
|
|
|
#endif
|