Compare commits
3
Commits
gimbal
...
4d39c3811c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4d39c3811c | ||
|
|
94363b56f5 | ||
|
|
103086b1a4 |
@@ -38,3 +38,28 @@ stream_ctrl (
|
|||||||
enum STREAMRESOLUTION res,
|
enum STREAMRESOLUTION res,
|
||||||
enum STREAMCTRL ctrl );
|
enum STREAMCTRL ctrl );
|
||||||
|
|
||||||
|
static const uint8_t VISION_HOST = 17;
|
||||||
|
static const uint8_t VISION_INDEX = 7;
|
||||||
|
|
||||||
|
#define VISION_DETECT_ENABLE_CMD 0xA30A
|
||||||
|
|
||||||
|
#define VISION_DETECT_ENABLE_PERSON 2
|
||||||
|
#define VISION_DETECT_ENABLE_GESTURE 4
|
||||||
|
#define VISION_DETECT_ENABLE_LINE 16
|
||||||
|
#define VISION_DETECT_ENABLE_MARKER 32
|
||||||
|
#define VISION_DETECT_ENABLE_ROBOT 128
|
||||||
|
void
|
||||||
|
vision_enable (
|
||||||
|
union Request* req,
|
||||||
|
uint16_t seq,
|
||||||
|
bool ack );
|
||||||
|
|
||||||
|
#define VISION_DETECT_INFO_CMD 0xA40A
|
||||||
|
enum VISIONTYPE {
|
||||||
|
VISIONTYPE_SHOULDER,
|
||||||
|
VISIONTYPE_PERSON,
|
||||||
|
VISIONTYPE_GESTURE,
|
||||||
|
VISIONTYPE_LINE,
|
||||||
|
VISIONTYPE_MARKER,
|
||||||
|
VISIONTYPE_ROBOT
|
||||||
|
};
|
||||||
|
|||||||
@@ -280,6 +280,55 @@ struct PACKED StreamCtrlResp {
|
|||||||
struct Footer footer;
|
struct Footer footer;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct PACKED VisionRect {
|
||||||
|
union {
|
||||||
|
struct {
|
||||||
|
float x;
|
||||||
|
float y;
|
||||||
|
float w;
|
||||||
|
float h;
|
||||||
|
uint32_t info;
|
||||||
|
} rect;
|
||||||
|
struct {
|
||||||
|
float x;
|
||||||
|
float y;
|
||||||
|
float theta;
|
||||||
|
float c;
|
||||||
|
uint32_t info;
|
||||||
|
} line;
|
||||||
|
struct {
|
||||||
|
float x;
|
||||||
|
float y;
|
||||||
|
float w;
|
||||||
|
float h;
|
||||||
|
uint16_t info;
|
||||||
|
uint16_t distance;
|
||||||
|
} marker;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
struct PACKED VisionDetectInfo {
|
||||||
|
struct Header header;
|
||||||
|
uint8_t type;
|
||||||
|
uint8_t status;
|
||||||
|
uint16_t errcode;
|
||||||
|
uint8_t count;
|
||||||
|
struct VisionRect rects[];
|
||||||
|
};
|
||||||
|
|
||||||
|
struct PACKED VisionDetectEnableReq {
|
||||||
|
struct Header header;
|
||||||
|
uint16_t type;
|
||||||
|
struct Footer footer;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct PACKED VisionDetectEnableResp {
|
||||||
|
struct Header header;
|
||||||
|
uint8_t retcode;
|
||||||
|
uint16_t error;
|
||||||
|
struct Footer footer;
|
||||||
|
};
|
||||||
|
|
||||||
union Request {
|
union Request {
|
||||||
struct Header header;
|
struct Header header;
|
||||||
struct SetSdkConnectionReq sdkconn;
|
struct SetSdkConnectionReq sdkconn;
|
||||||
@@ -295,6 +344,7 @@ union Request {
|
|||||||
struct GimbalCtrlSpeedReq gimbspeed;
|
struct GimbalCtrlSpeedReq gimbspeed;
|
||||||
struct BlasterFireReq blaster;
|
struct BlasterFireReq blaster;
|
||||||
struct StreamCtrlReq stream;
|
struct StreamCtrlReq stream;
|
||||||
|
struct VisionDetectEnableReq enablevision;
|
||||||
};
|
};
|
||||||
union Response {
|
union Response {
|
||||||
struct Header header;
|
struct Header header;
|
||||||
@@ -311,11 +361,16 @@ union Response {
|
|||||||
struct GimbalCtrlSpeedResp gimbspeed;
|
struct GimbalCtrlSpeedResp gimbspeed;
|
||||||
struct BlasterFireResp blaster;
|
struct BlasterFireResp blaster;
|
||||||
struct StreamCtrlResp stream;
|
struct StreamCtrlResp stream;
|
||||||
|
struct VisionDetectEnableResp enablevision;
|
||||||
|
};
|
||||||
|
union Push {
|
||||||
|
struct VisionDetectInfo vision;
|
||||||
};
|
};
|
||||||
union Message {
|
union Message {
|
||||||
struct Header header;
|
struct Header header;
|
||||||
union Request req;
|
union Request req;
|
||||||
union Response resp;
|
union Response resp;
|
||||||
|
union Push push;
|
||||||
};
|
};
|
||||||
|
|
||||||
enum MESSAGEERR {
|
enum MESSAGEERR {
|
||||||
|
|||||||
@@ -1,11 +1,28 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include "message.h"
|
||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
|
||||||
// Handle for the high level robot interface
|
// Handle for the high level robot interface
|
||||||
struct RobotImp;
|
struct RobotImp;
|
||||||
typedef struct RobotImp* Robot;
|
typedef struct RobotImp* Robot;
|
||||||
|
|
||||||
|
#define FRAGMENT_MESSAGE 1
|
||||||
|
#define FRAGMENT_RECTANGLE 2
|
||||||
|
#define FRAGMENT_LINE 3
|
||||||
|
#define FRAGMENT_MARKER 4
|
||||||
|
|
||||||
|
struct Fragment {
|
||||||
|
int type;
|
||||||
|
union {
|
||||||
|
union Message message;
|
||||||
|
struct VisionRect rect;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
int robot_poll(Robot robot, struct Fragment* fragment);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Return a handle to the high level robot interface, or NULL on error.
|
* Return a handle to the high level robot interface, or NULL on error.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -41,6 +41,8 @@ message_length(int cmd) {
|
|||||||
return sizeof(struct BlasterFireReq);
|
return sizeof(struct BlasterFireReq);
|
||||||
case STREAM_CTRL_CMD:
|
case STREAM_CTRL_CMD:
|
||||||
return sizeof(struct StreamCtrlReq);
|
return sizeof(struct StreamCtrlReq);
|
||||||
|
case VISION_DETECT_ENABLE_CMD:
|
||||||
|
return sizeof(struct VisionDetectEnableReq);
|
||||||
default:
|
default:
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -68,6 +70,8 @@ message_module(int cmd) {
|
|||||||
return host2byte(BLASTER_HOST, BLASTER_INDEX);
|
return host2byte(BLASTER_HOST, BLASTER_INDEX);
|
||||||
case STREAM_CTRL_CMD:
|
case STREAM_CTRL_CMD:
|
||||||
return host2byte(STREAM_HOST, STREAM_INDEX);
|
return host2byte(STREAM_HOST, STREAM_INDEX);
|
||||||
|
case VISION_DETECT_ENABLE_CMD:
|
||||||
|
return host2byte(VISION_HOST, VISION_INDEX);
|
||||||
default:
|
default:
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,14 @@
|
|||||||
#include "message.h"
|
#include "message.h"
|
||||||
|
#include "camera.h" // FIXME: hack
|
||||||
#include "crc.h"
|
#include "crc.h"
|
||||||
|
|
||||||
enum MESSAGEERR
|
enum MESSAGEERR
|
||||||
message_validate(const union Message* message) {
|
message_validate(const union Message* message) {
|
||||||
|
|
||||||
|
// FIXME: hack
|
||||||
|
if(message->header.cmd == VISION_DETECT_INFO_CMD)
|
||||||
|
return MESSAGEERR_NONE;
|
||||||
|
|
||||||
uint16_t length = message->header.length & 0x1FFF & ~0x400;
|
uint16_t length = message->header.length & 0x1FFF & ~0x400;
|
||||||
|
|
||||||
if(message->header.crc != crc8(message, 3))
|
if(message->header.crc != crc8(message, 3))
|
||||||
|
|||||||
@@ -17,4 +17,12 @@ stream_ctrl (
|
|||||||
req_finalize(seq, STREAM_CTRL_CMD, ack, req);
|
req_finalize(seq, STREAM_CTRL_CMD, ack, req);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
vision_enable (
|
||||||
|
union Request* req,
|
||||||
|
uint16_t seq,
|
||||||
|
bool ack ) {
|
||||||
|
req->enablevision.type = VISION_DETECT_ENABLE_PERSON;
|
||||||
|
req_finalize(seq, VISION_DETECT_ENABLE_CMD, ack, req);
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
+94
@@ -7,8 +7,18 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
struct FragmentLink {
|
||||||
|
struct Fragment fragment;
|
||||||
|
struct FragmentLink *next;
|
||||||
|
};
|
||||||
|
|
||||||
struct RobotImp {
|
struct RobotImp {
|
||||||
|
|
||||||
|
struct {
|
||||||
|
struct FragmentLink *head;
|
||||||
|
struct FragmentLink *free;
|
||||||
|
} frag_queue;
|
||||||
|
|
||||||
struct Client* client;
|
struct Client* client;
|
||||||
uint16_t seq;
|
uint16_t seq;
|
||||||
|
|
||||||
@@ -98,6 +108,61 @@ robot_heartbeat(Robot robot) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline
|
||||||
|
static
|
||||||
|
void
|
||||||
|
enqueue_fragment (
|
||||||
|
Robot robot,
|
||||||
|
const struct Fragment fragment ) {
|
||||||
|
|
||||||
|
struct FragmentLink *link;
|
||||||
|
if(robot->frag_queue.free) {
|
||||||
|
link = robot->frag_queue.free;
|
||||||
|
robot->frag_queue.free = link->next;
|
||||||
|
} else {
|
||||||
|
link = malloc(sizeof(struct FragmentLink));
|
||||||
|
link->next = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
link->fragment = fragment;
|
||||||
|
|
||||||
|
if(robot->frag_queue.head) {
|
||||||
|
robot->frag_queue.head->next = link;
|
||||||
|
} else {
|
||||||
|
robot->frag_queue.head = link;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
inline
|
||||||
|
static
|
||||||
|
void
|
||||||
|
dequeue_fragment (
|
||||||
|
Robot robot,
|
||||||
|
struct Fragment *fragment ) {
|
||||||
|
|
||||||
|
fragment->type = 0;
|
||||||
|
if(!robot->frag_queue.head)
|
||||||
|
return;
|
||||||
|
|
||||||
|
struct FragmentLink *link = robot->frag_queue.head;
|
||||||
|
*fragment = link->fragment;
|
||||||
|
|
||||||
|
robot->frag_queue.head = link->next;
|
||||||
|
link->next = NULL;
|
||||||
|
if(robot->frag_queue.free) {
|
||||||
|
robot->frag_queue.free->next = link;
|
||||||
|
} else {
|
||||||
|
robot->frag_queue.free = link;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
int robot_poll(Robot robot, struct Fragment* fragment) {
|
||||||
|
dequeue_fragment(robot, fragment);
|
||||||
|
return fragment->type;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
robot_work(Robot robot) {
|
robot_work(Robot robot) {
|
||||||
|
|
||||||
@@ -241,9 +306,38 @@ robot_work(Robot robot) {
|
|||||||
|
|
||||||
union Message resp;
|
union Message resp;
|
||||||
poll_message(robot->client, &resp);
|
poll_message(robot->client, &resp);
|
||||||
|
if(resp.header.cmd) {
|
||||||
|
const struct Fragment fragment = {
|
||||||
|
.type = FRAGMENT_MESSAGE,
|
||||||
|
.message = resp
|
||||||
|
};
|
||||||
|
enqueue_fragment(robot, fragment);
|
||||||
|
}
|
||||||
switch(resp.header.cmd) {
|
switch(resp.header.cmd) {
|
||||||
case 0:
|
case 0:
|
||||||
break;
|
break;
|
||||||
|
case VISION_DETECT_INFO_CMD:
|
||||||
|
// enqueue rectangles
|
||||||
|
for(int i = 0; i < resp.push.vision.count; i++) {
|
||||||
|
int type;
|
||||||
|
switch(resp.push.vision.type) {
|
||||||
|
case VISIONTYPE_SHOULDER:
|
||||||
|
case VISIONTYPE_PERSON:
|
||||||
|
case VISIONTYPE_GESTURE:
|
||||||
|
case VISIONTYPE_ROBOT:
|
||||||
|
type = FRAGMENT_RECTANGLE;
|
||||||
|
case VISIONTYPE_LINE:
|
||||||
|
type = FRAGMENT_LINE;
|
||||||
|
case VISIONTYPE_MARKER:
|
||||||
|
type = FRAGMENT_MARKER;
|
||||||
|
}
|
||||||
|
const struct Fragment fragment = {
|
||||||
|
.type = type,
|
||||||
|
.rect = resp.push.vision.rects[i]
|
||||||
|
};
|
||||||
|
enqueue_fragment(robot, fragment);
|
||||||
|
}
|
||||||
|
break;
|
||||||
case SET_SDK_CONNECTION_CMD:
|
case SET_SDK_CONNECTION_CMD:
|
||||||
// TODO: Do more with this
|
// TODO: Do more with this
|
||||||
if(resp.resp.sdkconn.retcode) {
|
if(resp.resp.sdkconn.retcode) {
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
#include "robomaster.h"
|
||||||
#include "roboeasy.h"
|
#include "roboeasy.h"
|
||||||
#include "SDL2/SDL.h"
|
#include "SDL2/SDL.h"
|
||||||
|
|
||||||
@@ -60,6 +61,64 @@ int main(int argc, char* argv[]) {
|
|||||||
SDL_GetWindowSize(win, &w, &h);
|
SDL_GetWindowSize(win, &w, &h);
|
||||||
|
|
||||||
while(robot_work(robot)) {
|
while(robot_work(robot)) {
|
||||||
|
|
||||||
|
struct Fragment fragment;
|
||||||
|
while(robot_poll(robot, &fragment)) {
|
||||||
|
switch(fragment.type) {
|
||||||
|
case FRAGMENT_RECTANGLE:
|
||||||
|
case FRAGMENT_LINE:
|
||||||
|
case FRAGMENT_MARKER:
|
||||||
|
printf("Rect(%f,%f,%f,%f)\n",
|
||||||
|
fragment.rect.rect.x,
|
||||||
|
fragment.rect.rect.y,
|
||||||
|
fragment.rect.rect.w,
|
||||||
|
fragment.rect.rect.h );
|
||||||
|
break;
|
||||||
|
case FRAGMENT_MESSAGE:
|
||||||
|
switch(fragment.message.header.cmd) {
|
||||||
|
case VISION_DETECT_INFO_CMD:
|
||||||
|
if(fragment.message.push.vision.errcode) {
|
||||||
|
printf("Vision error %d\n", fragment.message.push.vision.errcode);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
printf("Received %d rectangles\n", fragment.message.push.vision.count);
|
||||||
|
printf("\tVision type %d\n", fragment.message.push.vision.type);
|
||||||
|
printf("\tVision status %d\n", fragment.message.push.vision.status);
|
||||||
|
break;
|
||||||
|
case SDK_HEARTBEAT_CMD:
|
||||||
|
if(fragment.message.resp.heartbeat.retcode) {
|
||||||
|
printf("ERROR: Heartbeat error\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
printf("Heartbeat\n");
|
||||||
|
break;
|
||||||
|
case STREAM_CTRL_CMD:
|
||||||
|
if(fragment.message.resp.stream.retcode) {
|
||||||
|
printf("ERROR: Stream not enabled\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
printf("Stream enabled\n");
|
||||||
|
break;
|
||||||
|
case VISION_DETECT_ENABLE_CMD:
|
||||||
|
if(fragment.message.resp.enablevision.retcode) {
|
||||||
|
printf("ERROR: Vision not enabled\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if(fragment.message.resp.enablevision.error) {
|
||||||
|
printf("ERROR: Vision not enabled %d\n",
|
||||||
|
fragment.message.resp.enablevision.error);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
printf("Vision enabled\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
printf("Unhandled fragment type\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
SDL_Event event;
|
SDL_Event event;
|
||||||
while(SDL_PollEvent(&event)) {
|
while(SDL_PollEvent(&event)) {
|
||||||
switch(event.type) {
|
switch(event.type) {
|
||||||
|
|||||||
Reference in New Issue
Block a user