mirror of
https://github.com/azaion/autopilot.git
synced 2026-04-22 11:16:34 +00:00
33399370f3
Simple program to control Siyi A8 mini (actually some other Siyi cameras too). Receiving responce sometimes gives error when checking CRC.
13 lines
124 B
C
13 lines
124 B
C
#pragma once
|
|
|
|
|
|
enum MESSAGE_IDX
|
|
{
|
|
STX = 0,
|
|
CTRL = 2,
|
|
Data_len = 3,
|
|
SEQ = 5,
|
|
CMD_ID = 7,
|
|
DATA = 8
|
|
};
|