Changed serial connection to UDP connection.

Added ZR10 support.
Added automation to choose configuration.
This commit is contained in:
Nffj84
2024-10-14 21:18:27 +03:00
parent 2b2af3044e
commit a3d9137b77
16 changed files with 380 additions and 305 deletions
+8 -1
View File
@@ -68,7 +68,14 @@ typedef struct {
// Get these only once
uint resolutionX;
uint resolutionY;
uint hardwareID;
float maxZoom;
float aiEngineCameraFOVHMin;
float aiEngineCameraFOVHMax;
float aiEngineCameraFOVVMin;
float aiEngineCameraFOVVMax;
float aiEngineCameraFLMin;
float aiEngineCameraFLMax;
// Update these before every command
float currentYaw;
@@ -80,7 +87,7 @@ typedef struct {
struct AiEngineServerSerialCommandStructure
{
SERIAL_COMMAND_ID id;
UDP_COMMAND_ID id;
QByteArray command;
QString description;
};