JZsdk_GetFrameTemplate.c 14.9 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
#include <stdio.h>
#include <string.h>
#include "../JZsdk_Code/JZsdk_Code.h"

/******************************************************

	用于获取帧模板

/******************************************************/
int JZsdk_GetFrameTemplate(int InsCode ,char *str, int *str_len)
{
    printf("JZsdk_GetFrameTemplate:获取0x%x帧模板\n",InsCode);
    switch (InsCode)
    {
/********************************************************************************************************************************************************
 * 
 *      5A帧
 * 
********************************************************************************************************************************************************/

        case JZ_INSCODE_5AFRAME_SEARCHLIGHT_SET_FREQUENCY:
        {
            char sendbuf[13] = {0x5A	,0x5A	,0x77	,0x00	,0x0D	,0x00	,0x00	,0x61	,0x51	,0x00	,0x00	,0x00	,0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13;
        }
        break;

        case JZ_INSCODE_5AFRAME_SEARCHLIGHT_CONTROL:
        {
            char sendbuf[13] = {0x5A	,0x5A	,0x77	,0x00	,0x0D	,0x00	,0x00	,0x62	,0x51	,0x00	,0x00	,0x00	,0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13; 
        }
        break;

        case JZ_INSCODE_5AFRAME_SEARCHLIGHT_SET_LUMEN:
        {
            char sendbuf[13] = {0x5A	,0x5A	,0x77	,0x00	,0x0D	,0x00	,0x00	,0x63	,0x51	,0x00	,0x00	,0x00	,0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13; 
        }
        break;

        case JZ_INSCODE_5AFRAME_GIMBAL_PITCH_CONTROL:
        {
            char sendbuf[14] = {0x5A	,0x5A	,0x77	,0x00	,0x0E	,0x00	,0x00	,0x64	,0x51	,0x00   ,0x00	,0x00	,0x00	,0x23};
            memcpy(str, sendbuf, 14);
            *str_len = 14; 
        }
        break;

        case JZ_INSCODE_5AFRAME_GIMBAL_PITCH_FINETUNING_CONTROL:
        {
            char sendbuf[14] = {0x5A	,0x5A	,0x77	,0x00	,0x0E	,0x00	,0x00	,0x64	,0x52	,0x00   ,0x00	,0x00   ,0x00	,0x23};
            memcpy(str, sendbuf, 14);
            *str_len = 14; 
        }
        break;        
 
        case JZ_INSCODE_5AFRAME_WARNINGLIGHT_CONTROL:
        {
            char sendbuf[13] = {0x5A	,0x5A	,0x77	,0x00	,0x0D	,0x00	,0x00	,0x66	,0x51	,0x00	,0x00   ,0x00	,0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13; 
        }
        break;

        case JZ_INSCODE_5AFRAME_WARNINGLIGHT_COLOUR:
        {
            char sendbuf[13] = {0x5A	,0x5A	,0x77	,0x00	,0x0D	,0x00	,0x00	,0x67	,0x51	,0x00	,0x00   ,0x00	,0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13; 
        }
        break;

        case JZ_INSCODE_5AFRAME_SEARCHLIGHT_MESSAGE_SUBSCRIPTION_CONTROL:
        {
            char sendbuf[13] = {0x5A	,0x5A	,0x77	,0x00	,0x0D	,0x00	,0x00	,0x68	,0x51	,0x00	,0x00   ,0x00	,0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13; 
        }
        break;

        case JZ_INSCODE_5AFRAME_CHECKSTATUS_SEARCHLIGHT_LIGHTATTRIBUTE:
        {
            char sendbuf[13] = {0x5A	,0x5A	,0x77	,0x00	,0x0D	,0x00	,0x00	,0x6F	,0x51	,0x00	,0x00	,0x00	,0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13; 
        }
        break;

        case JZ_INSCODE_5AFRAME_CHECKSTATUS_SEARCHLIGHT_TEMPERATURE:
        {
            char sendbuf[13] = {0x5A	,0x5A	,0x77	,0x00	,0x0D	,0x00	,0x00	,0x6F	,0x52	,0x00	,0x00	,0x00	,0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13; 
        }
        break;

        case JZ_INSCODE_5AFRAME_CHECKSTATUS_GIMBAL:
        {
            char sendbuf[13] = {0x5A	,0x5A	,0x77	,0x00	,0x0D	,0x00	,0x00	,0x6F	,0x54	,0x00	,0x00	,0x00	,0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13; 
        }
        break;

        case JZ_INSCODE_5AFRAME_CHECKSTATUS_WARNINGLIGHT_STATUS:
        {
            char sendbuf[13] = {0x5A	,0x5A	,0x77	,0x00	,0x0D	,0x00	,0x00	,0x6F	,0x55	,0x00	,0x00	,0x00	,0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13; 
        }
        break;
        
        case JZ_INSCODE_5AFRAME_CHECKSTATUS_WARNINGLIGHT_COLOR:
        {
            char sendbuf[13] = {0x5A	,0x5A	,0x77	,0x00	,0x0D	,0x00	,0x00	,0x6F	,0x56	,0x00	,0x00	,0x00	,0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13; 
        }
        break;

        case JZ_INSCODE_5AFRAME_CHECKSTATUS_SERIALNUMBER:
        {
            char sendbuf[13] = {0x5A	,0x5A	,0x77	,0x00	,0x0D	,0x00	,0x00	,0x6F	,0x57	,0x00	,0x00	,0x00	,0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13; 
        }     
        break;

        case JZ_INSCODE_5AFRAME_CHECKSTATUS_GIMBAL_FINETUNING:
        {
            char sendbuf[13] = {0x5A	,0x5A	,0x77	,0x00	,0x0D	,0x00	,0x00	,0x6F	,0x58	,0x00	,0x00	,0x00	,0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13; 
        }        
        break;
/********************************************************************************************************************************************************
 * 
 *      5B帧
 * 
********************************************************************************************************************************************************/
        case JZ_INSCODE_5BFRAME_INITIATECONNECT:
        {
            char sendbuf[12] = {0x5B	,0x5B	,0x77	,0x00	,0x0c	,0x00	,0x00	,0x50	,0x51	,0x00	,0x00	,0x23};
            memcpy(str, sendbuf, 12);
            *str_len = 12;
        }
        break;

        case JZ_INSCODE_5BFRAME_SUCESS:
        {
            char sendbuf[12] = {0x5B,   0x5B,   0x77,   0x00,	0x0c,   0x00,   0x00,	0x51,	0x01,   0x00,	0x00,	0x23};
            memcpy(str, sendbuf, 12);
            *str_len = 12;
        }
        break;

        case JZ_INSCODE_5BFRAME_DEFEAT:
        {
            char sendbuf[12] = {0x5B,   0x5B,   0x77,   0x00,	0x0c,   0x00,   0x00,	0x51,	0xff,   0x00,	0x00,	0x23};
            memcpy(str, sendbuf, 12);
            *str_len = 12; 
        }   
        break;

        
        case JZ_INSCODE_5BFRAME_AUDIO_PLAYSTATUS_END:
        {
            char sendbuf[12] = {  0x5b,   0x5b,   0x77,   0x00,   0x0c,	0x00,   0x00,	0x53,   0xff,   0x00,   0x00,   0x23};
            memcpy(str, sendbuf, 12);
            *str_len = 12; 
        }   
        break;

        case JZ_INSCODE_5BFRAME_AUDIO_PLAYSTATUS:
        {
            char sendbuf[12] = {  0x5b,   0x5b,   0x77,   0x00,   0x0c,	0x00,	0x00,   0x53,	0x02,    0x00,    0x00,   0x23};
            memcpy(str, sendbuf, 12);
            *str_len = 12; 
        }   
        break;

        case JZ_INSCODE_5BFRAME_AUDIO_PLAYFILENAME:
        {
            char sendbuf[12] = {0x5B,	0x5B,	0x77,	0x00,	0x0c,	0x00,	0x00,	0x53,   0x04,    0x00,    0x00,   0x23};
            memcpy(str, sendbuf, 12);
            *str_len = 12; 
        }   
        break;

        case JZ_INSCODE_5BFRAME_VOLUME:
        {
            char sendbuf[12] = {  0x5b,   0x5b,   0x77,   0x00,   0x0c,	0x00,	0x00,   0x53,	0x01,    0x00,    0x00,   0x23};
            memcpy(str, sendbuf, 12);
            *str_len = 12; 
        }   
        break;

    

        case JZ_INSCODE_5BFRAME_SORTWAREVERSION:
        {
            char sendbuf[15] = {  0x5b,   0x5b,   0x77,   0x00,   0x0f,	0x00,	0x00,   0x53,	0xf1,    0x00,    0x00,    0x00,    0x00,    0x00,   0x23};
            memcpy(str, sendbuf, 15);
            *str_len = 15; 
        }   
        break;

        case JZ_INSCODE_5BFRAME_AUDIO_PLAYLOOPSTATUS:
        {
            char sendbuf[12] = {  0x5b,   0x5b,   0x77,   0x00,   0x0c,	0x00,	0x00,   0x53,	0x05,    0x00,    0x00,   0x23};
            memcpy(str, sendbuf, 12);
            *str_len = 12; 
        }   
        break;

        case JZ_INSCODE_5BFRAME_TTS_TONE:
        {
            char sendbuf[12] = {  0x5b,   0x5b,   0x77,   0x00,   0x0c,	0x00,	0x00,   0x53,	0x06,    0x00,    0x00,   0x23};
            memcpy(str, sendbuf, 12);
            *str_len = 12; 
        }   
        break;

        case JZ_INSCODE_5BFRAME_TTS_SPEED:
        {
            char sendbuf[12] = {  0x5b,   0x5b,   0x77,   0x00,   0x0c,	0x00,	0x00,   0x53,	0x07,    0x00,    0x00,   0x23};
            memcpy(str, sendbuf, 12);
            *str_len = 12; 
        }   
        break;

        case JZ_INSCODE_5BFRAME_MUSICLIST_START:
        {
            char sendbuf[12] = {  0x5b,   0x5b,   0x77,   0x00,   0x0c,	0x00,   0x00,	0x58,   0x00,   0x00,   0x00,   0x23};
            memcpy(str, sendbuf, 12);
            *str_len = 12; 
        }   
        break;
        
        case JZ_INSCODE_5BFRAME_MUSICLIST_TRANS:
        {
            char sendbuf[12] = {0x5B,	0x5B,	0x77,	0x00,	0x0c,	0x00,	0x00,	0x58,   0x02,   0x00,	0x00,	0x23};
            memcpy(str, sendbuf, 12);
            *str_len = 12; 
        }   
        break;     

        case JZ_INSCODE_5BFRAME_MUSICLIST_STOP:
        {
            char sendbuf[12] = {  0x5b,   0x5b,   0x77,   0x00,   0x0c,	0x00,   0x00,	0x58,   0xff,   0x00,   0x00,   0x23};
            memcpy(str, sendbuf, 12);
            *str_len = 12; 
        }   
        break;

        case JZ_INSCODE_5BFRAME_CHECKSTATUS_OUTPUTPOWER:
        {
            char sendbuf[12] = {  0x5b,   0x5b,   0x77,   0x00,   0x0C,	0x00,	0x00,   0x5A,	0x02,    0x00,    0x00,  0x23};
            memcpy(str, sendbuf, 12);
            *str_len = 12; 
        }
        break;  

        case JZ_INSCODE_5BFRAME_CHECKSTATUS_SEARCHLIGHT_FREQUENCY:
        {
            char sendbuf[13] = {  0x5b,   0x5b,   0x77,   0x00,   0x0D,	0x00,	0x00,   0x61,	0x51,    0x00,    0x00,    0x00,   0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13; 
        }
        break;

        case JZ_INSCODE_5BFRAME_CHECKSTATUS_SEARCHLIGHT_MODE:
        {
            char sendbuf[13] = {  0x5b,   0x5b,   0x77,   0x00,   0x0D,	0x00,	0x00,   0x62,	0x51,    0x00,    0x00,    0x00,   0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13; 
        }
        break;

        case JZ_INSCODE_5BFRAME_CHECKSTATUS_SEARCHLIGHT_LUMEN:
        {
            char sendbuf[13] = {  0x5b,   0x5b,   0x77,   0x00,   0x0D,	0x00,	0x00,   0x63,	0x51,    0x00,    0x00,    0x00,   0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13; 
        }
        break;

        case JZ_INSCODE_5BFRAME_GIMBAL_PITCH:
        {
            char sendbuf[14] = {  0x5b,   0x5b,   0x77,   0x00,   0x0e,	0x00,	0x00,   0x64,	0x51,    0x00,    0x00,    0x00,     0x00,   0x23};
            memcpy(str, sendbuf, 14);
            *str_len = 14; 
        }   
        break;    

        case JZ_INSCODE_5BFRAME_GIMBAL_PITCH_FINETUNING:
        {
            char sendbuf[14] = {  0x5b,   0x5b,   0x77,   0x00,   0x0e,	0x00,	0x00,   0x64,	0x52,    0x00,    0x00,     0x00,     0x00,   0x23};
            memcpy(str, sendbuf, 14);
            *str_len = 14; 
        }   
        break;            
   
        case JZ_INSCODE_5BFRAME_GIMBAL_YAW:
        {
            char sendbuf[14] = {  0x5b,   0x5b,   0x77,   0x00,   0x0e,	0x00,	0x00,   0x65,	0x51,    0x00,    0x00,    0x00,     0x00,   0x23};
            memcpy(str, sendbuf, 14);
            *str_len = 14; 
        }   
        break;    
             
        case JZ_INSCODE_5BFRAME_CHECKSTATUS_WARNINGLIGHT_STATUS:
        {
            char sendbuf[13] = {  0x5b,   0x5b,   0x77,   0x00,   0x0D,	0x00,	0x00,   0x66,	0x51,    0x00,    0x00,    0x00,   0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13; 
        }
        break;
        
        case JZ_INSCODE_5BFRAME_CHECKSTATUS_WARNINGLIGHT_COLOR:
        {
            char sendbuf[13] = {  0x5b,   0x5b,   0x77,   0x00,   0x0D,	0x00,	0x00,   0x67,	0x51,    0x00,    0x00,    0x00,   0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13; 
        }
        break;

        case JZ_INSCODE_5BFRAME_CHECKSTATUS_SEARCHLIGHT_TEMPERATURE:
        {
            char sendbuf[13] = {  0x5b,   0x5b,   0x77,   0x00,   0x0D,	0x00,	0x00,   0x69,	0x51,    0x00,    0x00,    0x00,   0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13; 
        }
        break;

        case JZ_INSCODE_5BFRAME_CHECKSTATUS_SERIALNUMBER:
        {
            char sendbuf[13] = {  0x5b,   0x5b,   0x77,   0x00,   0x0D,	0x00,	0x00,   0x6F,	0x57,    0x00,    0x00,    0x00,   0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13; 
        }
        break;        



/********************************************************************************************************************************************************
 * 
 *      6A帧
 * 
********************************************************************************************************************************************************/
        
        case JZ_INSCODE_6AFRAME_SET_GIMBAL_MAXMIN_RANGE:
        {
            char sendbuf[13] = {0x6A	,0x6A	,0x77	,0x00	,0x0D	,0x00	,0x00	,0x69	,0x52	,0x00	,0x00	,0x00	,0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13;
        }
        break;     
        
        case JZ_INSCODE_6AFRAME_GIMBAL_LINKAGE_CONTROL:
        {
            char sendbuf[13] = {0x6A	,0x6A	,0x77	,0x00	,0x0D	,0x00	,0x00	,0x69	,0x56	,0x00	,0x00	,0x00	,0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13;
        }
        break;          
        
        case JZ_INSCODE_6AFRAME_CHECKSTATUS_SECONDARY_DEVICE_NAME:
        {
            char sendbuf[13] = {0x6A	,0x6A	,0x77	,0x00	,0x0D	,0x00	,0x00	,0x6F	,0x50	,0x00	,0x00	,0x00	,0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13;
        }
        break;

        case JZ_INSCODE_6AFRAME_CHECKSTATUS_GIMBAL_LINKAGE:
        {
            char sendbuf[13] = {0x6A	,0x6A	,0x77	,0x00	,0x0D	,0x00	,0x00	,0x6F	,0x51	,0x00	,0x00	,0x00	,0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13;
        }
        break;      
       

/********************************************************************************************************************************************************
 * 
 *      6B帧
 * 
********************************************************************************************************************************************************/
        case JZ_INSCODE_6BFRAME_CHECKSTATUS_SECONDARY_DEVICE_NAME:
        {
            char sendbuf[13] = {0x6B	,0x6B	,0x77	,0x00	,0x0D	,0x00	,0x00	,0x6F	,0x50	,0x00	,0x00	,0x00	,0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13;
        }
        break;

        case JZ_INSCODE_6BFRAME_CHECKSTATUS_GIMBAL_LINKAGE:
        {
            char sendbuf[13] = {0x6B	,0x6B	,0x77	,0x00	,0x0D	,0x00	,0x00	,0x6F	,0x51	,0x00	,0x00	,0x00	,0x23};
            memcpy(str, sendbuf, 13);
            *str_len = 13;
        }
        break;

        default:
        printf("JZsdk_GetFrameTemplate:没有对应的帧模板\n");
        break;
    }
}