You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
322 B
C
21 lines
322 B
C
2 years ago
|
#pragma once
|
||
|
|
||
|
#include "message.h"
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
static const uint8_t GIMBAL_HOST = 4;
|
||
|
static const uint8_t GIMBAL_INDEX = 0;
|
||
|
|
||
|
#define GIMBAL_CTRL_SPEED_CMD 0x0C04
|
||
|
|
||
|
void
|
||
|
gimbal_ctrl_speed (
|
||
|
union Request* req,
|
||
|
uint16_t seq,
|
||
|
bool ack,
|
||
|
int16_t p,
|
||
|
int16_t y,
|
||
|
int16_t r );
|