正在显示
109 个修改的文件
包含
1914 行增加
和
1163 行删除
@@ -13,6 +13,9 @@ | @@ -13,6 +13,9 @@ | ||
13 | "tts_sample.h": "c", | 13 | "tts_sample.h": "c", |
14 | "cn_tts.h": "c", | 14 | "cn_tts.h": "c", |
15 | "intl_tts.h": "c", | 15 | "intl_tts.h": "c", |
16 | - "megaphone_music.h": "c" | 16 | + "megaphone_music.h": "c", |
17 | + "gimbal_h3_h10.h": "c", | ||
18 | + "gimbal_h3_h150st.h": "c", | ||
19 | + "uartconnection.h": "c" | ||
17 | } | 20 | } |
18 | } | 21 | } |
@@ -24,7 +24,7 @@ project(JZ_UART_APP) | @@ -24,7 +24,7 @@ project(JZ_UART_APP) | ||
24 | set(filtering_type high_pass_filtering) | 24 | set(filtering_type high_pass_filtering) |
25 | 25 | ||
26 | # 海外版本 27行不能改动 | 26 | # 海外版本 27行不能改动 |
27 | -set(firewarm_origin OVERSEAS_VERSION) | 27 | +set(firewarm_origin DOMESTIC_VERSION) |
28 | 28 | ||
29 | 29 | ||
30 | # 指定源文件 | 30 | # 指定源文件 |
@@ -67,10 +67,10 @@ include_directories(./Module/UI_control) | @@ -67,10 +67,10 @@ include_directories(./Module/UI_control) | ||
67 | 67 | ||
68 | # 库文件路径 | 68 | # 库文件路径 |
69 | if(${filtering_type} STREQUAL "directed_stopband_filtering") | 69 | if(${filtering_type} STREQUAL "directed_stopband_filtering") |
70 | - message("Using library for directed stopband filtering") | 70 | + message("\n滤波库:高通滤波\n") |
71 | target_link_libraries(${PROJECT_NAME} ${CMAKE_CURRENT_LIST_DIR}/ModuleLib/music/directed_stopband_filtering/libAudioPlayer.so) | 71 | target_link_libraries(${PROJECT_NAME} ${CMAKE_CURRENT_LIST_DIR}/ModuleLib/music/directed_stopband_filtering/libAudioPlayer.so) |
72 | elseif(${filtering_type} STREQUAL "high_pass_filtering") | 72 | elseif(${filtering_type} STREQUAL "high_pass_filtering") |
73 | - message("Using library for high pass filtering") | 73 | + message("\n滤波库:带阻滤波\n") |
74 | target_link_libraries(${PROJECT_NAME} ${CMAKE_CURRENT_LIST_DIR}/ModuleLib/music/high_pass_filtering/libAudioPlayer.so) | 74 | target_link_libraries(${PROJECT_NAME} ${CMAKE_CURRENT_LIST_DIR}/ModuleLib/music/high_pass_filtering/libAudioPlayer.so) |
75 | else() | 75 | else() |
76 | message(FATAL_ERROR "Invalid filtering type") | 76 | message(FATAL_ERROR "Invalid filtering type") |
@@ -52,9 +52,9 @@ int JZsdk_GetFrameTemplate(int InsCode ,char *str, int *str_len) | @@ -52,9 +52,9 @@ int JZsdk_GetFrameTemplate(int InsCode ,char *str, int *str_len) | ||
52 | 52 | ||
53 | case JZ_INSCODE_5AFRAME_GIMBAL_PITCH_FINETUNING_CONTROL: | 53 | case JZ_INSCODE_5AFRAME_GIMBAL_PITCH_FINETUNING_CONTROL: |
54 | { | 54 | { |
55 | - char sendbuf[13] = {0x5A ,0x5A ,0x77 ,0x00 ,0x0D ,0x00 ,0x00 ,0x64 ,0x52 ,0x00 ,0x00 ,0x00 ,0x23}; | ||
56 | - memcpy(str, sendbuf, 13); | ||
57 | - *str_len = 13; | 55 | + char sendbuf[14] = {0x5A ,0x5A ,0x77 ,0x00 ,0x0E ,0x00 ,0x00 ,0x64 ,0x52 ,0x00 ,0x00 ,0x00 ,0x00 ,0x23}; |
56 | + memcpy(str, sendbuf, 14); | ||
57 | + *str_len = 14; | ||
58 | } | 58 | } |
59 | break; | 59 | break; |
60 | 60 | ||
@@ -166,30 +166,7 @@ int JZsdk_GetFrameTemplate(int InsCode ,char *str, int *str_len) | @@ -166,30 +166,7 @@ int JZsdk_GetFrameTemplate(int InsCode ,char *str, int *str_len) | ||
166 | } | 166 | } |
167 | break; | 167 | break; |
168 | 168 | ||
169 | - case JZ_INSCODE_5BFRAME_MUSICLIST_START: | ||
170 | - { | ||
171 | - char sendbuf[12] = { 0x5b, 0x5b, 0x77, 0x00, 0x0c, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x23}; | ||
172 | - memcpy(str, sendbuf, 12); | ||
173 | - *str_len = 12; | ||
174 | - } | ||
175 | - break; | ||
176 | 169 | ||
177 | - case JZ_INSCODE_5BFRAME_MUSICLIST_TRANS: | ||
178 | - { | ||
179 | - char sendbuf[12] = {0x5B, 0x5B, 0x77, 0x00, 0x0c, 0x00, 0x00, 0x58, 0x02, 0x00, 0x00, 0x23}; | ||
180 | - memcpy(str, sendbuf, 12); | ||
181 | - *str_len = 12; | ||
182 | - } | ||
183 | - break; | ||
184 | - | ||
185 | - case JZ_INSCODE_5BFRAME_MUSICLIST_STOP: | ||
186 | - { | ||
187 | - char sendbuf[12] = { 0x5b, 0x5b, 0x77, 0x00, 0x0c, 0x00, 0x00, 0x58, 0xff, 0x00, 0x00, 0x23}; | ||
188 | - memcpy(str, sendbuf, 12); | ||
189 | - *str_len = 12; | ||
190 | - } | ||
191 | - break; | ||
192 | - | ||
193 | case JZ_INSCODE_5BFRAME_AUDIO_PLAYSTATUS_END: | 170 | case JZ_INSCODE_5BFRAME_AUDIO_PLAYSTATUS_END: |
194 | { | 171 | { |
195 | char sendbuf[12] = { 0x5b, 0x5b, 0x77, 0x00, 0x0c, 0x00, 0x00, 0x53, 0xff, 0x00, 0x00, 0x23}; | 172 | char sendbuf[12] = { 0x5b, 0x5b, 0x77, 0x00, 0x0c, 0x00, 0x00, 0x53, 0xff, 0x00, 0x00, 0x23}; |
@@ -256,6 +233,38 @@ int JZsdk_GetFrameTemplate(int InsCode ,char *str, int *str_len) | @@ -256,6 +233,38 @@ int JZsdk_GetFrameTemplate(int InsCode ,char *str, int *str_len) | ||
256 | } | 233 | } |
257 | break; | 234 | break; |
258 | 235 | ||
236 | + case JZ_INSCODE_5BFRAME_MUSICLIST_START: | ||
237 | + { | ||
238 | + char sendbuf[12] = { 0x5b, 0x5b, 0x77, 0x00, 0x0c, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x23}; | ||
239 | + memcpy(str, sendbuf, 12); | ||
240 | + *str_len = 12; | ||
241 | + } | ||
242 | + break; | ||
243 | + | ||
244 | + case JZ_INSCODE_5BFRAME_MUSICLIST_TRANS: | ||
245 | + { | ||
246 | + char sendbuf[12] = {0x5B, 0x5B, 0x77, 0x00, 0x0c, 0x00, 0x00, 0x58, 0x02, 0x00, 0x00, 0x23}; | ||
247 | + memcpy(str, sendbuf, 12); | ||
248 | + *str_len = 12; | ||
249 | + } | ||
250 | + break; | ||
251 | + | ||
252 | + case JZ_INSCODE_5BFRAME_MUSICLIST_STOP: | ||
253 | + { | ||
254 | + char sendbuf[12] = { 0x5b, 0x5b, 0x77, 0x00, 0x0c, 0x00, 0x00, 0x58, 0xff, 0x00, 0x00, 0x23}; | ||
255 | + memcpy(str, sendbuf, 12); | ||
256 | + *str_len = 12; | ||
257 | + } | ||
258 | + break; | ||
259 | + | ||
260 | + case JZ_INSCODE_5BFRAME_CHECKSTATUS_OUTPUTPOWER: | ||
261 | + { | ||
262 | + char sendbuf[12] = { 0x5b, 0x5b, 0x77, 0x00, 0x0C, 0x00, 0x00, 0x5A, 0x02, 0x00, 0x00, 0x23}; | ||
263 | + memcpy(str, sendbuf, 12); | ||
264 | + *str_len = 12; | ||
265 | + } | ||
266 | + break; | ||
267 | + | ||
259 | case JZ_INSCODE_5BFRAME_CHECKSTATUS_SEARCHLIGHT_FREQUENCY: | 268 | case JZ_INSCODE_5BFRAME_CHECKSTATUS_SEARCHLIGHT_FREQUENCY: |
260 | { | 269 | { |
261 | char sendbuf[13] = { 0x5b, 0x5b, 0x77, 0x00, 0x0D, 0x00, 0x00, 0x61, 0x51, 0x00, 0x00, 0x00, 0x23}; | 270 | char sendbuf[13] = { 0x5b, 0x5b, 0x77, 0x00, 0x0D, 0x00, 0x00, 0x61, 0x51, 0x00, 0x00, 0x00, 0x23}; |
@@ -290,9 +299,9 @@ int JZsdk_GetFrameTemplate(int InsCode ,char *str, int *str_len) | @@ -290,9 +299,9 @@ int JZsdk_GetFrameTemplate(int InsCode ,char *str, int *str_len) | ||
290 | 299 | ||
291 | case JZ_INSCODE_5BFRAME_GIMBAL_PITCH_FINETUNING: | 300 | case JZ_INSCODE_5BFRAME_GIMBAL_PITCH_FINETUNING: |
292 | { | 301 | { |
293 | - char sendbuf[13] = { 0x5b, 0x5b, 0x77, 0x00, 0x0D, 0x00, 0x00, 0x64, 0x52, 0x00, 0x00, 0x00, 0x23}; | ||
294 | - memcpy(str, sendbuf, 13); | ||
295 | - *str_len = 13; | 302 | + char sendbuf[14] = { 0x5b, 0x5b, 0x77, 0x00, 0x0e, 0x00, 0x00, 0x64, 0x52, 0x00, 0x00, 0x00, 0x00, 0x23}; |
303 | + memcpy(str, sendbuf, 14); | ||
304 | + *str_len = 14; | ||
296 | } | 305 | } |
297 | break; | 306 | break; |
298 | 307 | ||
@@ -330,17 +339,28 @@ int JZsdk_GetFrameTemplate(int InsCode ,char *str, int *str_len) | @@ -330,17 +339,28 @@ int JZsdk_GetFrameTemplate(int InsCode ,char *str, int *str_len) | ||
330 | 339 | ||
331 | case JZ_INSCODE_5BFRAME_CHECKSTATUS_SERIALNUMBER: | 340 | case JZ_INSCODE_5BFRAME_CHECKSTATUS_SERIALNUMBER: |
332 | { | 341 | { |
333 | - char sendbuf[13] = { 0x5b, 0x5b, 0x77, 0x00, 0x0D, 0x00, 0x00, 0x69, 0x54, 0x00, 0x00, 0x00, 0x23}; | 342 | + char sendbuf[13] = { 0x5b, 0x5b, 0x77, 0x00, 0x0D, 0x00, 0x00, 0x6F, 0x57, 0x00, 0x00, 0x00, 0x23}; |
334 | memcpy(str, sendbuf, 13); | 343 | memcpy(str, sendbuf, 13); |
335 | *str_len = 13; | 344 | *str_len = 13; |
336 | } | 345 | } |
337 | - break; | 346 | + break; |
347 | + | ||
348 | + | ||
338 | 349 | ||
339 | /******************************************************************************************************************************************************** | 350 | /******************************************************************************************************************************************************** |
340 | * | 351 | * |
341 | * 6A帧 | 352 | * 6A帧 |
342 | * | 353 | * |
343 | ********************************************************************************************************************************************************/ | 354 | ********************************************************************************************************************************************************/ |
355 | + | ||
356 | + case JZ_INSCODE_6AFRAME_SET_GIMBAL_MAXMIN_RANGE: | ||
357 | + { | ||
358 | + char sendbuf[13] = {0x6A ,0x6A ,0x77 ,0x00 ,0x0D ,0x00 ,0x00 ,0x69 ,0x52 ,0x00 ,0x00 ,0x00 ,0x23}; | ||
359 | + memcpy(str, sendbuf, 13); | ||
360 | + *str_len = 13; | ||
361 | + } | ||
362 | + break; | ||
363 | + | ||
344 | case JZ_INSCODE_6AFRAME_GIMBAL_LINKAGE_CONTROL: | 364 | case JZ_INSCODE_6AFRAME_GIMBAL_LINKAGE_CONTROL: |
345 | { | 365 | { |
346 | char sendbuf[13] = {0x6A ,0x6A ,0x77 ,0x00 ,0x0D ,0x00 ,0x00 ,0x69 ,0x56 ,0x00 ,0x00 ,0x00 ,0x23}; | 366 | char sendbuf[13] = {0x6A ,0x6A ,0x77 ,0x00 ,0x0D ,0x00 ,0x00 ,0x69 ,0x56 ,0x00 ,0x00 ,0x00 ,0x23}; |
@@ -364,6 +384,7 @@ int JZsdk_GetFrameTemplate(int InsCode ,char *str, int *str_len) | @@ -364,6 +384,7 @@ int JZsdk_GetFrameTemplate(int InsCode ,char *str, int *str_len) | ||
364 | *str_len = 13; | 384 | *str_len = 13; |
365 | } | 385 | } |
366 | break; | 386 | break; |
387 | + | ||
367 | 388 | ||
368 | /******************************************************************************************************************************************************** | 389 | /******************************************************************************************************************************************************** |
369 | * | 390 | * |
@@ -47,13 +47,13 @@ void JZsdk_UserLogOutput(E_JZsdkConsoleLogLevel level, const char *fmt, ...); | @@ -47,13 +47,13 @@ void JZsdk_UserLogOutput(E_JZsdkConsoleLogLevel level, const char *fmt, ...); | ||
47 | T_JZsdkReturnCode JZsdk_LoggerInit(); | 47 | T_JZsdkReturnCode JZsdk_LoggerInit(); |
48 | 48 | ||
49 | /* Exported constants --------------------------------------------------------*/ | 49 | /* Exported constants --------------------------------------------------------*/ |
50 | -#define USER_LOG_DEBUG(fmt, ...) \ | 50 | +#define JZSDK_LOG_DEBUG(fmt, ...) \ |
51 | JZsdk_UserLogOutput(JZSDK_LOGGER_CONSOLE_LOG_LEVEL_DEBUG, "[%s:%d) " fmt, __FUNCTION__, __LINE__ , ##__VA_ARGS__) | 51 | JZsdk_UserLogOutput(JZSDK_LOGGER_CONSOLE_LOG_LEVEL_DEBUG, "[%s:%d) " fmt, __FUNCTION__, __LINE__ , ##__VA_ARGS__) |
52 | -#define USER_LOG_INFO(fmt, ...) \ | 52 | +#define JZSDK_LOG_INFO(fmt, ...) \ |
53 | JZsdk_UserLogOutput(JZSDK_LOGGER_CONSOLE_LOG_LEVEL_INFO, "[%s:%d) " fmt, __FUNCTION__, __LINE__ , ##__VA_ARGS__) | 53 | JZsdk_UserLogOutput(JZSDK_LOGGER_CONSOLE_LOG_LEVEL_INFO, "[%s:%d) " fmt, __FUNCTION__, __LINE__ , ##__VA_ARGS__) |
54 | -#define USER_LOG_WARN(fmt, ...) \ | 54 | +#define JZSDK_LOG_WARN(fmt, ...) \ |
55 | JZsdk_UserLogOutput(JZSDK_LOGGER_CONSOLE_LOG_LEVEL_WARN, "[%s:%d) " fmt, __FUNCTION__, __LINE__ , ##__VA_ARGS__) | 55 | JZsdk_UserLogOutput(JZSDK_LOGGER_CONSOLE_LOG_LEVEL_WARN, "[%s:%d) " fmt, __FUNCTION__, __LINE__ , ##__VA_ARGS__) |
56 | -#define USER_LOG_ERROR(fmt, ...) \ | 56 | +#define JZSDK_LOG_ERROR(fmt, ...) \ |
57 | JZsdk_UserLogOutput(JZSDK_LOGGER_CONSOLE_LOG_LEVEL_ERROR, "[%s:%d) " fmt, __FUNCTION__, __LINE__ , ##__VA_ARGS__) | 57 | JZsdk_UserLogOutput(JZSDK_LOGGER_CONSOLE_LOG_LEVEL_ERROR, "[%s:%d) " fmt, __FUNCTION__, __LINE__ , ##__VA_ARGS__) |
58 | 58 | ||
59 | 59 |
@@ -2,6 +2,9 @@ | @@ -2,6 +2,9 @@ | ||
2 | #include "JZsdk_FileSystm.h" | 2 | #include "JZsdk_FileSystm.h" |
3 | #include <stdlib.h> | 3 | #include <stdlib.h> |
4 | #include <stdbool.h> | 4 | #include <stdbool.h> |
5 | +#include <string.h> | ||
6 | + | ||
7 | + | ||
5 | /* | 8 | /* |
6 | * 用于运行指令 | 9 | * 用于运行指令 |
7 | * | 10 | * |
@@ -55,4 +58,45 @@ int JZsdk_RunSystemCmd(char *systemCmd) | @@ -55,4 +58,45 @@ int JZsdk_RunSystemCmd(char *systemCmd) | ||
55 | int JZsdk_Socket() | 58 | int JZsdk_Socket() |
56 | { | 59 | { |
57 | 60 | ||
58 | -} | ||
61 | +} | ||
62 | + | ||
63 | +//获取设备序列号 | ||
64 | +T_JZsdkReturnCode GetSerialNumber(char *SerialNumber) | ||
65 | +{ | ||
66 | + FILE *num_file; | ||
67 | + char num_char[15]; | ||
68 | + | ||
69 | + num_file = fopen("/root/num", "rb+"); | ||
70 | + if (num_file == NULL) | ||
71 | + { | ||
72 | + num_file = fopen("/root/num", "wb+"); | ||
73 | + if (num_file == NULL) | ||
74 | + { | ||
75 | + return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; | ||
76 | + } | ||
77 | + } | ||
78 | + else | ||
79 | + { | ||
80 | + int ret = fseek(num_file, 0, SEEK_SET); | ||
81 | + if (ret != 0) { | ||
82 | + printf("Seek log count file error, ret: %d.\r\n", ret); | ||
83 | + } | ||
84 | + | ||
85 | + ret = fread((char *) &num_char,14, sizeof(char), num_file); | ||
86 | + if (ret != sizeof(char)) { | ||
87 | + printf("Read num file error.\r\n"); | ||
88 | + } | ||
89 | + else{ | ||
90 | + printf("Read num file=%s\n",&num_char); | ||
91 | + } | ||
92 | + } | ||
93 | + fclose(num_file); | ||
94 | + | ||
95 | + if (SerialNumber != NULL) | ||
96 | + { | ||
97 | + memcpy(SerialNumber, num_char, 14); | ||
98 | + return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | ||
99 | + } | ||
100 | + | ||
101 | + return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; | ||
102 | +} |
@@ -11,6 +11,7 @@ | @@ -11,6 +11,7 @@ | ||
11 | #define JZSDK_FILESYSTEM_H | 11 | #define JZSDK_FILESYSTEM_H |
12 | 12 | ||
13 | /* Includes ------------------------------------------------------------------*/ | 13 | /* Includes ------------------------------------------------------------------*/ |
14 | +#include "../JZsdk_Code/JZsdk_Code.h" | ||
14 | 15 | ||
15 | #ifdef __cplusplus | 16 | #ifdef __cplusplus |
16 | extern "C" { | 17 | extern "C" { |
@@ -26,6 +27,7 @@ extern "C" { | @@ -26,6 +27,7 @@ extern "C" { | ||
26 | /* Exported functions --------------------------------------------------------*/ | 27 | /* Exported functions --------------------------------------------------------*/ |
27 | int JZsdk_RunSystemCmd(char *systemCmd); | 28 | int JZsdk_RunSystemCmd(char *systemCmd); |
28 | //FILE* JZsdk_RunSystemCmd_ReturnFilePointer(char *systemCmd); | 29 | //FILE* JZsdk_RunSystemCmd_ReturnFilePointer(char *systemCmd); |
30 | +T_JZsdkReturnCode GetSerialNumber(char *SerialNumber); | ||
29 | 31 | ||
30 | #ifdef __cplusplus | 32 | #ifdef __cplusplus |
31 | } | 33 | } |
@@ -246,6 +246,16 @@ int JZsdk_Uart_Send_GimbalLinkageControl(int Uartport,int FrameSequence, int val | @@ -246,6 +246,16 @@ int JZsdk_Uart_Send_GimbalLinkageControl(int Uartport,int FrameSequence, int val | ||
246 | JZsdk_Uart_SendDeal_GimbalLinkageControl(Uartport,FrameSequence,value); | 246 | JZsdk_Uart_SendDeal_GimbalLinkageControl(Uartport,FrameSequence,value); |
247 | } | 247 | } |
248 | 248 | ||
249 | +/************* | ||
250 | + * | ||
251 | + * 设置云台最大最小值 | ||
252 | + * | ||
253 | + * **************/ | ||
254 | +int JZsdk_Uart_Send_SetGimbalRange(int Uartport,int FrameSequence, int value) | ||
255 | +{ | ||
256 | + JZsdk_Uart_SendDeal_SetGimbalRange(Uartport,FrameSequence,value); | ||
257 | +} | ||
258 | + | ||
249 | /******************************************************************************************************************************* | 259 | /******************************************************************************************************************************* |
250 | * | 260 | * |
251 | * 探照灯部分 | 261 | * 探照灯部分 |
@@ -412,6 +422,17 @@ int JZsdk_Uart_Send_SearchLight_Temperature(int Uartport,int LeftTemperature, in | @@ -412,6 +422,17 @@ int JZsdk_Uart_Send_SearchLight_Temperature(int Uartport,int LeftTemperature, in | ||
412 | JZsdk_Uart_SendDeal_SearchLight_Temperature(Uartport, LeftTemperature, RightTemperature); | 422 | JZsdk_Uart_SendDeal_SearchLight_Temperature(Uartport, LeftTemperature, RightTemperature); |
413 | } | 423 | } |
414 | 424 | ||
425 | + | ||
426 | +/************* | ||
427 | + * | ||
428 | + * 发送对外供电电源的状态 | ||
429 | + * | ||
430 | + * **************/ | ||
431 | +int JZsdk_Uart_Send_OutputPowerStatus(int Uartport, int FrameSequence, int status) | ||
432 | +{ | ||
433 | + JZsdk_Uart_SendDeal_OutputPowerStatus(Uartport, FrameSequence, status); | ||
434 | +} | ||
435 | + | ||
415 | /******************************************************************************************************************************* | 436 | /******************************************************************************************************************************* |
416 | * | 437 | * |
417 | * 警灯部分 | 438 | * 警灯部分 |
@@ -44,6 +44,7 @@ int JZsdk_Uart_Send_Set_GimbalLinkageControl(int Uartport,int FrameSequence, int | @@ -44,6 +44,7 @@ int JZsdk_Uart_Send_Set_GimbalLinkageControl(int Uartport,int FrameSequence, int | ||
44 | int JZsdk_Uart_Send_CheckStatus_GimbalLinkage(int Uartport,int FrameSequence); | 44 | int JZsdk_Uart_Send_CheckStatus_GimbalLinkage(int Uartport,int FrameSequence); |
45 | int JZsdk_Uart_Send_GimbalLinkageControl(int Uartport,int FrameSequence, int value); | 45 | int JZsdk_Uart_Send_GimbalLinkageControl(int Uartport,int FrameSequence, int value); |
46 | int JZsdk_Uart_Send_CheckStatus_GimbalAngle(int Uartport ,int FrameSequence); | 46 | int JZsdk_Uart_Send_CheckStatus_GimbalAngle(int Uartport ,int FrameSequence); |
47 | +int JZsdk_Uart_Send_SetGimbalRange(int Uartport,int FrameSequence, int value); | ||
47 | 48 | ||
48 | int JZsdk_Uart_Send_SearchLight_SetFrequency(int Uartport,int Frequency); | 49 | int JZsdk_Uart_Send_SearchLight_SetFrequency(int Uartport,int Frequency); |
49 | int JZsdk_Uart_Send_SearchLight_Control(int Uartport,int mode); | 50 | int JZsdk_Uart_Send_SearchLight_Control(int Uartport,int mode); |
@@ -72,6 +73,7 @@ int JZsdk_Uart_Send_CheckStatus_WarningLightStatus(int Uartport); | @@ -72,6 +73,7 @@ int JZsdk_Uart_Send_CheckStatus_WarningLightStatus(int Uartport); | ||
72 | int JZsdk_Uart_Send_CheckStatus_WarningLightColor(int Uartport); | 73 | int JZsdk_Uart_Send_CheckStatus_WarningLightColor(int Uartport); |
73 | 74 | ||
74 | 75 | ||
76 | +int JZsdk_Uart_Send_OutputPowerStatus(int Uartport, int FrameSequence, int status); | ||
75 | 77 | ||
76 | 78 | ||
77 | #ifdef __cplusplus | 79 | #ifdef __cplusplus |
@@ -13,14 +13,14 @@ | @@ -13,14 +13,14 @@ | ||
13 | #include "JZsdk_Uart_Send/JZsdk_Uart_Send.h" | 13 | #include "JZsdk_Uart_Send/JZsdk_Uart_Send.h" |
14 | 14 | ||
15 | #include "UI_control.h" | 15 | #include "UI_control.h" |
16 | +#include "JZsdkLib.h" | ||
16 | 17 | ||
17 | -static int SecondaryDeviceName = 0x00; //从设备名,用于多设备相连时通知控制端 从机设备名 | ||
18 | - | 18 | +static int SecondaryDeviceName = 0x00; // 从设备名,用于多设备相连时通知控制端 从机设备名 |
19 | 19 | ||
20 | /****** | 20 | /****** |
21 | - * | 21 | + * |
22 | * 开关功放 | 22 | * 开关功放 |
23 | - * | 23 | + * |
24 | * *******/ | 24 | * *******/ |
25 | int JZsdk_Uart_Set_Amplifier(int status) | 25 | int JZsdk_Uart_Set_Amplifier(int status) |
26 | { | 26 | { |
@@ -28,151 +28,147 @@ int JZsdk_Uart_Set_Amplifier(int status) | @@ -28,151 +28,147 @@ int JZsdk_Uart_Set_Amplifier(int status) | ||
28 | } | 28 | } |
29 | 29 | ||
30 | /****** | 30 | /****** |
31 | - * | 31 | + * |
32 | * 调节音量 | 32 | * 调节音量 |
33 | - * | 33 | + * |
34 | * *******/ | 34 | * *******/ |
35 | T_JZsdkReturnCode JZsdk_Uart_Set_Volume(int DeviceName, int value) | 35 | T_JZsdkReturnCode JZsdk_Uart_Set_Volume(int DeviceName, int value) |
36 | { | 36 | { |
37 | return UIcontrol_SetVolume(DeviceName, value); | 37 | return UIcontrol_SetVolume(DeviceName, value); |
38 | } | 38 | } |
39 | 39 | ||
40 | - | ||
41 | /********* | 40 | /********* |
42 | - * | 41 | + * |
43 | * 1、TTS播放 | 42 | * 1、TTS播放 |
44 | - * | 43 | + * |
45 | * *********/ | 44 | * *********/ |
46 | -T_JZsdkReturnCode JZsdk_Uart_TTS_Play(int DeviceName, char *data ,int len) | 45 | +T_JZsdkReturnCode JZsdk_Uart_TTS_Play(int DeviceName, char *data, int len) |
47 | { | 46 | { |
48 | - return UIcontrol_TTS_Play(DeviceName, data, len); | 47 | + return UIcontrol_TTS_Play(DeviceName, data, len); |
49 | } | 48 | } |
50 | 49 | ||
51 | /********* | 50 | /********* |
52 | - * | 51 | + * |
53 | * 2、TTS设置音色 | 52 | * 2、TTS设置音色 |
54 | - * | 53 | + * |
55 | * *********/ | 54 | * *********/ |
56 | T_JZsdkReturnCode JZsdk_Uart_TTS_SetTone(int DeviceName, int tone) | 55 | T_JZsdkReturnCode JZsdk_Uart_TTS_SetTone(int DeviceName, int tone) |
57 | { | 56 | { |
58 | - return UIcontrol_Set_TTS_tone(DeviceName, tone); | 57 | + return UIcontrol_Set_TTS_tone(DeviceName, tone); |
59 | } | 58 | } |
60 | 59 | ||
61 | /********* | 60 | /********* |
62 | - * | 61 | + * |
63 | * 3、TTS设置语速 | 62 | * 3、TTS设置语速 |
64 | - * | 63 | + * |
65 | * *********/ | 64 | * *********/ |
66 | T_JZsdkReturnCode JZsdk_Uart_TTS_SetSpeed(int DeviceName, int speed) | 65 | T_JZsdkReturnCode JZsdk_Uart_TTS_SetSpeed(int DeviceName, int speed) |
67 | { | 66 | { |
68 | - return UIcontrol_Set_TTS_speed(DeviceName, speed); | 67 | + return UIcontrol_Set_TTS_speed(DeviceName, speed); |
69 | } | 68 | } |
70 | 69 | ||
71 | - | ||
72 | /********* | 70 | /********* |
73 | - * | 71 | + * |
74 | * 刷新歌曲列表 | 72 | * 刷新歌曲列表 |
75 | - * | ||
76 | - * | ||
77 | -**********/ | 73 | + * |
74 | + * | ||
75 | + **********/ | ||
78 | int JZsdk_Uart_Flush_MusicList() | 76 | int JZsdk_Uart_Flush_MusicList() |
79 | { | 77 | { |
80 | Megaphone_Flush_MusicList(); | 78 | Megaphone_Flush_MusicList(); |
81 | } | 79 | } |
82 | /********* | 80 | /********* |
83 | - * | 81 | + * |
84 | * 获取音乐总数 | 82 | * 获取音乐总数 |
85 | - * | ||
86 | - * | ||
87 | -**********/ | 83 | + * |
84 | + * | ||
85 | + **********/ | ||
88 | int JZsdk_Uart_get_music_list_sum() | 86 | int JZsdk_Uart_get_music_list_sum() |
89 | { | 87 | { |
90 | - return Megaphone_get_music_list_sum(); | 88 | + return Megaphone_get_music_list_sum(); |
91 | } | 89 | } |
92 | /********* | 90 | /********* |
93 | - * | 91 | + * |
94 | * 获取音乐名 | 92 | * 获取音乐名 |
95 | - * | ||
96 | - * | ||
97 | -**********/ | 93 | + * |
94 | + * | ||
95 | + **********/ | ||
98 | int JZsdk_Uart_get_music_list_name(int num, char *music_name, int *music_name_length) | 96 | int JZsdk_Uart_get_music_list_name(int num, char *music_name, int *music_name_length) |
99 | { | 97 | { |
100 | return Megaphone_get_music_list_name(num, music_name, music_name_length); | 98 | return Megaphone_get_music_list_name(num, music_name, music_name_length); |
101 | } | 99 | } |
102 | 100 | ||
103 | - | ||
104 | /********* | 101 | /********* |
105 | - * | 102 | + * |
106 | * 查询音量 | 103 | * 查询音量 |
107 | - * | ||
108 | - * | ||
109 | -**********/ | 104 | + * |
105 | + * | ||
106 | + **********/ | ||
110 | int JZsdk_Uart_CheckStatus_volume() | 107 | int JZsdk_Uart_CheckStatus_volume() |
111 | { | 108 | { |
112 | return Megaphone_get_music_volume(); | 109 | return Megaphone_get_music_volume(); |
113 | } | 110 | } |
114 | /********* | 111 | /********* |
115 | - * | 112 | + * |
116 | * 查询播放状态 | 113 | * 查询播放状态 |
117 | - * | ||
118 | - * | ||
119 | -**********/ | 114 | + * |
115 | + * | ||
116 | + **********/ | ||
120 | int JZsdk_Uart_CheckStatus_play() | 117 | int JZsdk_Uart_CheckStatus_play() |
121 | { | 118 | { |
122 | return Megaphone_get_play_status(); | 119 | return Megaphone_get_play_status(); |
123 | } | 120 | } |
124 | /********* | 121 | /********* |
125 | - * | 122 | + * |
126 | * 查询云台角度 | 123 | * 查询云台角度 |
127 | - * | ||
128 | - * | ||
129 | -**********/ | ||
130 | -int JZsdk_Uart_CheckStatus_gimbal(int *PitchAngle, int *YawAngle) | 124 | + * |
125 | + * | ||
126 | + **********/ | ||
127 | +int JZsdk_Uart_CheckStatus_gimbal(int *PitchAngle, int *YawAngle) | ||
131 | { | 128 | { |
132 | UIcontrol_CheckStatus_GimbalAngle(PitchAngle, YawAngle); | 129 | UIcontrol_CheckStatus_GimbalAngle(PitchAngle, YawAngle); |
133 | } | 130 | } |
134 | /********* | 131 | /********* |
135 | - * | 132 | + * |
136 | * 查询云台微调值 | 133 | * 查询云台微调值 |
137 | - * | ||
138 | - * | ||
139 | -**********/ | 134 | + * |
135 | + * | ||
136 | + **********/ | ||
140 | T_JZsdkReturnCode JZsdk_Uart_CheckStatus_GimbalFineTuning(int DeviceName, int FrameSequence) | 137 | T_JZsdkReturnCode JZsdk_Uart_CheckStatus_GimbalFineTuning(int DeviceName, int FrameSequence) |
141 | { | 138 | { |
142 | - //查询云台微调 | 139 | + // 查询云台微调 |
143 | printf("查询云台微调值\n"); | 140 | printf("查询云台微调值\n"); |
144 | 141 | ||
145 | - //1、查询本地云台微调 | 142 | + // 1、查询本地云台微调 |
146 | int FineTunigPitch, FineTunigYaw; | 143 | int FineTunigPitch, FineTunigYaw; |
147 | int ret = UIcontrol_CheckStatus_GimbalPitchFineTuning(&FineTunigPitch, &FineTunigYaw); | 144 | int ret = UIcontrol_CheckStatus_GimbalPitchFineTuning(&FineTunigPitch, &FineTunigYaw); |
148 | if (ret != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | 145 | if (ret != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) |
149 | { | 146 | { |
150 | - //回复操作失败 | ||
151 | - JZsdk_Uart_SendDeal_Reply_Failure(DeviceName, FrameSequence); | 147 | + // 回复操作失败 |
148 | + JZsdk_Uart_SendDeal_Reply_Failure(DeviceName, FrameSequence); | ||
152 | return ret; | 149 | return ret; |
153 | } | 150 | } |
154 | - | ||
155 | - //2、发送本地云台微调 | 151 | + |
152 | + // 2、发送本地云台微调 | ||
156 | JZsdk_Uart_SendDeal_Reply_GimbalFineTuningPitch(DeviceName, FrameSequence, FineTunigPitch); | 153 | JZsdk_Uart_SendDeal_Reply_GimbalFineTuningPitch(DeviceName, FrameSequence, FineTunigPitch); |
157 | } | 154 | } |
158 | 155 | ||
159 | - | ||
160 | /********* | 156 | /********* |
161 | - * | 157 | + * |
162 | * 查询播放文件名 | 158 | * 查询播放文件名 |
163 | - * | ||
164 | - * | ||
165 | -**********/ | 159 | + * |
160 | + * | ||
161 | + **********/ | ||
166 | int JZsdk_Uart_CheckStatus_PlayFileName(char *music_name, int *music_name_len) | 162 | int JZsdk_Uart_CheckStatus_PlayFileName(char *music_name, int *music_name_len) |
167 | { | 163 | { |
168 | Megaphone_get_play_FileName(music_name, music_name_len); | 164 | Megaphone_get_play_FileName(music_name, music_name_len); |
169 | } | 165 | } |
170 | /********* | 166 | /********* |
171 | - * | 167 | + * |
172 | * 查询软件版本号 | 168 | * 查询软件版本号 |
173 | - * | ||
174 | - * | ||
175 | -**********/ | 169 | + * |
170 | + * | ||
171 | + **********/ | ||
176 | int JZsdk_Uart_CheckStatus_SoftwareVersion(char *majorVersion, char *minorVersion, char *modifyVersion, char *debugVersion) | 172 | int JZsdk_Uart_CheckStatus_SoftwareVersion(char *majorVersion, char *minorVersion, char *modifyVersion, char *debugVersion) |
177 | { | 173 | { |
178 | *majorVersion = MAJOR_VERSION; | 174 | *majorVersion = MAJOR_VERSION; |
@@ -181,47 +177,44 @@ int JZsdk_Uart_CheckStatus_SoftwareVersion(char *majorVersion, char *minorVersio | @@ -181,47 +177,44 @@ int JZsdk_Uart_CheckStatus_SoftwareVersion(char *majorVersion, char *minorVersio | ||
181 | *debugVersion = DEBUG_VERSION; | 177 | *debugVersion = DEBUG_VERSION; |
182 | } | 178 | } |
183 | /********* | 179 | /********* |
184 | - * | 180 | + * |
185 | * 查询是否打开循环 | 181 | * 查询是否打开循环 |
186 | - * | ||
187 | - * | ||
188 | -**********/ | 182 | + * |
183 | + * | ||
184 | + **********/ | ||
189 | int JZsdk_Uart_CheckStatus_LoopPlay() | 185 | int JZsdk_Uart_CheckStatus_LoopPlay() |
190 | { | 186 | { |
191 | 187 | ||
192 | return Megaphone_Get_LoopPlay(); | 188 | return Megaphone_Get_LoopPlay(); |
193 | - | ||
194 | } | 189 | } |
195 | /********* | 190 | /********* |
196 | - * | 191 | + * |
197 | * 查询音色 | 192 | * 查询音色 |
198 | - * | ||
199 | - * | ||
200 | -**********/ | 193 | + * |
194 | + * | ||
195 | + **********/ | ||
201 | int JZsdk_Uart_CheckStatus_TTS_tone() | 196 | int JZsdk_Uart_CheckStatus_TTS_tone() |
202 | { | 197 | { |
203 | 198 | ||
204 | return Megaphone_Get_TTS_tone(); | 199 | return Megaphone_Get_TTS_tone(); |
205 | - | ||
206 | } | 200 | } |
207 | /********* | 201 | /********* |
208 | - * | 202 | + * |
209 | * 查询语速 | 203 | * 查询语速 |
210 | - * | ||
211 | - * | ||
212 | -**********/ | 204 | + * |
205 | + * | ||
206 | + **********/ | ||
213 | int JZsdk_Uart_CheckStatus_TTS_speed() | 207 | int JZsdk_Uart_CheckStatus_TTS_speed() |
214 | { | 208 | { |
215 | 209 | ||
216 | return Megaphone_Get_TTS_speed(); | 210 | return Megaphone_Get_TTS_speed(); |
217 | - | ||
218 | } | 211 | } |
219 | 212 | ||
220 | /*** | 213 | /*** |
221 | - * | ||
222 | - * | 214 | + * |
215 | + * | ||
223 | * 播放歌曲 | 216 | * 播放歌曲 |
224 | - * | 217 | + * |
225 | * ***/ | 218 | * ***/ |
226 | T_JZsdkReturnCode JZsdk_Uart_PlayMusic(int DeviceName, char *music_name, int datasize) | 219 | T_JZsdkReturnCode JZsdk_Uart_PlayMusic(int DeviceName, char *music_name, int datasize) |
227 | { | 220 | { |
@@ -229,145 +222,141 @@ T_JZsdkReturnCode JZsdk_Uart_PlayMusic(int DeviceName, char *music_name, int dat | @@ -229,145 +222,141 @@ T_JZsdkReturnCode JZsdk_Uart_PlayMusic(int DeviceName, char *music_name, int dat | ||
229 | } | 222 | } |
230 | 223 | ||
231 | /********* | 224 | /********* |
232 | - * | 225 | + * |
233 | * 音频继续播放 | 226 | * 音频继续播放 |
234 | - * | ||
235 | - * | ||
236 | -**********/ | 227 | + * |
228 | + * | ||
229 | + **********/ | ||
237 | T_JZsdkReturnCode JZsdk_Uart_audio_PlayContinue(int DeviceName) | 230 | T_JZsdkReturnCode JZsdk_Uart_audio_PlayContinue(int DeviceName) |
238 | { | 231 | { |
239 | return UIcontrol_ContinuePlayAudio(DeviceName); | 232 | return UIcontrol_ContinuePlayAudio(DeviceName); |
240 | } | 233 | } |
241 | /********* | 234 | /********* |
242 | - * | 235 | + * |
243 | * 音频暂停播放 | 236 | * 音频暂停播放 |
244 | - * | ||
245 | - * | ||
246 | -**********/ | 237 | + * |
238 | + * | ||
239 | + **********/ | ||
247 | T_JZsdkReturnCode JZsdk_Uart_audio_PlayPause(int DeviceName) | 240 | T_JZsdkReturnCode JZsdk_Uart_audio_PlayPause(int DeviceName) |
248 | { | 241 | { |
249 | return UIcontrol_PausePlayAudio(DeviceName); | 242 | return UIcontrol_PausePlayAudio(DeviceName); |
250 | } | 243 | } |
251 | /********* | 244 | /********* |
252 | - * | 245 | + * |
253 | * 音频停止播放 | 246 | * 音频停止播放 |
254 | - * | ||
255 | - * | ||
256 | -**********/ | 247 | + * |
248 | + * | ||
249 | + **********/ | ||
257 | T_JZsdkReturnCode JZsdk_Uart_audio_PlayStop(int DeviceName) | 250 | T_JZsdkReturnCode JZsdk_Uart_audio_PlayStop(int DeviceName) |
258 | { | 251 | { |
259 | return UIcontrol_StopPlayAudio(DeviceName); | 252 | return UIcontrol_StopPlayAudio(DeviceName); |
260 | } | 253 | } |
261 | 254 | ||
262 | /********* | 255 | /********* |
263 | - * | 256 | + * |
264 | * 音频上一曲 | 257 | * 音频上一曲 |
265 | - * | ||
266 | - * | ||
267 | -**********/ | 258 | + * |
259 | + * | ||
260 | + **********/ | ||
268 | T_JZsdkReturnCode JZsdk_Uart_audio_LastSong(int DeviceName) | 261 | T_JZsdkReturnCode JZsdk_Uart_audio_LastSong(int DeviceName) |
269 | { | 262 | { |
270 | return UIcontrol_LastSong(DeviceName); | 263 | return UIcontrol_LastSong(DeviceName); |
271 | } | 264 | } |
272 | 265 | ||
273 | /********* | 266 | /********* |
274 | - * | 267 | + * |
275 | * 音频下一曲 | 268 | * 音频下一曲 |
276 | - * | ||
277 | - * | ||
278 | -**********/ | 269 | + * |
270 | + * | ||
271 | + **********/ | ||
279 | T_JZsdkReturnCode JZsdk_Uart_audio_NextSong(int DeviceName) | 272 | T_JZsdkReturnCode JZsdk_Uart_audio_NextSong(int DeviceName) |
280 | { | 273 | { |
281 | return UIcontrol_NextSong(DeviceName); | 274 | return UIcontrol_NextSong(DeviceName); |
282 | } | 275 | } |
283 | 276 | ||
284 | /********* | 277 | /********* |
285 | - * | 278 | + * |
286 | * 12、循环播放 | 279 | * 12、循环播放 |
287 | - * | ||
288 | - * | ||
289 | -**********/ | 280 | + * |
281 | + * | ||
282 | + **********/ | ||
290 | T_JZsdkReturnCode JZsdk_Uart_audio_PlayLoop(int DeviceName, int mode) | 283 | T_JZsdkReturnCode JZsdk_Uart_audio_PlayLoop(int DeviceName, int mode) |
291 | { | 284 | { |
292 | return UIcontrol_Set_AudioPlayLoop(DeviceName, mode); | 285 | return UIcontrol_Set_AudioPlayLoop(DeviceName, mode); |
293 | } | 286 | } |
294 | 287 | ||
295 | /**************************************************************************************************************************************************** | 288 | /**************************************************************************************************************************************************** |
296 | -* | ||
297 | -* 录音opus 接口部分 | ||
298 | -* | ||
299 | -****************************************************************************************************************************************************/ | 289 | + * |
290 | + * 录音opus 接口部分 | ||
291 | + * | ||
292 | + ****************************************************************************************************************************************************/ | ||
300 | 293 | ||
301 | /********* | 294 | /********* |
302 | - * | 295 | + * |
303 | * 播放固定位置的opus音频 | 296 | * 播放固定位置的opus音频 |
304 | - * | ||
305 | - * | ||
306 | -**********/ | 297 | + * |
298 | + * | ||
299 | + **********/ | ||
307 | T_JZsdkReturnCode JZsdk_Uart_Opus_PlayFixedFile(int DeviceName) | 300 | T_JZsdkReturnCode JZsdk_Uart_Opus_PlayFixedFile(int DeviceName) |
308 | { | 301 | { |
309 | return UIcontrol_Opus_PlayFixedFile(DeviceName); | 302 | return UIcontrol_Opus_PlayFixedFile(DeviceName); |
310 | } | 303 | } |
311 | 304 | ||
312 | - | ||
313 | /* | 305 | /* |
314 | -* | ||
315 | -* 存储opus文件开始 | ||
316 | -* | ||
317 | -*/ | 306 | + * |
307 | + * 存储opus文件开始 | ||
308 | + * | ||
309 | + */ | ||
318 | int JZsdk_Uart_SaveOpusStart(int decode_rate) | 310 | int JZsdk_Uart_SaveOpusStart(int decode_rate) |
319 | { | 311 | { |
320 | Megaphone_SaveOpusStart(decode_rate); | 312 | Megaphone_SaveOpusStart(decode_rate); |
321 | } | 313 | } |
322 | 314 | ||
323 | /* | 315 | /* |
324 | -* | ||
325 | -* 存储opus文件中 | ||
326 | -* | ||
327 | -*/ | 316 | + * |
317 | + * 存储opus文件中 | ||
318 | + * | ||
319 | + */ | ||
328 | int JZsdk_Uart_SaveOpusTrans(char *SaveData, int size) | 320 | int JZsdk_Uart_SaveOpusTrans(char *SaveData, int size) |
329 | { | 321 | { |
330 | Megaphone_SaveOpusTrans(SaveData, size); | 322 | Megaphone_SaveOpusTrans(SaveData, size); |
331 | } | 323 | } |
332 | 324 | ||
333 | /* | 325 | /* |
334 | -* | ||
335 | -* 存储opus文件结束 | ||
336 | -* | ||
337 | -*/ | 326 | + * |
327 | + * 存储opus文件结束 | ||
328 | + * | ||
329 | + */ | ||
338 | int JZsdk_Uart_SaveOpusStop() | 330 | int JZsdk_Uart_SaveOpusStop() |
339 | { | 331 | { |
340 | Megaphone_SaveOpusStop(); | 332 | Megaphone_SaveOpusStop(); |
341 | } | 333 | } |
342 | 334 | ||
343 | - | ||
344 | /**************************************************************************************************************************************************** | 335 | /**************************************************************************************************************************************************** |
345 | -* | ||
346 | -* 实时喊话opus 接口部分 | ||
347 | -* | ||
348 | -****************************************************************************************************************************************************/ | 336 | + * |
337 | + * 实时喊话opus 接口部分 | ||
338 | + * | ||
339 | + ****************************************************************************************************************************************************/ | ||
349 | int JZsdk_Uart_RealTimeVoiceStart(int decode_rate) | 340 | int JZsdk_Uart_RealTimeVoiceStart(int decode_rate) |
350 | { | 341 | { |
351 | Megaphone_RealTimeVoice_Start(decode_rate); | 342 | Megaphone_RealTimeVoice_Start(decode_rate); |
352 | } | 343 | } |
353 | 344 | ||
354 | - | ||
355 | int JZsdk_Uart_RealTimeVoiceTrans(char *data, int length) | 345 | int JZsdk_Uart_RealTimeVoiceTrans(char *data, int length) |
356 | { | 346 | { |
357 | Megaphone_RealTimeVoice_Trans(data, length); | 347 | Megaphone_RealTimeVoice_Trans(data, length); |
358 | } | 348 | } |
359 | 349 | ||
360 | - | ||
361 | int JZsdk_Uart_RealTimeVoiceClose() | 350 | int JZsdk_Uart_RealTimeVoiceClose() |
362 | { | 351 | { |
363 | Megaphone_RealTimeVoice_Close(); | 352 | Megaphone_RealTimeVoice_Close(); |
364 | } | 353 | } |
365 | 354 | ||
366 | /**************************************************************************************************************************************************** | 355 | /**************************************************************************************************************************************************** |
367 | -* | ||
368 | -* 实时MP2 接口部分 | ||
369 | -* | ||
370 | -****************************************************************************************************************************************************/ | 356 | + * |
357 | + * 实时MP2 接口部分 | ||
358 | + * | ||
359 | + ****************************************************************************************************************************************************/ | ||
371 | T_JZsdkReturnCode JZsdk_Uart_RealTimeMP2_start(int decode_rate) | 360 | T_JZsdkReturnCode JZsdk_Uart_RealTimeMP2_start(int decode_rate) |
372 | { | 361 | { |
373 | return Megaphone_RealTimeMP2_start(); | 362 | return Megaphone_RealTimeMP2_start(); |
@@ -378,134 +367,126 @@ T_JZsdkReturnCode JZsdk_Uart_RealTimeMP2_Trans(unsigned char *data, int length) | @@ -378,134 +367,126 @@ T_JZsdkReturnCode JZsdk_Uart_RealTimeMP2_Trans(unsigned char *data, int length) | ||
378 | return Megaphone_RealTimeMP2_trans(data, length); | 367 | return Megaphone_RealTimeMP2_trans(data, length); |
379 | } | 368 | } |
380 | 369 | ||
381 | - | ||
382 | T_JZsdkReturnCode JZsdk_Uart_RealTimeMP2_Close() | 370 | T_JZsdkReturnCode JZsdk_Uart_RealTimeMP2_Close() |
383 | { | 371 | { |
384 | Megaphone_RealTimeMP2_stop(); | 372 | Megaphone_RealTimeMP2_stop(); |
385 | } | 373 | } |
386 | 374 | ||
387 | - | ||
388 | - | ||
389 | - | ||
390 | - | ||
391 | - | ||
392 | /**************************************************************************************************************************************************** | 375 | /**************************************************************************************************************************************************** |
393 | -* | ||
394 | -* 云台部分 | ||
395 | -* | ||
396 | -****************************************************************************************************************************************************/ | 376 | + * |
377 | + * 云台部分 | ||
378 | + * | ||
379 | + ****************************************************************************************************************************************************/ | ||
397 | 380 | ||
398 | /********* | 381 | /********* |
399 | - * | 382 | + * |
400 | * 云台俯仰控制 | 383 | * 云台俯仰控制 |
401 | - * | ||
402 | - * | ||
403 | -**********/ | 384 | + * |
385 | + * | ||
386 | + **********/ | ||
404 | T_JZsdkReturnCode JZsdk_Uart_Gimbal_PitchControl(int DeviceName, int Gimbal_angle) | 387 | T_JZsdkReturnCode JZsdk_Uart_Gimbal_PitchControl(int DeviceName, int Gimbal_angle) |
405 | -{ | 388 | +{ |
406 | return UIcontrol_Set_GimbalPitchAngle(DeviceName, Gimbal_angle); | 389 | return UIcontrol_Set_GimbalPitchAngle(DeviceName, Gimbal_angle); |
407 | } | 390 | } |
408 | 391 | ||
409 | /********* | 392 | /********* |
410 | - * | 393 | + * |
411 | * 云台俯仰微调角度 | 394 | * 云台俯仰微调角度 |
412 | - * | ||
413 | - * | ||
414 | -**********/ | ||
415 | -T_JZsdkReturnCode JZsdk_Uart_Gimbal_PitchFineTuningControl(int DeviceName, int FrameSequence,int Gimbal_angle) | ||
416 | -{ | 395 | + * |
396 | + * | ||
397 | + **********/ | ||
398 | +T_JZsdkReturnCode JZsdk_Uart_Gimbal_PitchFineTuningControl(int DeviceName, int FrameSequence, int Gimbal_angle) | ||
399 | +{ | ||
417 | T_JZsdkReturnCode ret = UIcontrol_Set_GimbalPitchFineTuning(DeviceName, Gimbal_angle); | 400 | T_JZsdkReturnCode ret = UIcontrol_Set_GimbalPitchFineTuning(DeviceName, Gimbal_angle); |
418 | if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | 401 | if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) |
419 | { | 402 | { |
420 | - //回复操作成功 | ||
421 | - JZsdk_Uart_SendDeal_Reply_Sucesss(DeviceName, FrameSequence); | 403 | + // 回复操作成功 |
404 | + JZsdk_Uart_SendDeal_Reply_Sucesss(DeviceName, FrameSequence); | ||
422 | } | 405 | } |
423 | else | 406 | else |
424 | { | 407 | { |
425 | - //回复操作失败 | ||
426 | - JZsdk_Uart_SendDeal_Reply_Failure(DeviceName, FrameSequence); | 408 | + // 回复操作失败 |
409 | + JZsdk_Uart_SendDeal_Reply_Failure(DeviceName, FrameSequence); | ||
427 | } | 410 | } |
428 | } | 411 | } |
429 | 412 | ||
430 | - | ||
431 | /**************************************************************************************************************************************************** | 413 | /**************************************************************************************************************************************************** |
432 | -* | ||
433 | -* 探照灯部分 | ||
434 | -* | ||
435 | -****************************************************************************************************************************************************/ | 414 | + * |
415 | + * 探照灯部分 | ||
416 | + * | ||
417 | + ****************************************************************************************************************************************************/ | ||
436 | /********* | 418 | /********* |
437 | - * | 419 | + * |
438 | * 探照灯爆闪频率控制 | 420 | * 探照灯爆闪频率控制 |
439 | - * | ||
440 | - * | ||
441 | -**********/ | 421 | + * |
422 | + * | ||
423 | + **********/ | ||
442 | T_JZsdkReturnCode JZsdk_Uart_Lighting_SetSearchLightFrequency(int DeviceName, int Frequency) | 424 | T_JZsdkReturnCode JZsdk_Uart_Lighting_SetSearchLightFrequency(int DeviceName, int Frequency) |
443 | -{ | 425 | +{ |
444 | return UIcontrol_Set_SearchLightFrequency(DeviceName, Frequency); | 426 | return UIcontrol_Set_SearchLightFrequency(DeviceName, Frequency); |
445 | } | 427 | } |
446 | 428 | ||
447 | /********* | 429 | /********* |
448 | - * | 430 | + * |
449 | * 灯光模式控制 | 431 | * 灯光模式控制 |
450 | - * | ||
451 | -**********/ | 432 | + * |
433 | + **********/ | ||
452 | T_JZsdkReturnCode JZsdk_Uart_SearchLight_Control(int DeviceName, int mode) | 434 | T_JZsdkReturnCode JZsdk_Uart_SearchLight_Control(int DeviceName, int mode) |
453 | { | 435 | { |
454 | - return UIcontrol_SearchLightControl(DeviceName, mode); | 436 | + return UIcontrol_SearchLightControl(DeviceName, mode); |
455 | } | 437 | } |
456 | 438 | ||
457 | /********* | 439 | /********* |
458 | - * | 440 | + * |
459 | * 灯光亮度 | 441 | * 灯光亮度 |
460 | - * | ||
461 | -**********/ | 442 | + * |
443 | + **********/ | ||
462 | T_JZsdkReturnCode JZsdk_Uart_SearchLight_Lumen(int DeviceName, int LeftLumen, int RightLumen) | 444 | T_JZsdkReturnCode JZsdk_Uart_SearchLight_Lumen(int DeviceName, int LeftLumen, int RightLumen) |
463 | { | 445 | { |
464 | - return UIcontrol_Set_SearchLightLumen(DeviceName, LeftLumen, RightLumen); | 446 | + return UIcontrol_Set_SearchLightLumen(DeviceName, LeftLumen, RightLumen); |
465 | } | 447 | } |
466 | 448 | ||
467 | /********* | 449 | /********* |
468 | - * | 450 | + * |
469 | * 灯光属性查询 | 451 | * 灯光属性查询 |
470 | - * | ||
471 | -**********/ | 452 | + * |
453 | + **********/ | ||
472 | T_JZsdkReturnCode JZsdk_Uart_CheckStatus_SearchLightLightAttribute(int DeviceName, int FrameSequence) | 454 | T_JZsdkReturnCode JZsdk_Uart_CheckStatus_SearchLightLightAttribute(int DeviceName, int FrameSequence) |
473 | { | 455 | { |
474 | - //1、查询灯光属性 | 456 | + // 1、查询灯光属性 |
475 | int Light_Frequency; | 457 | int Light_Frequency; |
476 | int Light_Mode; | 458 | int Light_Mode; |
477 | int Light_LeftLumen; | 459 | int Light_LeftLumen; |
478 | int Light_RightLumen; | 460 | int Light_RightLumen; |
479 | T_JZsdkReturnCode ret = UIcontrol_CheckStatus_SearchLightLightAttribute(&Light_Frequency, &Light_Mode, &Light_LeftLumen, &Light_RightLumen); | 461 | T_JZsdkReturnCode ret = UIcontrol_CheckStatus_SearchLightLightAttribute(&Light_Frequency, &Light_Mode, &Light_LeftLumen, &Light_RightLumen); |
480 | 462 | ||
481 | - //2、回复灯光属性 | 463 | + // 2、回复灯光属性 |
482 | JZsdk_Uart_SendDeal_SearchLight_Frequency(DeviceName, Light_Frequency); | 464 | JZsdk_Uart_SendDeal_SearchLight_Frequency(DeviceName, Light_Frequency); |
483 | JZsdk_Uart_SendDeal_SearchLight_Mode(DeviceName, Light_Mode); | 465 | JZsdk_Uart_SendDeal_SearchLight_Mode(DeviceName, Light_Mode); |
484 | - JZsdk_Uart_SendDeal_SearchLight_Lumen(DeviceName,Light_LeftLumen, Light_RightLumen); | 466 | + JZsdk_Uart_SendDeal_SearchLight_Lumen(DeviceName, Light_LeftLumen, Light_RightLumen); |
485 | } | 467 | } |
486 | 468 | ||
487 | /********* | 469 | /********* |
488 | - * | 470 | + * |
489 | * 灯光温度查询 | 471 | * 灯光温度查询 |
490 | - * | ||
491 | -**********/ | 472 | + * |
473 | + **********/ | ||
492 | T_JZsdkReturnCode JZsdk_Uart_CheckStatus_SearchLightTemperture(int DeviceName, int FrameSequence) | 474 | T_JZsdkReturnCode JZsdk_Uart_CheckStatus_SearchLightTemperture(int DeviceName, int FrameSequence) |
493 | { | 475 | { |
494 | - //1、查询灯光温度 | 476 | + // 1、查询灯光温度 |
495 | int Light_LeftTemperature; | 477 | int Light_LeftTemperature; |
496 | int Light_RightTemperature; | 478 | int Light_RightTemperature; |
497 | T_JZsdkReturnCode ret = UIcontrol_CheckStatus_SearchLightTemperture(&Light_LeftTemperature, &Light_RightTemperature); | 479 | T_JZsdkReturnCode ret = UIcontrol_CheckStatus_SearchLightTemperture(&Light_LeftTemperature, &Light_RightTemperature); |
498 | 480 | ||
499 | - //2、回复灯光温度 | 481 | + // 2、回复灯光温度 |
500 | JZsdk_Uart_SendDeal_SearchLight_Temperature(DeviceName, Light_LeftTemperature, Light_RightTemperature); | 482 | JZsdk_Uart_SendDeal_SearchLight_Temperature(DeviceName, Light_LeftTemperature, Light_RightTemperature); |
501 | - | ||
502 | } | 483 | } |
503 | 484 | ||
504 | /********* | 485 | /********* |
505 | - * | 486 | + * |
506 | * 灯光消息订阅控制 | 487 | * 灯光消息订阅控制 |
507 | - * | ||
508 | -**********/ | 488 | + * |
489 | + **********/ | ||
509 | T_JZsdkReturnCode JZsdk_Uart_SearchLight_SubscriptionControl(int DeviceName, int value) | 490 | T_JZsdkReturnCode JZsdk_Uart_SearchLight_SubscriptionControl(int DeviceName, int value) |
510 | { | 491 | { |
511 | if (DeviceName == UART_DEV_2) | 492 | if (DeviceName == UART_DEV_2) |
@@ -516,160 +497,224 @@ T_JZsdkReturnCode JZsdk_Uart_SearchLight_SubscriptionControl(int DeviceName, int | @@ -516,160 +497,224 @@ T_JZsdkReturnCode JZsdk_Uart_SearchLight_SubscriptionControl(int DeviceName, int | ||
516 | { | 497 | { |
517 | JZsdk_Uart_SendDeal_MessageSubcription_Control(UART_DEV_2, value); | 498 | JZsdk_Uart_SendDeal_MessageSubcription_Control(UART_DEV_2, value); |
518 | } | 499 | } |
519 | - | 500 | + |
520 | return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | 501 | return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; |
521 | } | 502 | } |
522 | 503 | ||
523 | /********* | 504 | /********* |
524 | - * | 505 | + * |
525 | * 警灯模式控制 | 506 | * 警灯模式控制 |
526 | - * | ||
527 | -**********/ | 507 | + * |
508 | + **********/ | ||
528 | T_JZsdkReturnCode JZsdk_Uart_WarningLight_ModeControl(int DeviceName, int status, int mode) | 509 | T_JZsdkReturnCode JZsdk_Uart_WarningLight_ModeControl(int DeviceName, int status, int mode) |
529 | { | 510 | { |
530 | return UIcontrol_Set_WarningLight_ModeControl(DeviceName, status, mode); | 511 | return UIcontrol_Set_WarningLight_ModeControl(DeviceName, status, mode); |
531 | } | 512 | } |
532 | 513 | ||
533 | /********* | 514 | /********* |
534 | - * | 515 | + * |
535 | * 警灯颜色控制 | 516 | * 警灯颜色控制 |
536 | - * | ||
537 | -**********/ | 517 | + * |
518 | + **********/ | ||
538 | T_JZsdkReturnCode JZsdk_Uart_WarningLight_SetColor(int DeviceName, int color1, int color2) | 519 | T_JZsdkReturnCode JZsdk_Uart_WarningLight_SetColor(int DeviceName, int color1, int color2) |
539 | { | 520 | { |
540 | return UIcontrol_Set_WarningLight_Color(DeviceName, color1, color2); | 521 | return UIcontrol_Set_WarningLight_Color(DeviceName, color1, color2); |
541 | } | 522 | } |
542 | 523 | ||
543 | /********* | 524 | /********* |
544 | - * | 525 | + * |
545 | * 警灯状态查询 | 526 | * 警灯状态查询 |
546 | - * | ||
547 | -**********/ | 527 | + * |
528 | + **********/ | ||
548 | T_JZsdkReturnCode JZsdk_Uart_CheckStatus_WarningLightStatus(int DeviceName, int FrameSequence) | 529 | T_JZsdkReturnCode JZsdk_Uart_CheckStatus_WarningLightStatus(int DeviceName, int FrameSequence) |
549 | { | 530 | { |
550 | - //1、查询警灯状态查询 | 531 | + // 1、查询警灯状态查询 |
551 | int status; | 532 | int status; |
552 | int Mode; | 533 | int Mode; |
553 | T_JZsdkReturnCode ret = UIcontrol_CheckStatus_WarningLightStatus(&status, &Mode); | 534 | T_JZsdkReturnCode ret = UIcontrol_CheckStatus_WarningLightStatus(&status, &Mode); |
554 | 535 | ||
555 | - //2、回复警灯状态查询 | 536 | + // 2、回复警灯状态查询 |
556 | JZsdk_Uart_SendDeal_WarningLight_Status(DeviceName, status, Mode); | 537 | JZsdk_Uart_SendDeal_WarningLight_Status(DeviceName, status, Mode); |
557 | - | ||
558 | } | 538 | } |
559 | 539 | ||
560 | /********* | 540 | /********* |
561 | - * | 541 | + * |
562 | * 警灯颜色查询 | 542 | * 警灯颜色查询 |
563 | - * | ||
564 | -**********/ | 543 | + * |
544 | + **********/ | ||
565 | T_JZsdkReturnCode JZsdk_Uart_CheckStatus_WarningLightColor(int DeviceName, int FrameSequence) | 545 | T_JZsdkReturnCode JZsdk_Uart_CheckStatus_WarningLightColor(int DeviceName, int FrameSequence) |
566 | { | 546 | { |
567 | - //1、查询灯光温度 | 547 | + // 1、查询灯光温度 |
568 | int color1; | 548 | int color1; |
569 | int color2; | 549 | int color2; |
570 | 550 | ||
571 | T_JZsdkReturnCode ret = UIcontrol_CheckStatus_WarningLightColor(&color1, &color2); | 551 | T_JZsdkReturnCode ret = UIcontrol_CheckStatus_WarningLightColor(&color1, &color2); |
572 | 552 | ||
573 | - //2、回复警灯颜色 | 553 | + // 2、回复警灯颜色 |
574 | JZsdk_Uart_SendDeal_WarningLight_Color(DeviceName, color1, color2); | 554 | JZsdk_Uart_SendDeal_WarningLight_Color(DeviceName, color1, color2); |
575 | - | ||
576 | } | 555 | } |
577 | 556 | ||
578 | /* | 557 | /* |
579 | -* | ||
580 | -* 获取本地主设备名 | ||
581 | -* | ||
582 | -*/ | 558 | + * |
559 | + * 获取本地主设备名 | ||
560 | + * | ||
561 | + */ | ||
583 | int JZsdk_Uart_GetVersionReplay() | 562 | int JZsdk_Uart_GetVersionReplay() |
584 | { | 563 | { |
585 | switch (DEVICE_VERSION) | 564 | switch (DEVICE_VERSION) |
586 | { | 565 | { |
587 | - case JZ_H1E: | ||
588 | - return 0x11; | ||
589 | - break; | ||
590 | - | ||
591 | - case JZ_H150S: | ||
592 | - return 0x13; | ||
593 | - break; | ||
594 | - | ||
595 | - case JZ_H150T: | ||
596 | - return 0x15; | ||
597 | - break; | ||
598 | - | ||
599 | - case JZ_H10: | ||
600 | - return 0x12; | ||
601 | - break; | ||
602 | - case JZ_H10T: | ||
603 | - return 0x14; | ||
604 | - break; | ||
605 | - | ||
606 | - case JZ_H1T: | ||
607 | - return 0x16; | ||
608 | - break; | ||
609 | - | ||
610 | - case JZ_U3: | ||
611 | - return 0x17; | ||
612 | - break; | ||
613 | - | ||
614 | - default: | ||
615 | - return 0x00; | ||
616 | - break; | 566 | + case JZ_H1E: |
567 | + return 0x11; | ||
568 | + break; | ||
569 | + | ||
570 | + case JZ_H150S: | ||
571 | + return 0x13; | ||
572 | + break; | ||
573 | + | ||
574 | + case JZ_H150T: | ||
575 | + return 0x15; | ||
576 | + break; | ||
577 | + | ||
578 | + case JZ_H10: | ||
579 | + return 0x12; | ||
580 | + break; | ||
581 | + case JZ_H10T: | ||
582 | + return 0x14; | ||
583 | + break; | ||
584 | + | ||
585 | + case JZ_H1T: | ||
586 | + return 0x16; | ||
587 | + break; | ||
588 | + | ||
589 | + case JZ_U3: | ||
590 | + return 0x17; | ||
591 | + break; | ||
592 | + | ||
593 | + default: | ||
594 | + return 0x00; | ||
595 | + break; | ||
617 | }; | 596 | }; |
618 | - | ||
619 | } | 597 | } |
620 | 598 | ||
621 | - | ||
622 | /* | 599 | /* |
623 | -* | ||
624 | -* 设置工作模式 | ||
625 | -* | ||
626 | -*/ | 600 | + * |
601 | + * 设置工作模式 | ||
602 | + * | ||
603 | + */ | ||
627 | int JZsdk_Uart_SetMainWorkMode(int mode) | 604 | int JZsdk_Uart_SetMainWorkMode(int mode) |
628 | { | 605 | { |
629 | Main_WorkModeSet(mode); | 606 | Main_WorkModeSet(mode); |
630 | } | 607 | } |
631 | 608 | ||
609 | +/* | ||
610 | + * | ||
611 | + * 查询序列号 | ||
612 | + * | ||
613 | + */ | ||
614 | +T_JZsdkReturnCode JZsdk_Uart_CheckStatus_SerialNumber(int UartPort, int FrameSequence) | ||
615 | +{ | ||
616 | + // 1、获取序列号 | ||
617 | + char SerialNum[14]; | ||
618 | + T_JZsdkReturnCode ret = GetSerialNumber(SerialNum); | ||
619 | + if (ret != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | ||
620 | + { | ||
621 | + JZSDK_LOG_ERROR("获取序列号失败"); | ||
622 | + | ||
623 | + JZsdk_Uart_SendDeal_Reply_Failure(UartPort, FrameSequence); | ||
624 | + | ||
625 | + return ret; | ||
626 | + } | ||
627 | + | ||
628 | + // 2、发送序列号 | ||
629 | + JZsdk_Uart_SendDeal_SerialNumber(UartPort, FrameSequence, SerialNum); | ||
630 | + return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | ||
631 | +} | ||
632 | + | ||
632 | /**************************************************************************************************************************************************** | 633 | /**************************************************************************************************************************************************** |
633 | -* | ||
634 | -* AudioFile 接口部分 | ||
635 | -* | ||
636 | -****************************************************************************************************************************************************/ | 634 | + * |
635 | + * AudioFile 接口部分 | ||
636 | + * | ||
637 | + ****************************************************************************************************************************************************/ | ||
637 | /* | 638 | /* |
638 | 1、开始传输的音频文件保存 | 639 | 1、开始传输的音频文件保存 |
639 | 2、存储音频文件中 | 640 | 2、存储音频文件中 |
640 | 3、存储音频文件结束 | 641 | 3、存储音频文件结束 |
641 | */ | 642 | */ |
642 | /********* | 643 | /********* |
643 | - * | 644 | + * |
644 | * 1、开始传输的音频文件保存 | 645 | * 1、开始传输的音频文件保存 |
645 | - * | ||
646 | - * | ||
647 | -**********/ | 646 | + * |
647 | + * | ||
648 | + **********/ | ||
648 | T_JZsdkReturnCode JZsdk_Uart_SaveAudioFileStart(char *FileName) | 649 | T_JZsdkReturnCode JZsdk_Uart_SaveAudioFileStart(char *FileName) |
649 | { | 650 | { |
650 | return Megaphone_SaveAudioFileStart(FileName); | 651 | return Megaphone_SaveAudioFileStart(FileName); |
651 | } | 652 | } |
652 | 653 | ||
653 | /* | 654 | /* |
654 | -* | ||
655 | -* 2、存储音频文件中 | ||
656 | -* | ||
657 | -*/ | 655 | + * |
656 | + * 2、存储音频文件中 | ||
657 | + * | ||
658 | + */ | ||
658 | int JZsdk_Uart_SaveAudioFileTrans(char *SaveData, int size) | 659 | int JZsdk_Uart_SaveAudioFileTrans(char *SaveData, int size) |
659 | { | 660 | { |
660 | Megaphone_SaveAudioFileTrans(SaveData, size); | 661 | Megaphone_SaveAudioFileTrans(SaveData, size); |
661 | } | 662 | } |
662 | 663 | ||
663 | /* | 664 | /* |
664 | -* | ||
665 | -* 3、存储音频文件结束 | ||
666 | -* | ||
667 | -*/ | 665 | + * |
666 | + * 3、存储音频文件结束 | ||
667 | + * | ||
668 | + */ | ||
668 | int JZsdk_Uart_SaveAudioFileStop() | 669 | int JZsdk_Uart_SaveAudioFileStop() |
669 | { | 670 | { |
670 | Megaphone_SaveAudioFileStop(); | 671 | Megaphone_SaveAudioFileStop(); |
671 | } | 672 | } |
672 | 673 | ||
674 | +/**************************************************************************************************************************************************** | ||
675 | + * | ||
676 | + * 对外供电部分 | ||
677 | + * | ||
678 | + ****************************************************************************************************************************************************/ | ||
679 | +/********* | ||
680 | + * | ||
681 | + * 对外供电开关 | ||
682 | + * | ||
683 | + **********/ | ||
684 | +T_JZsdkReturnCode JZsdk_Uart_OutPutPower_Control(int DeviceName, int FrameSequence, int Value) | ||
685 | +{ | ||
686 | + //1、设置本地的值 | ||
687 | + T_JZsdkReturnCode ret = UIcontrol_Set_OutPutPower_Control(DeviceName, Value); | ||
688 | + if (ret != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | ||
689 | + { | ||
690 | + JZsdk_Uart_SendDeal_Reply_Failure(DeviceName, FrameSequence); | ||
691 | + } | ||
692 | + | ||
693 | + //2、回复操作成功 | ||
694 | + JZsdk_Uart_SendDeal_Reply_Sucesss(DeviceName, FrameSequence); | ||
695 | +} | ||
696 | + | ||
697 | +/********* | ||
698 | + * | ||
699 | + * 对外电源查询 | ||
700 | + * | ||
701 | + **********/ | ||
702 | +T_JZsdkReturnCode JZsdk_Uart_Checkstatus_OutPutPower(int DeviceName, int FrameSequence) | ||
703 | +{ | ||
704 | + int OutPutPowerValue = JZ_FLAGCODE_OFF; | ||
705 | + | ||
706 | + //1、获取电源值 | ||
707 | + T_JZsdkReturnCode ret = UIcontrol_CheckStatus_OutPutPowerValue(&OutPutPowerValue); | ||
708 | + if (ret != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | ||
709 | + { | ||
710 | + JZsdk_Uart_SendDeal_Reply_Failure(DeviceName, FrameSequence); | ||
711 | + } | ||
712 | + | ||
713 | + //2、发送电源值 | ||
714 | + JZsdk_Uart_SendDeal_OutputPowerStatus(DeviceName, FrameSequence, OutPutPowerValue); | ||
715 | +} | ||
716 | + | ||
717 | + | ||
673 | /******************************************************************************************************** | 718 | /******************************************************************************************************** |
674 | ********* ********| | 719 | ********* ********| |
675 | ********* ********| | 720 | ********* ********| |
@@ -685,128 +730,124 @@ int JZsdk_Uart_SaveAudioFileStop() | @@ -685,128 +730,124 @@ int JZsdk_Uart_SaveAudioFileStop() | ||
685 | *********************************************************************************************************/ | 730 | *********************************************************************************************************/ |
686 | 731 | ||
687 | /******************************************************************************************************************************* | 732 | /******************************************************************************************************************************* |
688 | - * | 733 | + * |
689 | * 灯光部分 | 734 | * 灯光部分 |
690 | - * | 735 | + * |
691 | * *****************************************************************************************************************************/ | 736 | * *****************************************************************************************************************************/ |
692 | /********* | 737 | /********* |
693 | - * | 738 | + * |
694 | * 收到灯光频率 | 739 | * 收到灯光频率 |
695 | - * | ||
696 | -**********/ | 740 | + * |
741 | + **********/ | ||
697 | T_JZsdkReturnCode JZsdl_Uart_ObtainSearchLight_Frequency(int DeviceName, int Frequency) | 742 | T_JZsdkReturnCode JZsdl_Uart_ObtainSearchLight_Frequency(int DeviceName, int Frequency) |
698 | { | 743 | { |
699 | UIcontrol_ObtainSearchLight_Frequency(DeviceName, Frequency); | 744 | UIcontrol_ObtainSearchLight_Frequency(DeviceName, Frequency); |
700 | -} | 745 | +} |
701 | 746 | ||
702 | /********* | 747 | /********* |
703 | - * | 748 | + * |
704 | * 收到灯光模式 | 749 | * 收到灯光模式 |
705 | - * | ||
706 | -**********/ | 750 | + * |
751 | + **********/ | ||
707 | T_JZsdkReturnCode JZsdl_Uart_ObtainSearchLight_Mode(int DeviceName, int mode) | 752 | T_JZsdkReturnCode JZsdl_Uart_ObtainSearchLight_Mode(int DeviceName, int mode) |
708 | { | 753 | { |
709 | UIcontrol_ObtainSearchLight_Mode(DeviceName, mode); | 754 | UIcontrol_ObtainSearchLight_Mode(DeviceName, mode); |
710 | -} | 755 | +} |
711 | 756 | ||
712 | /********* | 757 | /********* |
713 | - * | 758 | + * |
714 | * 收到灯光亮度 | 759 | * 收到灯光亮度 |
715 | - * | ||
716 | -**********/ | 760 | + * |
761 | + **********/ | ||
717 | T_JZsdkReturnCode JZsdl_Uart_ObtainSearchLight_Lumen(int DeviceName, int LeftLumen, int RightLumen) | 762 | T_JZsdkReturnCode JZsdl_Uart_ObtainSearchLight_Lumen(int DeviceName, int LeftLumen, int RightLumen) |
718 | { | 763 | { |
719 | UIcontrol_ObtainSearchLight_Lumen(DeviceName, LeftLumen, RightLumen); | 764 | UIcontrol_ObtainSearchLight_Lumen(DeviceName, LeftLumen, RightLumen); |
720 | -} | 765 | +} |
721 | 766 | ||
722 | /********* | 767 | /********* |
723 | - * | 768 | + * |
724 | * 收到探照灯温度 | 769 | * 收到探照灯温度 |
725 | - * | ||
726 | -**********/ | 770 | + * |
771 | + **********/ | ||
727 | T_JZsdkReturnCode JZsdl_Uart_ObtainSearchLight_Temperature(int DeviceName, int LeftTemperature, int RightTemperature) | 772 | T_JZsdkReturnCode JZsdl_Uart_ObtainSearchLight_Temperature(int DeviceName, int LeftTemperature, int RightTemperature) |
728 | { | 773 | { |
729 | UIcontrol_ObtainSearchLight_Temperature(DeviceName, LeftTemperature, RightTemperature); | 774 | UIcontrol_ObtainSearchLight_Temperature(DeviceName, LeftTemperature, RightTemperature); |
730 | } | 775 | } |
731 | 776 | ||
732 | /******************************************************************************************************************************* | 777 | /******************************************************************************************************************************* |
733 | - * | 778 | + * |
734 | * 云台部分 | 779 | * 云台部分 |
735 | - * | 780 | + * |
736 | * *****************************************************************************************************************************/ | 781 | * *****************************************************************************************************************************/ |
737 | /********* | 782 | /********* |
738 | - * | 783 | + * |
739 | * 收到云台俯仰 | 784 | * 收到云台俯仰 |
740 | - * | ||
741 | -**********/ | 785 | + * |
786 | + **********/ | ||
742 | T_JZsdkReturnCode JZsdl_Uart_RecvDeal_ObtainGimbal_Pitch(int DeviceName, int pitch) | 787 | T_JZsdkReturnCode JZsdl_Uart_RecvDeal_ObtainGimbal_Pitch(int DeviceName, int pitch) |
743 | { | 788 | { |
744 | UIcontrol_ObtainGimbal_Pitch(DeviceName, pitch); | 789 | UIcontrol_ObtainGimbal_Pitch(DeviceName, pitch); |
745 | } | 790 | } |
746 | 791 | ||
747 | /********* | 792 | /********* |
748 | - * | 793 | + * |
749 | * 收到云台航向 | 794 | * 收到云台航向 |
750 | - * | ||
751 | -**********/ | 795 | + * |
796 | + **********/ | ||
752 | T_JZsdkReturnCode JZsdl_Uart_RecvDeal_ObtainGimbal_Yaw(int DeviceName, int yaw) | 797 | T_JZsdkReturnCode JZsdl_Uart_RecvDeal_ObtainGimbal_Yaw(int DeviceName, int yaw) |
753 | { | 798 | { |
754 | - | ||
755 | } | 799 | } |
756 | 800 | ||
757 | /********* | 801 | /********* |
758 | - * | 802 | + * |
759 | * 收到云台俯仰微调值 | 803 | * 收到云台俯仰微调值 |
760 | - * | ||
761 | -**********/ | ||
762 | -T_JZsdkReturnCode JZsdl_Uart_ObtainGimbalPitchFineTuning(int DeviceName, int FrameSequence,int pitch) | 804 | + * |
805 | + **********/ | ||
806 | +T_JZsdkReturnCode JZsdl_Uart_ObtainGimbalPitchFineTuning(int DeviceName, int FrameSequence, int pitch) | ||
763 | { | 807 | { |
764 | printf("收到云台俯仰微调值\n"); | 808 | printf("收到云台俯仰微调值\n"); |
765 | 809 | ||
766 | - //2、发送到本地处理 | ||
767 | - UIcontrol_Obtain_GimbalPitchFineTuninng(DeviceName, pitch); | 810 | + // 2、发送到本地处理 |
811 | + UIcontrol_Obtain_GimbalPitchFineTuninng(DeviceName, pitch); | ||
768 | 812 | ||
769 | - //3、回复操作成功 | ||
770 | - JZsdk_Uart_SendDeal_Reply_Sucesss(DeviceName, FrameSequence); | 813 | + // 3、回复操作成功 |
814 | + JZsdk_Uart_SendDeal_Reply_Sucesss(DeviceName, FrameSequence); | ||
771 | } | 815 | } |
772 | 816 | ||
773 | - | ||
774 | /******************************************************************************************************************************* | 817 | /******************************************************************************************************************************* |
775 | - * | 818 | + * |
776 | * 警灯部分 | 819 | * 警灯部分 |
777 | - * | 820 | + * |
778 | * *****************************************************************************************************************************/ | 821 | * *****************************************************************************************************************************/ |
779 | /********* | 822 | /********* |
780 | - * | 823 | + * |
781 | * 收到警灯状态 | 824 | * 收到警灯状态 |
782 | - * | ||
783 | -**********/ | 825 | + * |
826 | + **********/ | ||
784 | T_JZsdkReturnCode JZsdl_Uart_RecvDeal_ObtainWaringlight_Status(int DeviceName, int status, int mode) | 827 | T_JZsdkReturnCode JZsdl_Uart_RecvDeal_ObtainWaringlight_Status(int DeviceName, int status, int mode) |
785 | { | 828 | { |
786 | UIcontrol_ObtainWarningLight_Status(DeviceName, status, mode); | 829 | UIcontrol_ObtainWarningLight_Status(DeviceName, status, mode); |
787 | } | 830 | } |
788 | 831 | ||
789 | /********* | 832 | /********* |
790 | - * | 833 | + * |
791 | * 收到警灯颜色 | 834 | * 收到警灯颜色 |
792 | - * | ||
793 | -**********/ | 835 | + * |
836 | + **********/ | ||
794 | T_JZsdkReturnCode JZsdl_Uart_RecvDeal_ObtainWaringlight_Color(int DeviceName, int color1, int color2) | 837 | T_JZsdkReturnCode JZsdl_Uart_RecvDeal_ObtainWaringlight_Color(int DeviceName, int color1, int color2) |
795 | { | 838 | { |
796 | UIcontrol_ObtainWarningLight_Color(DeviceName, color1, color2); | 839 | UIcontrol_ObtainWarningLight_Color(DeviceName, color1, color2); |
797 | } | 840 | } |
798 | 841 | ||
799 | /********* | 842 | /********* |
800 | - * | 843 | + * |
801 | * 收到产品序列号 | 844 | * 收到产品序列号 |
802 | - * | ||
803 | -**********/ | 845 | + * |
846 | + **********/ | ||
804 | T_JZsdkReturnCode JZsdl_Uart_RecvDeal_ObtainSerialNumber(int DeviceName, int SerialNumber) | 847 | T_JZsdkReturnCode JZsdl_Uart_RecvDeal_ObtainSerialNumber(int DeviceName, int SerialNumber) |
805 | { | 848 | { |
806 | - | ||
807 | } | 849 | } |
808 | 850 | ||
809 | - | ||
810 | /******************************************************************************************************** | 851 | /******************************************************************************************************** |
811 | ********* ********| | 852 | ********* ********| |
812 | ********* ********| | 853 | ********* ********| |
@@ -822,41 +863,41 @@ T_JZsdkReturnCode JZsdl_Uart_RecvDeal_ObtainSerialNumber(int DeviceName, int Ser | @@ -822,41 +863,41 @@ T_JZsdkReturnCode JZsdl_Uart_RecvDeal_ObtainSerialNumber(int DeviceName, int Ser | ||
822 | *********************************************************************************************************/ | 863 | *********************************************************************************************************/ |
823 | 864 | ||
824 | /********* | 865 | /********* |
825 | - * | 866 | + * |
826 | * 设置云台最大值最小值 | 867 | * 设置云台最大值最小值 |
827 | - * | ||
828 | -**********/ | 868 | + * |
869 | + **********/ | ||
829 | T_JZsdkReturnCode JZsdk_Uart_SetGimbalRange(int DeviceName, int value) | 870 | T_JZsdkReturnCode JZsdk_Uart_SetGimbalRange(int DeviceName, int value) |
830 | { | 871 | { |
831 | return UIcontrol_SetGimbalRange(DeviceName, value); | 872 | return UIcontrol_SetGimbalRange(DeviceName, value); |
832 | } | 873 | } |
833 | 874 | ||
834 | /********* | 875 | /********* |
835 | - * | 876 | + * |
836 | * 设置云台联动 | 877 | * 设置云台联动 |
837 | - * | ||
838 | -**********/ | 878 | + * |
879 | + **********/ | ||
839 | T_JZsdkReturnCode JZsdk_Uart_GimbalLinkageControl(int DeviceName, int FrameSequence, int value) | 880 | T_JZsdkReturnCode JZsdk_Uart_GimbalLinkageControl(int DeviceName, int FrameSequence, int value) |
840 | { | 881 | { |
841 | - //1、设置本地的云台联动 | 882 | + // 1、设置本地的云台联动 |
842 | int ret = UIcontrol_Set_GimbalLinkageControl(DeviceName, value); | 883 | int ret = UIcontrol_Set_GimbalLinkageControl(DeviceName, value); |
843 | if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | 884 | if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) |
844 | { | 885 | { |
845 | - //回复操作成功 | ||
846 | - JZsdk_Uart_SendDeal_Reply_Sucesss(DeviceName, FrameSequence); | 886 | + // 回复操作成功 |
887 | + JZsdk_Uart_SendDeal_Reply_Sucesss(DeviceName, FrameSequence); | ||
847 | } | 888 | } |
848 | else | 889 | else |
849 | { | 890 | { |
850 | - //回复操作失败 | ||
851 | - JZsdk_Uart_SendDeal_Reply_Failure(DeviceName, FrameSequence); | 891 | + // 回复操作失败 |
892 | + JZsdk_Uart_SendDeal_Reply_Failure(DeviceName, FrameSequence); | ||
852 | } | 893 | } |
853 | } | 894 | } |
854 | 895 | ||
855 | /********* | 896 | /********* |
856 | - * | 897 | + * |
857 | * 查询云台联动 | 898 | * 查询云台联动 |
858 | - * | ||
859 | -**********/ | 899 | + * |
900 | + **********/ | ||
860 | T_JZsdkReturnCode JZsdk_Uart_Checkstatus_GimbalLinkage(int DeviceName, int FrameSequence) | 901 | T_JZsdkReturnCode JZsdk_Uart_Checkstatus_GimbalLinkage(int DeviceName, int FrameSequence) |
861 | { | 902 | { |
862 | int LinkageValue; | 903 | int LinkageValue; |
@@ -864,40 +905,38 @@ T_JZsdkReturnCode JZsdk_Uart_Checkstatus_GimbalLinkage(int DeviceName, int Frame | @@ -864,40 +905,38 @@ T_JZsdkReturnCode JZsdk_Uart_Checkstatus_GimbalLinkage(int DeviceName, int Frame | ||
864 | T_JZsdkReturnCode ret = UIcontrol_CheckStatus_GimbalLinkage(&LinkageValue); | 905 | T_JZsdkReturnCode ret = UIcontrol_CheckStatus_GimbalLinkage(&LinkageValue); |
865 | if (ret != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | 906 | if (ret != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) |
866 | { | 907 | { |
867 | - //回复操作失败 | ||
868 | - JZsdk_Uart_SendDeal_Reply_Failure(DeviceName, FrameSequence); | 908 | + // 回复操作失败 |
909 | + JZsdk_Uart_SendDeal_Reply_Failure(DeviceName, FrameSequence); | ||
869 | } | 910 | } |
870 | 911 | ||
871 | - //成功则发送云台联动值 | 912 | + // 成功则发送云台联动值 |
872 | JZsdk_Uart_SendDeal_GimbalLinkageControl(DeviceName, FrameSequence, LinkageValue); | 913 | JZsdk_Uart_SendDeal_GimbalLinkageControl(DeviceName, FrameSequence, LinkageValue); |
873 | } | 914 | } |
874 | 915 | ||
875 | /* | 916 | /* |
876 | -* | ||
877 | -* 设置本地从设备名 | ||
878 | -* | ||
879 | -*/ | 917 | + * |
918 | + * 设置本地从设备名 | ||
919 | + * | ||
920 | + */ | ||
880 | T_JZsdkReturnCode JZsdk_Uart_SetSecondaryDeviceName(int DeviceName) | 921 | T_JZsdkReturnCode JZsdk_Uart_SetSecondaryDeviceName(int DeviceName) |
881 | { | 922 | { |
882 | - printf("设置本地从设备名%x\n",DeviceName); | 923 | + printf("设置本地从设备名%x\n", DeviceName); |
883 | 924 | ||
884 | SecondaryDeviceName = DeviceName; | 925 | SecondaryDeviceName = DeviceName; |
885 | 926 | ||
886 | return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | 927 | return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; |
887 | } | 928 | } |
888 | 929 | ||
889 | - | ||
890 | /* | 930 | /* |
891 | -* | ||
892 | -* 获取本地从设备名 | ||
893 | -* | ||
894 | -*/ | 931 | + * |
932 | + * 获取本地从设备名 | ||
933 | + * | ||
934 | + */ | ||
895 | int JZsdk_Uart_GetSecondaryDeviceName() | 935 | int JZsdk_Uart_GetSecondaryDeviceName() |
896 | { | 936 | { |
897 | return SecondaryDeviceName; | 937 | return SecondaryDeviceName; |
898 | } | 938 | } |
899 | 939 | ||
900 | - | ||
901 | /******************************************************************************************************** | 940 | /******************************************************************************************************** |
902 | ********* ********| | 941 | ********* ********| |
903 | ********* ********| | 942 | ********* ********| |
@@ -913,32 +952,32 @@ int JZsdk_Uart_GetSecondaryDeviceName() | @@ -913,32 +952,32 @@ int JZsdk_Uart_GetSecondaryDeviceName() | ||
913 | *********************************************************************************************************/ | 952 | *********************************************************************************************************/ |
914 | 953 | ||
915 | /** | 954 | /** |
916 | - * | 955 | + * |
917 | * 查询从设备名 | 956 | * 查询从设备名 |
918 | - * | ||
919 | -*/ | 957 | + * |
958 | + */ | ||
920 | int JZsdk_Uart_QuerySecondaryDeviceName(int FrameSequence) | 959 | int JZsdk_Uart_QuerySecondaryDeviceName(int FrameSequence) |
921 | { | 960 | { |
922 | - //1、发送查询一遍从设备名, 通常位于 串口1 | 961 | + // 1、发送查询一遍从设备名, 通常位于 串口1 |
923 | JZsdk_Uart_SendDeal_QuerySecondaryDeviceName(UART_DEV_1, FrameSequence); | 962 | JZsdk_Uart_SendDeal_QuerySecondaryDeviceName(UART_DEV_1, FrameSequence); |
924 | } | 963 | } |
925 | 964 | ||
926 | /********* | 965 | /********* |
927 | - * | 966 | + * |
928 | * 收到云台联动值 | 967 | * 收到云台联动值 |
929 | - * | ||
930 | -**********/ | ||
931 | -T_JZsdkReturnCode JZsdk_Uart_ObtainGimbalLinkage(int DeviceName,int FrameSequence, int value) | 968 | + * |
969 | + **********/ | ||
970 | +T_JZsdkReturnCode JZsdk_Uart_ObtainGimbalLinkage(int DeviceName, int FrameSequence, int value) | ||
932 | { | 971 | { |
933 | T_JZsdkReturnCode ret = UIcontrol_Obtain_GimbalLinkage(DeviceName, value); | 972 | T_JZsdkReturnCode ret = UIcontrol_Obtain_GimbalLinkage(DeviceName, value); |
934 | if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | 973 | if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) |
935 | { | 974 | { |
936 | - //回复操作成功 | ||
937 | - JZsdk_Uart_SendDeal_Reply_Sucesss(UART_DEV_1, FrameSequence); | 975 | + // 回复操作成功 |
976 | + JZsdk_Uart_SendDeal_Reply_Sucesss(UART_DEV_1, FrameSequence); | ||
938 | } | 977 | } |
939 | else | 978 | else |
940 | { | 979 | { |
941 | - //回复操作失败 | ||
942 | - JZsdk_Uart_SendDeal_Reply_Failure(UART_DEV_1, FrameSequence); | 980 | + // 回复操作失败 |
981 | + JZsdk_Uart_SendDeal_Reply_Failure(UART_DEV_1, FrameSequence); | ||
943 | } | 982 | } |
944 | } | 983 | } |
@@ -62,6 +62,7 @@ T_JZsdkReturnCode JZsdk_Uart_audio_PlayLoop(int DeviceName, int mode); | @@ -62,6 +62,7 @@ T_JZsdkReturnCode JZsdk_Uart_audio_PlayLoop(int DeviceName, int mode); | ||
62 | 62 | ||
63 | T_JZsdkReturnCode JZsdk_Uart_Opus_PlayFixedFile(int DeviceName); | 63 | T_JZsdkReturnCode JZsdk_Uart_Opus_PlayFixedFile(int DeviceName); |
64 | 64 | ||
65 | +T_JZsdkReturnCode JZsdk_Uart_CheckStatus_SerialNumber(int UartPort, int FrameSequence); | ||
65 | 66 | ||
66 | 67 | ||
67 | 68 | ||
@@ -132,6 +133,10 @@ int JZsdk_Uart_GetSecondaryDeviceName(); | @@ -132,6 +133,10 @@ int JZsdk_Uart_GetSecondaryDeviceName(); | ||
132 | T_JZsdkReturnCode JZsdk_Uart_SetSecondaryDeviceName(int DeviceName); | 133 | T_JZsdkReturnCode JZsdk_Uart_SetSecondaryDeviceName(int DeviceName); |
133 | int JZsdk_Uart_QuerySecondaryDeviceName(int FrameSequence); | 134 | int JZsdk_Uart_QuerySecondaryDeviceName(int FrameSequence); |
134 | 135 | ||
136 | + | ||
137 | +T_JZsdkReturnCode JZsdk_Uart_OutPutPower_Control(int DeviceName, int FrameSequence, int Value); | ||
138 | +T_JZsdkReturnCode JZsdk_Uart_Checkstatus_OutPutPower(int DeviceName, int FrameSequence); | ||
139 | + | ||
135 | #ifdef __cplusplus | 140 | #ifdef __cplusplus |
136 | } | 141 | } |
137 | #endif | 142 | #endif |
@@ -39,7 +39,7 @@ int JZsdk_Uart_RecvDeal_Set_UART_4G_Receive_mode(int value); | @@ -39,7 +39,7 @@ int JZsdk_Uart_RecvDeal_Set_UART_4G_Receive_mode(int value); | ||
39 | **********/ | 39 | **********/ |
40 | static int Uart_4G_RecvDeal_AskForConnect(char *getbuf) | 40 | static int Uart_4G_RecvDeal_AskForConnect(char *getbuf) |
41 | { | 41 | { |
42 | - USER_LOG_INFO("串口设备4G,连接成功"); | 42 | + JZSDK_LOG_INFO("串口设备4g,连接成功"); |
43 | //获取帧的序列号 | 43 | //获取帧的序列号 |
44 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 44 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
45 | 45 | ||
@@ -50,7 +50,7 @@ static int Uart_4G_RecvDeal_AskForConnect(char *getbuf) | @@ -50,7 +50,7 @@ static int Uart_4G_RecvDeal_AskForConnect(char *getbuf) | ||
50 | JZsdk_Uart_SendDeal_Send_Connect(UART_4G, Device_name); | 50 | JZsdk_Uart_SendDeal_Send_Connect(UART_4G, Device_name); |
51 | 51 | ||
52 | //1、将串口程序设置为连接模式 | 52 | //1、将串口程序设置为连接模式 |
53 | - //JZsdk_Uart_SetMainWorkMode(JZ_FLAGCODE_ON); | 53 | + //JZsdk_Uart_SetMainWorkMode(JZ_FLAGCODE_ON);s |
54 | } | 54 | } |
55 | 55 | ||
56 | /******************************************************************************************************************************* | 56 | /******************************************************************************************************************************* |
@@ -67,7 +67,7 @@ static int Uart_4G_RecvDeal_AskForConnect(char *getbuf) | @@ -67,7 +67,7 @@ static int Uart_4G_RecvDeal_AskForConnect(char *getbuf) | ||
67 | **********/ | 67 | **********/ |
68 | static int Uart_4G_RecvDeal_RealTimeMP2_start(char *getbuf) | 68 | static int Uart_4G_RecvDeal_RealTimeMP2_start(char *getbuf) |
69 | { | 69 | { |
70 | - USER_LOG_INFO("开启MP2实时喊话功能\n"); | 70 | + JZSDK_LOG_INFO("开启MP2实时喊话功能\n"); |
71 | T_JZsdkReturnCode ret; | 71 | T_JZsdkReturnCode ret; |
72 | 72 | ||
73 | //获取帧的序列号 | 73 | //获取帧的序列号 |
@@ -111,7 +111,7 @@ static int Uart_4G_RecvDeal_RealTimeMP2_start(char *getbuf) | @@ -111,7 +111,7 @@ static int Uart_4G_RecvDeal_RealTimeMP2_start(char *getbuf) | ||
111 | **********/ | 111 | **********/ |
112 | static int Uart_4G_RecvDeal_RealTimeMP2_transmission(char *getdata, int len) | 112 | static int Uart_4G_RecvDeal_RealTimeMP2_transmission(char *getdata, int len) |
113 | { | 113 | { |
114 | - USER_LOG_INFO("MP2实时喊话传输中\n"); | 114 | + JZSDK_LOG_INFO("MP2实时喊话传输中\n"); |
115 | T_JZsdkReturnCode ret; | 115 | T_JZsdkReturnCode ret; |
116 | 116 | ||
117 | //传输数据接口 | 117 | //传输数据接口 |
@@ -126,7 +126,7 @@ static int Uart_4G_RecvDeal_RealTimeMP2_transmission(char *getdata, int len) | @@ -126,7 +126,7 @@ static int Uart_4G_RecvDeal_RealTimeMP2_transmission(char *getdata, int len) | ||
126 | **********/ | 126 | **********/ |
127 | static int Uart_4G_RecvDeal_RealTimeMP2_stop(char *getbuf) | 127 | static int Uart_4G_RecvDeal_RealTimeMP2_stop(char *getbuf) |
128 | { | 128 | { |
129 | - USER_LOG_INFO("关闭MP2实时喊话功能\n"); | 129 | + JZSDK_LOG_INFO("关闭MP2实时喊话功能\n"); |
130 | T_JZsdkReturnCode ret; | 130 | T_JZsdkReturnCode ret; |
131 | 131 | ||
132 | //获取帧的序列号 | 132 | //获取帧的序列号 |
@@ -157,7 +157,7 @@ static int Uart_4G_RecvDeal_RealTimeMP2_stop(char *getbuf) | @@ -157,7 +157,7 @@ static int Uart_4G_RecvDeal_RealTimeMP2_stop(char *getbuf) | ||
157 | **********/ | 157 | **********/ |
158 | static int Uart_4G_RecvDeal_SaveAudioFileTrans_start(char *getbuf, int len) | 158 | static int Uart_4G_RecvDeal_SaveAudioFileTrans_start(char *getbuf, int len) |
159 | { | 159 | { |
160 | - USER_LOG_INFO("开始传输的音频文件保存\n"); | 160 | + JZSDK_LOG_INFO("开始传输的音频文件保存\n"); |
161 | //获取帧的序列号 | 161 | //获取帧的序列号 |
162 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 162 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
163 | 163 | ||
@@ -168,7 +168,7 @@ static int Uart_4G_RecvDeal_SaveAudioFileTrans_start(char *getbuf, int len) | @@ -168,7 +168,7 @@ static int Uart_4G_RecvDeal_SaveAudioFileTrans_start(char *getbuf, int len) | ||
168 | char FileName[1024]; | 168 | char FileName[1024]; |
169 | memset(FileName,0,1024); | 169 | memset(FileName,0,1024); |
170 | memcpy(FileName, &getbuf[9], FileNameLen); | 170 | memcpy(FileName, &getbuf[9], FileNameLen); |
171 | - USER_LOG_INFO("保存的文件名为%s",FileName); | 171 | + JZSDK_LOG_INFO("保存的文件名为%s",FileName); |
172 | 172 | ||
173 | T_JZsdkReturnCode ret = JZsdk_Uart_SaveAudioFileStart(FileName); | 173 | T_JZsdkReturnCode ret = JZsdk_Uart_SaveAudioFileStart(FileName); |
174 | if (ret != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | 174 | if (ret != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) |
@@ -192,7 +192,7 @@ static int Uart_4G_RecvDeal_SaveAudioFileTrans_start(char *getbuf, int len) | @@ -192,7 +192,7 @@ static int Uart_4G_RecvDeal_SaveAudioFileTrans_start(char *getbuf, int len) | ||
192 | **********/ | 192 | **********/ |
193 | static int Uart_4G_RecvDeal_SaveAudioFileTrans_transmission(char *getdata, int len) | 193 | static int Uart_4G_RecvDeal_SaveAudioFileTrans_transmission(char *getdata, int len) |
194 | { | 194 | { |
195 | - USER_LOG_INFO("传输音频文件中\n"); | 195 | + JZSDK_LOG_INFO("传输音频文件中\n"); |
196 | JZsdk_Uart_SaveAudioFileTrans(getdata, len); | 196 | JZsdk_Uart_SaveAudioFileTrans(getdata, len); |
197 | } | 197 | } |
198 | /********* | 198 | /********* |
@@ -203,7 +203,7 @@ static int Uart_4G_RecvDeal_SaveAudioFileTrans_transmission(char *getdata, int l | @@ -203,7 +203,7 @@ static int Uart_4G_RecvDeal_SaveAudioFileTrans_transmission(char *getdata, int l | ||
203 | **********/ | 203 | **********/ |
204 | static int Uart_4G_RecvDeal_SaveAudioFileTrans_stop(char *getbuf) | 204 | static int Uart_4G_RecvDeal_SaveAudioFileTrans_stop(char *getbuf) |
205 | { | 205 | { |
206 | - USER_LOG_INFO("开始传输的音频文件保存\n"); | 206 | + JZSDK_LOG_INFO("开始传输的音频文件保存\n"); |
207 | //获取帧的序列号 | 207 | //获取帧的序列号 |
208 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 208 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
209 | 209 | ||
@@ -223,7 +223,7 @@ static int Uart_4G_RecvDeal_SaveAudioFileTrans_stop(char *getbuf) | @@ -223,7 +223,7 @@ static int Uart_4G_RecvDeal_SaveAudioFileTrans_stop(char *getbuf) | ||
223 | static int Uart_4G_RecvDeal_audio_PlayFile(char *getbuf) | 223 | static int Uart_4G_RecvDeal_audio_PlayFile(char *getbuf) |
224 | { | 224 | { |
225 | T_JZsdkReturnCode ret; | 225 | T_JZsdkReturnCode ret; |
226 | - USER_LOG_INFO("播放指定音频\n"); | 226 | + JZSDK_LOG_INFO("播放指定音频\n"); |
227 | //获取帧的序列号 | 227 | //获取帧的序列号 |
228 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 228 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
229 | 229 | ||
@@ -238,7 +238,7 @@ static int Uart_4G_RecvDeal_audio_PlayFile(char *getbuf) | @@ -238,7 +238,7 @@ static int Uart_4G_RecvDeal_audio_PlayFile(char *getbuf) | ||
238 | memset(music_name, 0, 256); | 238 | memset(music_name, 0, 256); |
239 | memcpy(music_name, &getbuf[9], datasize); | 239 | memcpy(music_name, &getbuf[9], datasize); |
240 | 240 | ||
241 | - USER_LOG_INFO("播放指定音频:%s\n",music_name); | 241 | + JZSDK_LOG_INFO("播放指定音频:%s\n",music_name); |
242 | 242 | ||
243 | ret = JZsdk_Uart_PlayMusic(UART_4G, music_name, datasize); | 243 | ret = JZsdk_Uart_PlayMusic(UART_4G, music_name, datasize); |
244 | if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | 244 | if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) |
@@ -260,7 +260,7 @@ static int Uart_4G_RecvDeal_audio_PlayFile(char *getbuf) | @@ -260,7 +260,7 @@ static int Uart_4G_RecvDeal_audio_PlayFile(char *getbuf) | ||
260 | **********/ | 260 | **********/ |
261 | static int Uart_4G_RecvDeal_audio_PlayContinue(char *getbuf) | 261 | static int Uart_4G_RecvDeal_audio_PlayContinue(char *getbuf) |
262 | { | 262 | { |
263 | - USER_LOG_INFO("音频继续播放\n"); | 263 | + JZSDK_LOG_INFO("音频继续播放\n"); |
264 | //获取帧的序列号 | 264 | //获取帧的序列号 |
265 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 265 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
266 | 266 | ||
@@ -277,7 +277,7 @@ static int Uart_4G_RecvDeal_audio_PlayContinue(char *getbuf) | @@ -277,7 +277,7 @@ static int Uart_4G_RecvDeal_audio_PlayContinue(char *getbuf) | ||
277 | **********/ | 277 | **********/ |
278 | static int Uart_4G_RecvDeal_audio_PlayPause(char *getbuf) | 278 | static int Uart_4G_RecvDeal_audio_PlayPause(char *getbuf) |
279 | { | 279 | { |
280 | - USER_LOG_INFO("音频暂停播放\n"); | 280 | + JZSDK_LOG_INFO("音频暂停播放\n"); |
281 | //获取帧的序列号 | 281 | //获取帧的序列号 |
282 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 282 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
283 | 283 | ||
@@ -294,7 +294,7 @@ static int Uart_4G_RecvDeal_audio_PlayPause(char *getbuf) | @@ -294,7 +294,7 @@ static int Uart_4G_RecvDeal_audio_PlayPause(char *getbuf) | ||
294 | **********/ | 294 | **********/ |
295 | static int Uart_4G_RecvDeal_audio_PlayStop(char *getbuf) | 295 | static int Uart_4G_RecvDeal_audio_PlayStop(char *getbuf) |
296 | { | 296 | { |
297 | - USER_LOG_INFO("音频停止播放\n"); | 297 | + JZSDK_LOG_INFO("音频停止播放\n"); |
298 | //获取帧的序列号 | 298 | //获取帧的序列号 |
299 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 299 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
300 | 300 | ||
@@ -312,7 +312,7 @@ static int Uart_4G_RecvDeal_audio_PlayStop(char *getbuf) | @@ -312,7 +312,7 @@ static int Uart_4G_RecvDeal_audio_PlayStop(char *getbuf) | ||
312 | **********/ | 312 | **********/ |
313 | static int Uart_4G_RecvDeal_audio_LastSong(char *getbuf) | 313 | static int Uart_4G_RecvDeal_audio_LastSong(char *getbuf) |
314 | { | 314 | { |
315 | - USER_LOG_INFO("音频上一曲\n"); | 315 | + JZSDK_LOG_INFO("音频上一曲\n"); |
316 | //获取帧的序列号 | 316 | //获取帧的序列号 |
317 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 317 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
318 | 318 | ||
@@ -330,7 +330,7 @@ static int Uart_4G_RecvDeal_audio_LastSong(char *getbuf) | @@ -330,7 +330,7 @@ static int Uart_4G_RecvDeal_audio_LastSong(char *getbuf) | ||
330 | **********/ | 330 | **********/ |
331 | static int Uart_4G_RecvDeal_audio_NextSong(char *getbuf) | 331 | static int Uart_4G_RecvDeal_audio_NextSong(char *getbuf) |
332 | { | 332 | { |
333 | - USER_LOG_INFO("音频下一曲\n"); | 333 | + JZSDK_LOG_INFO("音频下一曲\n"); |
334 | //获取帧的序列号 | 334 | //获取帧的序列号 |
335 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 335 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
336 | 336 | ||
@@ -348,7 +348,7 @@ static int Uart_4G_RecvDeal_audio_NextSong(char *getbuf) | @@ -348,7 +348,7 @@ static int Uart_4G_RecvDeal_audio_NextSong(char *getbuf) | ||
348 | **********/ | 348 | **********/ |
349 | static int Uart_4G_RecvDeal_audio_GetMusicList(char *getbuf) | 349 | static int Uart_4G_RecvDeal_audio_GetMusicList(char *getbuf) |
350 | { | 350 | { |
351 | - USER_LOG_INFO("获取音乐列表\n"); | 351 | + JZSDK_LOG_INFO("获取音乐列表\n"); |
352 | //获取帧的序列号 | 352 | //获取帧的序列号 |
353 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 353 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
354 | 354 | ||
@@ -390,7 +390,7 @@ static int Uart_4G_RecvDeal_audio_GetMusicList(char *getbuf) | @@ -390,7 +390,7 @@ static int Uart_4G_RecvDeal_audio_GetMusicList(char *getbuf) | ||
390 | **********/ | 390 | **********/ |
391 | static int Uart_4G_RecvDeal_Amplifier_stop(char *getbuf) | 391 | static int Uart_4G_RecvDeal_Amplifier_stop(char *getbuf) |
392 | { | 392 | { |
393 | - USER_LOG_INFO("强制关闭功放\n"); | 393 | + JZSDK_LOG_INFO("强制关闭功放\n"); |
394 | //获取帧的序列号 | 394 | //获取帧的序列号 |
395 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 395 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
396 | 396 | ||
@@ -408,7 +408,7 @@ static int Uart_4G_RecvDeal_Amplifier_stop(char *getbuf) | @@ -408,7 +408,7 @@ static int Uart_4G_RecvDeal_Amplifier_stop(char *getbuf) | ||
408 | **********/ | 408 | **********/ |
409 | static int Uart_4G_RecvDeal_Amplifier_open(char *getbuf) | 409 | static int Uart_4G_RecvDeal_Amplifier_open(char *getbuf) |
410 | { | 410 | { |
411 | - USER_LOG_INFO("强制关闭功放\n"); | 411 | + JZSDK_LOG_INFO("强制关闭功放\n"); |
412 | //获取帧的序列号 | 412 | //获取帧的序列号 |
413 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 413 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
414 | 414 | ||
@@ -437,7 +437,7 @@ static int Uart_4G_RecvDeal_Amplifier_auto() | @@ -437,7 +437,7 @@ static int Uart_4G_RecvDeal_Amplifier_auto() | ||
437 | **********/ | 437 | **********/ |
438 | static int Uart_4G_RecvDeal_SetVolume(char *getbuf) | 438 | static int Uart_4G_RecvDeal_SetVolume(char *getbuf) |
439 | { | 439 | { |
440 | - USER_LOG_INFO("调节音量\n"); | 440 | + JZSDK_LOG_INFO("调节音量\n"); |
441 | //获取帧的序列号 | 441 | //获取帧的序列号 |
442 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 442 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
443 | 443 | ||
@@ -456,7 +456,7 @@ static int Uart_4G_RecvDeal_SetVolume(char *getbuf) | @@ -456,7 +456,7 @@ static int Uart_4G_RecvDeal_SetVolume(char *getbuf) | ||
456 | **********/ | 456 | **********/ |
457 | static int Uart_4G_RecvDeal_CheckStatus_volume(char *getbuf) | 457 | static int Uart_4G_RecvDeal_CheckStatus_volume(char *getbuf) |
458 | { | 458 | { |
459 | - USER_LOG_INFO("查询音量\n"); | 459 | + JZSDK_LOG_INFO("查询音量\n"); |
460 | //获取帧的序列号 | 460 | //获取帧的序列号 |
461 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 461 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
462 | 462 | ||
@@ -479,7 +479,7 @@ static int Uart_4G_RecvDeal_CheckStatus_volume(char *getbuf) | @@ -479,7 +479,7 @@ static int Uart_4G_RecvDeal_CheckStatus_volume(char *getbuf) | ||
479 | static int Uart_4G_RecvDeal_CheckStatus_play(char *getbuf) | 479 | static int Uart_4G_RecvDeal_CheckStatus_play(char *getbuf) |
480 | { | 480 | { |
481 | //查询播放状态 | 481 | //查询播放状态 |
482 | - USER_LOG_INFO("查询播放状态\n"); | 482 | + JZSDK_LOG_INFO("查询播放状态\n"); |
483 | //获取帧的序列号 | 483 | //获取帧的序列号 |
484 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 484 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
485 | 485 | ||
@@ -504,7 +504,7 @@ static int Uart_4G_RecvDeal_CheckStatus_play(char *getbuf) | @@ -504,7 +504,7 @@ static int Uart_4G_RecvDeal_CheckStatus_play(char *getbuf) | ||
504 | static int Uart_4G_RecvDeal_CheckStatus_gimbal(char *getbuf) | 504 | static int Uart_4G_RecvDeal_CheckStatus_gimbal(char *getbuf) |
505 | { | 505 | { |
506 | //查询云台角度 | 506 | //查询云台角度 |
507 | - USER_LOG_INFO("查询云台角度\n"); | 507 | + JZSDK_LOG_INFO("查询云台角度\n"); |
508 | //获取帧的序列号 | 508 | //获取帧的序列号 |
509 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 509 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
510 | 510 | ||
@@ -514,9 +514,6 @@ static int Uart_4G_RecvDeal_CheckStatus_gimbal(char *getbuf) | @@ -514,9 +514,6 @@ static int Uart_4G_RecvDeal_CheckStatus_gimbal(char *getbuf) | ||
514 | 514 | ||
515 | JZsdk_Uart_CheckStatus_gimbal(&PitchAngle, &YawAngle); | 515 | JZsdk_Uart_CheckStatus_gimbal(&PitchAngle, &YawAngle); |
516 | 516 | ||
517 | - //回复操作成功 | ||
518 | - //JZsdk_Uart_SendDeal_Reply_Sucesss(UART_4G, FrameSequence); | ||
519 | - | ||
520 | //2、发送本地云台值 | 517 | //2、发送本地云台值 |
521 | JZsdk_Uart_SendDeal_Reply_GimbalPitchAngle(UART_4G, PitchAngle); | 518 | JZsdk_Uart_SendDeal_Reply_GimbalPitchAngle(UART_4G, PitchAngle); |
522 | } | 519 | } |
@@ -543,7 +540,7 @@ static int Uart_4G_RecvDeal_CheckStatus_GimbalFineTuning(char *getbuf) | @@ -543,7 +540,7 @@ static int Uart_4G_RecvDeal_CheckStatus_GimbalFineTuning(char *getbuf) | ||
543 | static int Uart_4G_RecvDeal_CheckStatus_PLayFileName(char *getbuf) | 540 | static int Uart_4G_RecvDeal_CheckStatus_PLayFileName(char *getbuf) |
544 | { | 541 | { |
545 | //查询播放文件名 | 542 | //查询播放文件名 |
546 | - USER_LOG_INFO("查询播放文件名\n"); | 543 | + JZSDK_LOG_INFO("查询播放文件名\n"); |
547 | //获取帧的序列号 | 544 | //获取帧的序列号 |
548 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 545 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
549 | 546 | ||
@@ -552,7 +549,7 @@ static int Uart_4G_RecvDeal_CheckStatus_PLayFileName(char *getbuf) | @@ -552,7 +549,7 @@ static int Uart_4G_RecvDeal_CheckStatus_PLayFileName(char *getbuf) | ||
552 | int MusicName_Len; | 549 | int MusicName_Len; |
553 | JZsdk_Uart_CheckStatus_PlayFileName(MusicName, &MusicName_Len); | 550 | JZsdk_Uart_CheckStatus_PlayFileName(MusicName, &MusicName_Len); |
554 | 551 | ||
555 | - USER_LOG_INFO("当前播放的是%s %d\n",MusicName, MusicName_Len); | 552 | + JZSDK_LOG_INFO("当前播放的是%s %d\n",MusicName, MusicName_Len); |
556 | 553 | ||
557 | //回复操作成功 | 554 | //回复操作成功 |
558 | //JZsdk_Uart_SendDeal_Reply_Sucesss(UART_4G, FrameSequence); | 555 | //JZsdk_Uart_SendDeal_Reply_Sucesss(UART_4G, FrameSequence); |
@@ -569,7 +566,7 @@ static int Uart_4G_RecvDeal_CheckStatus_PLayFileName(char *getbuf) | @@ -569,7 +566,7 @@ static int Uart_4G_RecvDeal_CheckStatus_PLayFileName(char *getbuf) | ||
569 | static int Uart_4G_RecvDeal_CheckStatus_SoftwareVersion(char *getbuf) | 566 | static int Uart_4G_RecvDeal_CheckStatus_SoftwareVersion(char *getbuf) |
570 | { | 567 | { |
571 | //查询软件版本号 | 568 | //查询软件版本号 |
572 | - USER_LOG_INFO("查询软件版本号\n"); | 569 | + JZSDK_LOG_INFO("查询软件版本号\n"); |
573 | //获取帧的序列号 | 570 | //获取帧的序列号 |
574 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 571 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
575 | 572 | ||
@@ -580,7 +577,7 @@ static int Uart_4G_RecvDeal_CheckStatus_SoftwareVersion(char *getbuf) | @@ -580,7 +577,7 @@ static int Uart_4G_RecvDeal_CheckStatus_SoftwareVersion(char *getbuf) | ||
580 | 577 | ||
581 | //1、获取版本号 | 578 | //1、获取版本号 |
582 | JZsdk_Uart_CheckStatus_SoftwareVersion(&majorVersion, &minorVersion, &modifyVersion, &debugVersion); | 579 | JZsdk_Uart_CheckStatus_SoftwareVersion(&majorVersion, &minorVersion, &modifyVersion, &debugVersion); |
583 | - USER_LOG_INFO("当前的软件版本号为:%2x, %2x, %2x, %2x",majorVersion, minorVersion, modifyVersion, debugVersion); | 580 | + JZSDK_LOG_INFO("当前的软件版本号为:%2x, %2x, %2x, %2x",majorVersion, minorVersion, modifyVersion, debugVersion); |
584 | 581 | ||
585 | //回复操作成功 | 582 | //回复操作成功 |
586 | //JZsdk_Uart_SendDeal_Reply_Sucesss(UART_4G, FrameSequence); | 583 | //JZsdk_Uart_SendDeal_Reply_Sucesss(UART_4G, FrameSequence); |
@@ -597,7 +594,7 @@ static int Uart_4G_RecvDeal_CheckStatus_SoftwareVersion(char *getbuf) | @@ -597,7 +594,7 @@ static int Uart_4G_RecvDeal_CheckStatus_SoftwareVersion(char *getbuf) | ||
597 | static int Uart_4G_RecvDeal_CheckStatus_LoopPlay(char *getbuf) | 594 | static int Uart_4G_RecvDeal_CheckStatus_LoopPlay(char *getbuf) |
598 | { | 595 | { |
599 | //查询是否打开循环 | 596 | //查询是否打开循环 |
600 | - USER_LOG_INFO("查询是否打开循环\n"); | 597 | + JZSDK_LOG_INFO("查询是否打开循环\n"); |
601 | //获取帧的序列号 | 598 | //获取帧的序列号 |
602 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 599 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
603 | 600 | ||
@@ -605,7 +602,7 @@ static int Uart_4G_RecvDeal_CheckStatus_LoopPlay(char *getbuf) | @@ -605,7 +602,7 @@ static int Uart_4G_RecvDeal_CheckStatus_LoopPlay(char *getbuf) | ||
605 | int LoopStatus = JZsdk_Uart_CheckStatus_LoopPlay(); | 602 | int LoopStatus = JZsdk_Uart_CheckStatus_LoopPlay(); |
606 | if (LoopStatus < 0) | 603 | if (LoopStatus < 0) |
607 | { | 604 | { |
608 | - USER_LOG_INFO("循环状态获取失败"); | 605 | + JZSDK_LOG_INFO("循环状态获取失败"); |
609 | return -1; | 606 | return -1; |
610 | } | 607 | } |
611 | 608 | ||
@@ -624,7 +621,7 @@ static int Uart_4G_RecvDeal_CheckStatus_LoopPlay(char *getbuf) | @@ -624,7 +621,7 @@ static int Uart_4G_RecvDeal_CheckStatus_LoopPlay(char *getbuf) | ||
624 | static int Uart_4G_RecvDeal_CheckStatus_TTS_tone(char *getbuf) | 621 | static int Uart_4G_RecvDeal_CheckStatus_TTS_tone(char *getbuf) |
625 | { | 622 | { |
626 | //查询音色 | 623 | //查询音色 |
627 | - USER_LOG_INFO("查询音色\n"); | 624 | + JZSDK_LOG_INFO("查询音色\n"); |
628 | //获取帧的序列号 | 625 | //获取帧的序列号 |
629 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 626 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
630 | 627 | ||
@@ -632,7 +629,7 @@ static int Uart_4G_RecvDeal_CheckStatus_TTS_tone(char *getbuf) | @@ -632,7 +629,7 @@ static int Uart_4G_RecvDeal_CheckStatus_TTS_tone(char *getbuf) | ||
632 | int TTS_tone = JZsdk_Uart_CheckStatus_TTS_tone(); | 629 | int TTS_tone = JZsdk_Uart_CheckStatus_TTS_tone(); |
633 | if (TTS_tone < 0) | 630 | if (TTS_tone < 0) |
634 | { | 631 | { |
635 | - USER_LOG_INFO("音色获取失败"); | 632 | + JZSDK_LOG_INFO("音色获取失败"); |
636 | return -1; | 633 | return -1; |
637 | } | 634 | } |
638 | 635 | ||
@@ -652,7 +649,7 @@ static int Uart_4G_RecvDeal_CheckStatus_TTS_tone(char *getbuf) | @@ -652,7 +649,7 @@ static int Uart_4G_RecvDeal_CheckStatus_TTS_tone(char *getbuf) | ||
652 | static int Uart_4G_RecvDeal_CheckStatus_TTS_speed(char *getbuf) | 649 | static int Uart_4G_RecvDeal_CheckStatus_TTS_speed(char *getbuf) |
653 | { | 650 | { |
654 | //查询语速 | 651 | //查询语速 |
655 | - USER_LOG_INFO("查询语速\n"); | 652 | + JZSDK_LOG_INFO("查询语速\n"); |
656 | //获取帧的序列号 | 653 | //获取帧的序列号 |
657 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 654 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
658 | 655 | ||
@@ -660,7 +657,7 @@ static int Uart_4G_RecvDeal_CheckStatus_TTS_speed(char *getbuf) | @@ -660,7 +657,7 @@ static int Uart_4G_RecvDeal_CheckStatus_TTS_speed(char *getbuf) | ||
660 | int TTS_speed = JZsdk_Uart_CheckStatus_TTS_speed(); | 657 | int TTS_speed = JZsdk_Uart_CheckStatus_TTS_speed(); |
661 | if (TTS_speed < 0) | 658 | if (TTS_speed < 0) |
662 | { | 659 | { |
663 | - USER_LOG_INFO("语速获取失败"); | 660 | + JZSDK_LOG_INFO("语速获取失败"); |
664 | return -1; | 661 | return -1; |
665 | } | 662 | } |
666 | 663 | ||
@@ -681,7 +678,7 @@ static int Uart_4G_RecvDeal_CheckStatus_TTS_speed(char *getbuf) | @@ -681,7 +678,7 @@ static int Uart_4G_RecvDeal_CheckStatus_TTS_speed(char *getbuf) | ||
681 | **********/ | 678 | **********/ |
682 | static int Uart_4G_RecvDeal_PlayLoop(char *getbuf) | 679 | static int Uart_4G_RecvDeal_PlayLoop(char *getbuf) |
683 | { | 680 | { |
684 | - USER_LOG_INFO("开启关闭循环\n"); | 681 | + JZSDK_LOG_INFO("开启关闭循环\n"); |
685 | //获取帧的序列号 | 682 | //获取帧的序列号 |
686 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 683 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
687 | 684 | ||
@@ -711,7 +708,7 @@ static int Uart_4G_RecvDeal_PlayLoop(char *getbuf) | @@ -711,7 +708,7 @@ static int Uart_4G_RecvDeal_PlayLoop(char *getbuf) | ||
711 | **********/ | 708 | **********/ |
712 | static int Uart_4G_RecvDeal_Delete_Audio(char *getbuf) | 709 | static int Uart_4G_RecvDeal_Delete_Audio(char *getbuf) |
713 | { | 710 | { |
714 | - USER_LOG_INFO("删除音频操作\n"); | 711 | + JZSDK_LOG_INFO("删除音频操作\n"); |
715 | //获取帧的序列号 | 712 | //获取帧的序列号 |
716 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 713 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
717 | 714 | ||
@@ -744,7 +741,7 @@ static int Uart_4G_RecvDeal_Delete_Audio(char *getbuf) | @@ -744,7 +741,7 @@ static int Uart_4G_RecvDeal_Delete_Audio(char *getbuf) | ||
744 | **********/ | 741 | **********/ |
745 | static int Uart_4G_RecvDeal_Delete_VoiceRecord(char *getbuf) | 742 | static int Uart_4G_RecvDeal_Delete_VoiceRecord(char *getbuf) |
746 | { | 743 | { |
747 | - USER_LOG_INFO("删除录音操作\n"); | 744 | + JZSDK_LOG_INFO("删除录音操作\n"); |
748 | //获取帧的序列号 | 745 | //获取帧的序列号 |
749 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 746 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
750 | 747 | ||
@@ -786,7 +783,7 @@ static int Uart_4G_RecvDeal_Delete_VideoRecord() | @@ -786,7 +783,7 @@ static int Uart_4G_RecvDeal_Delete_VideoRecord() | ||
786 | **********/ | 783 | **********/ |
787 | static int Uart_4G_RecvDeal_TTS_SetTone(char *getbuf) | 784 | static int Uart_4G_RecvDeal_TTS_SetTone(char *getbuf) |
788 | { | 785 | { |
789 | - USER_LOG_INFO("tts设置音色\n"); | 786 | + JZSDK_LOG_INFO("tts设置音色\n"); |
790 | //获取帧的序列号 | 787 | //获取帧的序列号 |
791 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 788 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
792 | 789 | ||
@@ -814,16 +811,16 @@ static int Uart_4G_RecvDeal_TTS_SetTone(char *getbuf) | @@ -814,16 +811,16 @@ static int Uart_4G_RecvDeal_TTS_SetTone(char *getbuf) | ||
814 | **********/ | 811 | **********/ |
815 | static int Uart_4G_RecvDeal_TTS_SetSpeed(char *getbuf) | 812 | static int Uart_4G_RecvDeal_TTS_SetSpeed(char *getbuf) |
816 | { | 813 | { |
817 | - USER_LOG_INFO("设置语速\n"); | 814 | + JZSDK_LOG_INFO("设置语速\n"); |
818 | //获取帧的序列号 | 815 | //获取帧的序列号 |
819 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 816 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
820 | 817 | ||
821 | //1、从帧数据从获取语速 | 818 | //1、从帧数据从获取语速 |
822 | int speed = (int)getbuf[9]; | 819 | int speed = (int)getbuf[9]; |
823 | - USER_LOG_INFO("获取的语速为:%d",speed); | 820 | + JZSDK_LOG_INFO("获取的语速为:%d",speed); |
824 | if (speed > 100 || speed < 0) | 821 | if (speed > 100 || speed < 0) |
825 | { | 822 | { |
826 | - USER_LOG_INFO("语速超出范围\n"); | 823 | + JZSDK_LOG_INFO("语速超出范围\n"); |
827 | 824 | ||
828 | //回复操作失败 | 825 | //回复操作失败 |
829 | JZsdk_Uart_SendDeal_Reply_Failure(UART_4G, FrameSequence); | 826 | JZsdk_Uart_SendDeal_Reply_Failure(UART_4G, FrameSequence); |
@@ -854,12 +851,12 @@ static int Uart_4G_RecvDeal_TTS_SetSpeed(char *getbuf) | @@ -854,12 +851,12 @@ static int Uart_4G_RecvDeal_TTS_SetSpeed(char *getbuf) | ||
854 | // 0x5A 0x5A 0x77 0x00 0x0c 0x00 0x00 0x57 0x04 0x00 0x00 0x23 结束TTS发送 | 851 | // 0x5A 0x5A 0x77 0x00 0x0c 0x00 0x00 0x57 0x04 0x00 0x00 0x23 结束TTS发送 |
855 | static int Uart_4G_RecvDeal_TTS_Trans_start(char *getbuf) | 852 | static int Uart_4G_RecvDeal_TTS_Trans_start(char *getbuf) |
856 | { | 853 | { |
857 | - USER_LOG_INFO("tts开始传输"); | 854 | + JZSDK_LOG_INFO("tts开始传输"); |
858 | //获取帧的序列号 | 855 | //获取帧的序列号 |
859 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 856 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
860 | 857 | ||
861 | //1、重置缓冲区 | 858 | //1、重置缓冲区 |
862 | - memset(TTS_Recv_buffer, '\0', 1009); | 859 | + memset(TTS_Recv_buffer, 0, 1009); |
863 | 860 | ||
864 | //2、重置缓冲区长度 | 861 | //2、重置缓冲区长度 |
865 | TTS_Recv_buffer_length = 0; | 862 | TTS_Recv_buffer_length = 0; |
@@ -878,7 +875,7 @@ static int Uart_4G_RecvDeal_TTS_Trans_start(char *getbuf) | @@ -878,7 +875,7 @@ static int Uart_4G_RecvDeal_TTS_Trans_start(char *getbuf) | ||
878 | **********/ | 875 | **********/ |
879 | static int Uart_4G_RecvDeal_TTS_Trans_transmission(char *getdata, int len) | 876 | static int Uart_4G_RecvDeal_TTS_Trans_transmission(char *getdata, int len) |
880 | { | 877 | { |
881 | - USER_LOG_INFO("tts传输中"); | 878 | + JZSDK_LOG_INFO("tts传输中"); |
882 | 879 | ||
883 | if (TTS_Recv_buffer_length+len < 1000) | 880 | if (TTS_Recv_buffer_length+len < 1000) |
884 | { | 881 | { |
@@ -890,9 +887,10 @@ static int Uart_4G_RecvDeal_TTS_Trans_transmission(char *getdata, int len) | @@ -890,9 +887,10 @@ static int Uart_4G_RecvDeal_TTS_Trans_transmission(char *getdata, int len) | ||
890 | } | 887 | } |
891 | else | 888 | else |
892 | { | 889 | { |
893 | - USER_LOG_ERROR("TTS字数超出1000字"); | 890 | + JZSDK_LOG_ERROR("TTS字数超出1000字节"); |
894 | } | 891 | } |
895 | } | 892 | } |
893 | + | ||
896 | /********* | 894 | /********* |
897 | * | 895 | * |
898 | * tts传输结束 | 896 | * tts传输结束 |
@@ -901,12 +899,13 @@ static int Uart_4G_RecvDeal_TTS_Trans_transmission(char *getdata, int len) | @@ -901,12 +899,13 @@ static int Uart_4G_RecvDeal_TTS_Trans_transmission(char *getdata, int len) | ||
901 | **********/ | 899 | **********/ |
902 | static int Uart_4G_RecvDeal_TTS_Trans_stop(char *getbuf) | 900 | static int Uart_4G_RecvDeal_TTS_Trans_stop(char *getbuf) |
903 | { | 901 | { |
904 | - USER_LOG_INFO("tts传输结束"); | 902 | + JZSDK_LOG_INFO("tts传输结束"); |
905 | //获取帧的序列号 | 903 | //获取帧的序列号 |
906 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 904 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
907 | 905 | ||
906 | + | ||
908 | //1、打印一次TTS文本 | 907 | //1、打印一次TTS文本 |
909 | - USER_LOG_INFO("TTS播放%s",TTS_Recv_buffer); | 908 | + JZSDK_LOG_INFO("TTS播放%s",TTS_Recv_buffer); |
910 | 909 | ||
911 | //2、播放TTS | 910 | //2、播放TTS |
912 | JZsdk_Uart_TTS_Play(UART_4G, TTS_Recv_buffer, TTS_Recv_buffer_length); | 911 | JZsdk_Uart_TTS_Play(UART_4G, TTS_Recv_buffer, TTS_Recv_buffer_length); |
@@ -924,7 +923,7 @@ static int Uart_4G_RecvDeal_TTS_Trans_stop(char *getbuf) | @@ -924,7 +923,7 @@ static int Uart_4G_RecvDeal_TTS_Trans_stop(char *getbuf) | ||
924 | **********/ | 923 | **********/ |
925 | static int Uart_4G_RecvDeal_OpusTrans_start(char *getbuf) | 924 | static int Uart_4G_RecvDeal_OpusTrans_start(char *getbuf) |
926 | { | 925 | { |
927 | - USER_LOG_INFO("打开opus传输\n"); | 926 | + JZSDK_LOG_INFO("打开opus传输\n"); |
928 | //获取帧的序列号 | 927 | //获取帧的序列号 |
929 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 928 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
930 | 929 | ||
@@ -941,7 +940,7 @@ static int Uart_4G_RecvDeal_OpusTrans_start(char *getbuf) | @@ -941,7 +940,7 @@ static int Uart_4G_RecvDeal_OpusTrans_start(char *getbuf) | ||
941 | //3、修改接收模式为传输opus | 940 | //3、修改接收模式为传输opus |
942 | JZsdk_Uart_RecvDeal_Set_UART_4G_Receive_mode(JZ_INSCODE_5AFRAME_OPUS_TRANS_TRANSMISSION); | 941 | JZsdk_Uart_RecvDeal_Set_UART_4G_Receive_mode(JZ_INSCODE_5AFRAME_OPUS_TRANS_TRANSMISSION); |
943 | 942 | ||
944 | - USER_LOG_INFO("已完成打开opus传输处理\n"); | 943 | + JZSDK_LOG_INFO("已完成打开opus传输处理\n"); |
945 | 944 | ||
946 | //回复操作成功 | 945 | //回复操作成功 |
947 | JZsdk_Uart_SendDeal_Reply_Sucesss(UART_4G, FrameSequence); | 946 | JZsdk_Uart_SendDeal_Reply_Sucesss(UART_4G, FrameSequence); |
@@ -956,7 +955,7 @@ static int Uart_4G_RecvDeal_OpusTrans_transmission(char *SaveData, int size) | @@ -956,7 +955,7 @@ static int Uart_4G_RecvDeal_OpusTrans_transmission(char *SaveData, int size) | ||
956 | { | 955 | { |
957 | JZsdk_Uart_SaveOpusTrans(SaveData,size); | 956 | JZsdk_Uart_SaveOpusTrans(SaveData,size); |
958 | 957 | ||
959 | - USER_LOG_INFO("已完成opus传输保存处理\n"); | 958 | + JZSDK_LOG_INFO("已完成opus传输保存处理\n"); |
960 | } | 959 | } |
961 | /********* | 960 | /********* |
962 | * | 961 | * |
@@ -966,13 +965,13 @@ static int Uart_4G_RecvDeal_OpusTrans_transmission(char *SaveData, int size) | @@ -966,13 +965,13 @@ static int Uart_4G_RecvDeal_OpusTrans_transmission(char *SaveData, int size) | ||
966 | **********/ | 965 | **********/ |
967 | static int Uart_4G_RecvDeal_OpusTrans_stop(char *getbuf) | 966 | static int Uart_4G_RecvDeal_OpusTrans_stop(char *getbuf) |
968 | { | 967 | { |
969 | - USER_LOG_INFO("结束opus传输\n"); | 968 | + JZSDK_LOG_INFO("结束opus传输\n"); |
970 | //获取帧的序列号 | 969 | //获取帧的序列号 |
971 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 970 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
972 | 971 | ||
973 | JZsdk_Uart_SaveOpusStop(); | 972 | JZsdk_Uart_SaveOpusStop(); |
974 | 973 | ||
975 | - USER_LOG_INFO("结束opus传输处理\n"); | 974 | + JZSDK_LOG_INFO("结束opus传输处理\n"); |
976 | 975 | ||
977 | //回复操作成功 | 976 | //回复操作成功 |
978 | JZsdk_Uart_SendDeal_Reply_Sucesss(UART_4G, FrameSequence); | 977 | JZsdk_Uart_SendDeal_Reply_Sucesss(UART_4G, FrameSequence); |
@@ -985,7 +984,7 @@ static int Uart_4G_RecvDeal_OpusTrans_stop(char *getbuf) | @@ -985,7 +984,7 @@ static int Uart_4G_RecvDeal_OpusTrans_stop(char *getbuf) | ||
985 | **********/ | 984 | **********/ |
986 | static int Uart_4G_RecvDeal_OpusPlay(char *getbuf) | 985 | static int Uart_4G_RecvDeal_OpusPlay(char *getbuf) |
987 | { | 986 | { |
988 | - USER_LOG_INFO("opus播放\n"); | 987 | + JZSDK_LOG_INFO("opus播放\n"); |
989 | //获取帧的序列号 | 988 | //获取帧的序列号 |
990 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 989 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
991 | 990 | ||
@@ -1005,7 +1004,7 @@ static int Uart_4G_RecvDeal_OpusPlay(char *getbuf) | @@ -1005,7 +1004,7 @@ static int Uart_4G_RecvDeal_OpusPlay(char *getbuf) | ||
1005 | **********/ | 1004 | **********/ |
1006 | static int Uart_4G_RecvDeal_Opus_RealTimeVoice_start(char *getbuf) | 1005 | static int Uart_4G_RecvDeal_Opus_RealTimeVoice_start(char *getbuf) |
1007 | { | 1006 | { |
1008 | - USER_LOG_INFO("开启opus实时喊话功能\n"); | 1007 | + JZSDK_LOG_INFO("开启opus实时喊话功能\n"); |
1009 | //获取帧的序列号 | 1008 | //获取帧的序列号 |
1010 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1009 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1011 | 1010 | ||
@@ -1040,7 +1039,7 @@ static int Uart_4G_RecvDeal_Opus_RealTimeVoice_start(char *getbuf) | @@ -1040,7 +1039,7 @@ static int Uart_4G_RecvDeal_Opus_RealTimeVoice_start(char *getbuf) | ||
1040 | **********/ | 1039 | **********/ |
1041 | static int Uart_4G_RecvDeal_Opus_RealTimeVoice_transmission(char *getdata, int len) | 1040 | static int Uart_4G_RecvDeal_Opus_RealTimeVoice_transmission(char *getdata, int len) |
1042 | { | 1041 | { |
1043 | - USER_LOG_INFO("opus语音传输中\n"); | 1042 | + JZSDK_LOG_INFO("opus语音传输中\n"); |
1044 | JZsdk_Uart_RealTimeVoiceTrans(getdata, len); | 1043 | JZsdk_Uart_RealTimeVoiceTrans(getdata, len); |
1045 | 1044 | ||
1046 | } | 1045 | } |
@@ -1052,7 +1051,7 @@ static int Uart_4G_RecvDeal_Opus_RealTimeVoice_transmission(char *getdata, int l | @@ -1052,7 +1051,7 @@ static int Uart_4G_RecvDeal_Opus_RealTimeVoice_transmission(char *getdata, int l | ||
1052 | **********/ | 1051 | **********/ |
1053 | static int Uart_4G_RecvDeal_Opus_RealTimeVoice_stop(char *getbuf) | 1052 | static int Uart_4G_RecvDeal_Opus_RealTimeVoice_stop(char *getbuf) |
1054 | { | 1053 | { |
1055 | - USER_LOG_INFO("关闭opus实时喊话功能\n"); | 1054 | + JZSDK_LOG_INFO("关闭opus实时喊话功能\n"); |
1056 | //获取帧的序列号 | 1055 | //获取帧的序列号 |
1057 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1056 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1058 | 1057 | ||
@@ -1082,7 +1081,7 @@ static int Uart_4G_RecvDeal_Opus_RealTimeVoice_stop(char *getbuf) | @@ -1082,7 +1081,7 @@ static int Uart_4G_RecvDeal_Opus_RealTimeVoice_stop(char *getbuf) | ||
1082 | **********/ | 1081 | **********/ |
1083 | static int Uart_4G_RecvDeal_Gimbal_PitchControl(char *getbuf) | 1082 | static int Uart_4G_RecvDeal_Gimbal_PitchControl(char *getbuf) |
1084 | { | 1083 | { |
1085 | - USER_LOG_INFO("云台俯仰控制\n"); | 1084 | + JZSDK_LOG_INFO("云台俯仰控制\n"); |
1086 | //获取帧的序列号 | 1085 | //获取帧的序列号 |
1087 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1086 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1088 | 1087 | ||
@@ -1103,13 +1102,13 @@ static int Uart_4G_RecvDeal_Gimbal_PitchControl(char *getbuf) | @@ -1103,13 +1102,13 @@ static int Uart_4G_RecvDeal_Gimbal_PitchControl(char *getbuf) | ||
1103 | } | 1102 | } |
1104 | else | 1103 | else |
1105 | { | 1104 | { |
1106 | - USER_LOG_INFO("云台输入角度符号错误,无法正常控制"); | 1105 | + JZSDK_LOG_INFO("云台输入角度符号错误,无法正常控制"); |
1107 | //回复操作失败 | 1106 | //回复操作失败 |
1108 | JZsdk_Uart_SendDeal_Reply_Failure(UART_4G, FrameSequence); | 1107 | JZsdk_Uart_SendDeal_Reply_Failure(UART_4G, FrameSequence); |
1109 | return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; | 1108 | return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; |
1110 | } | 1109 | } |
1111 | 1110 | ||
1112 | - USER_LOG_INFO("处理得到的角度是%d",Gimbal_angle); | 1111 | + JZSDK_LOG_INFO("处理得到的角度是%d",Gimbal_angle); |
1113 | 1112 | ||
1114 | T_JZsdkReturnCode ret = JZsdk_Uart_Gimbal_PitchControl(UART_4G, Gimbal_angle); | 1113 | T_JZsdkReturnCode ret = JZsdk_Uart_Gimbal_PitchControl(UART_4G, Gimbal_angle); |
1115 | if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | 1114 | if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) |
@@ -1132,7 +1131,7 @@ static int Uart_4G_RecvDeal_Gimbal_PitchControl(char *getbuf) | @@ -1132,7 +1131,7 @@ static int Uart_4G_RecvDeal_Gimbal_PitchControl(char *getbuf) | ||
1132 | **********/ | 1131 | **********/ |
1133 | static int Uart_4G_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | 1132 | static int Uart_4G_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) |
1134 | { | 1133 | { |
1135 | - USER_LOG_INFO("云台俯仰微调角度\n"); | 1134 | + JZSDK_LOG_INFO("云台俯仰微调角度\n"); |
1136 | //获取帧的序列号 | 1135 | //获取帧的序列号 |
1137 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1136 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1138 | 1137 | ||
@@ -1140,7 +1139,7 @@ static int Uart_4G_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | @@ -1140,7 +1139,7 @@ static int Uart_4G_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | ||
1140 | int Gimbal_signal = getbuf[9]; | 1139 | int Gimbal_signal = getbuf[9]; |
1141 | 1140 | ||
1142 | //2、通过云台控制帧 获取云台角度绝对值 | 1141 | //2、通过云台控制帧 获取云台角度绝对值 |
1143 | - int Gimbal_angle = ((int)getbuf[10]) ; | 1142 | + int Gimbal_angle = (((int)getbuf[10]) << 8 ) + getbuf[11]; |
1144 | 1143 | ||
1145 | //3、拼接得到云台值 | 1144 | //3、拼接得到云台值 |
1146 | if (Gimbal_signal == 0x00) | 1145 | if (Gimbal_signal == 0x00) |
@@ -1153,13 +1152,13 @@ static int Uart_4G_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | @@ -1153,13 +1152,13 @@ static int Uart_4G_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | ||
1153 | } | 1152 | } |
1154 | else | 1153 | else |
1155 | { | 1154 | { |
1156 | - USER_LOG_INFO("云台俯仰微调角度符号错误,无法正常控制"); | 1155 | + JZSDK_LOG_INFO("云台俯仰微调角度符号错误,无法正常控制"); |
1157 | //回复操作失败 | 1156 | //回复操作失败 |
1158 | JZsdk_Uart_SendDeal_Reply_Failure(UART_4G, FrameSequence); | 1157 | JZsdk_Uart_SendDeal_Reply_Failure(UART_4G, FrameSequence); |
1159 | return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; | 1158 | return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; |
1160 | } | 1159 | } |
1161 | 1160 | ||
1162 | - USER_LOG_INFO("处理得到云台俯仰微调角度是%d",Gimbal_angle); | 1161 | + JZSDK_LOG_INFO("处理得到云台俯仰微调角度是%d",Gimbal_angle); |
1163 | 1162 | ||
1164 | JZsdk_Uart_Gimbal_PitchFineTuningControl(UART_4G, FrameSequence ,Gimbal_angle); | 1163 | JZsdk_Uart_Gimbal_PitchFineTuningControl(UART_4G, FrameSequence ,Gimbal_angle); |
1165 | 1164 | ||
@@ -1180,7 +1179,7 @@ static int Uart_4G_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | @@ -1180,7 +1179,7 @@ static int Uart_4G_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | ||
1180 | **********/ | 1179 | **********/ |
1181 | static int Uart_4G_RecvDeal_SearchLight_SetFrequency(char *getbuf) | 1180 | static int Uart_4G_RecvDeal_SearchLight_SetFrequency(char *getbuf) |
1182 | { | 1181 | { |
1183 | - USER_LOG_INFO("设置爆闪频率\n"); | 1182 | + JZSDK_LOG_INFO("设置爆闪频率\n"); |
1184 | //获取帧的序列号 | 1183 | //获取帧的序列号 |
1185 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1184 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1186 | 1185 | ||
@@ -1207,7 +1206,7 @@ static int Uart_4G_RecvDeal_SearchLight_SetFrequency(char *getbuf) | @@ -1207,7 +1206,7 @@ static int Uart_4G_RecvDeal_SearchLight_SetFrequency(char *getbuf) | ||
1207 | **********/ | 1206 | **********/ |
1208 | static int Uart_4G_RecvDeal_SearchLight_Control(char *getbuf) | 1207 | static int Uart_4G_RecvDeal_SearchLight_Control(char *getbuf) |
1209 | { | 1208 | { |
1210 | - USER_LOG_INFO("设置灯光控制\n"); | 1209 | + JZSDK_LOG_INFO("设置灯光控制\n"); |
1211 | //获取帧的序列号 | 1210 | //获取帧的序列号 |
1212 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1211 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1213 | 1212 | ||
@@ -1234,7 +1233,7 @@ static int Uart_4G_RecvDeal_SearchLight_Control(char *getbuf) | @@ -1234,7 +1233,7 @@ static int Uart_4G_RecvDeal_SearchLight_Control(char *getbuf) | ||
1234 | **********/ | 1233 | **********/ |
1235 | static int Uart_4G_RecvDeal_SearchLight_Lumen(char *getbuf) | 1234 | static int Uart_4G_RecvDeal_SearchLight_Lumen(char *getbuf) |
1236 | { | 1235 | { |
1237 | - USER_LOG_INFO("设置灯光亮度\n"); | 1236 | + JZSDK_LOG_INFO("设置灯光亮度\n"); |
1238 | //获取帧的序列号 | 1237 | //获取帧的序列号 |
1239 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1238 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1240 | 1239 | ||
@@ -1262,7 +1261,7 @@ static int Uart_4G_RecvDeal_SearchLight_Lumen(char *getbuf) | @@ -1262,7 +1261,7 @@ static int Uart_4G_RecvDeal_SearchLight_Lumen(char *getbuf) | ||
1262 | **********/ | 1261 | **********/ |
1263 | static int Uart_4G_RecvDeal_CheckStatus_SearchLightLightAttribute(char *getbuf) | 1262 | static int Uart_4G_RecvDeal_CheckStatus_SearchLightLightAttribute(char *getbuf) |
1264 | { | 1263 | { |
1265 | - USER_LOG_INFO("灯光属性查询\n"); | 1264 | + JZSDK_LOG_INFO("灯光属性查询\n"); |
1266 | //1、获取帧的序列号 | 1265 | //1、获取帧的序列号 |
1267 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1266 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1268 | 1267 | ||
@@ -1278,7 +1277,7 @@ static int Uart_4G_RecvDeal_CheckStatus_SearchLightLightAttribute(char *getbuf) | @@ -1278,7 +1277,7 @@ static int Uart_4G_RecvDeal_CheckStatus_SearchLightLightAttribute(char *getbuf) | ||
1278 | **********/ | 1277 | **********/ |
1279 | static int Uart_4G_RecvDeal_CheckStatus_SearchLightTemperture(char *getbuf) | 1278 | static int Uart_4G_RecvDeal_CheckStatus_SearchLightTemperture(char *getbuf) |
1280 | { | 1279 | { |
1281 | - USER_LOG_INFO("探照灯温度查询\n"); | 1280 | + JZSDK_LOG_INFO("探照灯温度查询\n"); |
1282 | //1、获取帧的序列号 | 1281 | //1、获取帧的序列号 |
1283 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1282 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1284 | 1283 | ||
@@ -1293,7 +1292,7 @@ static int Uart_4G_RecvDeal_CheckStatus_SearchLightTemperture(char *getbuf) | @@ -1293,7 +1292,7 @@ static int Uart_4G_RecvDeal_CheckStatus_SearchLightTemperture(char *getbuf) | ||
1293 | **********/ | 1292 | **********/ |
1294 | static int Uart_4G_RecvDeal_SearchLight_SubscriptionControl(char *getbuf) | 1293 | static int Uart_4G_RecvDeal_SearchLight_SubscriptionControl(char *getbuf) |
1295 | { | 1294 | { |
1296 | - USER_LOG_INFO("消息订阅控制\n"); | 1295 | + JZSDK_LOG_INFO("消息订阅控制\n"); |
1297 | //获取帧的序列号 | 1296 | //获取帧的序列号 |
1298 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1297 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1299 | 1298 | ||
@@ -1313,6 +1312,55 @@ static int Uart_4G_RecvDeal_SearchLight_SubscriptionControl(char *getbuf) | @@ -1313,6 +1312,55 @@ static int Uart_4G_RecvDeal_SearchLight_SubscriptionControl(char *getbuf) | ||
1313 | } | 1312 | } |
1314 | } | 1313 | } |
1315 | 1314 | ||
1315 | +/********* | ||
1316 | + * | ||
1317 | + * 查询产品序列号 | ||
1318 | + * | ||
1319 | +**********/ | ||
1320 | +static int Uart_4G_RecvDeal_CheckStatus_SerialNumber(char *getbuf) | ||
1321 | +{ | ||
1322 | + JZSDK_LOG_INFO("消息订阅控制\n"); | ||
1323 | + //获取帧的序列号 | ||
1324 | + int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | ||
1325 | + | ||
1326 | + JZsdk_Uart_CheckStatus_SerialNumber(UART_4G, FrameSequence); | ||
1327 | + | ||
1328 | +} | ||
1329 | + | ||
1330 | +/********* | ||
1331 | + * | ||
1332 | + * 对外供电开关 | ||
1333 | + * | ||
1334 | +**********/ | ||
1335 | +static int Uart_4G_RecvDeal_OutPutPower_Control(char *getbuf) | ||
1336 | +{ | ||
1337 | + printf("对外电源控制\n"); | ||
1338 | + //获取帧的序列号 | ||
1339 | + int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | ||
1340 | + | ||
1341 | + //获取控制值 | ||
1342 | + int Value = getbuf[9]; | ||
1343 | + | ||
1344 | + //控制 | ||
1345 | + JZsdk_Uart_OutPutPower_Control(UART_4G, FrameSequence, Value); | ||
1346 | +} | ||
1347 | + | ||
1348 | +/********* | ||
1349 | + * | ||
1350 | + * 对外电源查询 | ||
1351 | + * | ||
1352 | +**********/ | ||
1353 | +static int Uart_4G_RecvDeal_Checkstatus_OutPutPower(char *getbuf) | ||
1354 | +{ | ||
1355 | + printf("对外电源查询\n"); | ||
1356 | + | ||
1357 | + //获取帧的序列号 | ||
1358 | + int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | ||
1359 | + | ||
1360 | + //获取本地数值 | ||
1361 | + JZsdk_Uart_Checkstatus_OutPutPower(UART_4G, FrameSequence); | ||
1362 | +} | ||
1363 | + | ||
1316 | /******************************************************************************************************************************* | 1364 | /******************************************************************************************************************************* |
1317 | * | 1365 | * |
1318 | * 警灯部分 | 1366 | * 警灯部分 |
@@ -1325,7 +1373,7 @@ static int Uart_4G_RecvDeal_SearchLight_SubscriptionControl(char *getbuf) | @@ -1325,7 +1373,7 @@ static int Uart_4G_RecvDeal_SearchLight_SubscriptionControl(char *getbuf) | ||
1325 | **********/ | 1373 | **********/ |
1326 | static int Uart_4G_RecvDeal_WarningLight_ModeControl(char *getbuf) | 1374 | static int Uart_4G_RecvDeal_WarningLight_ModeControl(char *getbuf) |
1327 | { | 1375 | { |
1328 | - USER_LOG_INFO("警灯模式控制\n"); | 1376 | + JZSDK_LOG_INFO("警灯模式控制\n"); |
1329 | //获取帧的序列号 | 1377 | //获取帧的序列号 |
1330 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1378 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1331 | 1379 | ||
@@ -1353,7 +1401,7 @@ static int Uart_4G_RecvDeal_WarningLight_ModeControl(char *getbuf) | @@ -1353,7 +1401,7 @@ static int Uart_4G_RecvDeal_WarningLight_ModeControl(char *getbuf) | ||
1353 | **********/ | 1401 | **********/ |
1354 | static int Uart_4G_RecvDeal_WarningLight_SetColor(char *getbuf) | 1402 | static int Uart_4G_RecvDeal_WarningLight_SetColor(char *getbuf) |
1355 | { | 1403 | { |
1356 | - USER_LOG_INFO("警灯颜色选择\n"); | 1404 | + JZSDK_LOG_INFO("警灯颜色选择\n"); |
1357 | //获取帧的序列号 | 1405 | //获取帧的序列号 |
1358 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1406 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1359 | 1407 | ||
@@ -1381,7 +1429,7 @@ static int Uart_4G_RecvDeal_WarningLight_SetColor(char *getbuf) | @@ -1381,7 +1429,7 @@ static int Uart_4G_RecvDeal_WarningLight_SetColor(char *getbuf) | ||
1381 | **********/ | 1429 | **********/ |
1382 | static int Uart_4G_RecvDeal_CheckStatus_WarningLightStatus(char *getbuf) | 1430 | static int Uart_4G_RecvDeal_CheckStatus_WarningLightStatus(char *getbuf) |
1383 | { | 1431 | { |
1384 | - USER_LOG_INFO("警灯状态查询\n"); | 1432 | + JZSDK_LOG_INFO("警灯状态查询\n"); |
1385 | //1、获取帧的序列号 | 1433 | //1、获取帧的序列号 |
1386 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1434 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1387 | 1435 | ||
@@ -1397,7 +1445,7 @@ static int Uart_4G_RecvDeal_CheckStatus_WarningLightStatus(char *getbuf) | @@ -1397,7 +1445,7 @@ static int Uart_4G_RecvDeal_CheckStatus_WarningLightStatus(char *getbuf) | ||
1397 | **********/ | 1445 | **********/ |
1398 | static int Uart_4G_RecvDeal_CheckStatus_WarningLightColor(char *getbuf) | 1446 | static int Uart_4G_RecvDeal_CheckStatus_WarningLightColor(char *getbuf) |
1399 | { | 1447 | { |
1400 | - USER_LOG_INFO("警灯颜色查询\n"); | 1448 | + JZSDK_LOG_INFO("警灯颜色查询\n"); |
1401 | //1、获取帧的序列号 | 1449 | //1、获取帧的序列号 |
1402 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1450 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1403 | 1451 | ||
@@ -1436,7 +1484,7 @@ static int Uart_4G_RecvDeal_CheckStatus_WarningLightColor(char *getbuf) | @@ -1436,7 +1484,7 @@ static int Uart_4G_RecvDeal_CheckStatus_WarningLightColor(char *getbuf) | ||
1436 | **********/ | 1484 | **********/ |
1437 | static int Uart_4G_RecvDeal_ObtainSearchLight_Frequency(char *getbuf) | 1485 | static int Uart_4G_RecvDeal_ObtainSearchLight_Frequency(char *getbuf) |
1438 | { | 1486 | { |
1439 | - USER_LOG_INFO("收到灯光频率\n"); | 1487 | + JZSDK_LOG_INFO("收到灯光频率\n"); |
1440 | //获取帧的序列号 | 1488 | //获取帧的序列号 |
1441 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1489 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1442 | 1490 | ||
@@ -1454,7 +1502,7 @@ static int Uart_4G_RecvDeal_ObtainSearchLight_Frequency(char *getbuf) | @@ -1454,7 +1502,7 @@ static int Uart_4G_RecvDeal_ObtainSearchLight_Frequency(char *getbuf) | ||
1454 | **********/ | 1502 | **********/ |
1455 | static int Uart_4G_RecvDeal_ObtainSearchLight_Mode(char *getbuf) | 1503 | static int Uart_4G_RecvDeal_ObtainSearchLight_Mode(char *getbuf) |
1456 | { | 1504 | { |
1457 | - USER_LOG_INFO("收到灯光模式\n"); | 1505 | + JZSDK_LOG_INFO("收到灯光模式\n"); |
1458 | //获取帧的序列号 | 1506 | //获取帧的序列号 |
1459 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1507 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1460 | 1508 | ||
@@ -1472,7 +1520,7 @@ static int Uart_4G_RecvDeal_ObtainSearchLight_Mode(char *getbuf) | @@ -1472,7 +1520,7 @@ static int Uart_4G_RecvDeal_ObtainSearchLight_Mode(char *getbuf) | ||
1472 | **********/ | 1520 | **********/ |
1473 | static int Uart_4G_RecvDeal_ObtainSearchLight_Lumen(char *getbuf) | 1521 | static int Uart_4G_RecvDeal_ObtainSearchLight_Lumen(char *getbuf) |
1474 | { | 1522 | { |
1475 | - USER_LOG_INFO("收到灯光亮度\n"); | 1523 | + JZSDK_LOG_INFO("收到灯光亮度\n"); |
1476 | //获取帧的序列号 | 1524 | //获取帧的序列号 |
1477 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1525 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1478 | 1526 | ||
@@ -1491,7 +1539,7 @@ static int Uart_4G_RecvDeal_ObtainSearchLight_Lumen(char *getbuf) | @@ -1491,7 +1539,7 @@ static int Uart_4G_RecvDeal_ObtainSearchLight_Lumen(char *getbuf) | ||
1491 | **********/ | 1539 | **********/ |
1492 | static int Uart_4G_RecvDeal_ObtainSearchLight_Temperature(char *getbuf) | 1540 | static int Uart_4G_RecvDeal_ObtainSearchLight_Temperature(char *getbuf) |
1493 | { | 1541 | { |
1494 | - USER_LOG_INFO("收到探照灯温度\n"); | 1542 | + JZSDK_LOG_INFO("收到探照灯温度\n"); |
1495 | //获取帧的序列号 | 1543 | //获取帧的序列号 |
1496 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1544 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1497 | 1545 | ||
@@ -1510,7 +1558,7 @@ static int Uart_4G_RecvDeal_ObtainSearchLight_Temperature(char *getbuf) | @@ -1510,7 +1558,7 @@ static int Uart_4G_RecvDeal_ObtainSearchLight_Temperature(char *getbuf) | ||
1510 | **********/ | 1558 | **********/ |
1511 | static int Uart_4G_RecvDeal_ObtainGimbal_Pitch(char *getbuf) | 1559 | static int Uart_4G_RecvDeal_ObtainGimbal_Pitch(char *getbuf) |
1512 | { | 1560 | { |
1513 | - USER_LOG_INFO("收到云台俯仰\n"); | 1561 | + JZSDK_LOG_INFO("收到云台俯仰\n"); |
1514 | //获取帧的序列号 | 1562 | //获取帧的序列号 |
1515 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1563 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1516 | 1564 | ||
@@ -1541,7 +1589,7 @@ static int Uart_4G_RecvDeal_ObtainGimbal_Pitch(char *getbuf) | @@ -1541,7 +1589,7 @@ static int Uart_4G_RecvDeal_ObtainGimbal_Pitch(char *getbuf) | ||
1541 | **********/ | 1589 | **********/ |
1542 | static int Uart_4G_RecvDeal_ObtainGimbal_Yaw(char *getbuf) | 1590 | static int Uart_4G_RecvDeal_ObtainGimbal_Yaw(char *getbuf) |
1543 | { | 1591 | { |
1544 | - USER_LOG_INFO("收到云台航向\n"); | 1592 | + JZSDK_LOG_INFO("收到云台航向\n"); |
1545 | //获取帧的序列号 | 1593 | //获取帧的序列号 |
1546 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1594 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1547 | 1595 | ||
@@ -1579,7 +1627,7 @@ static int Uart_4G_RecvDeal_ObtainGimbalPitchFineTuning(char *getbuf) | @@ -1579,7 +1627,7 @@ static int Uart_4G_RecvDeal_ObtainGimbalPitchFineTuning(char *getbuf) | ||
1579 | int signal = getbuf[9]; | 1627 | int signal = getbuf[9]; |
1580 | 1628 | ||
1581 | //2、获取云台角度绝对值 | 1629 | //2、获取云台角度绝对值 |
1582 | - int pitch = (int)getbuf[10] ; | 1630 | + int pitch = (((int)getbuf[10]) << 8 ) + getbuf[11]; |
1583 | 1631 | ||
1584 | //3、拼接得到云台值 | 1632 | //3、拼接得到云台值 |
1585 | if (signal == 0x00) | 1633 | if (signal == 0x00) |
@@ -1601,7 +1649,7 @@ static int Uart_4G_RecvDeal_ObtainGimbalPitchFineTuning(char *getbuf) | @@ -1601,7 +1649,7 @@ static int Uart_4G_RecvDeal_ObtainGimbalPitchFineTuning(char *getbuf) | ||
1601 | **********/ | 1649 | **********/ |
1602 | static int Uart_4G_RecvDeal_ObtainWaringlight_Status(char *getbuf) | 1650 | static int Uart_4G_RecvDeal_ObtainWaringlight_Status(char *getbuf) |
1603 | { | 1651 | { |
1604 | - USER_LOG_INFO("收到警灯状态\n"); | 1652 | + JZSDK_LOG_INFO("收到警灯状态\n"); |
1605 | //获取帧的序列号 | 1653 | //获取帧的序列号 |
1606 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1654 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1607 | 1655 | ||
@@ -1620,7 +1668,7 @@ static int Uart_4G_RecvDeal_ObtainWaringlight_Status(char *getbuf) | @@ -1620,7 +1668,7 @@ static int Uart_4G_RecvDeal_ObtainWaringlight_Status(char *getbuf) | ||
1620 | **********/ | 1668 | **********/ |
1621 | static int Uart_4G_RecvDeal_ObtainWaringlight_Color(char *getbuf) | 1669 | static int Uart_4G_RecvDeal_ObtainWaringlight_Color(char *getbuf) |
1622 | { | 1670 | { |
1623 | - USER_LOG_INFO("收到警灯颜色\n"); | 1671 | + JZSDK_LOG_INFO("收到警灯颜色\n"); |
1624 | //获取帧的序列号 | 1672 | //获取帧的序列号 |
1625 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1673 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1626 | 1674 | ||
@@ -1639,7 +1687,7 @@ static int Uart_4G_RecvDeal_ObtainWaringlight_Color(char *getbuf) | @@ -1639,7 +1687,7 @@ static int Uart_4G_RecvDeal_ObtainWaringlight_Color(char *getbuf) | ||
1639 | **********/ | 1687 | **********/ |
1640 | static int Uart_4G_RecvDeal_ObtainSerialNumber(char *getbuf) | 1688 | static int Uart_4G_RecvDeal_ObtainSerialNumber(char *getbuf) |
1641 | { | 1689 | { |
1642 | - USER_LOG_INFO("收到产品序列号\n"); | 1690 | + JZSDK_LOG_INFO("收到产品序列号\n"); |
1643 | //获取帧的序列号 | 1691 | //获取帧的序列号 |
1644 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1692 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1645 | 1693 | ||
@@ -1670,7 +1718,7 @@ static int Uart_4G_RecvDeal_ObtainSerialNumber(char *getbuf) | @@ -1670,7 +1718,7 @@ static int Uart_4G_RecvDeal_ObtainSerialNumber(char *getbuf) | ||
1670 | **********/ | 1718 | **********/ |
1671 | static int Uart_4G_RecvDeal_QuerySecondaryDeviceName(char *getbuf) | 1719 | static int Uart_4G_RecvDeal_QuerySecondaryDeviceName(char *getbuf) |
1672 | { | 1720 | { |
1673 | - USER_LOG_INFO("查询当前从设备名\n"); | 1721 | + JZSDK_LOG_INFO("查询当前从设备名\n"); |
1674 | 1722 | ||
1675 | //获取帧的序列号 | 1723 | //获取帧的序列号 |
1676 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1724 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
@@ -1699,7 +1747,7 @@ static int Uart_4G_RecvDeal_QuerySecondaryDeviceName(char *getbuf) | @@ -1699,7 +1747,7 @@ static int Uart_4G_RecvDeal_QuerySecondaryDeviceName(char *getbuf) | ||
1699 | **********/ | 1747 | **********/ |
1700 | static int Uart_4G_RecvDeal_SetGimbalRange(char *getbuf) | 1748 | static int Uart_4G_RecvDeal_SetGimbalRange(char *getbuf) |
1701 | { | 1749 | { |
1702 | - USER_LOG_INFO("设置云台最大值最小值\n"); | 1750 | + JZSDK_LOG_INFO("设置云台最大值最小值\n"); |
1703 | //获取帧的序列号 | 1751 | //获取帧的序列号 |
1704 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1752 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1705 | 1753 | ||
@@ -1726,7 +1774,7 @@ static int Uart_4G_RecvDeal_SetGimbalRange(char *getbuf) | @@ -1726,7 +1774,7 @@ static int Uart_4G_RecvDeal_SetGimbalRange(char *getbuf) | ||
1726 | **********/ | 1774 | **********/ |
1727 | static int Uart_4G_RecvDeal_GimbalLinkageControl(char *getbuf) | 1775 | static int Uart_4G_RecvDeal_GimbalLinkageControl(char *getbuf) |
1728 | { | 1776 | { |
1729 | - USER_LOG_INFO("设置云台联动\n"); | 1777 | + JZSDK_LOG_INFO("设置云台联动\n"); |
1730 | 1778 | ||
1731 | //获取帧的序列号 | 1779 | //获取帧的序列号 |
1732 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1780 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
@@ -1746,7 +1794,7 @@ static int Uart_4G_RecvDeal_GimbalLinkageControl(char *getbuf) | @@ -1746,7 +1794,7 @@ static int Uart_4G_RecvDeal_GimbalLinkageControl(char *getbuf) | ||
1746 | **********/ | 1794 | **********/ |
1747 | static int Uart_4G_RecvDeal_Checkstatus_GimbalLinkage(char *getbuf) | 1795 | static int Uart_4G_RecvDeal_Checkstatus_GimbalLinkage(char *getbuf) |
1748 | { | 1796 | { |
1749 | - USER_LOG_INFO("收到查询是否开启云台联动\n"); | 1797 | + JZSDK_LOG_INFO("收到查询是否开启云台联动\n"); |
1750 | 1798 | ||
1751 | //获取帧的序列号 | 1799 | //获取帧的序列号 |
1752 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1800 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
@@ -1780,7 +1828,7 @@ static int Uart_4G_RecvDeal_Checkstatus_GimbalLinkage(char *getbuf) | @@ -1780,7 +1828,7 @@ static int Uart_4G_RecvDeal_Checkstatus_GimbalLinkage(char *getbuf) | ||
1780 | **********/ | 1828 | **********/ |
1781 | static int Uart_4G_RecvDeal_ObtainSecondaryDeviceName(char *getbuf) | 1829 | static int Uart_4G_RecvDeal_ObtainSecondaryDeviceName(char *getbuf) |
1782 | { | 1830 | { |
1783 | - USER_LOG_INFO("收到从设备名\n"); | 1831 | + JZSDK_LOG_INFO("收到从设备名\n"); |
1784 | //获取帧的序列号 | 1832 | //获取帧的序列号 |
1785 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1833 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1786 | 1834 | ||
@@ -1812,7 +1860,7 @@ static int Uart_4G_RecvDeal_ObtainSecondaryDeviceName(char *getbuf) | @@ -1812,7 +1860,7 @@ static int Uart_4G_RecvDeal_ObtainSecondaryDeviceName(char *getbuf) | ||
1812 | **********/ | 1860 | **********/ |
1813 | static int Uart_4G_RecvDeal_ObtainGimbalLinkage(char *getbuf) | 1861 | static int Uart_4G_RecvDeal_ObtainGimbalLinkage(char *getbuf) |
1814 | { | 1862 | { |
1815 | - USER_LOG_INFO("收到云台联动值\n"); | 1863 | + JZSDK_LOG_INFO("收到云台联动值\n"); |
1816 | //获取帧的序列号 | 1864 | //获取帧的序列号 |
1817 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1865 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1818 | 1866 | ||
@@ -1847,7 +1895,7 @@ static int Uart_4G_RecvDeal_ObtainGimbalLinkage(char *getbuf) | @@ -1847,7 +1895,7 @@ static int Uart_4G_RecvDeal_ObtainGimbalLinkage(char *getbuf) | ||
1847 | **********/ | 1895 | **********/ |
1848 | static int Uart_4G_RecvDeal_FrameErrorReply(char *getbuf) | 1896 | static int Uart_4G_RecvDeal_FrameErrorReply(char *getbuf) |
1849 | { | 1897 | { |
1850 | - USER_LOG_ERROR("帧指令错误:帧错误或者是帧无对应操作\n"); | 1898 | + JZSDK_LOG_ERROR("帧指令错误:帧错误或者是帧无对应操作\n"); |
1851 | //无法正常获取帧的序列号 | 1899 | //无法正常获取帧的序列号 |
1852 | //回复操作失败 | 1900 | //回复操作失败 |
1853 | JZsdk_Uart_SendDeal_Reply_Failure(UART_4G, 0x00); | 1901 | JZsdk_Uart_SendDeal_Reply_Failure(UART_4G, 0x00); |
@@ -1862,7 +1910,7 @@ static int Uart_4G_RecvDeal_FrameErrorReply(char *getbuf) | @@ -1862,7 +1910,7 @@ static int Uart_4G_RecvDeal_FrameErrorReply(char *getbuf) | ||
1862 | **********/ | 1910 | **********/ |
1863 | static int Uart_4G_RecvDeal_OperationSuccessful(char *getbuf) | 1911 | static int Uart_4G_RecvDeal_OperationSuccessful(char *getbuf) |
1864 | { | 1912 | { |
1865 | - USER_LOG_INFO("接受到操作成功\n"); | 1913 | + JZSDK_LOG_INFO("接受到操作成功\n"); |
1866 | } | 1914 | } |
1867 | 1915 | ||
1868 | /********* | 1916 | /********* |
@@ -1873,7 +1921,7 @@ static int Uart_4G_RecvDeal_OperationSuccessful(char *getbuf) | @@ -1873,7 +1921,7 @@ static int Uart_4G_RecvDeal_OperationSuccessful(char *getbuf) | ||
1873 | **********/ | 1921 | **********/ |
1874 | static int Uart_4G_RecvDeal_OperationFailed(char *getbuf) | 1922 | static int Uart_4G_RecvDeal_OperationFailed(char *getbuf) |
1875 | { | 1923 | { |
1876 | - USER_LOG_INFO("接受到操作失败\n"); | 1924 | + JZSDK_LOG_INFO("接受到操作失败\n"); |
1877 | } | 1925 | } |
1878 | /******************************************************************************************************** | 1926 | /******************************************************************************************************** |
1879 | ********* ********| | 1927 | ********* ********| |
@@ -1890,7 +1938,7 @@ static int Uart_4G_RecvDeal_OperationFailed(char *getbuf) | @@ -1890,7 +1938,7 @@ static int Uart_4G_RecvDeal_OperationFailed(char *getbuf) | ||
1890 | *********************************************************************************************************/ | 1938 | *********************************************************************************************************/ |
1891 | int Uart_4G_RecvDeal_RecvDeal(int Receive_mode, unsigned char *getdata, int len) | 1939 | int Uart_4G_RecvDeal_RecvDeal(int Receive_mode, unsigned char *getdata, int len) |
1892 | { | 1940 | { |
1893 | - USER_LOG_INFO("串口设备4G,接受到的模式为:%x",Receive_mode); | 1941 | + JZSDK_LOG_INFO("串口设备4g,接受到的模式为:%x",Receive_mode); |
1894 | switch (Receive_mode) | 1942 | switch (Receive_mode) |
1895 | { | 1943 | { |
1896 | /******************************************************************************************************************************* | 1944 | /******************************************************************************************************************************* |
@@ -2198,9 +2246,20 @@ int Uart_4G_RecvDeal_RecvDeal(int Receive_mode, unsigned char *getdata, int len) | @@ -2198,9 +2246,20 @@ int Uart_4G_RecvDeal_RecvDeal(int Receive_mode, unsigned char *getdata, int len) | ||
2198 | 2246 | ||
2199 | //序列号查询 | 2247 | //序列号查询 |
2200 | case JZ_INSCODE_5AFRAME_CHECKSTATUS_SERIALNUMBER: | 2248 | case JZ_INSCODE_5AFRAME_CHECKSTATUS_SERIALNUMBER: |
2249 | + Uart_4G_RecvDeal_CheckStatus_SerialNumber(getdata); | ||
2250 | + break; | ||
2201 | 2251 | ||
2252 | + //向外供电开关 | ||
2253 | + case JZ_INSCODE_5AFRAME_OUTPUTPOWER_CONTROL: | ||
2254 | + Uart_4G_RecvDeal_OutPutPower_Control(getdata); | ||
2202 | break; | 2255 | break; |
2203 | 2256 | ||
2257 | + //查询向外供电情况 | ||
2258 | + case JZ_INSCODE_5AFRAME_CHECKSTATUS_OUTPUTPOWER: | ||
2259 | + Uart_4G_RecvDeal_Checkstatus_OutPutPower(getdata); | ||
2260 | + break; | ||
2261 | + | ||
2262 | + | ||
2204 | 2263 | ||
2205 | /******************************************************************************************************************************* | 2264 | /******************************************************************************************************************************* |
2206 | * | 2265 | * |
@@ -2589,7 +2648,7 @@ int JZsdk_Uart_RecvDeal_CharmDeal_Uart_4G(unsigned char *getbuf, int len) | @@ -2589,7 +2648,7 @@ int JZsdk_Uart_RecvDeal_CharmDeal_Uart_4G(unsigned char *getbuf, int len) | ||
2589 | * ****************/ | 2648 | * ****************/ |
2590 | int JZsdk_Uart_RecvDeal_Set_UART_4G_Receive_mode(int value) | 2649 | int JZsdk_Uart_RecvDeal_Set_UART_4G_Receive_mode(int value) |
2591 | { | 2650 | { |
2592 | - USER_LOG_INFO("串口设备4G,二次修改接收模式%x\n",value); | 2651 | + JZSDK_LOG_INFO("串口设备4g,二次修改接收模式%x\n",value); |
2593 | UART_4G_Receive_mode = value; | 2652 | UART_4G_Receive_mode = value; |
2594 | return 0; | 2653 | return 0; |
2595 | } | 2654 | } |
@@ -39,7 +39,7 @@ int JZsdk_Uart_RecvDeal_Set_UART_DEV1_Receive_mode(int value); | @@ -39,7 +39,7 @@ int JZsdk_Uart_RecvDeal_Set_UART_DEV1_Receive_mode(int value); | ||
39 | **********/ | 39 | **********/ |
40 | static int Uart_DEV1_RecvDeal_AskForConnect(char *getbuf) | 40 | static int Uart_DEV1_RecvDeal_AskForConnect(char *getbuf) |
41 | { | 41 | { |
42 | - USER_LOG_INFO("串口设备1号,连接成功"); | 42 | + JZSDK_LOG_INFO("串口设备1号,连接成功"); |
43 | //获取帧的序列号 | 43 | //获取帧的序列号 |
44 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 44 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
45 | 45 | ||
@@ -67,7 +67,7 @@ static int Uart_DEV1_RecvDeal_AskForConnect(char *getbuf) | @@ -67,7 +67,7 @@ static int Uart_DEV1_RecvDeal_AskForConnect(char *getbuf) | ||
67 | **********/ | 67 | **********/ |
68 | static int Uart_DEV1_RecvDeal_RealTimeMP2_start(char *getbuf) | 68 | static int Uart_DEV1_RecvDeal_RealTimeMP2_start(char *getbuf) |
69 | { | 69 | { |
70 | - USER_LOG_INFO("开启MP2实时喊话功能\n"); | 70 | + JZSDK_LOG_INFO("开启MP2实时喊话功能\n"); |
71 | T_JZsdkReturnCode ret; | 71 | T_JZsdkReturnCode ret; |
72 | 72 | ||
73 | //获取帧的序列号 | 73 | //获取帧的序列号 |
@@ -111,7 +111,7 @@ static int Uart_DEV1_RecvDeal_RealTimeMP2_start(char *getbuf) | @@ -111,7 +111,7 @@ static int Uart_DEV1_RecvDeal_RealTimeMP2_start(char *getbuf) | ||
111 | **********/ | 111 | **********/ |
112 | static int Uart_DEV1_RecvDeal_RealTimeMP2_transmission(char *getdata, int len) | 112 | static int Uart_DEV1_RecvDeal_RealTimeMP2_transmission(char *getdata, int len) |
113 | { | 113 | { |
114 | - USER_LOG_INFO("MP2实时喊话传输中\n"); | 114 | + JZSDK_LOG_INFO("MP2实时喊话传输中\n"); |
115 | T_JZsdkReturnCode ret; | 115 | T_JZsdkReturnCode ret; |
116 | 116 | ||
117 | //传输数据接口 | 117 | //传输数据接口 |
@@ -126,7 +126,7 @@ static int Uart_DEV1_RecvDeal_RealTimeMP2_transmission(char *getdata, int len) | @@ -126,7 +126,7 @@ static int Uart_DEV1_RecvDeal_RealTimeMP2_transmission(char *getdata, int len) | ||
126 | **********/ | 126 | **********/ |
127 | static int Uart_DEV1_RecvDeal_RealTimeMP2_stop(char *getbuf) | 127 | static int Uart_DEV1_RecvDeal_RealTimeMP2_stop(char *getbuf) |
128 | { | 128 | { |
129 | - USER_LOG_INFO("关闭MP2实时喊话功能\n"); | 129 | + JZSDK_LOG_INFO("关闭MP2实时喊话功能\n"); |
130 | T_JZsdkReturnCode ret; | 130 | T_JZsdkReturnCode ret; |
131 | 131 | ||
132 | //获取帧的序列号 | 132 | //获取帧的序列号 |
@@ -157,7 +157,7 @@ static int Uart_DEV1_RecvDeal_RealTimeMP2_stop(char *getbuf) | @@ -157,7 +157,7 @@ static int Uart_DEV1_RecvDeal_RealTimeMP2_stop(char *getbuf) | ||
157 | **********/ | 157 | **********/ |
158 | static int Uart_DEV1_RecvDeal_SaveAudioFileTrans_start(char *getbuf, int len) | 158 | static int Uart_DEV1_RecvDeal_SaveAudioFileTrans_start(char *getbuf, int len) |
159 | { | 159 | { |
160 | - USER_LOG_INFO("开始传输的音频文件保存\n"); | 160 | + JZSDK_LOG_INFO("开始传输的音频文件保存\n"); |
161 | //获取帧的序列号 | 161 | //获取帧的序列号 |
162 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 162 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
163 | 163 | ||
@@ -168,7 +168,7 @@ static int Uart_DEV1_RecvDeal_SaveAudioFileTrans_start(char *getbuf, int len) | @@ -168,7 +168,7 @@ static int Uart_DEV1_RecvDeal_SaveAudioFileTrans_start(char *getbuf, int len) | ||
168 | char FileName[1024]; | 168 | char FileName[1024]; |
169 | memset(FileName,0,1024); | 169 | memset(FileName,0,1024); |
170 | memcpy(FileName, &getbuf[9], FileNameLen); | 170 | memcpy(FileName, &getbuf[9], FileNameLen); |
171 | - USER_LOG_INFO("保存的文件名为%s",FileName); | 171 | + JZSDK_LOG_INFO("保存的文件名为%s",FileName); |
172 | 172 | ||
173 | T_JZsdkReturnCode ret = JZsdk_Uart_SaveAudioFileStart(FileName); | 173 | T_JZsdkReturnCode ret = JZsdk_Uart_SaveAudioFileStart(FileName); |
174 | if (ret != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | 174 | if (ret != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) |
@@ -192,7 +192,7 @@ static int Uart_DEV1_RecvDeal_SaveAudioFileTrans_start(char *getbuf, int len) | @@ -192,7 +192,7 @@ static int Uart_DEV1_RecvDeal_SaveAudioFileTrans_start(char *getbuf, int len) | ||
192 | **********/ | 192 | **********/ |
193 | static int Uart_DEV1_RecvDeal_SaveAudioFileTrans_transmission(char *getdata, int len) | 193 | static int Uart_DEV1_RecvDeal_SaveAudioFileTrans_transmission(char *getdata, int len) |
194 | { | 194 | { |
195 | - USER_LOG_INFO("传输音频文件中\n"); | 195 | + JZSDK_LOG_INFO("传输音频文件中\n"); |
196 | JZsdk_Uart_SaveAudioFileTrans(getdata, len); | 196 | JZsdk_Uart_SaveAudioFileTrans(getdata, len); |
197 | } | 197 | } |
198 | /********* | 198 | /********* |
@@ -203,7 +203,7 @@ static int Uart_DEV1_RecvDeal_SaveAudioFileTrans_transmission(char *getdata, int | @@ -203,7 +203,7 @@ static int Uart_DEV1_RecvDeal_SaveAudioFileTrans_transmission(char *getdata, int | ||
203 | **********/ | 203 | **********/ |
204 | static int Uart_DEV1_RecvDeal_SaveAudioFileTrans_stop(char *getbuf) | 204 | static int Uart_DEV1_RecvDeal_SaveAudioFileTrans_stop(char *getbuf) |
205 | { | 205 | { |
206 | - USER_LOG_INFO("开始传输的音频文件保存\n"); | 206 | + JZSDK_LOG_INFO("开始传输的音频文件保存\n"); |
207 | //获取帧的序列号 | 207 | //获取帧的序列号 |
208 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 208 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
209 | 209 | ||
@@ -223,7 +223,7 @@ static int Uart_DEV1_RecvDeal_SaveAudioFileTrans_stop(char *getbuf) | @@ -223,7 +223,7 @@ static int Uart_DEV1_RecvDeal_SaveAudioFileTrans_stop(char *getbuf) | ||
223 | static int Uart_DEV1_RecvDeal_audio_PlayFile(char *getbuf) | 223 | static int Uart_DEV1_RecvDeal_audio_PlayFile(char *getbuf) |
224 | { | 224 | { |
225 | T_JZsdkReturnCode ret; | 225 | T_JZsdkReturnCode ret; |
226 | - USER_LOG_INFO("播放指定音频\n"); | 226 | + JZSDK_LOG_INFO("播放指定音频\n"); |
227 | //获取帧的序列号 | 227 | //获取帧的序列号 |
228 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 228 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
229 | 229 | ||
@@ -238,7 +238,7 @@ static int Uart_DEV1_RecvDeal_audio_PlayFile(char *getbuf) | @@ -238,7 +238,7 @@ static int Uart_DEV1_RecvDeal_audio_PlayFile(char *getbuf) | ||
238 | memset(music_name, 0, 256); | 238 | memset(music_name, 0, 256); |
239 | memcpy(music_name, &getbuf[9], datasize); | 239 | memcpy(music_name, &getbuf[9], datasize); |
240 | 240 | ||
241 | - USER_LOG_INFO("播放指定音频:%s\n",music_name); | 241 | + JZSDK_LOG_INFO("播放指定音频:%s\n",music_name); |
242 | 242 | ||
243 | ret = JZsdk_Uart_PlayMusic(UART_DEV_1, music_name, datasize); | 243 | ret = JZsdk_Uart_PlayMusic(UART_DEV_1, music_name, datasize); |
244 | if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | 244 | if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) |
@@ -260,7 +260,7 @@ static int Uart_DEV1_RecvDeal_audio_PlayFile(char *getbuf) | @@ -260,7 +260,7 @@ static int Uart_DEV1_RecvDeal_audio_PlayFile(char *getbuf) | ||
260 | **********/ | 260 | **********/ |
261 | static int Uart_DEV1_RecvDeal_audio_PlayContinue(char *getbuf) | 261 | static int Uart_DEV1_RecvDeal_audio_PlayContinue(char *getbuf) |
262 | { | 262 | { |
263 | - USER_LOG_INFO("音频继续播放\n"); | 263 | + JZSDK_LOG_INFO("音频继续播放\n"); |
264 | //获取帧的序列号 | 264 | //获取帧的序列号 |
265 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 265 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
266 | 266 | ||
@@ -277,7 +277,7 @@ static int Uart_DEV1_RecvDeal_audio_PlayContinue(char *getbuf) | @@ -277,7 +277,7 @@ static int Uart_DEV1_RecvDeal_audio_PlayContinue(char *getbuf) | ||
277 | **********/ | 277 | **********/ |
278 | static int Uart_DEV1_RecvDeal_audio_PlayPause(char *getbuf) | 278 | static int Uart_DEV1_RecvDeal_audio_PlayPause(char *getbuf) |
279 | { | 279 | { |
280 | - USER_LOG_INFO("音频暂停播放\n"); | 280 | + JZSDK_LOG_INFO("音频暂停播放\n"); |
281 | //获取帧的序列号 | 281 | //获取帧的序列号 |
282 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 282 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
283 | 283 | ||
@@ -294,7 +294,7 @@ static int Uart_DEV1_RecvDeal_audio_PlayPause(char *getbuf) | @@ -294,7 +294,7 @@ static int Uart_DEV1_RecvDeal_audio_PlayPause(char *getbuf) | ||
294 | **********/ | 294 | **********/ |
295 | static int Uart_DEV1_RecvDeal_audio_PlayStop(char *getbuf) | 295 | static int Uart_DEV1_RecvDeal_audio_PlayStop(char *getbuf) |
296 | { | 296 | { |
297 | - USER_LOG_INFO("音频停止播放\n"); | 297 | + JZSDK_LOG_INFO("音频停止播放\n"); |
298 | //获取帧的序列号 | 298 | //获取帧的序列号 |
299 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 299 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
300 | 300 | ||
@@ -312,7 +312,7 @@ static int Uart_DEV1_RecvDeal_audio_PlayStop(char *getbuf) | @@ -312,7 +312,7 @@ static int Uart_DEV1_RecvDeal_audio_PlayStop(char *getbuf) | ||
312 | **********/ | 312 | **********/ |
313 | static int Uart_DEV1_RecvDeal_audio_LastSong(char *getbuf) | 313 | static int Uart_DEV1_RecvDeal_audio_LastSong(char *getbuf) |
314 | { | 314 | { |
315 | - USER_LOG_INFO("音频上一曲\n"); | 315 | + JZSDK_LOG_INFO("音频上一曲\n"); |
316 | //获取帧的序列号 | 316 | //获取帧的序列号 |
317 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 317 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
318 | 318 | ||
@@ -330,7 +330,7 @@ static int Uart_DEV1_RecvDeal_audio_LastSong(char *getbuf) | @@ -330,7 +330,7 @@ static int Uart_DEV1_RecvDeal_audio_LastSong(char *getbuf) | ||
330 | **********/ | 330 | **********/ |
331 | static int Uart_DEV1_RecvDeal_audio_NextSong(char *getbuf) | 331 | static int Uart_DEV1_RecvDeal_audio_NextSong(char *getbuf) |
332 | { | 332 | { |
333 | - USER_LOG_INFO("音频下一曲\n"); | 333 | + JZSDK_LOG_INFO("音频下一曲\n"); |
334 | //获取帧的序列号 | 334 | //获取帧的序列号 |
335 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 335 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
336 | 336 | ||
@@ -348,7 +348,7 @@ static int Uart_DEV1_RecvDeal_audio_NextSong(char *getbuf) | @@ -348,7 +348,7 @@ static int Uart_DEV1_RecvDeal_audio_NextSong(char *getbuf) | ||
348 | **********/ | 348 | **********/ |
349 | static int Uart_DEV1_RecvDeal_audio_GetMusicList(char *getbuf) | 349 | static int Uart_DEV1_RecvDeal_audio_GetMusicList(char *getbuf) |
350 | { | 350 | { |
351 | - USER_LOG_INFO("获取音乐列表\n"); | 351 | + JZSDK_LOG_INFO("获取音乐列表\n"); |
352 | //获取帧的序列号 | 352 | //获取帧的序列号 |
353 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 353 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
354 | 354 | ||
@@ -390,7 +390,7 @@ static int Uart_DEV1_RecvDeal_audio_GetMusicList(char *getbuf) | @@ -390,7 +390,7 @@ static int Uart_DEV1_RecvDeal_audio_GetMusicList(char *getbuf) | ||
390 | **********/ | 390 | **********/ |
391 | static int Uart_DEV1_RecvDeal_Amplifier_stop(char *getbuf) | 391 | static int Uart_DEV1_RecvDeal_Amplifier_stop(char *getbuf) |
392 | { | 392 | { |
393 | - USER_LOG_INFO("强制关闭功放\n"); | 393 | + JZSDK_LOG_INFO("强制关闭功放\n"); |
394 | //获取帧的序列号 | 394 | //获取帧的序列号 |
395 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 395 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
396 | 396 | ||
@@ -408,7 +408,7 @@ static int Uart_DEV1_RecvDeal_Amplifier_stop(char *getbuf) | @@ -408,7 +408,7 @@ static int Uart_DEV1_RecvDeal_Amplifier_stop(char *getbuf) | ||
408 | **********/ | 408 | **********/ |
409 | static int Uart_DEV1_RecvDeal_Amplifier_open(char *getbuf) | 409 | static int Uart_DEV1_RecvDeal_Amplifier_open(char *getbuf) |
410 | { | 410 | { |
411 | - USER_LOG_INFO("强制关闭功放\n"); | 411 | + JZSDK_LOG_INFO("强制关闭功放\n"); |
412 | //获取帧的序列号 | 412 | //获取帧的序列号 |
413 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 413 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
414 | 414 | ||
@@ -437,7 +437,7 @@ static int Uart_DEV1_RecvDeal_Amplifier_auto() | @@ -437,7 +437,7 @@ static int Uart_DEV1_RecvDeal_Amplifier_auto() | ||
437 | **********/ | 437 | **********/ |
438 | static int Uart_DEV1_RecvDeal_SetVolume(char *getbuf) | 438 | static int Uart_DEV1_RecvDeal_SetVolume(char *getbuf) |
439 | { | 439 | { |
440 | - USER_LOG_INFO("调节音量\n"); | 440 | + JZSDK_LOG_INFO("调节音量\n"); |
441 | //获取帧的序列号 | 441 | //获取帧的序列号 |
442 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 442 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
443 | 443 | ||
@@ -456,7 +456,7 @@ static int Uart_DEV1_RecvDeal_SetVolume(char *getbuf) | @@ -456,7 +456,7 @@ static int Uart_DEV1_RecvDeal_SetVolume(char *getbuf) | ||
456 | **********/ | 456 | **********/ |
457 | static int Uart_DEV1_RecvDeal_CheckStatus_volume(char *getbuf) | 457 | static int Uart_DEV1_RecvDeal_CheckStatus_volume(char *getbuf) |
458 | { | 458 | { |
459 | - USER_LOG_INFO("查询音量\n"); | 459 | + JZSDK_LOG_INFO("查询音量\n"); |
460 | //获取帧的序列号 | 460 | //获取帧的序列号 |
461 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 461 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
462 | 462 | ||
@@ -479,7 +479,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_volume(char *getbuf) | @@ -479,7 +479,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_volume(char *getbuf) | ||
479 | static int Uart_DEV1_RecvDeal_CheckStatus_play(char *getbuf) | 479 | static int Uart_DEV1_RecvDeal_CheckStatus_play(char *getbuf) |
480 | { | 480 | { |
481 | //查询播放状态 | 481 | //查询播放状态 |
482 | - USER_LOG_INFO("查询播放状态\n"); | 482 | + JZSDK_LOG_INFO("查询播放状态\n"); |
483 | //获取帧的序列号 | 483 | //获取帧的序列号 |
484 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 484 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
485 | 485 | ||
@@ -504,7 +504,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_play(char *getbuf) | @@ -504,7 +504,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_play(char *getbuf) | ||
504 | static int Uart_DEV1_RecvDeal_CheckStatus_gimbal(char *getbuf) | 504 | static int Uart_DEV1_RecvDeal_CheckStatus_gimbal(char *getbuf) |
505 | { | 505 | { |
506 | //查询云台角度 | 506 | //查询云台角度 |
507 | - USER_LOG_INFO("查询云台角度\n"); | 507 | + JZSDK_LOG_INFO("查询云台角度\n"); |
508 | //获取帧的序列号 | 508 | //获取帧的序列号 |
509 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 509 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
510 | 510 | ||
@@ -540,7 +540,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_GimbalFineTuning(char *getbuf) | @@ -540,7 +540,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_GimbalFineTuning(char *getbuf) | ||
540 | static int Uart_DEV1_RecvDeal_CheckStatus_PLayFileName(char *getbuf) | 540 | static int Uart_DEV1_RecvDeal_CheckStatus_PLayFileName(char *getbuf) |
541 | { | 541 | { |
542 | //查询播放文件名 | 542 | //查询播放文件名 |
543 | - USER_LOG_INFO("查询播放文件名\n"); | 543 | + JZSDK_LOG_INFO("查询播放文件名\n"); |
544 | //获取帧的序列号 | 544 | //获取帧的序列号 |
545 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 545 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
546 | 546 | ||
@@ -549,7 +549,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_PLayFileName(char *getbuf) | @@ -549,7 +549,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_PLayFileName(char *getbuf) | ||
549 | int MusicName_Len; | 549 | int MusicName_Len; |
550 | JZsdk_Uart_CheckStatus_PlayFileName(MusicName, &MusicName_Len); | 550 | JZsdk_Uart_CheckStatus_PlayFileName(MusicName, &MusicName_Len); |
551 | 551 | ||
552 | - USER_LOG_INFO("当前播放的是%s %d\n",MusicName, MusicName_Len); | 552 | + JZSDK_LOG_INFO("当前播放的是%s %d\n",MusicName, MusicName_Len); |
553 | 553 | ||
554 | //回复操作成功 | 554 | //回复操作成功 |
555 | //JZsdk_Uart_SendDeal_Reply_Sucesss(UART_DEV_1, FrameSequence); | 555 | //JZsdk_Uart_SendDeal_Reply_Sucesss(UART_DEV_1, FrameSequence); |
@@ -566,7 +566,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_PLayFileName(char *getbuf) | @@ -566,7 +566,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_PLayFileName(char *getbuf) | ||
566 | static int Uart_DEV1_RecvDeal_CheckStatus_SoftwareVersion(char *getbuf) | 566 | static int Uart_DEV1_RecvDeal_CheckStatus_SoftwareVersion(char *getbuf) |
567 | { | 567 | { |
568 | //查询软件版本号 | 568 | //查询软件版本号 |
569 | - USER_LOG_INFO("查询软件版本号\n"); | 569 | + JZSDK_LOG_INFO("查询软件版本号\n"); |
570 | //获取帧的序列号 | 570 | //获取帧的序列号 |
571 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 571 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
572 | 572 | ||
@@ -577,7 +577,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_SoftwareVersion(char *getbuf) | @@ -577,7 +577,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_SoftwareVersion(char *getbuf) | ||
577 | 577 | ||
578 | //1、获取版本号 | 578 | //1、获取版本号 |
579 | JZsdk_Uart_CheckStatus_SoftwareVersion(&majorVersion, &minorVersion, &modifyVersion, &debugVersion); | 579 | JZsdk_Uart_CheckStatus_SoftwareVersion(&majorVersion, &minorVersion, &modifyVersion, &debugVersion); |
580 | - USER_LOG_INFO("当前的软件版本号为:%2x, %2x, %2x, %2x",majorVersion, minorVersion, modifyVersion, debugVersion); | 580 | + JZSDK_LOG_INFO("当前的软件版本号为:%2x, %2x, %2x, %2x",majorVersion, minorVersion, modifyVersion, debugVersion); |
581 | 581 | ||
582 | //回复操作成功 | 582 | //回复操作成功 |
583 | //JZsdk_Uart_SendDeal_Reply_Sucesss(UART_DEV_1, FrameSequence); | 583 | //JZsdk_Uart_SendDeal_Reply_Sucesss(UART_DEV_1, FrameSequence); |
@@ -594,7 +594,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_SoftwareVersion(char *getbuf) | @@ -594,7 +594,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_SoftwareVersion(char *getbuf) | ||
594 | static int Uart_DEV1_RecvDeal_CheckStatus_LoopPlay(char *getbuf) | 594 | static int Uart_DEV1_RecvDeal_CheckStatus_LoopPlay(char *getbuf) |
595 | { | 595 | { |
596 | //查询是否打开循环 | 596 | //查询是否打开循环 |
597 | - USER_LOG_INFO("查询是否打开循环\n"); | 597 | + JZSDK_LOG_INFO("查询是否打开循环\n"); |
598 | //获取帧的序列号 | 598 | //获取帧的序列号 |
599 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 599 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
600 | 600 | ||
@@ -602,7 +602,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_LoopPlay(char *getbuf) | @@ -602,7 +602,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_LoopPlay(char *getbuf) | ||
602 | int LoopStatus = JZsdk_Uart_CheckStatus_LoopPlay(); | 602 | int LoopStatus = JZsdk_Uart_CheckStatus_LoopPlay(); |
603 | if (LoopStatus < 0) | 603 | if (LoopStatus < 0) |
604 | { | 604 | { |
605 | - USER_LOG_INFO("循环状态获取失败"); | 605 | + JZSDK_LOG_INFO("循环状态获取失败"); |
606 | return -1; | 606 | return -1; |
607 | } | 607 | } |
608 | 608 | ||
@@ -621,7 +621,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_LoopPlay(char *getbuf) | @@ -621,7 +621,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_LoopPlay(char *getbuf) | ||
621 | static int Uart_DEV1_RecvDeal_CheckStatus_TTS_tone(char *getbuf) | 621 | static int Uart_DEV1_RecvDeal_CheckStatus_TTS_tone(char *getbuf) |
622 | { | 622 | { |
623 | //查询音色 | 623 | //查询音色 |
624 | - USER_LOG_INFO("查询音色\n"); | 624 | + JZSDK_LOG_INFO("查询音色\n"); |
625 | //获取帧的序列号 | 625 | //获取帧的序列号 |
626 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 626 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
627 | 627 | ||
@@ -629,7 +629,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_TTS_tone(char *getbuf) | @@ -629,7 +629,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_TTS_tone(char *getbuf) | ||
629 | int TTS_tone = JZsdk_Uart_CheckStatus_TTS_tone(); | 629 | int TTS_tone = JZsdk_Uart_CheckStatus_TTS_tone(); |
630 | if (TTS_tone < 0) | 630 | if (TTS_tone < 0) |
631 | { | 631 | { |
632 | - USER_LOG_INFO("音色获取失败"); | 632 | + JZSDK_LOG_INFO("音色获取失败"); |
633 | return -1; | 633 | return -1; |
634 | } | 634 | } |
635 | 635 | ||
@@ -649,7 +649,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_TTS_tone(char *getbuf) | @@ -649,7 +649,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_TTS_tone(char *getbuf) | ||
649 | static int Uart_DEV1_RecvDeal_CheckStatus_TTS_speed(char *getbuf) | 649 | static int Uart_DEV1_RecvDeal_CheckStatus_TTS_speed(char *getbuf) |
650 | { | 650 | { |
651 | //查询语速 | 651 | //查询语速 |
652 | - USER_LOG_INFO("查询语速\n"); | 652 | + JZSDK_LOG_INFO("查询语速\n"); |
653 | //获取帧的序列号 | 653 | //获取帧的序列号 |
654 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 654 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
655 | 655 | ||
@@ -657,7 +657,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_TTS_speed(char *getbuf) | @@ -657,7 +657,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_TTS_speed(char *getbuf) | ||
657 | int TTS_speed = JZsdk_Uart_CheckStatus_TTS_speed(); | 657 | int TTS_speed = JZsdk_Uart_CheckStatus_TTS_speed(); |
658 | if (TTS_speed < 0) | 658 | if (TTS_speed < 0) |
659 | { | 659 | { |
660 | - USER_LOG_INFO("语速获取失败"); | 660 | + JZSDK_LOG_INFO("语速获取失败"); |
661 | return -1; | 661 | return -1; |
662 | } | 662 | } |
663 | 663 | ||
@@ -678,7 +678,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_TTS_speed(char *getbuf) | @@ -678,7 +678,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_TTS_speed(char *getbuf) | ||
678 | **********/ | 678 | **********/ |
679 | static int Uart_DEV1_RecvDeal_PlayLoop(char *getbuf) | 679 | static int Uart_DEV1_RecvDeal_PlayLoop(char *getbuf) |
680 | { | 680 | { |
681 | - USER_LOG_INFO("开启关闭循环\n"); | 681 | + JZSDK_LOG_INFO("开启关闭循环\n"); |
682 | //获取帧的序列号 | 682 | //获取帧的序列号 |
683 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 683 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
684 | 684 | ||
@@ -708,7 +708,7 @@ static int Uart_DEV1_RecvDeal_PlayLoop(char *getbuf) | @@ -708,7 +708,7 @@ static int Uart_DEV1_RecvDeal_PlayLoop(char *getbuf) | ||
708 | **********/ | 708 | **********/ |
709 | static int Uart_DEV1_RecvDeal_Delete_Audio(char *getbuf) | 709 | static int Uart_DEV1_RecvDeal_Delete_Audio(char *getbuf) |
710 | { | 710 | { |
711 | - USER_LOG_INFO("删除音频操作\n"); | 711 | + JZSDK_LOG_INFO("删除音频操作\n"); |
712 | //获取帧的序列号 | 712 | //获取帧的序列号 |
713 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 713 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
714 | 714 | ||
@@ -741,7 +741,7 @@ static int Uart_DEV1_RecvDeal_Delete_Audio(char *getbuf) | @@ -741,7 +741,7 @@ static int Uart_DEV1_RecvDeal_Delete_Audio(char *getbuf) | ||
741 | **********/ | 741 | **********/ |
742 | static int Uart_DEV1_RecvDeal_Delete_VoiceRecord(char *getbuf) | 742 | static int Uart_DEV1_RecvDeal_Delete_VoiceRecord(char *getbuf) |
743 | { | 743 | { |
744 | - USER_LOG_INFO("删除录音操作\n"); | 744 | + JZSDK_LOG_INFO("删除录音操作\n"); |
745 | //获取帧的序列号 | 745 | //获取帧的序列号 |
746 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 746 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
747 | 747 | ||
@@ -783,7 +783,7 @@ static int Uart_DEV1_RecvDeal_Delete_VideoRecord() | @@ -783,7 +783,7 @@ static int Uart_DEV1_RecvDeal_Delete_VideoRecord() | ||
783 | **********/ | 783 | **********/ |
784 | static int Uart_DEV1_RecvDeal_TTS_SetTone(char *getbuf) | 784 | static int Uart_DEV1_RecvDeal_TTS_SetTone(char *getbuf) |
785 | { | 785 | { |
786 | - USER_LOG_INFO("tts设置音色\n"); | 786 | + JZSDK_LOG_INFO("tts设置音色\n"); |
787 | //获取帧的序列号 | 787 | //获取帧的序列号 |
788 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 788 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
789 | 789 | ||
@@ -811,16 +811,16 @@ static int Uart_DEV1_RecvDeal_TTS_SetTone(char *getbuf) | @@ -811,16 +811,16 @@ static int Uart_DEV1_RecvDeal_TTS_SetTone(char *getbuf) | ||
811 | **********/ | 811 | **********/ |
812 | static int Uart_DEV1_RecvDeal_TTS_SetSpeed(char *getbuf) | 812 | static int Uart_DEV1_RecvDeal_TTS_SetSpeed(char *getbuf) |
813 | { | 813 | { |
814 | - USER_LOG_INFO("设置语速\n"); | 814 | + JZSDK_LOG_INFO("设置语速\n"); |
815 | //获取帧的序列号 | 815 | //获取帧的序列号 |
816 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 816 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
817 | 817 | ||
818 | //1、从帧数据从获取语速 | 818 | //1、从帧数据从获取语速 |
819 | int speed = (int)getbuf[9]; | 819 | int speed = (int)getbuf[9]; |
820 | - USER_LOG_INFO("获取的语速为:%d",speed); | 820 | + JZSDK_LOG_INFO("获取的语速为:%d",speed); |
821 | if (speed > 100 || speed < 0) | 821 | if (speed > 100 || speed < 0) |
822 | { | 822 | { |
823 | - USER_LOG_INFO("语速超出范围\n"); | 823 | + JZSDK_LOG_INFO("语速超出范围\n"); |
824 | 824 | ||
825 | //回复操作失败 | 825 | //回复操作失败 |
826 | JZsdk_Uart_SendDeal_Reply_Failure(UART_DEV_1, FrameSequence); | 826 | JZsdk_Uart_SendDeal_Reply_Failure(UART_DEV_1, FrameSequence); |
@@ -851,7 +851,7 @@ static int Uart_DEV1_RecvDeal_TTS_SetSpeed(char *getbuf) | @@ -851,7 +851,7 @@ static int Uart_DEV1_RecvDeal_TTS_SetSpeed(char *getbuf) | ||
851 | // 0x5A 0x5A 0x77 0x00 0x0c 0x00 0x00 0x57 0x04 0x00 0x00 0x23 结束TTS发送 | 851 | // 0x5A 0x5A 0x77 0x00 0x0c 0x00 0x00 0x57 0x04 0x00 0x00 0x23 结束TTS发送 |
852 | static int Uart_DEV1_RecvDeal_TTS_Trans_start(char *getbuf) | 852 | static int Uart_DEV1_RecvDeal_TTS_Trans_start(char *getbuf) |
853 | { | 853 | { |
854 | - USER_LOG_INFO("tts开始传输"); | 854 | + JZSDK_LOG_INFO("tts开始传输"); |
855 | //获取帧的序列号 | 855 | //获取帧的序列号 |
856 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 856 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
857 | 857 | ||
@@ -875,7 +875,7 @@ static int Uart_DEV1_RecvDeal_TTS_Trans_start(char *getbuf) | @@ -875,7 +875,7 @@ static int Uart_DEV1_RecvDeal_TTS_Trans_start(char *getbuf) | ||
875 | **********/ | 875 | **********/ |
876 | static int Uart_DEV1_RecvDeal_TTS_Trans_transmission(char *getdata, int len) | 876 | static int Uart_DEV1_RecvDeal_TTS_Trans_transmission(char *getdata, int len) |
877 | { | 877 | { |
878 | - USER_LOG_INFO("tts传输中"); | 878 | + JZSDK_LOG_INFO("tts传输中"); |
879 | 879 | ||
880 | if (TTS_Recv_buffer_length+len < 1000) | 880 | if (TTS_Recv_buffer_length+len < 1000) |
881 | { | 881 | { |
@@ -887,7 +887,7 @@ static int Uart_DEV1_RecvDeal_TTS_Trans_transmission(char *getdata, int len) | @@ -887,7 +887,7 @@ static int Uart_DEV1_RecvDeal_TTS_Trans_transmission(char *getdata, int len) | ||
887 | } | 887 | } |
888 | else | 888 | else |
889 | { | 889 | { |
890 | - USER_LOG_ERROR("TTS字数超出1000字节"); | 890 | + JZSDK_LOG_ERROR("TTS字数超出1000字节"); |
891 | } | 891 | } |
892 | } | 892 | } |
893 | 893 | ||
@@ -899,13 +899,13 @@ static int Uart_DEV1_RecvDeal_TTS_Trans_transmission(char *getdata, int len) | @@ -899,13 +899,13 @@ static int Uart_DEV1_RecvDeal_TTS_Trans_transmission(char *getdata, int len) | ||
899 | **********/ | 899 | **********/ |
900 | static int Uart_DEV1_RecvDeal_TTS_Trans_stop(char *getbuf) | 900 | static int Uart_DEV1_RecvDeal_TTS_Trans_stop(char *getbuf) |
901 | { | 901 | { |
902 | - USER_LOG_INFO("tts传输结束"); | 902 | + JZSDK_LOG_INFO("tts传输结束"); |
903 | //获取帧的序列号 | 903 | //获取帧的序列号 |
904 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 904 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
905 | 905 | ||
906 | 906 | ||
907 | //1、打印一次TTS文本 | 907 | //1、打印一次TTS文本 |
908 | - USER_LOG_INFO("TTS播放%s",TTS_Recv_buffer); | 908 | + JZSDK_LOG_INFO("TTS播放%s",TTS_Recv_buffer); |
909 | 909 | ||
910 | //2、播放TTS | 910 | //2、播放TTS |
911 | JZsdk_Uart_TTS_Play(UART_DEV_1, TTS_Recv_buffer, TTS_Recv_buffer_length); | 911 | JZsdk_Uart_TTS_Play(UART_DEV_1, TTS_Recv_buffer, TTS_Recv_buffer_length); |
@@ -923,7 +923,7 @@ static int Uart_DEV1_RecvDeal_TTS_Trans_stop(char *getbuf) | @@ -923,7 +923,7 @@ static int Uart_DEV1_RecvDeal_TTS_Trans_stop(char *getbuf) | ||
923 | **********/ | 923 | **********/ |
924 | static int Uart_DEV1_RecvDeal_OpusTrans_start(char *getbuf) | 924 | static int Uart_DEV1_RecvDeal_OpusTrans_start(char *getbuf) |
925 | { | 925 | { |
926 | - USER_LOG_INFO("打开opus传输\n"); | 926 | + JZSDK_LOG_INFO("打开opus传输\n"); |
927 | //获取帧的序列号 | 927 | //获取帧的序列号 |
928 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 928 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
929 | 929 | ||
@@ -940,7 +940,7 @@ static int Uart_DEV1_RecvDeal_OpusTrans_start(char *getbuf) | @@ -940,7 +940,7 @@ static int Uart_DEV1_RecvDeal_OpusTrans_start(char *getbuf) | ||
940 | //3、修改接收模式为传输opus | 940 | //3、修改接收模式为传输opus |
941 | JZsdk_Uart_RecvDeal_Set_UART_DEV1_Receive_mode(JZ_INSCODE_5AFRAME_OPUS_TRANS_TRANSMISSION); | 941 | JZsdk_Uart_RecvDeal_Set_UART_DEV1_Receive_mode(JZ_INSCODE_5AFRAME_OPUS_TRANS_TRANSMISSION); |
942 | 942 | ||
943 | - USER_LOG_INFO("已完成打开opus传输处理\n"); | 943 | + JZSDK_LOG_INFO("已完成打开opus传输处理\n"); |
944 | 944 | ||
945 | //回复操作成功 | 945 | //回复操作成功 |
946 | JZsdk_Uart_SendDeal_Reply_Sucesss(UART_DEV_1, FrameSequence); | 946 | JZsdk_Uart_SendDeal_Reply_Sucesss(UART_DEV_1, FrameSequence); |
@@ -955,7 +955,7 @@ static int Uart_DEV1_RecvDeal_OpusTrans_transmission(char *SaveData, int size) | @@ -955,7 +955,7 @@ static int Uart_DEV1_RecvDeal_OpusTrans_transmission(char *SaveData, int size) | ||
955 | { | 955 | { |
956 | JZsdk_Uart_SaveOpusTrans(SaveData,size); | 956 | JZsdk_Uart_SaveOpusTrans(SaveData,size); |
957 | 957 | ||
958 | - USER_LOG_INFO("已完成opus传输保存处理\n"); | 958 | + JZSDK_LOG_INFO("已完成opus传输保存处理\n"); |
959 | } | 959 | } |
960 | /********* | 960 | /********* |
961 | * | 961 | * |
@@ -965,13 +965,13 @@ static int Uart_DEV1_RecvDeal_OpusTrans_transmission(char *SaveData, int size) | @@ -965,13 +965,13 @@ static int Uart_DEV1_RecvDeal_OpusTrans_transmission(char *SaveData, int size) | ||
965 | **********/ | 965 | **********/ |
966 | static int Uart_DEV1_RecvDeal_OpusTrans_stop(char *getbuf) | 966 | static int Uart_DEV1_RecvDeal_OpusTrans_stop(char *getbuf) |
967 | { | 967 | { |
968 | - USER_LOG_INFO("结束opus传输\n"); | 968 | + JZSDK_LOG_INFO("结束opus传输\n"); |
969 | //获取帧的序列号 | 969 | //获取帧的序列号 |
970 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 970 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
971 | 971 | ||
972 | JZsdk_Uart_SaveOpusStop(); | 972 | JZsdk_Uart_SaveOpusStop(); |
973 | 973 | ||
974 | - USER_LOG_INFO("结束opus传输处理\n"); | 974 | + JZSDK_LOG_INFO("结束opus传输处理\n"); |
975 | 975 | ||
976 | //回复操作成功 | 976 | //回复操作成功 |
977 | JZsdk_Uart_SendDeal_Reply_Sucesss(UART_DEV_1, FrameSequence); | 977 | JZsdk_Uart_SendDeal_Reply_Sucesss(UART_DEV_1, FrameSequence); |
@@ -984,7 +984,7 @@ static int Uart_DEV1_RecvDeal_OpusTrans_stop(char *getbuf) | @@ -984,7 +984,7 @@ static int Uart_DEV1_RecvDeal_OpusTrans_stop(char *getbuf) | ||
984 | **********/ | 984 | **********/ |
985 | static int Uart_DEV1_RecvDeal_OpusPlay(char *getbuf) | 985 | static int Uart_DEV1_RecvDeal_OpusPlay(char *getbuf) |
986 | { | 986 | { |
987 | - USER_LOG_INFO("opus播放\n"); | 987 | + JZSDK_LOG_INFO("opus播放\n"); |
988 | //获取帧的序列号 | 988 | //获取帧的序列号 |
989 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 989 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
990 | 990 | ||
@@ -1004,7 +1004,7 @@ static int Uart_DEV1_RecvDeal_OpusPlay(char *getbuf) | @@ -1004,7 +1004,7 @@ static int Uart_DEV1_RecvDeal_OpusPlay(char *getbuf) | ||
1004 | **********/ | 1004 | **********/ |
1005 | static int Uart_DEV1_RecvDeal_Opus_RealTimeVoice_start(char *getbuf) | 1005 | static int Uart_DEV1_RecvDeal_Opus_RealTimeVoice_start(char *getbuf) |
1006 | { | 1006 | { |
1007 | - USER_LOG_INFO("开启opus实时喊话功能\n"); | 1007 | + JZSDK_LOG_INFO("开启opus实时喊话功能\n"); |
1008 | //获取帧的序列号 | 1008 | //获取帧的序列号 |
1009 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1009 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1010 | 1010 | ||
@@ -1039,7 +1039,7 @@ static int Uart_DEV1_RecvDeal_Opus_RealTimeVoice_start(char *getbuf) | @@ -1039,7 +1039,7 @@ static int Uart_DEV1_RecvDeal_Opus_RealTimeVoice_start(char *getbuf) | ||
1039 | **********/ | 1039 | **********/ |
1040 | static int Uart_DEV1_RecvDeal_Opus_RealTimeVoice_transmission(char *getdata, int len) | 1040 | static int Uart_DEV1_RecvDeal_Opus_RealTimeVoice_transmission(char *getdata, int len) |
1041 | { | 1041 | { |
1042 | - USER_LOG_INFO("opus语音传输中\n"); | 1042 | + JZSDK_LOG_INFO("opus语音传输中\n"); |
1043 | JZsdk_Uart_RealTimeVoiceTrans(getdata, len); | 1043 | JZsdk_Uart_RealTimeVoiceTrans(getdata, len); |
1044 | 1044 | ||
1045 | } | 1045 | } |
@@ -1051,7 +1051,7 @@ static int Uart_DEV1_RecvDeal_Opus_RealTimeVoice_transmission(char *getdata, int | @@ -1051,7 +1051,7 @@ static int Uart_DEV1_RecvDeal_Opus_RealTimeVoice_transmission(char *getdata, int | ||
1051 | **********/ | 1051 | **********/ |
1052 | static int Uart_DEV1_RecvDeal_Opus_RealTimeVoice_stop(char *getbuf) | 1052 | static int Uart_DEV1_RecvDeal_Opus_RealTimeVoice_stop(char *getbuf) |
1053 | { | 1053 | { |
1054 | - USER_LOG_INFO("关闭opus实时喊话功能\n"); | 1054 | + JZSDK_LOG_INFO("关闭opus实时喊话功能\n"); |
1055 | //获取帧的序列号 | 1055 | //获取帧的序列号 |
1056 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1056 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1057 | 1057 | ||
@@ -1081,7 +1081,7 @@ static int Uart_DEV1_RecvDeal_Opus_RealTimeVoice_stop(char *getbuf) | @@ -1081,7 +1081,7 @@ static int Uart_DEV1_RecvDeal_Opus_RealTimeVoice_stop(char *getbuf) | ||
1081 | **********/ | 1081 | **********/ |
1082 | static int Uart_DEV1_RecvDeal_Gimbal_PitchControl(char *getbuf) | 1082 | static int Uart_DEV1_RecvDeal_Gimbal_PitchControl(char *getbuf) |
1083 | { | 1083 | { |
1084 | - USER_LOG_INFO("云台俯仰控制\n"); | 1084 | + JZSDK_LOG_INFO("云台俯仰控制\n"); |
1085 | //获取帧的序列号 | 1085 | //获取帧的序列号 |
1086 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1086 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1087 | 1087 | ||
@@ -1102,13 +1102,13 @@ static int Uart_DEV1_RecvDeal_Gimbal_PitchControl(char *getbuf) | @@ -1102,13 +1102,13 @@ static int Uart_DEV1_RecvDeal_Gimbal_PitchControl(char *getbuf) | ||
1102 | } | 1102 | } |
1103 | else | 1103 | else |
1104 | { | 1104 | { |
1105 | - USER_LOG_INFO("云台输入角度符号错误,无法正常控制"); | 1105 | + JZSDK_LOG_INFO("云台输入角度符号错误,无法正常控制"); |
1106 | //回复操作失败 | 1106 | //回复操作失败 |
1107 | JZsdk_Uart_SendDeal_Reply_Failure(UART_DEV_1, FrameSequence); | 1107 | JZsdk_Uart_SendDeal_Reply_Failure(UART_DEV_1, FrameSequence); |
1108 | return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; | 1108 | return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; |
1109 | } | 1109 | } |
1110 | 1110 | ||
1111 | - USER_LOG_INFO("处理得到的角度是%d",Gimbal_angle); | 1111 | + JZSDK_LOG_INFO("处理得到的角度是%d",Gimbal_angle); |
1112 | 1112 | ||
1113 | T_JZsdkReturnCode ret = JZsdk_Uart_Gimbal_PitchControl(UART_DEV_1, Gimbal_angle); | 1113 | T_JZsdkReturnCode ret = JZsdk_Uart_Gimbal_PitchControl(UART_DEV_1, Gimbal_angle); |
1114 | if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | 1114 | if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) |
@@ -1131,7 +1131,7 @@ static int Uart_DEV1_RecvDeal_Gimbal_PitchControl(char *getbuf) | @@ -1131,7 +1131,7 @@ static int Uart_DEV1_RecvDeal_Gimbal_PitchControl(char *getbuf) | ||
1131 | **********/ | 1131 | **********/ |
1132 | static int Uart_DEV1_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | 1132 | static int Uart_DEV1_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) |
1133 | { | 1133 | { |
1134 | - USER_LOG_INFO("云台俯仰微调角度\n"); | 1134 | + JZSDK_LOG_INFO("云台俯仰微调角度\n"); |
1135 | //获取帧的序列号 | 1135 | //获取帧的序列号 |
1136 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1136 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1137 | 1137 | ||
@@ -1139,7 +1139,7 @@ static int Uart_DEV1_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | @@ -1139,7 +1139,7 @@ static int Uart_DEV1_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | ||
1139 | int Gimbal_signal = getbuf[9]; | 1139 | int Gimbal_signal = getbuf[9]; |
1140 | 1140 | ||
1141 | //2、通过云台控制帧 获取云台角度绝对值 | 1141 | //2、通过云台控制帧 获取云台角度绝对值 |
1142 | - int Gimbal_angle = ((int)getbuf[10]) ; | 1142 | + int Gimbal_angle = (((int)getbuf[10]) << 8 ) + getbuf[11]; |
1143 | 1143 | ||
1144 | //3、拼接得到云台值 | 1144 | //3、拼接得到云台值 |
1145 | if (Gimbal_signal == 0x00) | 1145 | if (Gimbal_signal == 0x00) |
@@ -1152,13 +1152,13 @@ static int Uart_DEV1_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | @@ -1152,13 +1152,13 @@ static int Uart_DEV1_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | ||
1152 | } | 1152 | } |
1153 | else | 1153 | else |
1154 | { | 1154 | { |
1155 | - USER_LOG_INFO("云台俯仰微调角度符号错误,无法正常控制"); | 1155 | + JZSDK_LOG_INFO("云台俯仰微调角度符号错误,无法正常控制"); |
1156 | //回复操作失败 | 1156 | //回复操作失败 |
1157 | JZsdk_Uart_SendDeal_Reply_Failure(UART_DEV_1, FrameSequence); | 1157 | JZsdk_Uart_SendDeal_Reply_Failure(UART_DEV_1, FrameSequence); |
1158 | return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; | 1158 | return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; |
1159 | } | 1159 | } |
1160 | 1160 | ||
1161 | - USER_LOG_INFO("处理得到云台俯仰微调角度是%d",Gimbal_angle); | 1161 | + JZSDK_LOG_INFO("处理得到云台俯仰微调角度是%d",Gimbal_angle); |
1162 | 1162 | ||
1163 | JZsdk_Uart_Gimbal_PitchFineTuningControl(UART_DEV_1, FrameSequence ,Gimbal_angle); | 1163 | JZsdk_Uart_Gimbal_PitchFineTuningControl(UART_DEV_1, FrameSequence ,Gimbal_angle); |
1164 | 1164 | ||
@@ -1179,7 +1179,7 @@ static int Uart_DEV1_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | @@ -1179,7 +1179,7 @@ static int Uart_DEV1_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | ||
1179 | **********/ | 1179 | **********/ |
1180 | static int Uart_DEV1_RecvDeal_SearchLight_SetFrequency(char *getbuf) | 1180 | static int Uart_DEV1_RecvDeal_SearchLight_SetFrequency(char *getbuf) |
1181 | { | 1181 | { |
1182 | - USER_LOG_INFO("设置爆闪频率\n"); | 1182 | + JZSDK_LOG_INFO("设置爆闪频率\n"); |
1183 | //获取帧的序列号 | 1183 | //获取帧的序列号 |
1184 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1184 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1185 | 1185 | ||
@@ -1206,7 +1206,7 @@ static int Uart_DEV1_RecvDeal_SearchLight_SetFrequency(char *getbuf) | @@ -1206,7 +1206,7 @@ static int Uart_DEV1_RecvDeal_SearchLight_SetFrequency(char *getbuf) | ||
1206 | **********/ | 1206 | **********/ |
1207 | static int Uart_DEV1_RecvDeal_SearchLight_Control(char *getbuf) | 1207 | static int Uart_DEV1_RecvDeal_SearchLight_Control(char *getbuf) |
1208 | { | 1208 | { |
1209 | - USER_LOG_INFO("设置灯光控制\n"); | 1209 | + JZSDK_LOG_INFO("设置灯光控制\n"); |
1210 | //获取帧的序列号 | 1210 | //获取帧的序列号 |
1211 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1211 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1212 | 1212 | ||
@@ -1233,7 +1233,7 @@ static int Uart_DEV1_RecvDeal_SearchLight_Control(char *getbuf) | @@ -1233,7 +1233,7 @@ static int Uart_DEV1_RecvDeal_SearchLight_Control(char *getbuf) | ||
1233 | **********/ | 1233 | **********/ |
1234 | static int Uart_DEV1_RecvDeal_SearchLight_Lumen(char *getbuf) | 1234 | static int Uart_DEV1_RecvDeal_SearchLight_Lumen(char *getbuf) |
1235 | { | 1235 | { |
1236 | - USER_LOG_INFO("设置灯光亮度\n"); | 1236 | + JZSDK_LOG_INFO("设置灯光亮度\n"); |
1237 | //获取帧的序列号 | 1237 | //获取帧的序列号 |
1238 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1238 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1239 | 1239 | ||
@@ -1261,7 +1261,7 @@ static int Uart_DEV1_RecvDeal_SearchLight_Lumen(char *getbuf) | @@ -1261,7 +1261,7 @@ static int Uart_DEV1_RecvDeal_SearchLight_Lumen(char *getbuf) | ||
1261 | **********/ | 1261 | **********/ |
1262 | static int Uart_DEV1_RecvDeal_CheckStatus_SearchLightLightAttribute(char *getbuf) | 1262 | static int Uart_DEV1_RecvDeal_CheckStatus_SearchLightLightAttribute(char *getbuf) |
1263 | { | 1263 | { |
1264 | - USER_LOG_INFO("灯光属性查询\n"); | 1264 | + JZSDK_LOG_INFO("灯光属性查询\n"); |
1265 | //1、获取帧的序列号 | 1265 | //1、获取帧的序列号 |
1266 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1266 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1267 | 1267 | ||
@@ -1277,7 +1277,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_SearchLightLightAttribute(char *getbuf | @@ -1277,7 +1277,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_SearchLightLightAttribute(char *getbuf | ||
1277 | **********/ | 1277 | **********/ |
1278 | static int Uart_DEV1_RecvDeal_CheckStatus_SearchLightTemperture(char *getbuf) | 1278 | static int Uart_DEV1_RecvDeal_CheckStatus_SearchLightTemperture(char *getbuf) |
1279 | { | 1279 | { |
1280 | - USER_LOG_INFO("探照灯温度查询\n"); | 1280 | + JZSDK_LOG_INFO("探照灯温度查询\n"); |
1281 | //1、获取帧的序列号 | 1281 | //1、获取帧的序列号 |
1282 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1282 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1283 | 1283 | ||
@@ -1292,7 +1292,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_SearchLightTemperture(char *getbuf) | @@ -1292,7 +1292,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_SearchLightTemperture(char *getbuf) | ||
1292 | **********/ | 1292 | **********/ |
1293 | static int Uart_DEV1_RecvDeal_SearchLight_SubscriptionControl(char *getbuf) | 1293 | static int Uart_DEV1_RecvDeal_SearchLight_SubscriptionControl(char *getbuf) |
1294 | { | 1294 | { |
1295 | - USER_LOG_INFO("消息订阅控制\n"); | 1295 | + JZSDK_LOG_INFO("消息订阅控制\n"); |
1296 | //获取帧的序列号 | 1296 | //获取帧的序列号 |
1297 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1297 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1298 | 1298 | ||
@@ -1312,6 +1312,55 @@ static int Uart_DEV1_RecvDeal_SearchLight_SubscriptionControl(char *getbuf) | @@ -1312,6 +1312,55 @@ static int Uart_DEV1_RecvDeal_SearchLight_SubscriptionControl(char *getbuf) | ||
1312 | } | 1312 | } |
1313 | } | 1313 | } |
1314 | 1314 | ||
1315 | +/********* | ||
1316 | + * | ||
1317 | + * 查询产品序列号 | ||
1318 | + * | ||
1319 | +**********/ | ||
1320 | +static int Uart_DEV1_RecvDeal_CheckStatus_SerialNumber(char *getbuf) | ||
1321 | +{ | ||
1322 | + JZSDK_LOG_INFO("消息订阅控制\n"); | ||
1323 | + //获取帧的序列号 | ||
1324 | + int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | ||
1325 | + | ||
1326 | + JZsdk_Uart_CheckStatus_SerialNumber(UART_DEV_1, FrameSequence); | ||
1327 | + | ||
1328 | +} | ||
1329 | + | ||
1330 | +/********* | ||
1331 | + * | ||
1332 | + * 对外供电开关 | ||
1333 | + * | ||
1334 | +**********/ | ||
1335 | +static int Uart_DEV1_RecvDeal_OutPutPower_Control(char *getbuf) | ||
1336 | +{ | ||
1337 | + printf("对外电源控制\n"); | ||
1338 | + //获取帧的序列号 | ||
1339 | + int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | ||
1340 | + | ||
1341 | + //获取控制值 | ||
1342 | + int Value = getbuf[9]; | ||
1343 | + | ||
1344 | + //控制 | ||
1345 | + JZsdk_Uart_OutPutPower_Control(UART_DEV_1, FrameSequence, Value); | ||
1346 | +} | ||
1347 | + | ||
1348 | +/********* | ||
1349 | + * | ||
1350 | + * 对外电源查询 | ||
1351 | + * | ||
1352 | +**********/ | ||
1353 | +static int Uart_DEV1_RecvDeal_Checkstatus_OutPutPower(char *getbuf) | ||
1354 | +{ | ||
1355 | + printf("对外电源查询\n"); | ||
1356 | + | ||
1357 | + //获取帧的序列号 | ||
1358 | + int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | ||
1359 | + | ||
1360 | + //获取本地数值 | ||
1361 | + JZsdk_Uart_Checkstatus_OutPutPower(UART_DEV_1, FrameSequence); | ||
1362 | +} | ||
1363 | + | ||
1315 | /******************************************************************************************************************************* | 1364 | /******************************************************************************************************************************* |
1316 | * | 1365 | * |
1317 | * 警灯部分 | 1366 | * 警灯部分 |
@@ -1324,7 +1373,7 @@ static int Uart_DEV1_RecvDeal_SearchLight_SubscriptionControl(char *getbuf) | @@ -1324,7 +1373,7 @@ static int Uart_DEV1_RecvDeal_SearchLight_SubscriptionControl(char *getbuf) | ||
1324 | **********/ | 1373 | **********/ |
1325 | static int Uart_DEV1_RecvDeal_WarningLight_ModeControl(char *getbuf) | 1374 | static int Uart_DEV1_RecvDeal_WarningLight_ModeControl(char *getbuf) |
1326 | { | 1375 | { |
1327 | - USER_LOG_INFO("警灯模式控制\n"); | 1376 | + JZSDK_LOG_INFO("警灯模式控制\n"); |
1328 | //获取帧的序列号 | 1377 | //获取帧的序列号 |
1329 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1378 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1330 | 1379 | ||
@@ -1352,7 +1401,7 @@ static int Uart_DEV1_RecvDeal_WarningLight_ModeControl(char *getbuf) | @@ -1352,7 +1401,7 @@ static int Uart_DEV1_RecvDeal_WarningLight_ModeControl(char *getbuf) | ||
1352 | **********/ | 1401 | **********/ |
1353 | static int Uart_DEV1_RecvDeal_WarningLight_SetColor(char *getbuf) | 1402 | static int Uart_DEV1_RecvDeal_WarningLight_SetColor(char *getbuf) |
1354 | { | 1403 | { |
1355 | - USER_LOG_INFO("警灯颜色选择\n"); | 1404 | + JZSDK_LOG_INFO("警灯颜色选择\n"); |
1356 | //获取帧的序列号 | 1405 | //获取帧的序列号 |
1357 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1406 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1358 | 1407 | ||
@@ -1380,7 +1429,7 @@ static int Uart_DEV1_RecvDeal_WarningLight_SetColor(char *getbuf) | @@ -1380,7 +1429,7 @@ static int Uart_DEV1_RecvDeal_WarningLight_SetColor(char *getbuf) | ||
1380 | **********/ | 1429 | **********/ |
1381 | static int Uart_DEV1_RecvDeal_CheckStatus_WarningLightStatus(char *getbuf) | 1430 | static int Uart_DEV1_RecvDeal_CheckStatus_WarningLightStatus(char *getbuf) |
1382 | { | 1431 | { |
1383 | - USER_LOG_INFO("警灯状态查询\n"); | 1432 | + JZSDK_LOG_INFO("警灯状态查询\n"); |
1384 | //1、获取帧的序列号 | 1433 | //1、获取帧的序列号 |
1385 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1434 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1386 | 1435 | ||
@@ -1396,7 +1445,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_WarningLightStatus(char *getbuf) | @@ -1396,7 +1445,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_WarningLightStatus(char *getbuf) | ||
1396 | **********/ | 1445 | **********/ |
1397 | static int Uart_DEV1_RecvDeal_CheckStatus_WarningLightColor(char *getbuf) | 1446 | static int Uart_DEV1_RecvDeal_CheckStatus_WarningLightColor(char *getbuf) |
1398 | { | 1447 | { |
1399 | - USER_LOG_INFO("警灯颜色查询\n"); | 1448 | + JZSDK_LOG_INFO("警灯颜色查询\n"); |
1400 | //1、获取帧的序列号 | 1449 | //1、获取帧的序列号 |
1401 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1450 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1402 | 1451 | ||
@@ -1435,7 +1484,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_WarningLightColor(char *getbuf) | @@ -1435,7 +1484,7 @@ static int Uart_DEV1_RecvDeal_CheckStatus_WarningLightColor(char *getbuf) | ||
1435 | **********/ | 1484 | **********/ |
1436 | static int Uart_DEV1_RecvDeal_ObtainSearchLight_Frequency(char *getbuf) | 1485 | static int Uart_DEV1_RecvDeal_ObtainSearchLight_Frequency(char *getbuf) |
1437 | { | 1486 | { |
1438 | - USER_LOG_INFO("收到灯光频率\n"); | 1487 | + JZSDK_LOG_INFO("收到灯光频率\n"); |
1439 | //获取帧的序列号 | 1488 | //获取帧的序列号 |
1440 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1489 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1441 | 1490 | ||
@@ -1453,7 +1502,7 @@ static int Uart_DEV1_RecvDeal_ObtainSearchLight_Frequency(char *getbuf) | @@ -1453,7 +1502,7 @@ static int Uart_DEV1_RecvDeal_ObtainSearchLight_Frequency(char *getbuf) | ||
1453 | **********/ | 1502 | **********/ |
1454 | static int Uart_DEV1_RecvDeal_ObtainSearchLight_Mode(char *getbuf) | 1503 | static int Uart_DEV1_RecvDeal_ObtainSearchLight_Mode(char *getbuf) |
1455 | { | 1504 | { |
1456 | - USER_LOG_INFO("收到灯光模式\n"); | 1505 | + JZSDK_LOG_INFO("收到灯光模式\n"); |
1457 | //获取帧的序列号 | 1506 | //获取帧的序列号 |
1458 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1507 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1459 | 1508 | ||
@@ -1471,7 +1520,7 @@ static int Uart_DEV1_RecvDeal_ObtainSearchLight_Mode(char *getbuf) | @@ -1471,7 +1520,7 @@ static int Uart_DEV1_RecvDeal_ObtainSearchLight_Mode(char *getbuf) | ||
1471 | **********/ | 1520 | **********/ |
1472 | static int Uart_DEV1_RecvDeal_ObtainSearchLight_Lumen(char *getbuf) | 1521 | static int Uart_DEV1_RecvDeal_ObtainSearchLight_Lumen(char *getbuf) |
1473 | { | 1522 | { |
1474 | - USER_LOG_INFO("收到灯光亮度\n"); | 1523 | + JZSDK_LOG_INFO("收到灯光亮度\n"); |
1475 | //获取帧的序列号 | 1524 | //获取帧的序列号 |
1476 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1525 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1477 | 1526 | ||
@@ -1490,7 +1539,7 @@ static int Uart_DEV1_RecvDeal_ObtainSearchLight_Lumen(char *getbuf) | @@ -1490,7 +1539,7 @@ static int Uart_DEV1_RecvDeal_ObtainSearchLight_Lumen(char *getbuf) | ||
1490 | **********/ | 1539 | **********/ |
1491 | static int Uart_DEV1_RecvDeal_ObtainSearchLight_Temperature(char *getbuf) | 1540 | static int Uart_DEV1_RecvDeal_ObtainSearchLight_Temperature(char *getbuf) |
1492 | { | 1541 | { |
1493 | - USER_LOG_INFO("收到探照灯温度\n"); | 1542 | + JZSDK_LOG_INFO("收到探照灯温度\n"); |
1494 | //获取帧的序列号 | 1543 | //获取帧的序列号 |
1495 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1544 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1496 | 1545 | ||
@@ -1509,7 +1558,7 @@ static int Uart_DEV1_RecvDeal_ObtainSearchLight_Temperature(char *getbuf) | @@ -1509,7 +1558,7 @@ static int Uart_DEV1_RecvDeal_ObtainSearchLight_Temperature(char *getbuf) | ||
1509 | **********/ | 1558 | **********/ |
1510 | static int Uart_DEV1_RecvDeal_ObtainGimbal_Pitch(char *getbuf) | 1559 | static int Uart_DEV1_RecvDeal_ObtainGimbal_Pitch(char *getbuf) |
1511 | { | 1560 | { |
1512 | - USER_LOG_INFO("收到云台俯仰\n"); | 1561 | + JZSDK_LOG_INFO("收到云台俯仰\n"); |
1513 | //获取帧的序列号 | 1562 | //获取帧的序列号 |
1514 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1563 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1515 | 1564 | ||
@@ -1540,7 +1589,7 @@ static int Uart_DEV1_RecvDeal_ObtainGimbal_Pitch(char *getbuf) | @@ -1540,7 +1589,7 @@ static int Uart_DEV1_RecvDeal_ObtainGimbal_Pitch(char *getbuf) | ||
1540 | **********/ | 1589 | **********/ |
1541 | static int Uart_DEV1_RecvDeal_ObtainGimbal_Yaw(char *getbuf) | 1590 | static int Uart_DEV1_RecvDeal_ObtainGimbal_Yaw(char *getbuf) |
1542 | { | 1591 | { |
1543 | - USER_LOG_INFO("收到云台航向\n"); | 1592 | + JZSDK_LOG_INFO("收到云台航向\n"); |
1544 | //获取帧的序列号 | 1593 | //获取帧的序列号 |
1545 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1594 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1546 | 1595 | ||
@@ -1578,7 +1627,7 @@ static int Uart_DEV1_RecvDeal_ObtainGimbalPitchFineTuning(char *getbuf) | @@ -1578,7 +1627,7 @@ static int Uart_DEV1_RecvDeal_ObtainGimbalPitchFineTuning(char *getbuf) | ||
1578 | int signal = getbuf[9]; | 1627 | int signal = getbuf[9]; |
1579 | 1628 | ||
1580 | //2、获取云台角度绝对值 | 1629 | //2、获取云台角度绝对值 |
1581 | - int pitch = (int)getbuf[10] ; | 1630 | + int pitch = (((int)getbuf[10]) << 8 ) + getbuf[11]; |
1582 | 1631 | ||
1583 | //3、拼接得到云台值 | 1632 | //3、拼接得到云台值 |
1584 | if (signal == 0x00) | 1633 | if (signal == 0x00) |
@@ -1600,7 +1649,7 @@ static int Uart_DEV1_RecvDeal_ObtainGimbalPitchFineTuning(char *getbuf) | @@ -1600,7 +1649,7 @@ static int Uart_DEV1_RecvDeal_ObtainGimbalPitchFineTuning(char *getbuf) | ||
1600 | **********/ | 1649 | **********/ |
1601 | static int Uart_DEV1_RecvDeal_ObtainWaringlight_Status(char *getbuf) | 1650 | static int Uart_DEV1_RecvDeal_ObtainWaringlight_Status(char *getbuf) |
1602 | { | 1651 | { |
1603 | - USER_LOG_INFO("收到警灯状态\n"); | 1652 | + JZSDK_LOG_INFO("收到警灯状态\n"); |
1604 | //获取帧的序列号 | 1653 | //获取帧的序列号 |
1605 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1654 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1606 | 1655 | ||
@@ -1619,7 +1668,7 @@ static int Uart_DEV1_RecvDeal_ObtainWaringlight_Status(char *getbuf) | @@ -1619,7 +1668,7 @@ static int Uart_DEV1_RecvDeal_ObtainWaringlight_Status(char *getbuf) | ||
1619 | **********/ | 1668 | **********/ |
1620 | static int Uart_DEV1_RecvDeal_ObtainWaringlight_Color(char *getbuf) | 1669 | static int Uart_DEV1_RecvDeal_ObtainWaringlight_Color(char *getbuf) |
1621 | { | 1670 | { |
1622 | - USER_LOG_INFO("收到警灯颜色\n"); | 1671 | + JZSDK_LOG_INFO("收到警灯颜色\n"); |
1623 | //获取帧的序列号 | 1672 | //获取帧的序列号 |
1624 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1673 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1625 | 1674 | ||
@@ -1638,7 +1687,7 @@ static int Uart_DEV1_RecvDeal_ObtainWaringlight_Color(char *getbuf) | @@ -1638,7 +1687,7 @@ static int Uart_DEV1_RecvDeal_ObtainWaringlight_Color(char *getbuf) | ||
1638 | **********/ | 1687 | **********/ |
1639 | static int Uart_DEV1_RecvDeal_ObtainSerialNumber(char *getbuf) | 1688 | static int Uart_DEV1_RecvDeal_ObtainSerialNumber(char *getbuf) |
1640 | { | 1689 | { |
1641 | - USER_LOG_INFO("收到产品序列号\n"); | 1690 | + JZSDK_LOG_INFO("收到产品序列号\n"); |
1642 | //获取帧的序列号 | 1691 | //获取帧的序列号 |
1643 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1692 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1644 | 1693 | ||
@@ -1669,7 +1718,7 @@ static int Uart_DEV1_RecvDeal_ObtainSerialNumber(char *getbuf) | @@ -1669,7 +1718,7 @@ static int Uart_DEV1_RecvDeal_ObtainSerialNumber(char *getbuf) | ||
1669 | **********/ | 1718 | **********/ |
1670 | static int Uart_DEV1_RecvDeal_QuerySecondaryDeviceName(char *getbuf) | 1719 | static int Uart_DEV1_RecvDeal_QuerySecondaryDeviceName(char *getbuf) |
1671 | { | 1720 | { |
1672 | - USER_LOG_INFO("查询当前从设备名\n"); | 1721 | + JZSDK_LOG_INFO("查询当前从设备名\n"); |
1673 | 1722 | ||
1674 | //获取帧的序列号 | 1723 | //获取帧的序列号 |
1675 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1724 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
@@ -1698,7 +1747,7 @@ static int Uart_DEV1_RecvDeal_QuerySecondaryDeviceName(char *getbuf) | @@ -1698,7 +1747,7 @@ static int Uart_DEV1_RecvDeal_QuerySecondaryDeviceName(char *getbuf) | ||
1698 | **********/ | 1747 | **********/ |
1699 | static int Uart_DEV1_RecvDeal_SetGimbalRange(char *getbuf) | 1748 | static int Uart_DEV1_RecvDeal_SetGimbalRange(char *getbuf) |
1700 | { | 1749 | { |
1701 | - USER_LOG_INFO("设置云台最大值最小值\n"); | 1750 | + JZSDK_LOG_INFO("设置云台最大值最小值\n"); |
1702 | //获取帧的序列号 | 1751 | //获取帧的序列号 |
1703 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1752 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1704 | 1753 | ||
@@ -1725,7 +1774,7 @@ static int Uart_DEV1_RecvDeal_SetGimbalRange(char *getbuf) | @@ -1725,7 +1774,7 @@ static int Uart_DEV1_RecvDeal_SetGimbalRange(char *getbuf) | ||
1725 | **********/ | 1774 | **********/ |
1726 | static int Uart_DEV1_RecvDeal_GimbalLinkageControl(char *getbuf) | 1775 | static int Uart_DEV1_RecvDeal_GimbalLinkageControl(char *getbuf) |
1727 | { | 1776 | { |
1728 | - USER_LOG_INFO("设置云台联动\n"); | 1777 | + JZSDK_LOG_INFO("设置云台联动\n"); |
1729 | 1778 | ||
1730 | //获取帧的序列号 | 1779 | //获取帧的序列号 |
1731 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1780 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
@@ -1745,7 +1794,7 @@ static int Uart_DEV1_RecvDeal_GimbalLinkageControl(char *getbuf) | @@ -1745,7 +1794,7 @@ static int Uart_DEV1_RecvDeal_GimbalLinkageControl(char *getbuf) | ||
1745 | **********/ | 1794 | **********/ |
1746 | static int Uart_DEV1_RecvDeal_Checkstatus_GimbalLinkage(char *getbuf) | 1795 | static int Uart_DEV1_RecvDeal_Checkstatus_GimbalLinkage(char *getbuf) |
1747 | { | 1796 | { |
1748 | - USER_LOG_INFO("收到查询是否开启云台联动\n"); | 1797 | + JZSDK_LOG_INFO("收到查询是否开启云台联动\n"); |
1749 | 1798 | ||
1750 | //获取帧的序列号 | 1799 | //获取帧的序列号 |
1751 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1800 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
@@ -1779,7 +1828,7 @@ static int Uart_DEV1_RecvDeal_Checkstatus_GimbalLinkage(char *getbuf) | @@ -1779,7 +1828,7 @@ static int Uart_DEV1_RecvDeal_Checkstatus_GimbalLinkage(char *getbuf) | ||
1779 | **********/ | 1828 | **********/ |
1780 | static int Uart_DEV1_RecvDeal_ObtainSecondaryDeviceName(char *getbuf) | 1829 | static int Uart_DEV1_RecvDeal_ObtainSecondaryDeviceName(char *getbuf) |
1781 | { | 1830 | { |
1782 | - USER_LOG_INFO("收到从设备名\n"); | 1831 | + JZSDK_LOG_INFO("收到从设备名\n"); |
1783 | //获取帧的序列号 | 1832 | //获取帧的序列号 |
1784 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1833 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1785 | 1834 | ||
@@ -1811,7 +1860,7 @@ static int Uart_DEV1_RecvDeal_ObtainSecondaryDeviceName(char *getbuf) | @@ -1811,7 +1860,7 @@ static int Uart_DEV1_RecvDeal_ObtainSecondaryDeviceName(char *getbuf) | ||
1811 | **********/ | 1860 | **********/ |
1812 | static int Uart_DEV1_RecvDeal_ObtainGimbalLinkage(char *getbuf) | 1861 | static int Uart_DEV1_RecvDeal_ObtainGimbalLinkage(char *getbuf) |
1813 | { | 1862 | { |
1814 | - USER_LOG_INFO("收到云台联动值\n"); | 1863 | + JZSDK_LOG_INFO("收到云台联动值\n"); |
1815 | //获取帧的序列号 | 1864 | //获取帧的序列号 |
1816 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1865 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1817 | 1866 | ||
@@ -1846,7 +1895,7 @@ static int Uart_DEV1_RecvDeal_ObtainGimbalLinkage(char *getbuf) | @@ -1846,7 +1895,7 @@ static int Uart_DEV1_RecvDeal_ObtainGimbalLinkage(char *getbuf) | ||
1846 | **********/ | 1895 | **********/ |
1847 | static int Uart_DEV1_RecvDeal_FrameErrorReply(char *getbuf) | 1896 | static int Uart_DEV1_RecvDeal_FrameErrorReply(char *getbuf) |
1848 | { | 1897 | { |
1849 | - USER_LOG_ERROR("帧指令错误:帧错误或者是帧无对应操作\n"); | 1898 | + JZSDK_LOG_ERROR("帧指令错误:帧错误或者是帧无对应操作\n"); |
1850 | //无法正常获取帧的序列号 | 1899 | //无法正常获取帧的序列号 |
1851 | //回复操作失败 | 1900 | //回复操作失败 |
1852 | JZsdk_Uart_SendDeal_Reply_Failure(UART_DEV_1, 0x00); | 1901 | JZsdk_Uart_SendDeal_Reply_Failure(UART_DEV_1, 0x00); |
@@ -1861,7 +1910,7 @@ static int Uart_DEV1_RecvDeal_FrameErrorReply(char *getbuf) | @@ -1861,7 +1910,7 @@ static int Uart_DEV1_RecvDeal_FrameErrorReply(char *getbuf) | ||
1861 | **********/ | 1910 | **********/ |
1862 | static int Uart_DEV1_RecvDeal_OperationSuccessful(char *getbuf) | 1911 | static int Uart_DEV1_RecvDeal_OperationSuccessful(char *getbuf) |
1863 | { | 1912 | { |
1864 | - USER_LOG_INFO("接受到操作成功\n"); | 1913 | + JZSDK_LOG_INFO("接受到操作成功\n"); |
1865 | } | 1914 | } |
1866 | 1915 | ||
1867 | /********* | 1916 | /********* |
@@ -1872,7 +1921,7 @@ static int Uart_DEV1_RecvDeal_OperationSuccessful(char *getbuf) | @@ -1872,7 +1921,7 @@ static int Uart_DEV1_RecvDeal_OperationSuccessful(char *getbuf) | ||
1872 | **********/ | 1921 | **********/ |
1873 | static int Uart_DEV1_RecvDeal_OperationFailed(char *getbuf) | 1922 | static int Uart_DEV1_RecvDeal_OperationFailed(char *getbuf) |
1874 | { | 1923 | { |
1875 | - USER_LOG_INFO("接受到操作失败\n"); | 1924 | + JZSDK_LOG_INFO("接受到操作失败\n"); |
1876 | } | 1925 | } |
1877 | /******************************************************************************************************** | 1926 | /******************************************************************************************************** |
1878 | ********* ********| | 1927 | ********* ********| |
@@ -1889,7 +1938,7 @@ static int Uart_DEV1_RecvDeal_OperationFailed(char *getbuf) | @@ -1889,7 +1938,7 @@ static int Uart_DEV1_RecvDeal_OperationFailed(char *getbuf) | ||
1889 | *********************************************************************************************************/ | 1938 | *********************************************************************************************************/ |
1890 | int Uart_DEV1_RecvDeal_RecvDeal(int Receive_mode, unsigned char *getdata, int len) | 1939 | int Uart_DEV1_RecvDeal_RecvDeal(int Receive_mode, unsigned char *getdata, int len) |
1891 | { | 1940 | { |
1892 | - USER_LOG_INFO("串口设备1号,接受到的模式为:%x",Receive_mode); | 1941 | + JZSDK_LOG_INFO("串口设备1号,接受到的模式为:%x",Receive_mode); |
1893 | switch (Receive_mode) | 1942 | switch (Receive_mode) |
1894 | { | 1943 | { |
1895 | /******************************************************************************************************************************* | 1944 | /******************************************************************************************************************************* |
@@ -2197,10 +2246,21 @@ int Uart_DEV1_RecvDeal_RecvDeal(int Receive_mode, unsigned char *getdata, int le | @@ -2197,10 +2246,21 @@ int Uart_DEV1_RecvDeal_RecvDeal(int Receive_mode, unsigned char *getdata, int le | ||
2197 | 2246 | ||
2198 | //序列号查询 | 2247 | //序列号查询 |
2199 | case JZ_INSCODE_5AFRAME_CHECKSTATUS_SERIALNUMBER: | 2248 | case JZ_INSCODE_5AFRAME_CHECKSTATUS_SERIALNUMBER: |
2249 | + Uart_DEV1_RecvDeal_CheckStatus_SerialNumber(getdata); | ||
2250 | + break; | ||
2251 | + | ||
2252 | + //向外供电开关 | ||
2253 | + case JZ_INSCODE_5AFRAME_OUTPUTPOWER_CONTROL: | ||
2254 | + Uart_DEV1_RecvDeal_OutPutPower_Control(getdata); | ||
2255 | + break; | ||
2200 | 2256 | ||
2257 | + //查询向外供电情况 | ||
2258 | + case JZ_INSCODE_5AFRAME_CHECKSTATUS_OUTPUTPOWER: | ||
2259 | + Uart_DEV1_RecvDeal_Checkstatus_OutPutPower(getdata); | ||
2201 | break; | 2260 | break; |
2202 | 2261 | ||
2203 | 2262 | ||
2263 | + | ||
2204 | /******************************************************************************************************************************* | 2264 | /******************************************************************************************************************************* |
2205 | * | 2265 | * |
2206 | * 5B类部分 | 2266 | * 5B类部分 |
@@ -2588,7 +2648,7 @@ int JZsdk_Uart_RecvDeal_CharmDeal_Uart_DEV1(unsigned char *getbuf, int len) | @@ -2588,7 +2648,7 @@ int JZsdk_Uart_RecvDeal_CharmDeal_Uart_DEV1(unsigned char *getbuf, int len) | ||
2588 | * ****************/ | 2648 | * ****************/ |
2589 | int JZsdk_Uart_RecvDeal_Set_UART_DEV1_Receive_mode(int value) | 2649 | int JZsdk_Uart_RecvDeal_Set_UART_DEV1_Receive_mode(int value) |
2590 | { | 2650 | { |
2591 | - USER_LOG_INFO("串口设备1号,二次修改接收模式%x\n",value); | 2651 | + JZSDK_LOG_INFO("串口设备1号,二次修改接收模式%x\n",value); |
2592 | UART_DEV1_Receive_mode = value; | 2652 | UART_DEV1_Receive_mode = value; |
2593 | return 0; | 2653 | return 0; |
2594 | } | 2654 | } |
@@ -39,7 +39,7 @@ int JZsdk_Uart_RecvDeal_Set_UART_DEV2_Receive_mode(int value); | @@ -39,7 +39,7 @@ int JZsdk_Uart_RecvDeal_Set_UART_DEV2_Receive_mode(int value); | ||
39 | **********/ | 39 | **********/ |
40 | static int Uart_DEV2_RecvDeal_AskForConnect(char *getbuf) | 40 | static int Uart_DEV2_RecvDeal_AskForConnect(char *getbuf) |
41 | { | 41 | { |
42 | - USER_LOG_INFO("串口设备2号,连接成功"); | 42 | + JZSDK_LOG_INFO("串口设备2号,连接成功"); |
43 | //获取帧的序列号 | 43 | //获取帧的序列号 |
44 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 44 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
45 | 45 | ||
@@ -67,7 +67,7 @@ static int Uart_DEV2_RecvDeal_AskForConnect(char *getbuf) | @@ -67,7 +67,7 @@ static int Uart_DEV2_RecvDeal_AskForConnect(char *getbuf) | ||
67 | **********/ | 67 | **********/ |
68 | static int Uart_DEV2_RecvDeal_RealTimeMP2_start(char *getbuf) | 68 | static int Uart_DEV2_RecvDeal_RealTimeMP2_start(char *getbuf) |
69 | { | 69 | { |
70 | - USER_LOG_INFO("开启MP2实时喊话功能\n"); | 70 | + JZSDK_LOG_INFO("开启MP2实时喊话功能\n"); |
71 | T_JZsdkReturnCode ret; | 71 | T_JZsdkReturnCode ret; |
72 | 72 | ||
73 | //获取帧的序列号 | 73 | //获取帧的序列号 |
@@ -111,7 +111,7 @@ static int Uart_DEV2_RecvDeal_RealTimeMP2_start(char *getbuf) | @@ -111,7 +111,7 @@ static int Uart_DEV2_RecvDeal_RealTimeMP2_start(char *getbuf) | ||
111 | **********/ | 111 | **********/ |
112 | static int Uart_DEV2_RecvDeal_RealTimeMP2_transmission(char *getdata, int len) | 112 | static int Uart_DEV2_RecvDeal_RealTimeMP2_transmission(char *getdata, int len) |
113 | { | 113 | { |
114 | - USER_LOG_INFO("MP2实时喊话传输中\n"); | 114 | + JZSDK_LOG_INFO("MP2实时喊话传输中\n"); |
115 | T_JZsdkReturnCode ret; | 115 | T_JZsdkReturnCode ret; |
116 | 116 | ||
117 | //传输数据接口 | 117 | //传输数据接口 |
@@ -126,7 +126,7 @@ static int Uart_DEV2_RecvDeal_RealTimeMP2_transmission(char *getdata, int len) | @@ -126,7 +126,7 @@ static int Uart_DEV2_RecvDeal_RealTimeMP2_transmission(char *getdata, int len) | ||
126 | **********/ | 126 | **********/ |
127 | static int Uart_DEV2_RecvDeal_RealTimeMP2_stop(char *getbuf) | 127 | static int Uart_DEV2_RecvDeal_RealTimeMP2_stop(char *getbuf) |
128 | { | 128 | { |
129 | - USER_LOG_INFO("关闭MP2实时喊话功能\n"); | 129 | + JZSDK_LOG_INFO("关闭MP2实时喊话功能\n"); |
130 | T_JZsdkReturnCode ret; | 130 | T_JZsdkReturnCode ret; |
131 | 131 | ||
132 | //获取帧的序列号 | 132 | //获取帧的序列号 |
@@ -157,7 +157,7 @@ static int Uart_DEV2_RecvDeal_RealTimeMP2_stop(char *getbuf) | @@ -157,7 +157,7 @@ static int Uart_DEV2_RecvDeal_RealTimeMP2_stop(char *getbuf) | ||
157 | **********/ | 157 | **********/ |
158 | static int Uart_DEV2_RecvDeal_SaveAudioFileTrans_start(char *getbuf, int len) | 158 | static int Uart_DEV2_RecvDeal_SaveAudioFileTrans_start(char *getbuf, int len) |
159 | { | 159 | { |
160 | - USER_LOG_INFO("开始传输的音频文件保存\n"); | 160 | + JZSDK_LOG_INFO("开始传输的音频文件保存\n"); |
161 | //获取帧的序列号 | 161 | //获取帧的序列号 |
162 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 162 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
163 | 163 | ||
@@ -168,7 +168,7 @@ static int Uart_DEV2_RecvDeal_SaveAudioFileTrans_start(char *getbuf, int len) | @@ -168,7 +168,7 @@ static int Uart_DEV2_RecvDeal_SaveAudioFileTrans_start(char *getbuf, int len) | ||
168 | char FileName[1024]; | 168 | char FileName[1024]; |
169 | memset(FileName,0,1024); | 169 | memset(FileName,0,1024); |
170 | memcpy(FileName, &getbuf[9], FileNameLen); | 170 | memcpy(FileName, &getbuf[9], FileNameLen); |
171 | - USER_LOG_INFO("保存的文件名为%s",FileName); | 171 | + JZSDK_LOG_INFO("保存的文件名为%s",FileName); |
172 | 172 | ||
173 | T_JZsdkReturnCode ret = JZsdk_Uart_SaveAudioFileStart(FileName); | 173 | T_JZsdkReturnCode ret = JZsdk_Uart_SaveAudioFileStart(FileName); |
174 | if (ret != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | 174 | if (ret != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) |
@@ -192,7 +192,7 @@ static int Uart_DEV2_RecvDeal_SaveAudioFileTrans_start(char *getbuf, int len) | @@ -192,7 +192,7 @@ static int Uart_DEV2_RecvDeal_SaveAudioFileTrans_start(char *getbuf, int len) | ||
192 | **********/ | 192 | **********/ |
193 | static int Uart_DEV2_RecvDeal_SaveAudioFileTrans_transmission(char *getdata, int len) | 193 | static int Uart_DEV2_RecvDeal_SaveAudioFileTrans_transmission(char *getdata, int len) |
194 | { | 194 | { |
195 | - USER_LOG_INFO("传输音频文件中\n"); | 195 | + JZSDK_LOG_INFO("传输音频文件中\n"); |
196 | JZsdk_Uart_SaveAudioFileTrans(getdata, len); | 196 | JZsdk_Uart_SaveAudioFileTrans(getdata, len); |
197 | } | 197 | } |
198 | /********* | 198 | /********* |
@@ -203,7 +203,7 @@ static int Uart_DEV2_RecvDeal_SaveAudioFileTrans_transmission(char *getdata, int | @@ -203,7 +203,7 @@ static int Uart_DEV2_RecvDeal_SaveAudioFileTrans_transmission(char *getdata, int | ||
203 | **********/ | 203 | **********/ |
204 | static int Uart_DEV2_RecvDeal_SaveAudioFileTrans_stop(char *getbuf) | 204 | static int Uart_DEV2_RecvDeal_SaveAudioFileTrans_stop(char *getbuf) |
205 | { | 205 | { |
206 | - USER_LOG_INFO("开始传输的音频文件保存\n"); | 206 | + JZSDK_LOG_INFO("开始传输的音频文件保存\n"); |
207 | //获取帧的序列号 | 207 | //获取帧的序列号 |
208 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 208 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
209 | 209 | ||
@@ -223,7 +223,7 @@ static int Uart_DEV2_RecvDeal_SaveAudioFileTrans_stop(char *getbuf) | @@ -223,7 +223,7 @@ static int Uart_DEV2_RecvDeal_SaveAudioFileTrans_stop(char *getbuf) | ||
223 | static int Uart_DEV2_RecvDeal_audio_PlayFile(char *getbuf) | 223 | static int Uart_DEV2_RecvDeal_audio_PlayFile(char *getbuf) |
224 | { | 224 | { |
225 | T_JZsdkReturnCode ret; | 225 | T_JZsdkReturnCode ret; |
226 | - USER_LOG_INFO("播放指定音频\n"); | 226 | + JZSDK_LOG_INFO("播放指定音频\n"); |
227 | //获取帧的序列号 | 227 | //获取帧的序列号 |
228 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 228 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
229 | 229 | ||
@@ -238,7 +238,7 @@ static int Uart_DEV2_RecvDeal_audio_PlayFile(char *getbuf) | @@ -238,7 +238,7 @@ static int Uart_DEV2_RecvDeal_audio_PlayFile(char *getbuf) | ||
238 | memset(music_name, 0, 256); | 238 | memset(music_name, 0, 256); |
239 | memcpy(music_name, &getbuf[9], datasize); | 239 | memcpy(music_name, &getbuf[9], datasize); |
240 | 240 | ||
241 | - USER_LOG_INFO("播放指定音频:%s\n",music_name); | 241 | + JZSDK_LOG_INFO("播放指定音频:%s\n",music_name); |
242 | 242 | ||
243 | ret = JZsdk_Uart_PlayMusic(UART_DEV_2, music_name, datasize); | 243 | ret = JZsdk_Uart_PlayMusic(UART_DEV_2, music_name, datasize); |
244 | if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | 244 | if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) |
@@ -260,7 +260,7 @@ static int Uart_DEV2_RecvDeal_audio_PlayFile(char *getbuf) | @@ -260,7 +260,7 @@ static int Uart_DEV2_RecvDeal_audio_PlayFile(char *getbuf) | ||
260 | **********/ | 260 | **********/ |
261 | static int Uart_DEV2_RecvDeal_audio_PlayContinue(char *getbuf) | 261 | static int Uart_DEV2_RecvDeal_audio_PlayContinue(char *getbuf) |
262 | { | 262 | { |
263 | - USER_LOG_INFO("音频继续播放\n"); | 263 | + JZSDK_LOG_INFO("音频继续播放\n"); |
264 | //获取帧的序列号 | 264 | //获取帧的序列号 |
265 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 265 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
266 | 266 | ||
@@ -277,7 +277,7 @@ static int Uart_DEV2_RecvDeal_audio_PlayContinue(char *getbuf) | @@ -277,7 +277,7 @@ static int Uart_DEV2_RecvDeal_audio_PlayContinue(char *getbuf) | ||
277 | **********/ | 277 | **********/ |
278 | static int Uart_DEV2_RecvDeal_audio_PlayPause(char *getbuf) | 278 | static int Uart_DEV2_RecvDeal_audio_PlayPause(char *getbuf) |
279 | { | 279 | { |
280 | - USER_LOG_INFO("音频暂停播放\n"); | 280 | + JZSDK_LOG_INFO("音频暂停播放\n"); |
281 | //获取帧的序列号 | 281 | //获取帧的序列号 |
282 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 282 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
283 | 283 | ||
@@ -294,7 +294,7 @@ static int Uart_DEV2_RecvDeal_audio_PlayPause(char *getbuf) | @@ -294,7 +294,7 @@ static int Uart_DEV2_RecvDeal_audio_PlayPause(char *getbuf) | ||
294 | **********/ | 294 | **********/ |
295 | static int Uart_DEV2_RecvDeal_audio_PlayStop(char *getbuf) | 295 | static int Uart_DEV2_RecvDeal_audio_PlayStop(char *getbuf) |
296 | { | 296 | { |
297 | - USER_LOG_INFO("音频停止播放\n"); | 297 | + JZSDK_LOG_INFO("音频停止播放\n"); |
298 | //获取帧的序列号 | 298 | //获取帧的序列号 |
299 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 299 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
300 | 300 | ||
@@ -312,7 +312,7 @@ static int Uart_DEV2_RecvDeal_audio_PlayStop(char *getbuf) | @@ -312,7 +312,7 @@ static int Uart_DEV2_RecvDeal_audio_PlayStop(char *getbuf) | ||
312 | **********/ | 312 | **********/ |
313 | static int Uart_DEV2_RecvDeal_audio_LastSong(char *getbuf) | 313 | static int Uart_DEV2_RecvDeal_audio_LastSong(char *getbuf) |
314 | { | 314 | { |
315 | - USER_LOG_INFO("音频上一曲\n"); | 315 | + JZSDK_LOG_INFO("音频上一曲\n"); |
316 | //获取帧的序列号 | 316 | //获取帧的序列号 |
317 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 317 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
318 | 318 | ||
@@ -330,7 +330,7 @@ static int Uart_DEV2_RecvDeal_audio_LastSong(char *getbuf) | @@ -330,7 +330,7 @@ static int Uart_DEV2_RecvDeal_audio_LastSong(char *getbuf) | ||
330 | **********/ | 330 | **********/ |
331 | static int Uart_DEV2_RecvDeal_audio_NextSong(char *getbuf) | 331 | static int Uart_DEV2_RecvDeal_audio_NextSong(char *getbuf) |
332 | { | 332 | { |
333 | - USER_LOG_INFO("音频下一曲\n"); | 333 | + JZSDK_LOG_INFO("音频下一曲\n"); |
334 | //获取帧的序列号 | 334 | //获取帧的序列号 |
335 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 335 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
336 | 336 | ||
@@ -348,7 +348,7 @@ static int Uart_DEV2_RecvDeal_audio_NextSong(char *getbuf) | @@ -348,7 +348,7 @@ static int Uart_DEV2_RecvDeal_audio_NextSong(char *getbuf) | ||
348 | **********/ | 348 | **********/ |
349 | static int Uart_DEV2_RecvDeal_audio_GetMusicList(char *getbuf) | 349 | static int Uart_DEV2_RecvDeal_audio_GetMusicList(char *getbuf) |
350 | { | 350 | { |
351 | - USER_LOG_INFO("获取音乐列表\n"); | 351 | + JZSDK_LOG_INFO("获取音乐列表\n"); |
352 | //获取帧的序列号 | 352 | //获取帧的序列号 |
353 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 353 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
354 | 354 | ||
@@ -390,7 +390,7 @@ static int Uart_DEV2_RecvDeal_audio_GetMusicList(char *getbuf) | @@ -390,7 +390,7 @@ static int Uart_DEV2_RecvDeal_audio_GetMusicList(char *getbuf) | ||
390 | **********/ | 390 | **********/ |
391 | static int Uart_DEV2_RecvDeal_Amplifier_stop(char *getbuf) | 391 | static int Uart_DEV2_RecvDeal_Amplifier_stop(char *getbuf) |
392 | { | 392 | { |
393 | - USER_LOG_INFO("强制关闭功放\n"); | 393 | + JZSDK_LOG_INFO("强制关闭功放\n"); |
394 | //获取帧的序列号 | 394 | //获取帧的序列号 |
395 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 395 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
396 | 396 | ||
@@ -408,7 +408,7 @@ static int Uart_DEV2_RecvDeal_Amplifier_stop(char *getbuf) | @@ -408,7 +408,7 @@ static int Uart_DEV2_RecvDeal_Amplifier_stop(char *getbuf) | ||
408 | **********/ | 408 | **********/ |
409 | static int Uart_DEV2_RecvDeal_Amplifier_open(char *getbuf) | 409 | static int Uart_DEV2_RecvDeal_Amplifier_open(char *getbuf) |
410 | { | 410 | { |
411 | - USER_LOG_INFO("强制关闭功放\n"); | 411 | + JZSDK_LOG_INFO("强制关闭功放\n"); |
412 | //获取帧的序列号 | 412 | //获取帧的序列号 |
413 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 413 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
414 | 414 | ||
@@ -437,7 +437,7 @@ static int Uart_DEV2_RecvDeal_Amplifier_auto() | @@ -437,7 +437,7 @@ static int Uart_DEV2_RecvDeal_Amplifier_auto() | ||
437 | **********/ | 437 | **********/ |
438 | static int Uart_DEV2_RecvDeal_SetVolume(char *getbuf) | 438 | static int Uart_DEV2_RecvDeal_SetVolume(char *getbuf) |
439 | { | 439 | { |
440 | - USER_LOG_INFO("调节音量\n"); | 440 | + JZSDK_LOG_INFO("调节音量\n"); |
441 | //获取帧的序列号 | 441 | //获取帧的序列号 |
442 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 442 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
443 | 443 | ||
@@ -456,7 +456,7 @@ static int Uart_DEV2_RecvDeal_SetVolume(char *getbuf) | @@ -456,7 +456,7 @@ static int Uart_DEV2_RecvDeal_SetVolume(char *getbuf) | ||
456 | **********/ | 456 | **********/ |
457 | static int Uart_DEV2_RecvDeal_CheckStatus_volume(char *getbuf) | 457 | static int Uart_DEV2_RecvDeal_CheckStatus_volume(char *getbuf) |
458 | { | 458 | { |
459 | - USER_LOG_INFO("查询音量\n"); | 459 | + JZSDK_LOG_INFO("查询音量\n"); |
460 | //获取帧的序列号 | 460 | //获取帧的序列号 |
461 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 461 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
462 | 462 | ||
@@ -479,7 +479,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_volume(char *getbuf) | @@ -479,7 +479,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_volume(char *getbuf) | ||
479 | static int Uart_DEV2_RecvDeal_CheckStatus_play(char *getbuf) | 479 | static int Uart_DEV2_RecvDeal_CheckStatus_play(char *getbuf) |
480 | { | 480 | { |
481 | //查询播放状态 | 481 | //查询播放状态 |
482 | - USER_LOG_INFO("查询播放状态\n"); | 482 | + JZSDK_LOG_INFO("查询播放状态\n"); |
483 | //获取帧的序列号 | 483 | //获取帧的序列号 |
484 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 484 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
485 | 485 | ||
@@ -504,7 +504,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_play(char *getbuf) | @@ -504,7 +504,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_play(char *getbuf) | ||
504 | static int Uart_DEV2_RecvDeal_CheckStatus_gimbal(char *getbuf) | 504 | static int Uart_DEV2_RecvDeal_CheckStatus_gimbal(char *getbuf) |
505 | { | 505 | { |
506 | //查询云台角度 | 506 | //查询云台角度 |
507 | - USER_LOG_INFO("查询云台角度\n"); | 507 | + JZSDK_LOG_INFO("查询云台角度\n"); |
508 | //获取帧的序列号 | 508 | //获取帧的序列号 |
509 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 509 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
510 | 510 | ||
@@ -540,7 +540,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_GimbalFineTuning(char *getbuf) | @@ -540,7 +540,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_GimbalFineTuning(char *getbuf) | ||
540 | static int Uart_DEV2_RecvDeal_CheckStatus_PLayFileName(char *getbuf) | 540 | static int Uart_DEV2_RecvDeal_CheckStatus_PLayFileName(char *getbuf) |
541 | { | 541 | { |
542 | //查询播放文件名 | 542 | //查询播放文件名 |
543 | - USER_LOG_INFO("查询播放文件名\n"); | 543 | + JZSDK_LOG_INFO("查询播放文件名\n"); |
544 | //获取帧的序列号 | 544 | //获取帧的序列号 |
545 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 545 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
546 | 546 | ||
@@ -549,7 +549,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_PLayFileName(char *getbuf) | @@ -549,7 +549,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_PLayFileName(char *getbuf) | ||
549 | int MusicName_Len; | 549 | int MusicName_Len; |
550 | JZsdk_Uart_CheckStatus_PlayFileName(MusicName, &MusicName_Len); | 550 | JZsdk_Uart_CheckStatus_PlayFileName(MusicName, &MusicName_Len); |
551 | 551 | ||
552 | - USER_LOG_INFO("当前播放的是%s %d\n",MusicName, MusicName_Len); | 552 | + JZSDK_LOG_INFO("当前播放的是%s %d\n",MusicName, MusicName_Len); |
553 | 553 | ||
554 | //回复操作成功 | 554 | //回复操作成功 |
555 | //JZsdk_Uart_SendDeal_Reply_Sucesss(UART_DEV_2, FrameSequence); | 555 | //JZsdk_Uart_SendDeal_Reply_Sucesss(UART_DEV_2, FrameSequence); |
@@ -566,7 +566,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_PLayFileName(char *getbuf) | @@ -566,7 +566,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_PLayFileName(char *getbuf) | ||
566 | static int Uart_DEV2_RecvDeal_CheckStatus_SoftwareVersion(char *getbuf) | 566 | static int Uart_DEV2_RecvDeal_CheckStatus_SoftwareVersion(char *getbuf) |
567 | { | 567 | { |
568 | //查询软件版本号 | 568 | //查询软件版本号 |
569 | - USER_LOG_INFO("查询软件版本号\n"); | 569 | + JZSDK_LOG_INFO("查询软件版本号\n"); |
570 | //获取帧的序列号 | 570 | //获取帧的序列号 |
571 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 571 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
572 | 572 | ||
@@ -577,7 +577,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_SoftwareVersion(char *getbuf) | @@ -577,7 +577,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_SoftwareVersion(char *getbuf) | ||
577 | 577 | ||
578 | //1、获取版本号 | 578 | //1、获取版本号 |
579 | JZsdk_Uart_CheckStatus_SoftwareVersion(&majorVersion, &minorVersion, &modifyVersion, &debugVersion); | 579 | JZsdk_Uart_CheckStatus_SoftwareVersion(&majorVersion, &minorVersion, &modifyVersion, &debugVersion); |
580 | - USER_LOG_INFO("当前的软件版本号为:%2x, %2x, %2x, %2x",majorVersion, minorVersion, modifyVersion, debugVersion); | 580 | + JZSDK_LOG_INFO("当前的软件版本号为:%2x, %2x, %2x, %2x",majorVersion, minorVersion, modifyVersion, debugVersion); |
581 | 581 | ||
582 | //回复操作成功 | 582 | //回复操作成功 |
583 | //JZsdk_Uart_SendDeal_Reply_Sucesss(UART_DEV_2, FrameSequence); | 583 | //JZsdk_Uart_SendDeal_Reply_Sucesss(UART_DEV_2, FrameSequence); |
@@ -594,7 +594,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_SoftwareVersion(char *getbuf) | @@ -594,7 +594,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_SoftwareVersion(char *getbuf) | ||
594 | static int Uart_DEV2_RecvDeal_CheckStatus_LoopPlay(char *getbuf) | 594 | static int Uart_DEV2_RecvDeal_CheckStatus_LoopPlay(char *getbuf) |
595 | { | 595 | { |
596 | //查询是否打开循环 | 596 | //查询是否打开循环 |
597 | - USER_LOG_INFO("查询是否打开循环\n"); | 597 | + JZSDK_LOG_INFO("查询是否打开循环\n"); |
598 | //获取帧的序列号 | 598 | //获取帧的序列号 |
599 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 599 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
600 | 600 | ||
@@ -602,7 +602,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_LoopPlay(char *getbuf) | @@ -602,7 +602,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_LoopPlay(char *getbuf) | ||
602 | int LoopStatus = JZsdk_Uart_CheckStatus_LoopPlay(); | 602 | int LoopStatus = JZsdk_Uart_CheckStatus_LoopPlay(); |
603 | if (LoopStatus < 0) | 603 | if (LoopStatus < 0) |
604 | { | 604 | { |
605 | - USER_LOG_INFO("循环状态获取失败"); | 605 | + JZSDK_LOG_INFO("循环状态获取失败"); |
606 | return -1; | 606 | return -1; |
607 | } | 607 | } |
608 | 608 | ||
@@ -621,7 +621,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_LoopPlay(char *getbuf) | @@ -621,7 +621,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_LoopPlay(char *getbuf) | ||
621 | static int Uart_DEV2_RecvDeal_CheckStatus_TTS_tone(char *getbuf) | 621 | static int Uart_DEV2_RecvDeal_CheckStatus_TTS_tone(char *getbuf) |
622 | { | 622 | { |
623 | //查询音色 | 623 | //查询音色 |
624 | - USER_LOG_INFO("查询音色\n"); | 624 | + JZSDK_LOG_INFO("查询音色\n"); |
625 | //获取帧的序列号 | 625 | //获取帧的序列号 |
626 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 626 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
627 | 627 | ||
@@ -629,7 +629,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_TTS_tone(char *getbuf) | @@ -629,7 +629,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_TTS_tone(char *getbuf) | ||
629 | int TTS_tone = JZsdk_Uart_CheckStatus_TTS_tone(); | 629 | int TTS_tone = JZsdk_Uart_CheckStatus_TTS_tone(); |
630 | if (TTS_tone < 0) | 630 | if (TTS_tone < 0) |
631 | { | 631 | { |
632 | - USER_LOG_INFO("音色获取失败"); | 632 | + JZSDK_LOG_INFO("音色获取失败"); |
633 | return -1; | 633 | return -1; |
634 | } | 634 | } |
635 | 635 | ||
@@ -649,7 +649,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_TTS_tone(char *getbuf) | @@ -649,7 +649,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_TTS_tone(char *getbuf) | ||
649 | static int Uart_DEV2_RecvDeal_CheckStatus_TTS_speed(char *getbuf) | 649 | static int Uart_DEV2_RecvDeal_CheckStatus_TTS_speed(char *getbuf) |
650 | { | 650 | { |
651 | //查询语速 | 651 | //查询语速 |
652 | - USER_LOG_INFO("查询语速\n"); | 652 | + JZSDK_LOG_INFO("查询语速\n"); |
653 | //获取帧的序列号 | 653 | //获取帧的序列号 |
654 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 654 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
655 | 655 | ||
@@ -657,7 +657,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_TTS_speed(char *getbuf) | @@ -657,7 +657,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_TTS_speed(char *getbuf) | ||
657 | int TTS_speed = JZsdk_Uart_CheckStatus_TTS_speed(); | 657 | int TTS_speed = JZsdk_Uart_CheckStatus_TTS_speed(); |
658 | if (TTS_speed < 0) | 658 | if (TTS_speed < 0) |
659 | { | 659 | { |
660 | - USER_LOG_INFO("语速获取失败"); | 660 | + JZSDK_LOG_INFO("语速获取失败"); |
661 | return -1; | 661 | return -1; |
662 | } | 662 | } |
663 | 663 | ||
@@ -678,7 +678,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_TTS_speed(char *getbuf) | @@ -678,7 +678,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_TTS_speed(char *getbuf) | ||
678 | **********/ | 678 | **********/ |
679 | static int Uart_DEV2_RecvDeal_PlayLoop(char *getbuf) | 679 | static int Uart_DEV2_RecvDeal_PlayLoop(char *getbuf) |
680 | { | 680 | { |
681 | - USER_LOG_INFO("开启关闭循环\n"); | 681 | + JZSDK_LOG_INFO("开启关闭循环\n"); |
682 | //获取帧的序列号 | 682 | //获取帧的序列号 |
683 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 683 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
684 | 684 | ||
@@ -708,7 +708,7 @@ static int Uart_DEV2_RecvDeal_PlayLoop(char *getbuf) | @@ -708,7 +708,7 @@ static int Uart_DEV2_RecvDeal_PlayLoop(char *getbuf) | ||
708 | **********/ | 708 | **********/ |
709 | static int Uart_DEV2_RecvDeal_Delete_Audio(char *getbuf) | 709 | static int Uart_DEV2_RecvDeal_Delete_Audio(char *getbuf) |
710 | { | 710 | { |
711 | - USER_LOG_INFO("删除音频操作\n"); | 711 | + JZSDK_LOG_INFO("删除音频操作\n"); |
712 | //获取帧的序列号 | 712 | //获取帧的序列号 |
713 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 713 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
714 | 714 | ||
@@ -741,7 +741,7 @@ static int Uart_DEV2_RecvDeal_Delete_Audio(char *getbuf) | @@ -741,7 +741,7 @@ static int Uart_DEV2_RecvDeal_Delete_Audio(char *getbuf) | ||
741 | **********/ | 741 | **********/ |
742 | static int Uart_DEV2_RecvDeal_Delete_VoiceRecord(char *getbuf) | 742 | static int Uart_DEV2_RecvDeal_Delete_VoiceRecord(char *getbuf) |
743 | { | 743 | { |
744 | - USER_LOG_INFO("删除录音操作\n"); | 744 | + JZSDK_LOG_INFO("删除录音操作\n"); |
745 | //获取帧的序列号 | 745 | //获取帧的序列号 |
746 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 746 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
747 | 747 | ||
@@ -783,7 +783,7 @@ static int Uart_DEV2_RecvDeal_Delete_VideoRecord() | @@ -783,7 +783,7 @@ static int Uart_DEV2_RecvDeal_Delete_VideoRecord() | ||
783 | **********/ | 783 | **********/ |
784 | static int Uart_DEV2_RecvDeal_TTS_SetTone(char *getbuf) | 784 | static int Uart_DEV2_RecvDeal_TTS_SetTone(char *getbuf) |
785 | { | 785 | { |
786 | - USER_LOG_INFO("tts设置音色\n"); | 786 | + JZSDK_LOG_INFO("tts设置音色\n"); |
787 | //获取帧的序列号 | 787 | //获取帧的序列号 |
788 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 788 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
789 | 789 | ||
@@ -811,16 +811,16 @@ static int Uart_DEV2_RecvDeal_TTS_SetTone(char *getbuf) | @@ -811,16 +811,16 @@ static int Uart_DEV2_RecvDeal_TTS_SetTone(char *getbuf) | ||
811 | **********/ | 811 | **********/ |
812 | static int Uart_DEV2_RecvDeal_TTS_SetSpeed(char *getbuf) | 812 | static int Uart_DEV2_RecvDeal_TTS_SetSpeed(char *getbuf) |
813 | { | 813 | { |
814 | - USER_LOG_INFO("设置语速\n"); | 814 | + JZSDK_LOG_INFO("设置语速\n"); |
815 | //获取帧的序列号 | 815 | //获取帧的序列号 |
816 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 816 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
817 | 817 | ||
818 | //1、从帧数据从获取语速 | 818 | //1、从帧数据从获取语速 |
819 | int speed = (int)getbuf[9]; | 819 | int speed = (int)getbuf[9]; |
820 | - USER_LOG_INFO("获取的语速为:%d",speed); | 820 | + JZSDK_LOG_INFO("获取的语速为:%d",speed); |
821 | if (speed > 100 || speed < 0) | 821 | if (speed > 100 || speed < 0) |
822 | { | 822 | { |
823 | - USER_LOG_INFO("语速超出范围\n"); | 823 | + JZSDK_LOG_INFO("语速超出范围\n"); |
824 | 824 | ||
825 | //回复操作失败 | 825 | //回复操作失败 |
826 | JZsdk_Uart_SendDeal_Reply_Failure(UART_DEV_2, FrameSequence); | 826 | JZsdk_Uart_SendDeal_Reply_Failure(UART_DEV_2, FrameSequence); |
@@ -851,12 +851,12 @@ static int Uart_DEV2_RecvDeal_TTS_SetSpeed(char *getbuf) | @@ -851,12 +851,12 @@ static int Uart_DEV2_RecvDeal_TTS_SetSpeed(char *getbuf) | ||
851 | // 0x5A 0x5A 0x77 0x00 0x0c 0x00 0x00 0x57 0x04 0x00 0x00 0x23 结束TTS发送 | 851 | // 0x5A 0x5A 0x77 0x00 0x0c 0x00 0x00 0x57 0x04 0x00 0x00 0x23 结束TTS发送 |
852 | static int Uart_DEV2_RecvDeal_TTS_Trans_start(char *getbuf) | 852 | static int Uart_DEV2_RecvDeal_TTS_Trans_start(char *getbuf) |
853 | { | 853 | { |
854 | - USER_LOG_INFO("tts开始传输"); | 854 | + JZSDK_LOG_INFO("tts开始传输"); |
855 | //获取帧的序列号 | 855 | //获取帧的序列号 |
856 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 856 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
857 | 857 | ||
858 | //1、重置缓冲区 | 858 | //1、重置缓冲区 |
859 | - memset(TTS_Recv_buffer, '\0', 1009); | 859 | + memset(TTS_Recv_buffer, 0, 1009); |
860 | 860 | ||
861 | //2、重置缓冲区长度 | 861 | //2、重置缓冲区长度 |
862 | TTS_Recv_buffer_length = 0; | 862 | TTS_Recv_buffer_length = 0; |
@@ -875,7 +875,7 @@ static int Uart_DEV2_RecvDeal_TTS_Trans_start(char *getbuf) | @@ -875,7 +875,7 @@ static int Uart_DEV2_RecvDeal_TTS_Trans_start(char *getbuf) | ||
875 | **********/ | 875 | **********/ |
876 | static int Uart_DEV2_RecvDeal_TTS_Trans_transmission(char *getdata, int len) | 876 | static int Uart_DEV2_RecvDeal_TTS_Trans_transmission(char *getdata, int len) |
877 | { | 877 | { |
878 | - USER_LOG_INFO("tts传输中"); | 878 | + JZSDK_LOG_INFO("tts传输中"); |
879 | 879 | ||
880 | if (TTS_Recv_buffer_length+len < 1000) | 880 | if (TTS_Recv_buffer_length+len < 1000) |
881 | { | 881 | { |
@@ -887,9 +887,10 @@ static int Uart_DEV2_RecvDeal_TTS_Trans_transmission(char *getdata, int len) | @@ -887,9 +887,10 @@ static int Uart_DEV2_RecvDeal_TTS_Trans_transmission(char *getdata, int len) | ||
887 | } | 887 | } |
888 | else | 888 | else |
889 | { | 889 | { |
890 | - USER_LOG_ERROR("TTS字数超出1000字"); | 890 | + JZSDK_LOG_ERROR("TTS字数超出1000字节"); |
891 | } | 891 | } |
892 | } | 892 | } |
893 | + | ||
893 | /********* | 894 | /********* |
894 | * | 895 | * |
895 | * tts传输结束 | 896 | * tts传输结束 |
@@ -898,12 +899,13 @@ static int Uart_DEV2_RecvDeal_TTS_Trans_transmission(char *getdata, int len) | @@ -898,12 +899,13 @@ static int Uart_DEV2_RecvDeal_TTS_Trans_transmission(char *getdata, int len) | ||
898 | **********/ | 899 | **********/ |
899 | static int Uart_DEV2_RecvDeal_TTS_Trans_stop(char *getbuf) | 900 | static int Uart_DEV2_RecvDeal_TTS_Trans_stop(char *getbuf) |
900 | { | 901 | { |
901 | - USER_LOG_INFO("tts传输结束"); | 902 | + JZSDK_LOG_INFO("tts传输结束"); |
902 | //获取帧的序列号 | 903 | //获取帧的序列号 |
903 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 904 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
904 | 905 | ||
906 | + | ||
905 | //1、打印一次TTS文本 | 907 | //1、打印一次TTS文本 |
906 | - USER_LOG_INFO("TTS播放%s",TTS_Recv_buffer); | 908 | + JZSDK_LOG_INFO("TTS播放%s",TTS_Recv_buffer); |
907 | 909 | ||
908 | //2、播放TTS | 910 | //2、播放TTS |
909 | JZsdk_Uart_TTS_Play(UART_DEV_2, TTS_Recv_buffer, TTS_Recv_buffer_length); | 911 | JZsdk_Uart_TTS_Play(UART_DEV_2, TTS_Recv_buffer, TTS_Recv_buffer_length); |
@@ -921,7 +923,7 @@ static int Uart_DEV2_RecvDeal_TTS_Trans_stop(char *getbuf) | @@ -921,7 +923,7 @@ static int Uart_DEV2_RecvDeal_TTS_Trans_stop(char *getbuf) | ||
921 | **********/ | 923 | **********/ |
922 | static int Uart_DEV2_RecvDeal_OpusTrans_start(char *getbuf) | 924 | static int Uart_DEV2_RecvDeal_OpusTrans_start(char *getbuf) |
923 | { | 925 | { |
924 | - USER_LOG_INFO("打开opus传输\n"); | 926 | + JZSDK_LOG_INFO("打开opus传输\n"); |
925 | //获取帧的序列号 | 927 | //获取帧的序列号 |
926 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 928 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
927 | 929 | ||
@@ -938,7 +940,7 @@ static int Uart_DEV2_RecvDeal_OpusTrans_start(char *getbuf) | @@ -938,7 +940,7 @@ static int Uart_DEV2_RecvDeal_OpusTrans_start(char *getbuf) | ||
938 | //3、修改接收模式为传输opus | 940 | //3、修改接收模式为传输opus |
939 | JZsdk_Uart_RecvDeal_Set_UART_DEV2_Receive_mode(JZ_INSCODE_5AFRAME_OPUS_TRANS_TRANSMISSION); | 941 | JZsdk_Uart_RecvDeal_Set_UART_DEV2_Receive_mode(JZ_INSCODE_5AFRAME_OPUS_TRANS_TRANSMISSION); |
940 | 942 | ||
941 | - USER_LOG_INFO("已完成打开opus传输处理\n"); | 943 | + JZSDK_LOG_INFO("已完成打开opus传输处理\n"); |
942 | 944 | ||
943 | //回复操作成功 | 945 | //回复操作成功 |
944 | JZsdk_Uart_SendDeal_Reply_Sucesss(UART_DEV_2, FrameSequence); | 946 | JZsdk_Uart_SendDeal_Reply_Sucesss(UART_DEV_2, FrameSequence); |
@@ -953,7 +955,7 @@ static int Uart_DEV2_RecvDeal_OpusTrans_transmission(char *SaveData, int size) | @@ -953,7 +955,7 @@ static int Uart_DEV2_RecvDeal_OpusTrans_transmission(char *SaveData, int size) | ||
953 | { | 955 | { |
954 | JZsdk_Uart_SaveOpusTrans(SaveData,size); | 956 | JZsdk_Uart_SaveOpusTrans(SaveData,size); |
955 | 957 | ||
956 | - USER_LOG_INFO("已完成opus传输保存处理\n"); | 958 | + JZSDK_LOG_INFO("已完成opus传输保存处理\n"); |
957 | } | 959 | } |
958 | /********* | 960 | /********* |
959 | * | 961 | * |
@@ -963,13 +965,13 @@ static int Uart_DEV2_RecvDeal_OpusTrans_transmission(char *SaveData, int size) | @@ -963,13 +965,13 @@ static int Uart_DEV2_RecvDeal_OpusTrans_transmission(char *SaveData, int size) | ||
963 | **********/ | 965 | **********/ |
964 | static int Uart_DEV2_RecvDeal_OpusTrans_stop(char *getbuf) | 966 | static int Uart_DEV2_RecvDeal_OpusTrans_stop(char *getbuf) |
965 | { | 967 | { |
966 | - USER_LOG_INFO("结束opus传输\n"); | 968 | + JZSDK_LOG_INFO("结束opus传输\n"); |
967 | //获取帧的序列号 | 969 | //获取帧的序列号 |
968 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 970 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
969 | 971 | ||
970 | JZsdk_Uart_SaveOpusStop(); | 972 | JZsdk_Uart_SaveOpusStop(); |
971 | 973 | ||
972 | - USER_LOG_INFO("结束opus传输处理\n"); | 974 | + JZSDK_LOG_INFO("结束opus传输处理\n"); |
973 | 975 | ||
974 | //回复操作成功 | 976 | //回复操作成功 |
975 | JZsdk_Uart_SendDeal_Reply_Sucesss(UART_DEV_2, FrameSequence); | 977 | JZsdk_Uart_SendDeal_Reply_Sucesss(UART_DEV_2, FrameSequence); |
@@ -982,7 +984,7 @@ static int Uart_DEV2_RecvDeal_OpusTrans_stop(char *getbuf) | @@ -982,7 +984,7 @@ static int Uart_DEV2_RecvDeal_OpusTrans_stop(char *getbuf) | ||
982 | **********/ | 984 | **********/ |
983 | static int Uart_DEV2_RecvDeal_OpusPlay(char *getbuf) | 985 | static int Uart_DEV2_RecvDeal_OpusPlay(char *getbuf) |
984 | { | 986 | { |
985 | - USER_LOG_INFO("opus播放\n"); | 987 | + JZSDK_LOG_INFO("opus播放\n"); |
986 | //获取帧的序列号 | 988 | //获取帧的序列号 |
987 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 989 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
988 | 990 | ||
@@ -1002,7 +1004,7 @@ static int Uart_DEV2_RecvDeal_OpusPlay(char *getbuf) | @@ -1002,7 +1004,7 @@ static int Uart_DEV2_RecvDeal_OpusPlay(char *getbuf) | ||
1002 | **********/ | 1004 | **********/ |
1003 | static int Uart_DEV2_RecvDeal_Opus_RealTimeVoice_start(char *getbuf) | 1005 | static int Uart_DEV2_RecvDeal_Opus_RealTimeVoice_start(char *getbuf) |
1004 | { | 1006 | { |
1005 | - USER_LOG_INFO("开启opus实时喊话功能\n"); | 1007 | + JZSDK_LOG_INFO("开启opus实时喊话功能\n"); |
1006 | //获取帧的序列号 | 1008 | //获取帧的序列号 |
1007 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1009 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1008 | 1010 | ||
@@ -1037,7 +1039,7 @@ static int Uart_DEV2_RecvDeal_Opus_RealTimeVoice_start(char *getbuf) | @@ -1037,7 +1039,7 @@ static int Uart_DEV2_RecvDeal_Opus_RealTimeVoice_start(char *getbuf) | ||
1037 | **********/ | 1039 | **********/ |
1038 | static int Uart_DEV2_RecvDeal_Opus_RealTimeVoice_transmission(char *getdata, int len) | 1040 | static int Uart_DEV2_RecvDeal_Opus_RealTimeVoice_transmission(char *getdata, int len) |
1039 | { | 1041 | { |
1040 | - USER_LOG_INFO("opus语音传输中\n"); | 1042 | + JZSDK_LOG_INFO("opus语音传输中\n"); |
1041 | JZsdk_Uart_RealTimeVoiceTrans(getdata, len); | 1043 | JZsdk_Uart_RealTimeVoiceTrans(getdata, len); |
1042 | 1044 | ||
1043 | } | 1045 | } |
@@ -1049,7 +1051,7 @@ static int Uart_DEV2_RecvDeal_Opus_RealTimeVoice_transmission(char *getdata, int | @@ -1049,7 +1051,7 @@ static int Uart_DEV2_RecvDeal_Opus_RealTimeVoice_transmission(char *getdata, int | ||
1049 | **********/ | 1051 | **********/ |
1050 | static int Uart_DEV2_RecvDeal_Opus_RealTimeVoice_stop(char *getbuf) | 1052 | static int Uart_DEV2_RecvDeal_Opus_RealTimeVoice_stop(char *getbuf) |
1051 | { | 1053 | { |
1052 | - USER_LOG_INFO("关闭opus实时喊话功能\n"); | 1054 | + JZSDK_LOG_INFO("关闭opus实时喊话功能\n"); |
1053 | //获取帧的序列号 | 1055 | //获取帧的序列号 |
1054 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1056 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1055 | 1057 | ||
@@ -1079,7 +1081,7 @@ static int Uart_DEV2_RecvDeal_Opus_RealTimeVoice_stop(char *getbuf) | @@ -1079,7 +1081,7 @@ static int Uart_DEV2_RecvDeal_Opus_RealTimeVoice_stop(char *getbuf) | ||
1079 | **********/ | 1081 | **********/ |
1080 | static int Uart_DEV2_RecvDeal_Gimbal_PitchControl(char *getbuf) | 1082 | static int Uart_DEV2_RecvDeal_Gimbal_PitchControl(char *getbuf) |
1081 | { | 1083 | { |
1082 | - USER_LOG_INFO("云台俯仰控制\n"); | 1084 | + JZSDK_LOG_INFO("云台俯仰控制\n"); |
1083 | //获取帧的序列号 | 1085 | //获取帧的序列号 |
1084 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1086 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1085 | 1087 | ||
@@ -1100,13 +1102,13 @@ static int Uart_DEV2_RecvDeal_Gimbal_PitchControl(char *getbuf) | @@ -1100,13 +1102,13 @@ static int Uart_DEV2_RecvDeal_Gimbal_PitchControl(char *getbuf) | ||
1100 | } | 1102 | } |
1101 | else | 1103 | else |
1102 | { | 1104 | { |
1103 | - USER_LOG_INFO("云台输入角度符号错误,无法正常控制"); | 1105 | + JZSDK_LOG_INFO("云台输入角度符号错误,无法正常控制"); |
1104 | //回复操作失败 | 1106 | //回复操作失败 |
1105 | JZsdk_Uart_SendDeal_Reply_Failure(UART_DEV_2, FrameSequence); | 1107 | JZsdk_Uart_SendDeal_Reply_Failure(UART_DEV_2, FrameSequence); |
1106 | return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; | 1108 | return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; |
1107 | } | 1109 | } |
1108 | 1110 | ||
1109 | - USER_LOG_INFO("处理得到的角度是%d",Gimbal_angle); | 1111 | + JZSDK_LOG_INFO("处理得到的角度是%d",Gimbal_angle); |
1110 | 1112 | ||
1111 | T_JZsdkReturnCode ret = JZsdk_Uart_Gimbal_PitchControl(UART_DEV_2, Gimbal_angle); | 1113 | T_JZsdkReturnCode ret = JZsdk_Uart_Gimbal_PitchControl(UART_DEV_2, Gimbal_angle); |
1112 | if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | 1114 | if (ret == JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) |
@@ -1129,7 +1131,7 @@ static int Uart_DEV2_RecvDeal_Gimbal_PitchControl(char *getbuf) | @@ -1129,7 +1131,7 @@ static int Uart_DEV2_RecvDeal_Gimbal_PitchControl(char *getbuf) | ||
1129 | **********/ | 1131 | **********/ |
1130 | static int Uart_DEV2_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | 1132 | static int Uart_DEV2_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) |
1131 | { | 1133 | { |
1132 | - USER_LOG_INFO("云台俯仰微调角度\n"); | 1134 | + JZSDK_LOG_INFO("云台俯仰微调角度\n"); |
1133 | //获取帧的序列号 | 1135 | //获取帧的序列号 |
1134 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1136 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1135 | 1137 | ||
@@ -1137,7 +1139,7 @@ static int Uart_DEV2_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | @@ -1137,7 +1139,7 @@ static int Uart_DEV2_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | ||
1137 | int Gimbal_signal = getbuf[9]; | 1139 | int Gimbal_signal = getbuf[9]; |
1138 | 1140 | ||
1139 | //2、通过云台控制帧 获取云台角度绝对值 | 1141 | //2、通过云台控制帧 获取云台角度绝对值 |
1140 | - int Gimbal_angle = ((int)getbuf[10]) ; | 1142 | + int Gimbal_angle = (((int)getbuf[10]) << 8 ) + getbuf[11]; |
1141 | 1143 | ||
1142 | //3、拼接得到云台值 | 1144 | //3、拼接得到云台值 |
1143 | if (Gimbal_signal == 0x00) | 1145 | if (Gimbal_signal == 0x00) |
@@ -1150,13 +1152,13 @@ static int Uart_DEV2_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | @@ -1150,13 +1152,13 @@ static int Uart_DEV2_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | ||
1150 | } | 1152 | } |
1151 | else | 1153 | else |
1152 | { | 1154 | { |
1153 | - USER_LOG_INFO("云台俯仰微调角度符号错误,无法正常控制"); | 1155 | + JZSDK_LOG_INFO("云台俯仰微调角度符号错误,无法正常控制"); |
1154 | //回复操作失败 | 1156 | //回复操作失败 |
1155 | JZsdk_Uart_SendDeal_Reply_Failure(UART_DEV_2, FrameSequence); | 1157 | JZsdk_Uart_SendDeal_Reply_Failure(UART_DEV_2, FrameSequence); |
1156 | return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; | 1158 | return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; |
1157 | } | 1159 | } |
1158 | 1160 | ||
1159 | - USER_LOG_INFO("处理得到云台俯仰微调角度是%d",Gimbal_angle); | 1161 | + JZSDK_LOG_INFO("处理得到云台俯仰微调角度是%d",Gimbal_angle); |
1160 | 1162 | ||
1161 | JZsdk_Uart_Gimbal_PitchFineTuningControl(UART_DEV_2, FrameSequence ,Gimbal_angle); | 1163 | JZsdk_Uart_Gimbal_PitchFineTuningControl(UART_DEV_2, FrameSequence ,Gimbal_angle); |
1162 | 1164 | ||
@@ -1177,7 +1179,7 @@ static int Uart_DEV2_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | @@ -1177,7 +1179,7 @@ static int Uart_DEV2_RecvDeal_Gimbal_PitchFineTuningControl(char *getbuf) | ||
1177 | **********/ | 1179 | **********/ |
1178 | static int Uart_DEV2_RecvDeal_SearchLight_SetFrequency(char *getbuf) | 1180 | static int Uart_DEV2_RecvDeal_SearchLight_SetFrequency(char *getbuf) |
1179 | { | 1181 | { |
1180 | - USER_LOG_INFO("设置爆闪频率\n"); | 1182 | + JZSDK_LOG_INFO("设置爆闪频率\n"); |
1181 | //获取帧的序列号 | 1183 | //获取帧的序列号 |
1182 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1184 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1183 | 1185 | ||
@@ -1204,7 +1206,7 @@ static int Uart_DEV2_RecvDeal_SearchLight_SetFrequency(char *getbuf) | @@ -1204,7 +1206,7 @@ static int Uart_DEV2_RecvDeal_SearchLight_SetFrequency(char *getbuf) | ||
1204 | **********/ | 1206 | **********/ |
1205 | static int Uart_DEV2_RecvDeal_SearchLight_Control(char *getbuf) | 1207 | static int Uart_DEV2_RecvDeal_SearchLight_Control(char *getbuf) |
1206 | { | 1208 | { |
1207 | - USER_LOG_INFO("设置灯光控制\n"); | 1209 | + JZSDK_LOG_INFO("设置灯光控制\n"); |
1208 | //获取帧的序列号 | 1210 | //获取帧的序列号 |
1209 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1211 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1210 | 1212 | ||
@@ -1231,7 +1233,7 @@ static int Uart_DEV2_RecvDeal_SearchLight_Control(char *getbuf) | @@ -1231,7 +1233,7 @@ static int Uart_DEV2_RecvDeal_SearchLight_Control(char *getbuf) | ||
1231 | **********/ | 1233 | **********/ |
1232 | static int Uart_DEV2_RecvDeal_SearchLight_Lumen(char *getbuf) | 1234 | static int Uart_DEV2_RecvDeal_SearchLight_Lumen(char *getbuf) |
1233 | { | 1235 | { |
1234 | - USER_LOG_INFO("设置灯光亮度\n"); | 1236 | + JZSDK_LOG_INFO("设置灯光亮度\n"); |
1235 | //获取帧的序列号 | 1237 | //获取帧的序列号 |
1236 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1238 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1237 | 1239 | ||
@@ -1259,7 +1261,7 @@ static int Uart_DEV2_RecvDeal_SearchLight_Lumen(char *getbuf) | @@ -1259,7 +1261,7 @@ static int Uart_DEV2_RecvDeal_SearchLight_Lumen(char *getbuf) | ||
1259 | **********/ | 1261 | **********/ |
1260 | static int Uart_DEV2_RecvDeal_CheckStatus_SearchLightLightAttribute(char *getbuf) | 1262 | static int Uart_DEV2_RecvDeal_CheckStatus_SearchLightLightAttribute(char *getbuf) |
1261 | { | 1263 | { |
1262 | - USER_LOG_INFO("灯光属性查询\n"); | 1264 | + JZSDK_LOG_INFO("灯光属性查询\n"); |
1263 | //1、获取帧的序列号 | 1265 | //1、获取帧的序列号 |
1264 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1266 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1265 | 1267 | ||
@@ -1275,7 +1277,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_SearchLightLightAttribute(char *getbuf | @@ -1275,7 +1277,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_SearchLightLightAttribute(char *getbuf | ||
1275 | **********/ | 1277 | **********/ |
1276 | static int Uart_DEV2_RecvDeal_CheckStatus_SearchLightTemperture(char *getbuf) | 1278 | static int Uart_DEV2_RecvDeal_CheckStatus_SearchLightTemperture(char *getbuf) |
1277 | { | 1279 | { |
1278 | - USER_LOG_INFO("探照灯温度查询\n"); | 1280 | + JZSDK_LOG_INFO("探照灯温度查询\n"); |
1279 | //1、获取帧的序列号 | 1281 | //1、获取帧的序列号 |
1280 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1282 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1281 | 1283 | ||
@@ -1290,7 +1292,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_SearchLightTemperture(char *getbuf) | @@ -1290,7 +1292,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_SearchLightTemperture(char *getbuf) | ||
1290 | **********/ | 1292 | **********/ |
1291 | static int Uart_DEV2_RecvDeal_SearchLight_SubscriptionControl(char *getbuf) | 1293 | static int Uart_DEV2_RecvDeal_SearchLight_SubscriptionControl(char *getbuf) |
1292 | { | 1294 | { |
1293 | - USER_LOG_INFO("消息订阅控制\n"); | 1295 | + JZSDK_LOG_INFO("消息订阅控制\n"); |
1294 | //获取帧的序列号 | 1296 | //获取帧的序列号 |
1295 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1297 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1296 | 1298 | ||
@@ -1310,6 +1312,55 @@ static int Uart_DEV2_RecvDeal_SearchLight_SubscriptionControl(char *getbuf) | @@ -1310,6 +1312,55 @@ static int Uart_DEV2_RecvDeal_SearchLight_SubscriptionControl(char *getbuf) | ||
1310 | } | 1312 | } |
1311 | } | 1313 | } |
1312 | 1314 | ||
1315 | +/********* | ||
1316 | + * | ||
1317 | + * 查询产品序列号 | ||
1318 | + * | ||
1319 | +**********/ | ||
1320 | +static int Uart_DEV2_RecvDeal_CheckStatus_SerialNumber(char *getbuf) | ||
1321 | +{ | ||
1322 | + JZSDK_LOG_INFO("消息订阅控制\n"); | ||
1323 | + //获取帧的序列号 | ||
1324 | + int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | ||
1325 | + | ||
1326 | + JZsdk_Uart_CheckStatus_SerialNumber(UART_DEV_2, FrameSequence); | ||
1327 | + | ||
1328 | +} | ||
1329 | + | ||
1330 | +/********* | ||
1331 | + * | ||
1332 | + * 对外供电开关 | ||
1333 | + * | ||
1334 | +**********/ | ||
1335 | +static int Uart_DEV2_RecvDeal_OutPutPower_Control(char *getbuf) | ||
1336 | +{ | ||
1337 | + printf("对外电源控制\n"); | ||
1338 | + //获取帧的序列号 | ||
1339 | + int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | ||
1340 | + | ||
1341 | + //获取控制值 | ||
1342 | + int Value = getbuf[9]; | ||
1343 | + | ||
1344 | + //控制 | ||
1345 | + JZsdk_Uart_OutPutPower_Control(UART_DEV_2, FrameSequence, Value); | ||
1346 | +} | ||
1347 | + | ||
1348 | +/********* | ||
1349 | + * | ||
1350 | + * 对外电源查询 | ||
1351 | + * | ||
1352 | +**********/ | ||
1353 | +static int Uart_DEV2_RecvDeal_Checkstatus_OutPutPower(char *getbuf) | ||
1354 | +{ | ||
1355 | + printf("对外电源查询\n"); | ||
1356 | + | ||
1357 | + //获取帧的序列号 | ||
1358 | + int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | ||
1359 | + | ||
1360 | + //获取本地数值 | ||
1361 | + JZsdk_Uart_Checkstatus_OutPutPower(UART_DEV_2, FrameSequence); | ||
1362 | +} | ||
1363 | + | ||
1313 | /******************************************************************************************************************************* | 1364 | /******************************************************************************************************************************* |
1314 | * | 1365 | * |
1315 | * 警灯部分 | 1366 | * 警灯部分 |
@@ -1322,7 +1373,7 @@ static int Uart_DEV2_RecvDeal_SearchLight_SubscriptionControl(char *getbuf) | @@ -1322,7 +1373,7 @@ static int Uart_DEV2_RecvDeal_SearchLight_SubscriptionControl(char *getbuf) | ||
1322 | **********/ | 1373 | **********/ |
1323 | static int Uart_DEV2_RecvDeal_WarningLight_ModeControl(char *getbuf) | 1374 | static int Uart_DEV2_RecvDeal_WarningLight_ModeControl(char *getbuf) |
1324 | { | 1375 | { |
1325 | - USER_LOG_INFO("警灯模式控制\n"); | 1376 | + JZSDK_LOG_INFO("警灯模式控制\n"); |
1326 | //获取帧的序列号 | 1377 | //获取帧的序列号 |
1327 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1378 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1328 | 1379 | ||
@@ -1350,7 +1401,7 @@ static int Uart_DEV2_RecvDeal_WarningLight_ModeControl(char *getbuf) | @@ -1350,7 +1401,7 @@ static int Uart_DEV2_RecvDeal_WarningLight_ModeControl(char *getbuf) | ||
1350 | **********/ | 1401 | **********/ |
1351 | static int Uart_DEV2_RecvDeal_WarningLight_SetColor(char *getbuf) | 1402 | static int Uart_DEV2_RecvDeal_WarningLight_SetColor(char *getbuf) |
1352 | { | 1403 | { |
1353 | - USER_LOG_INFO("警灯颜色选择\n"); | 1404 | + JZSDK_LOG_INFO("警灯颜色选择\n"); |
1354 | //获取帧的序列号 | 1405 | //获取帧的序列号 |
1355 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1406 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1356 | 1407 | ||
@@ -1378,7 +1429,7 @@ static int Uart_DEV2_RecvDeal_WarningLight_SetColor(char *getbuf) | @@ -1378,7 +1429,7 @@ static int Uart_DEV2_RecvDeal_WarningLight_SetColor(char *getbuf) | ||
1378 | **********/ | 1429 | **********/ |
1379 | static int Uart_DEV2_RecvDeal_CheckStatus_WarningLightStatus(char *getbuf) | 1430 | static int Uart_DEV2_RecvDeal_CheckStatus_WarningLightStatus(char *getbuf) |
1380 | { | 1431 | { |
1381 | - USER_LOG_INFO("警灯状态查询\n"); | 1432 | + JZSDK_LOG_INFO("警灯状态查询\n"); |
1382 | //1、获取帧的序列号 | 1433 | //1、获取帧的序列号 |
1383 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1434 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1384 | 1435 | ||
@@ -1394,7 +1445,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_WarningLightStatus(char *getbuf) | @@ -1394,7 +1445,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_WarningLightStatus(char *getbuf) | ||
1394 | **********/ | 1445 | **********/ |
1395 | static int Uart_DEV2_RecvDeal_CheckStatus_WarningLightColor(char *getbuf) | 1446 | static int Uart_DEV2_RecvDeal_CheckStatus_WarningLightColor(char *getbuf) |
1396 | { | 1447 | { |
1397 | - USER_LOG_INFO("警灯颜色查询\n"); | 1448 | + JZSDK_LOG_INFO("警灯颜色查询\n"); |
1398 | //1、获取帧的序列号 | 1449 | //1、获取帧的序列号 |
1399 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1450 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1400 | 1451 | ||
@@ -1433,7 +1484,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_WarningLightColor(char *getbuf) | @@ -1433,7 +1484,7 @@ static int Uart_DEV2_RecvDeal_CheckStatus_WarningLightColor(char *getbuf) | ||
1433 | **********/ | 1484 | **********/ |
1434 | static int Uart_DEV2_RecvDeal_ObtainSearchLight_Frequency(char *getbuf) | 1485 | static int Uart_DEV2_RecvDeal_ObtainSearchLight_Frequency(char *getbuf) |
1435 | { | 1486 | { |
1436 | - USER_LOG_INFO("收到灯光频率\n"); | 1487 | + JZSDK_LOG_INFO("收到灯光频率\n"); |
1437 | //获取帧的序列号 | 1488 | //获取帧的序列号 |
1438 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1489 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1439 | 1490 | ||
@@ -1451,7 +1502,7 @@ static int Uart_DEV2_RecvDeal_ObtainSearchLight_Frequency(char *getbuf) | @@ -1451,7 +1502,7 @@ static int Uart_DEV2_RecvDeal_ObtainSearchLight_Frequency(char *getbuf) | ||
1451 | **********/ | 1502 | **********/ |
1452 | static int Uart_DEV2_RecvDeal_ObtainSearchLight_Mode(char *getbuf) | 1503 | static int Uart_DEV2_RecvDeal_ObtainSearchLight_Mode(char *getbuf) |
1453 | { | 1504 | { |
1454 | - USER_LOG_INFO("收到灯光模式\n"); | 1505 | + JZSDK_LOG_INFO("收到灯光模式\n"); |
1455 | //获取帧的序列号 | 1506 | //获取帧的序列号 |
1456 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1507 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1457 | 1508 | ||
@@ -1469,7 +1520,7 @@ static int Uart_DEV2_RecvDeal_ObtainSearchLight_Mode(char *getbuf) | @@ -1469,7 +1520,7 @@ static int Uart_DEV2_RecvDeal_ObtainSearchLight_Mode(char *getbuf) | ||
1469 | **********/ | 1520 | **********/ |
1470 | static int Uart_DEV2_RecvDeal_ObtainSearchLight_Lumen(char *getbuf) | 1521 | static int Uart_DEV2_RecvDeal_ObtainSearchLight_Lumen(char *getbuf) |
1471 | { | 1522 | { |
1472 | - USER_LOG_INFO("收到灯光亮度\n"); | 1523 | + JZSDK_LOG_INFO("收到灯光亮度\n"); |
1473 | //获取帧的序列号 | 1524 | //获取帧的序列号 |
1474 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1525 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1475 | 1526 | ||
@@ -1488,7 +1539,7 @@ static int Uart_DEV2_RecvDeal_ObtainSearchLight_Lumen(char *getbuf) | @@ -1488,7 +1539,7 @@ static int Uart_DEV2_RecvDeal_ObtainSearchLight_Lumen(char *getbuf) | ||
1488 | **********/ | 1539 | **********/ |
1489 | static int Uart_DEV2_RecvDeal_ObtainSearchLight_Temperature(char *getbuf) | 1540 | static int Uart_DEV2_RecvDeal_ObtainSearchLight_Temperature(char *getbuf) |
1490 | { | 1541 | { |
1491 | - USER_LOG_INFO("收到探照灯温度\n"); | 1542 | + JZSDK_LOG_INFO("收到探照灯温度\n"); |
1492 | //获取帧的序列号 | 1543 | //获取帧的序列号 |
1493 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1544 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1494 | 1545 | ||
@@ -1507,7 +1558,7 @@ static int Uart_DEV2_RecvDeal_ObtainSearchLight_Temperature(char *getbuf) | @@ -1507,7 +1558,7 @@ static int Uart_DEV2_RecvDeal_ObtainSearchLight_Temperature(char *getbuf) | ||
1507 | **********/ | 1558 | **********/ |
1508 | static int Uart_DEV2_RecvDeal_ObtainGimbal_Pitch(char *getbuf) | 1559 | static int Uart_DEV2_RecvDeal_ObtainGimbal_Pitch(char *getbuf) |
1509 | { | 1560 | { |
1510 | - USER_LOG_INFO("收到云台俯仰\n"); | 1561 | + JZSDK_LOG_INFO("收到云台俯仰\n"); |
1511 | //获取帧的序列号 | 1562 | //获取帧的序列号 |
1512 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1563 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1513 | 1564 | ||
@@ -1538,7 +1589,7 @@ static int Uart_DEV2_RecvDeal_ObtainGimbal_Pitch(char *getbuf) | @@ -1538,7 +1589,7 @@ static int Uart_DEV2_RecvDeal_ObtainGimbal_Pitch(char *getbuf) | ||
1538 | **********/ | 1589 | **********/ |
1539 | static int Uart_DEV2_RecvDeal_ObtainGimbal_Yaw(char *getbuf) | 1590 | static int Uart_DEV2_RecvDeal_ObtainGimbal_Yaw(char *getbuf) |
1540 | { | 1591 | { |
1541 | - USER_LOG_INFO("收到云台航向\n"); | 1592 | + JZSDK_LOG_INFO("收到云台航向\n"); |
1542 | //获取帧的序列号 | 1593 | //获取帧的序列号 |
1543 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1594 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1544 | 1595 | ||
@@ -1576,7 +1627,7 @@ static int Uart_DEV2_RecvDeal_ObtainGimbalPitchFineTuning(char *getbuf) | @@ -1576,7 +1627,7 @@ static int Uart_DEV2_RecvDeal_ObtainGimbalPitchFineTuning(char *getbuf) | ||
1576 | int signal = getbuf[9]; | 1627 | int signal = getbuf[9]; |
1577 | 1628 | ||
1578 | //2、获取云台角度绝对值 | 1629 | //2、获取云台角度绝对值 |
1579 | - int pitch = (int)getbuf[10] ; | 1630 | + int pitch = (((int)getbuf[10]) << 8 ) + getbuf[11]; |
1580 | 1631 | ||
1581 | //3、拼接得到云台值 | 1632 | //3、拼接得到云台值 |
1582 | if (signal == 0x00) | 1633 | if (signal == 0x00) |
@@ -1598,7 +1649,7 @@ static int Uart_DEV2_RecvDeal_ObtainGimbalPitchFineTuning(char *getbuf) | @@ -1598,7 +1649,7 @@ static int Uart_DEV2_RecvDeal_ObtainGimbalPitchFineTuning(char *getbuf) | ||
1598 | **********/ | 1649 | **********/ |
1599 | static int Uart_DEV2_RecvDeal_ObtainWaringlight_Status(char *getbuf) | 1650 | static int Uart_DEV2_RecvDeal_ObtainWaringlight_Status(char *getbuf) |
1600 | { | 1651 | { |
1601 | - USER_LOG_INFO("收到警灯状态\n"); | 1652 | + JZSDK_LOG_INFO("收到警灯状态\n"); |
1602 | //获取帧的序列号 | 1653 | //获取帧的序列号 |
1603 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1654 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1604 | 1655 | ||
@@ -1617,7 +1668,7 @@ static int Uart_DEV2_RecvDeal_ObtainWaringlight_Status(char *getbuf) | @@ -1617,7 +1668,7 @@ static int Uart_DEV2_RecvDeal_ObtainWaringlight_Status(char *getbuf) | ||
1617 | **********/ | 1668 | **********/ |
1618 | static int Uart_DEV2_RecvDeal_ObtainWaringlight_Color(char *getbuf) | 1669 | static int Uart_DEV2_RecvDeal_ObtainWaringlight_Color(char *getbuf) |
1619 | { | 1670 | { |
1620 | - USER_LOG_INFO("收到警灯颜色\n"); | 1671 | + JZSDK_LOG_INFO("收到警灯颜色\n"); |
1621 | //获取帧的序列号 | 1672 | //获取帧的序列号 |
1622 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1673 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1623 | 1674 | ||
@@ -1636,7 +1687,7 @@ static int Uart_DEV2_RecvDeal_ObtainWaringlight_Color(char *getbuf) | @@ -1636,7 +1687,7 @@ static int Uart_DEV2_RecvDeal_ObtainWaringlight_Color(char *getbuf) | ||
1636 | **********/ | 1687 | **********/ |
1637 | static int Uart_DEV2_RecvDeal_ObtainSerialNumber(char *getbuf) | 1688 | static int Uart_DEV2_RecvDeal_ObtainSerialNumber(char *getbuf) |
1638 | { | 1689 | { |
1639 | - USER_LOG_INFO("收到产品序列号\n"); | 1690 | + JZSDK_LOG_INFO("收到产品序列号\n"); |
1640 | //获取帧的序列号 | 1691 | //获取帧的序列号 |
1641 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1692 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1642 | 1693 | ||
@@ -1667,7 +1718,7 @@ static int Uart_DEV2_RecvDeal_ObtainSerialNumber(char *getbuf) | @@ -1667,7 +1718,7 @@ static int Uart_DEV2_RecvDeal_ObtainSerialNumber(char *getbuf) | ||
1667 | **********/ | 1718 | **********/ |
1668 | static int Uart_DEV2_RecvDeal_QuerySecondaryDeviceName(char *getbuf) | 1719 | static int Uart_DEV2_RecvDeal_QuerySecondaryDeviceName(char *getbuf) |
1669 | { | 1720 | { |
1670 | - USER_LOG_INFO("查询当前从设备名\n"); | 1721 | + JZSDK_LOG_INFO("查询当前从设备名\n"); |
1671 | 1722 | ||
1672 | //获取帧的序列号 | 1723 | //获取帧的序列号 |
1673 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1724 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
@@ -1696,7 +1747,7 @@ static int Uart_DEV2_RecvDeal_QuerySecondaryDeviceName(char *getbuf) | @@ -1696,7 +1747,7 @@ static int Uart_DEV2_RecvDeal_QuerySecondaryDeviceName(char *getbuf) | ||
1696 | **********/ | 1747 | **********/ |
1697 | static int Uart_DEV2_RecvDeal_SetGimbalRange(char *getbuf) | 1748 | static int Uart_DEV2_RecvDeal_SetGimbalRange(char *getbuf) |
1698 | { | 1749 | { |
1699 | - USER_LOG_INFO("设置云台最大值最小值\n"); | 1750 | + JZSDK_LOG_INFO("设置云台最大值最小值\n"); |
1700 | //获取帧的序列号 | 1751 | //获取帧的序列号 |
1701 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1752 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1702 | 1753 | ||
@@ -1723,7 +1774,7 @@ static int Uart_DEV2_RecvDeal_SetGimbalRange(char *getbuf) | @@ -1723,7 +1774,7 @@ static int Uart_DEV2_RecvDeal_SetGimbalRange(char *getbuf) | ||
1723 | **********/ | 1774 | **********/ |
1724 | static int Uart_DEV2_RecvDeal_GimbalLinkageControl(char *getbuf) | 1775 | static int Uart_DEV2_RecvDeal_GimbalLinkageControl(char *getbuf) |
1725 | { | 1776 | { |
1726 | - USER_LOG_INFO("设置云台联动\n"); | 1777 | + JZSDK_LOG_INFO("设置云台联动\n"); |
1727 | 1778 | ||
1728 | //获取帧的序列号 | 1779 | //获取帧的序列号 |
1729 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1780 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
@@ -1743,7 +1794,7 @@ static int Uart_DEV2_RecvDeal_GimbalLinkageControl(char *getbuf) | @@ -1743,7 +1794,7 @@ static int Uart_DEV2_RecvDeal_GimbalLinkageControl(char *getbuf) | ||
1743 | **********/ | 1794 | **********/ |
1744 | static int Uart_DEV2_RecvDeal_Checkstatus_GimbalLinkage(char *getbuf) | 1795 | static int Uart_DEV2_RecvDeal_Checkstatus_GimbalLinkage(char *getbuf) |
1745 | { | 1796 | { |
1746 | - USER_LOG_INFO("收到查询是否开启云台联动\n"); | 1797 | + JZSDK_LOG_INFO("收到查询是否开启云台联动\n"); |
1747 | 1798 | ||
1748 | //获取帧的序列号 | 1799 | //获取帧的序列号 |
1749 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1800 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
@@ -1777,7 +1828,7 @@ static int Uart_DEV2_RecvDeal_Checkstatus_GimbalLinkage(char *getbuf) | @@ -1777,7 +1828,7 @@ static int Uart_DEV2_RecvDeal_Checkstatus_GimbalLinkage(char *getbuf) | ||
1777 | **********/ | 1828 | **********/ |
1778 | static int Uart_DEV2_RecvDeal_ObtainSecondaryDeviceName(char *getbuf) | 1829 | static int Uart_DEV2_RecvDeal_ObtainSecondaryDeviceName(char *getbuf) |
1779 | { | 1830 | { |
1780 | - USER_LOG_INFO("收到从设备名\n"); | 1831 | + JZSDK_LOG_INFO("收到从设备名\n"); |
1781 | //获取帧的序列号 | 1832 | //获取帧的序列号 |
1782 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1833 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1783 | 1834 | ||
@@ -1809,7 +1860,7 @@ static int Uart_DEV2_RecvDeal_ObtainSecondaryDeviceName(char *getbuf) | @@ -1809,7 +1860,7 @@ static int Uart_DEV2_RecvDeal_ObtainSecondaryDeviceName(char *getbuf) | ||
1809 | **********/ | 1860 | **********/ |
1810 | static int Uart_DEV2_RecvDeal_ObtainGimbalLinkage(char *getbuf) | 1861 | static int Uart_DEV2_RecvDeal_ObtainGimbalLinkage(char *getbuf) |
1811 | { | 1862 | { |
1812 | - USER_LOG_INFO("收到云台联动值\n"); | 1863 | + JZSDK_LOG_INFO("收到云台联动值\n"); |
1813 | //获取帧的序列号 | 1864 | //获取帧的序列号 |
1814 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); | 1865 | int FrameSequence = JZsdk_Get_FrameSequence(getbuf); |
1815 | 1866 | ||
@@ -1844,7 +1895,7 @@ static int Uart_DEV2_RecvDeal_ObtainGimbalLinkage(char *getbuf) | @@ -1844,7 +1895,7 @@ static int Uart_DEV2_RecvDeal_ObtainGimbalLinkage(char *getbuf) | ||
1844 | **********/ | 1895 | **********/ |
1845 | static int Uart_DEV2_RecvDeal_FrameErrorReply(char *getbuf) | 1896 | static int Uart_DEV2_RecvDeal_FrameErrorReply(char *getbuf) |
1846 | { | 1897 | { |
1847 | - USER_LOG_ERROR("帧指令错误:帧错误或者是帧无对应操作\n"); | 1898 | + JZSDK_LOG_ERROR("帧指令错误:帧错误或者是帧无对应操作\n"); |
1848 | //无法正常获取帧的序列号 | 1899 | //无法正常获取帧的序列号 |
1849 | //回复操作失败 | 1900 | //回复操作失败 |
1850 | JZsdk_Uart_SendDeal_Reply_Failure(UART_DEV_2, 0x00); | 1901 | JZsdk_Uart_SendDeal_Reply_Failure(UART_DEV_2, 0x00); |
@@ -1859,7 +1910,7 @@ static int Uart_DEV2_RecvDeal_FrameErrorReply(char *getbuf) | @@ -1859,7 +1910,7 @@ static int Uart_DEV2_RecvDeal_FrameErrorReply(char *getbuf) | ||
1859 | **********/ | 1910 | **********/ |
1860 | static int Uart_DEV2_RecvDeal_OperationSuccessful(char *getbuf) | 1911 | static int Uart_DEV2_RecvDeal_OperationSuccessful(char *getbuf) |
1861 | { | 1912 | { |
1862 | - USER_LOG_INFO("接受到操作成功\n"); | 1913 | + JZSDK_LOG_INFO("接受到操作成功\n"); |
1863 | } | 1914 | } |
1864 | 1915 | ||
1865 | /********* | 1916 | /********* |
@@ -1870,7 +1921,7 @@ static int Uart_DEV2_RecvDeal_OperationSuccessful(char *getbuf) | @@ -1870,7 +1921,7 @@ static int Uart_DEV2_RecvDeal_OperationSuccessful(char *getbuf) | ||
1870 | **********/ | 1921 | **********/ |
1871 | static int Uart_DEV2_RecvDeal_OperationFailed(char *getbuf) | 1922 | static int Uart_DEV2_RecvDeal_OperationFailed(char *getbuf) |
1872 | { | 1923 | { |
1873 | - USER_LOG_INFO("接受到操作失败\n"); | 1924 | + JZSDK_LOG_INFO("接受到操作失败\n"); |
1874 | } | 1925 | } |
1875 | /******************************************************************************************************** | 1926 | /******************************************************************************************************** |
1876 | ********* ********| | 1927 | ********* ********| |
@@ -1887,7 +1938,7 @@ static int Uart_DEV2_RecvDeal_OperationFailed(char *getbuf) | @@ -1887,7 +1938,7 @@ static int Uart_DEV2_RecvDeal_OperationFailed(char *getbuf) | ||
1887 | *********************************************************************************************************/ | 1938 | *********************************************************************************************************/ |
1888 | int Uart_DEV2_RecvDeal_RecvDeal(int Receive_mode, unsigned char *getdata, int len) | 1939 | int Uart_DEV2_RecvDeal_RecvDeal(int Receive_mode, unsigned char *getdata, int len) |
1889 | { | 1940 | { |
1890 | - USER_LOG_INFO("串口设备2号,接受到的模式为:%x",Receive_mode); | 1941 | + JZSDK_LOG_INFO("串口设备2号,接受到的模式为:%x",Receive_mode); |
1891 | switch (Receive_mode) | 1942 | switch (Receive_mode) |
1892 | { | 1943 | { |
1893 | /******************************************************************************************************************************* | 1944 | /******************************************************************************************************************************* |
@@ -2195,9 +2246,20 @@ int Uart_DEV2_RecvDeal_RecvDeal(int Receive_mode, unsigned char *getdata, int le | @@ -2195,9 +2246,20 @@ int Uart_DEV2_RecvDeal_RecvDeal(int Receive_mode, unsigned char *getdata, int le | ||
2195 | 2246 | ||
2196 | //序列号查询 | 2247 | //序列号查询 |
2197 | case JZ_INSCODE_5AFRAME_CHECKSTATUS_SERIALNUMBER: | 2248 | case JZ_INSCODE_5AFRAME_CHECKSTATUS_SERIALNUMBER: |
2249 | + Uart_DEV2_RecvDeal_CheckStatus_SerialNumber(getdata); | ||
2250 | + break; | ||
2198 | 2251 | ||
2252 | + //向外供电开关 | ||
2253 | + case JZ_INSCODE_5AFRAME_OUTPUTPOWER_CONTROL: | ||
2254 | + Uart_DEV2_RecvDeal_OutPutPower_Control(getdata); | ||
2199 | break; | 2255 | break; |
2200 | 2256 | ||
2257 | + //查询向外供电情况 | ||
2258 | + case JZ_INSCODE_5AFRAME_CHECKSTATUS_OUTPUTPOWER: | ||
2259 | + Uart_DEV2_RecvDeal_Checkstatus_OutPutPower(getdata); | ||
2260 | + break; | ||
2261 | + | ||
2262 | + | ||
2201 | 2263 | ||
2202 | /******************************************************************************************************************************* | 2264 | /******************************************************************************************************************************* |
2203 | * | 2265 | * |
@@ -2586,7 +2648,7 @@ int JZsdk_Uart_RecvDeal_CharmDeal_Uart_DEV2(unsigned char *getbuf, int len) | @@ -2586,7 +2648,7 @@ int JZsdk_Uart_RecvDeal_CharmDeal_Uart_DEV2(unsigned char *getbuf, int len) | ||
2586 | * ****************/ | 2648 | * ****************/ |
2587 | int JZsdk_Uart_RecvDeal_Set_UART_DEV2_Receive_mode(int value) | 2649 | int JZsdk_Uart_RecvDeal_Set_UART_DEV2_Receive_mode(int value) |
2588 | { | 2650 | { |
2589 | - USER_LOG_INFO("串口设备2号,二次修改接收模式%x\n",value); | 2651 | + JZSDK_LOG_INFO("串口设备2号,二次修改接收模式%x\n",value); |
2590 | UART_DEV2_Receive_mode = value; | 2652 | UART_DEV2_Receive_mode = value; |
2591 | return 0; | 2653 | return 0; |
2592 | } | 2654 | } |
@@ -96,7 +96,30 @@ int JZsdk_Uart_SendDeal_QuerySecondaryDeviceName(int Uartport ,int FrameSequence | @@ -96,7 +96,30 @@ int JZsdk_Uart_SendDeal_QuerySecondaryDeviceName(int Uartport ,int FrameSequence | ||
96 | JZsdk_Uart_SendDeal_SendOreder(Uartport ,sendbuf, send_buf_len); | 96 | JZsdk_Uart_SendDeal_SendOreder(Uartport ,sendbuf, send_buf_len); |
97 | } | 97 | } |
98 | 98 | ||
99 | +//发送当前设备序列号 | ||
100 | +int JZsdk_Uart_SendDeal_SerialNumber(int UartPort, int FrameSequence, char *SerialNumber) | ||
101 | +{ | ||
102 | + char sendbuf[256]; | ||
103 | + int send_buf_len; | ||
99 | 104 | ||
105 | + //1、获取帧样板 | ||
106 | + JZsdk_GetFrameTemplate(JZ_INSCODE_5BFRAME_CHECKSTATUS_SERIALNUMBER , sendbuf, &send_buf_len); | ||
107 | + | ||
108 | + //2、写入数据 | ||
109 | + sendbuf[6] = FrameSequence; //帧序列 | ||
110 | + | ||
111 | + for (int i = 0; i < 14; i++) | ||
112 | + { | ||
113 | + sendbuf[9+i] = SerialNumber[i]; | ||
114 | + } | ||
115 | + | ||
116 | + sendbuf[21] = 0x00; | ||
117 | + sendbuf[22] = 0x23; | ||
118 | + sendbuf[4] = 0x17; | ||
119 | + | ||
120 | + //3、发送帧 | ||
121 | + JZsdk_Uart_SendDeal_SendOreder(UartPort ,sendbuf, send_buf_len); | ||
122 | +} | ||
100 | 123 | ||
101 | 124 | ||
102 | //发送歌曲名字 | 125 | //发送歌曲名字 |
@@ -423,7 +446,8 @@ int JZsdk_Uart_SendDeal_Set_GimbalFineTuningPitch(int Uartport, int PitchFineTun | @@ -423,7 +446,8 @@ int JZsdk_Uart_SendDeal_Set_GimbalFineTuningPitch(int Uartport, int PitchFineTun | ||
423 | sendbuf[9] = 0x00; | 446 | sendbuf[9] = 0x00; |
424 | } | 447 | } |
425 | 448 | ||
426 | - sendbuf[10] = (PitchFineTuning & 0xff); | 449 | + sendbuf[10] = ((PitchFineTuning>>8) & 0xff); |
450 | + sendbuf[11] = (PitchFineTuning & 0xff); | ||
427 | 451 | ||
428 | //3、发送帧 | 452 | //3、发送帧 |
429 | JZsdk_Uart_SendDeal_SendOreder(Uartport ,sendbuf, send_buf_len); | 453 | JZsdk_Uart_SendDeal_SendOreder(Uartport ,sendbuf, send_buf_len); |
@@ -467,7 +491,8 @@ int JZsdk_Uart_SendDeal_Reply_GimbalFineTuningPitch(int Uartport, int FrameSeque | @@ -467,7 +491,8 @@ int JZsdk_Uart_SendDeal_Reply_GimbalFineTuningPitch(int Uartport, int FrameSeque | ||
467 | sendbuf[9] = 0x00; | 491 | sendbuf[9] = 0x00; |
468 | } | 492 | } |
469 | 493 | ||
470 | - sendbuf[10] = (FineTunigPitch & 0xff); | 494 | + sendbuf[10] = ((FineTunigPitch>>8) & 0xff); |
495 | + sendbuf[11] = (FineTunigPitch & 0xff); | ||
471 | 496 | ||
472 | //3、发送帧 | 497 | //3、发送帧 |
473 | JZsdk_Uart_SendDeal_SendOreder(Uartport ,sendbuf, send_buf_len); | 498 | JZsdk_Uart_SendDeal_SendOreder(Uartport ,sendbuf, send_buf_len); |
@@ -526,6 +551,24 @@ int JZsdk_Uart_SendDeal_GimbalLinkageControl(int Uartport,int FrameSequence,int | @@ -526,6 +551,24 @@ int JZsdk_Uart_SendDeal_GimbalLinkageControl(int Uartport,int FrameSequence,int | ||
526 | JZsdk_Uart_SendDeal_SendOreder(Uartport ,sendbuf, send_buf_len); | 551 | JZsdk_Uart_SendDeal_SendOreder(Uartport ,sendbuf, send_buf_len); |
527 | } | 552 | } |
528 | 553 | ||
554 | +//发送云台最大最小值帧 | ||
555 | +int JZsdk_Uart_SendDeal_SetGimbalRange(int Uartport,int FrameSequence,int value) | ||
556 | +{ | ||
557 | + printf("发送云台最大最小值帧\n"); | ||
558 | + char sendbuf[256]; | ||
559 | + int send_buf_len; | ||
560 | + | ||
561 | + //1、获取帧样板 | ||
562 | + JZsdk_GetFrameTemplate(JZ_INSCODE_6AFRAME_SET_GIMBAL_MAXMIN_RANGE, sendbuf, &send_buf_len); | ||
563 | + | ||
564 | + //2、写入数据 | ||
565 | + sendbuf[6] = FrameSequence; //帧序列 | ||
566 | + sendbuf[10] = value; | ||
567 | + | ||
568 | + //3、发送帧 | ||
569 | + JZsdk_Uart_SendDeal_SendOreder(Uartport ,sendbuf, send_buf_len); | ||
570 | +} | ||
571 | + | ||
529 | /**************************************************************************************************************************************************** | 572 | /**************************************************************************************************************************************************** |
530 | * | 573 | * |
531 | * 探照灯部分 | 574 | * 探照灯部分 |
@@ -902,4 +945,26 @@ int JZsdk_Uart_SendDeal_WarningLight_Color(int Uartport, int color1, int color2) | @@ -902,4 +945,26 @@ int JZsdk_Uart_SendDeal_WarningLight_Color(int Uartport, int color1, int color2) | ||
902 | 945 | ||
903 | //3、发送帧 | 946 | //3、发送帧 |
904 | JZsdk_Uart_SendDeal_SendOreder(Uartport ,sendbuf, send_buf_len); | 947 | JZsdk_Uart_SendDeal_SendOreder(Uartport ,sendbuf, send_buf_len); |
948 | +} | ||
949 | + | ||
950 | +/************* | ||
951 | + * | ||
952 | + * 发送对外电源状态 | ||
953 | + * | ||
954 | + * **************/ | ||
955 | +int JZsdk_Uart_SendDeal_OutputPowerStatus(int Uartport, int FrameSequence, int status) | ||
956 | +{ | ||
957 | + printf("发送对外电源状态帧\n"); | ||
958 | + | ||
959 | + char sendbuf[256]; | ||
960 | + int send_buf_len; | ||
961 | + | ||
962 | + //1、获取帧样板 | ||
963 | + JZsdk_GetFrameTemplate(JZ_INSCODE_5BFRAME_CHECKSTATUS_OUTPUTPOWER, sendbuf, &send_buf_len); | ||
964 | + | ||
965 | + //2、写入数据 | ||
966 | + sendbuf[9] = status; | ||
967 | + | ||
968 | + //3、发送帧 | ||
969 | + JZsdk_Uart_SendDeal_SendOreder(Uartport ,sendbuf, send_buf_len); | ||
905 | } | 970 | } |
@@ -47,6 +47,7 @@ int JZsdk_Uart_SendDeal_Set_GimbalLinkageControl(int Uartport,int FrameSequence, | @@ -47,6 +47,7 @@ int JZsdk_Uart_SendDeal_Set_GimbalLinkageControl(int Uartport,int FrameSequence, | ||
47 | int JZsdk_Uart_SendDeal_CheckStatus_GimbalLinkage(int Uartport,int FrameSequence); | 47 | int JZsdk_Uart_SendDeal_CheckStatus_GimbalLinkage(int Uartport,int FrameSequence); |
48 | int JZsdk_Uart_SendDeal_GimbalLinkageControl(int Uartport,int FrameSequence,int value); | 48 | int JZsdk_Uart_SendDeal_GimbalLinkageControl(int Uartport,int FrameSequence,int value); |
49 | int JZsdk_Uart_SendDeal_CheckStatus_GimbalAngle(int Uartport ,int FrameSequence); | 49 | int JZsdk_Uart_SendDeal_CheckStatus_GimbalAngle(int Uartport ,int FrameSequence); |
50 | +int JZsdk_Uart_SendDeal_SetGimbalRange(int Uartport,int FrameSequence,int value); | ||
50 | 51 | ||
51 | 52 | ||
52 | int JZsdk_Uart_SendDeal_Reply_SoftVersion(int Uartport ,char majorVersion, char minorVersion, char modifyVersion, char debugVersion); | 53 | int JZsdk_Uart_SendDeal_Reply_SoftVersion(int Uartport ,char majorVersion, char minorVersion, char modifyVersion, char debugVersion); |
@@ -62,6 +63,8 @@ int JZsdk_Uart_SendDeal_MessageSubcription_Control(int Uartport, int value); | @@ -62,6 +63,8 @@ int JZsdk_Uart_SendDeal_MessageSubcription_Control(int Uartport, int value); | ||
62 | int JZsdk_Uart_SendDeal_Set_WarningLight_Status(int Uartport,int status, int mode); | 63 | int JZsdk_Uart_SendDeal_Set_WarningLight_Status(int Uartport,int status, int mode); |
63 | int JZsdk_Uart_SendDeal_Set_WarningLight_Color(int Uartport,int color1, int color2); | 64 | int JZsdk_Uart_SendDeal_Set_WarningLight_Color(int Uartport,int color1, int color2); |
64 | 65 | ||
66 | +int JZsdk_Uart_SendDeal_SerialNumber(int UartPort, int FrameSequence, char *SerialNumber); | ||
67 | + | ||
65 | 68 | ||
66 | 69 | ||
67 | 70 | ||
@@ -86,6 +89,8 @@ int JZsdk_Uart_SendDeal_WarningLight_Color(int Uartport, int color1, int color2) | @@ -86,6 +89,8 @@ int JZsdk_Uart_SendDeal_WarningLight_Color(int Uartport, int color1, int color2) | ||
86 | int JZsdk_Uart_SendDeal_CheckStatus_WarningLightStatus(int Uartport); | 89 | int JZsdk_Uart_SendDeal_CheckStatus_WarningLightStatus(int Uartport); |
87 | int JZsdk_Uart_SendDeal_CheckStatus_WarningLightColor(int Uartport); | 90 | int JZsdk_Uart_SendDeal_CheckStatus_WarningLightColor(int Uartport); |
88 | 91 | ||
92 | +int JZsdk_Uart_SendDeal_OutputPowerStatus(int Uartport, int FrameSequence, int status); | ||
93 | + | ||
89 | 94 | ||
90 | /* Exported functions --------------------------------------------------------*/ | 95 | /* Exported functions --------------------------------------------------------*/ |
91 | 96 |
@@ -6,34 +6,34 @@ | @@ -6,34 +6,34 @@ | ||
6 | #include <fcntl.h> | 6 | #include <fcntl.h> |
7 | #include <unistd.h> | 7 | #include <unistd.h> |
8 | #include <termios.h> | 8 | #include <termios.h> |
9 | -#include <sys/time.h> | 9 | +#include <sys/time.h> |
10 | #include "Uart_Config.h" | 10 | #include "Uart_Config.h" |
11 | #include "JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal.h" | 11 | #include "JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal.h" |
12 | #include "JZsdkLib.h" | 12 | #include "JZsdkLib.h" |
13 | 13 | ||
14 | -//串口参数结构体 | ||
15 | -typedef struct | 14 | +// 串口参数结构体 |
15 | +typedef struct | ||
16 | { | 16 | { |
17 | - int UartFd; //串口识别符 | ||
18 | - char Message[1024]; //传递的字符串 | ||
19 | - int MessageLength; //字符串的长度 | ||
20 | - pthread_mutex_t mutex; // 互斥锁 | ||
21 | - pthread_cond_t cond; // 条件变量 | ||
22 | -}s_SerialArgs; | 17 | + int UartFd; // 串口识别符 |
18 | + char Message[1024]; // 传递的字符串 | ||
19 | + int MessageLength; // 字符串的长度 | ||
20 | + int ResLen; //剩余长度 | ||
21 | + pthread_mutex_t mutex; // 互斥锁 | ||
22 | + pthread_cond_t cond; // 条件变量 | ||
23 | +} s_SerialArgs; | ||
23 | 24 | ||
24 | static int Uart_4G_fd; | 25 | static int Uart_4G_fd; |
25 | static int Uart_DEV1_fd; | 26 | static int Uart_DEV1_fd; |
26 | static int Uart_DEV2_fd; | 27 | static int Uart_DEV2_fd; |
27 | 28 | ||
28 | static void *UartDeal_rece(void *arg); | 29 | static void *UartDeal_rece(void *arg); |
29 | -static void* UartDeal_deal(void *arg); | ||
30 | -static int UartDeal_Recv_interface(int Uart_fd, unsigned char *getbuf, int getbufLen); | ||
31 | - | 30 | +static void *UartDeal_deal(void *arg); |
31 | +static int UartDeal_Recv_interface(int Uart_fd, unsigned char *getbuf, int getbufLen); | ||
32 | 32 | ||
33 | /********************* | 33 | /********************* |
34 | - * | 34 | + * |
35 | * 串口接收线程 | 35 | * 串口接收线程 |
36 | - * | 36 | + * |
37 | * *****************/ | 37 | * *****************/ |
38 | /****************************************************************** | 38 | /****************************************************************** |
39 | 39 | ||
@@ -42,12 +42,12 @@ static int UartDeal_Recv_interface(int Uart_fd, unsigned char *getbuf, int getb | @@ -42,12 +42,12 @@ static int UartDeal_Recv_interface(int Uart_fd, unsigned char *getbuf, int getb | ||
42 | ******************************************************************/ | 42 | ******************************************************************/ |
43 | int JZsdk_Uart_UartDeal_Receive(int Uart_fd, int Uart_Dev_name) | 43 | int JZsdk_Uart_UartDeal_Receive(int Uart_fd, int Uart_Dev_name) |
44 | { | 44 | { |
45 | - int ret = 0; | ||
46 | - pthread_t Uart_rece_task; | 45 | + int ret = 0; |
46 | + pthread_t Uart_rece_task; | ||
47 | 47 | ||
48 | - pthread_attr_t task_attribute; //线程属性 | ||
49 | - pthread_attr_init(&task_attribute); //初始化线程属性 | ||
50 | - pthread_attr_setdetachstate(&task_attribute, PTHREAD_CREATE_DETACHED); //设置线程属性 | 48 | + pthread_attr_t task_attribute; // 线程属性 |
49 | + pthread_attr_init(&task_attribute); // 初始化线程属性 | ||
50 | + pthread_attr_setdetachstate(&task_attribute, PTHREAD_CREATE_DETACHED); // 设置线程属性 | ||
51 | 51 | ||
52 | if (Uart_Dev_name == UART_DEV_1) | 52 | if (Uart_Dev_name == UART_DEV_1) |
53 | { | 53 | { |
@@ -62,127 +62,146 @@ int JZsdk_Uart_UartDeal_Receive(int Uart_fd, int Uart_Dev_name) | @@ -62,127 +62,146 @@ int JZsdk_Uart_UartDeal_Receive(int Uart_fd, int Uart_Dev_name) | ||
62 | Uart_4G_fd = Uart_fd; | 62 | Uart_4G_fd = Uart_fd; |
63 | } | 63 | } |
64 | 64 | ||
65 | - s_SerialArgs* parameter = (s_SerialArgs*)malloc(sizeof(s_SerialArgs)); | ||
66 | - parameter->UartFd = Uart_fd; | 65 | + s_SerialArgs *parameter = (s_SerialArgs *)malloc(sizeof(s_SerialArgs)); |
66 | + parameter->UartFd = Uart_fd; | ||
67 | parameter->MessageLength = 0; | 67 | parameter->MessageLength = 0; |
68 | memset(parameter->Message, 0, sizeof(parameter->Message)); | 68 | memset(parameter->Message, 0, sizeof(parameter->Message)); |
69 | - pthread_mutex_init(¶meter->mutex, NULL); | ||
70 | - pthread_cond_init(¶meter->cond, NULL); | 69 | + pthread_mutex_init(¶meter->mutex, NULL); |
70 | + pthread_cond_init(¶meter->cond, NULL); | ||
71 | 71 | ||
72 | - // 创建串口数据接收线程 | ||
73 | - pthread_t receiveThread; | 72 | + // 创建串口数据接收线程 |
73 | + pthread_t receiveThread; | ||
74 | pthread_t SerialDealThread; | 74 | pthread_t SerialDealThread; |
75 | - pthread_attr_t task_attribute1; //线程属性 | ||
76 | - pthread_attr_t task_attribute2; //线程属性 | ||
77 | - pthread_attr_setdetachstate(&task_attribute1, PTHREAD_CREATE_DETACHED); //设置线程分离属性 | ||
78 | - pthread_attr_setdetachstate(&task_attribute2, PTHREAD_CREATE_DETACHED); //设置线程分离属性 | 75 | + pthread_attr_t task_attribute1; // 线程属性 |
76 | + pthread_attr_t task_attribute2; // 线程属性 | ||
77 | + pthread_attr_setdetachstate(&task_attribute1, PTHREAD_CREATE_DETACHED); // 设置线程分离属性 | ||
78 | + pthread_attr_setdetachstate(&task_attribute2, PTHREAD_CREATE_DETACHED); // 设置线程分离属性 | ||
79 | 79 | ||
80 | pthread_attr_init(&task_attribute1); | 80 | pthread_attr_init(&task_attribute1); |
81 | pthread_attr_init(&task_attribute2); | 81 | pthread_attr_init(&task_attribute2); |
82 | 82 | ||
83 | + if (pthread_create(&receiveThread, &task_attribute1, UartDeal_rece, parameter) != 0) | ||
84 | + { | ||
85 | + JZSDK_LOG_ERROR("Failed to create receive thread"); | ||
86 | + return 1; | ||
87 | + } | ||
83 | 88 | ||
84 | - if (pthread_create(&receiveThread, &task_attribute1, UartDeal_rece, parameter) != 0) | ||
85 | - { | ||
86 | - USER_LOG_ERROR("Failed to create receive thread"); | ||
87 | - return 1; | ||
88 | - } | ||
89 | - | ||
90 | - // 创建串口数据处理线程 | ||
91 | - if (pthread_create(&SerialDealThread, &task_attribute2, UartDeal_deal, parameter) != 0) | ||
92 | - { | ||
93 | - USER_LOG_ERROR("Failed to create receive thread"); | ||
94 | - return 1; | ||
95 | - } | ||
96 | - | 89 | + // 创建串口数据处理线程 |
90 | + if (pthread_create(&SerialDealThread, &task_attribute2, UartDeal_deal, parameter) != 0) | ||
91 | + { | ||
92 | + JZSDK_LOG_ERROR("Failed to create receive thread"); | ||
93 | + return 1; | ||
94 | + } | ||
97 | } | 95 | } |
98 | /*** | 96 | /*** |
99 | - * | 97 | + * |
100 | * 串口接收线程 | 98 | * 串口接收线程 |
101 | - * | 99 | + * |
102 | * ***/ | 100 | * ***/ |
103 | static void *UartDeal_rece(void *arg) | 101 | static void *UartDeal_rece(void *arg) |
104 | { | 102 | { |
105 | 103 | ||
106 | - s_SerialArgs *args = (s_SerialArgs*)arg; | 104 | + s_SerialArgs *args = (s_SerialArgs *)arg; |
107 | 105 | ||
108 | - fd_set fs_read; | ||
109 | - static int ResidualLength = 0; //未处理数据长度 | 106 | + fd_set fs_read; |
107 | + static int ResidualLength = 0; // 未处理数据长度 | ||
110 | 108 | ||
111 | - int Uart_fd = args->UartFd; | 109 | + int Uart_fd = args->UartFd; |
112 | 110 | ||
113 | - FD_ZERO(&fs_read); | ||
114 | - FD_SET(Uart_fd, &fs_read); | 111 | + FD_ZERO(&fs_read); |
112 | + FD_SET(Uart_fd, &fs_read); | ||
115 | 113 | ||
116 | - memset(args->Message,0,sizeof(args->Message)); //清空接收数组 | 114 | + memset(args->Message, 0, sizeof(args->Message)); // 清空接收数组 |
115 | + args->ResLen = 0; | ||
116 | + args->MessageLength = 0; | ||
117 | + | ||
118 | + while (1) | ||
119 | + { | ||
117 | 120 | ||
118 | - while (1) | ||
119 | - { | 121 | + // 检查fs_read套节字是否有数据 |
122 | + select(Uart_fd + 1, &fs_read, NULL, NULL, NULL); | ||
123 | + delayMs(3); // 加多了可能导致实时播放难恢复,以及声音间隔 3ms32字节 会向上约1个3ms opus一帧80字节 | ||
120 | 124 | ||
121 | - //检查fs_read套节字是否有数据 | ||
122 | - select(Uart_fd+1, &fs_read, NULL, NULL, NULL); | ||
123 | - delayMs(3); //加多了可能导致实时播放难恢复,以及声音间隔 3ms32字节 会向上约1个3ms opus一帧80字节 | 125 | + if (FD_ISSET(Uart_fd, &fs_read)) |
126 | + { | ||
124 | 127 | ||
125 | - if (FD_ISSET(Uart_fd, &fs_read)) | ||
126 | - { | ||
127 | - | ||
128 | - // 如果有数据就加锁 | ||
129 | - pthread_mutex_lock(&args->mutex); | ||
130 | - | ||
131 | - //1、读取串口内容 ret 接收长度 getbuf 获取的字符 | ||
132 | - ResidualLength = args->MessageLength; | ||
133 | - args->MessageLength = read(Uart_fd ,&(args->Message[args->MessageLength]), ( sizeof(args->Message) - ResidualLength) ) + ResidualLength; | 128 | + // 如果有数据就加锁 |
129 | + pthread_mutex_lock(&args->mutex); | ||
134 | 130 | ||
135 | - // 通知线程 | ||
136 | - pthread_cond_signal(&args->cond); | ||
137 | - pthread_mutex_unlock(&args->mutex); // 解锁 | ||
138 | - } | 131 | + // 1、读取串口内容 ret 接收长度 getbuf 获取的字符 |
132 | + ResidualLength = args->MessageLength; | ||
133 | + args->MessageLength = read(Uart_fd, &(args->Message[args->MessageLength]), (sizeof(args->Message) - ResidualLength)) + ResidualLength; | ||
139 | 134 | ||
140 | - } | 135 | + // 通知线程 |
136 | + pthread_cond_signal(&args->cond); | ||
137 | + pthread_mutex_unlock(&args->mutex); // 解锁 | ||
138 | + } | ||
139 | + } | ||
141 | } | 140 | } |
142 | 141 | ||
143 | /*** | 142 | /*** |
144 | - * | 143 | + * |
145 | * 串口处理线程 | 144 | * 串口处理线程 |
146 | - * | 145 | + * |
147 | * ***/ | 146 | * ***/ |
148 | // 串口数据处理线程函数 | 147 | // 串口数据处理线程函数 |
149 | -static void* UartDeal_deal(void* arg) | 148 | +static void *UartDeal_deal(void *arg) |
150 | { | 149 | { |
151 | - s_SerialArgs *args = (s_SerialArgs*)arg; | 150 | + s_SerialArgs *args = (s_SerialArgs *)arg; |
152 | 151 | ||
153 | - static int ResidualLength = 0; //未处理数据长度 | 152 | + static int ResidualLength = 0; // 未处理数据长度 |
154 | 153 | ||
155 | - while (1) | ||
156 | - { | 154 | + while (1) |
155 | + { | ||
157 | 156 | ||
158 | - // 加锁 | ||
159 | - pthread_mutex_lock(&args->mutex); | 157 | + // 加锁 |
158 | + pthread_mutex_lock(&args->mutex); | ||
160 | 159 | ||
161 | - //等候接收线程的通知 | ||
162 | - pthread_cond_wait(&args->cond, &args->mutex); | 160 | + // 等候接收线程的通知 |
161 | + pthread_cond_wait(&args->cond, &args->mutex); | ||
163 | 162 | ||
164 | - while (args->MessageLength > 0) | ||
165 | - { | 163 | + if (args->MessageLength > 0) |
164 | + { | ||
165 | + //清除错误的多余半帧 | ||
166 | + if (args->Message[args->ResLen] == 0x5A && (args->ResLen != 0) ) //证明前面有半段帧,但是第二轮也没给补上 | ||
167 | + { | ||
168 | + int temp_num; | ||
169 | + temp_num = args->MessageLength - args->ResLen; | ||
170 | + if (temp_num < 0) | ||
171 | + { | ||
172 | + temp_num = 0; | ||
173 | + } | ||
174 | + | ||
175 | + memcpy(args->Message, &(args->Message[args->ResLen]), temp_num); | ||
176 | + memset(&args->Message[temp_num], 0, (args->MessageLength - temp_num)); | ||
177 | + args->MessageLength = temp_num; | ||
178 | + args->ResLen = 0; | ||
179 | + } | ||
166 | 180 | ||
167 | - //处理数据 | ||
168 | - ResidualLength = UartDeal_Recv_interface(args->UartFd, args->Message, args->MessageLength); | 181 | + // 处理数据 |
182 | + ResidualLength = UartDeal_Recv_interface(args->UartFd, args->Message, args->MessageLength); | ||
169 | 183 | ||
170 | - memcpy(args->Message, &(args->Message[args->MessageLength-ResidualLength]), ResidualLength); | 184 | + memcpy(args->Message, &(args->Message[args->MessageLength - ResidualLength]), ResidualLength); |
171 | memset(&(args->Message[ResidualLength]), 0, (sizeof(args->Message) - ResidualLength)); | 185 | memset(&(args->Message[ResidualLength]), 0, (sizeof(args->Message) - ResidualLength)); |
172 | args->MessageLength = ResidualLength; | 186 | args->MessageLength = ResidualLength; |
187 | + args->ResLen = ResidualLength; | ||
188 | + } | ||
189 | + else | ||
190 | + { | ||
191 | + memset(args->Message, 0, sizeof(args->Message)); | ||
192 | + args->MessageLength = 0; | ||
193 | + } | ||
173 | 194 | ||
174 | - } | ||
175 | - | ||
176 | - pthread_mutex_unlock(&args->mutex); // 解锁 | ||
177 | - } | 195 | + pthread_mutex_unlock(&args->mutex); // 解锁 |
196 | + } | ||
178 | } | 197 | } |
179 | 198 | ||
180 | /* | 199 | /* |
181 | 200 | ||
182 | - 数据排出函数 | 201 | + 数据排出函数s |
183 | 202 | ||
184 | */ | 203 | */ |
185 | -static int UartDeal_Recv_Ouput(int Uart_fd, unsigned char *getbuf, int ReadLen) | 204 | +static int UartDeal_Recv_Ouput(int Uart_fd, unsigned char *getbuf, int ReadLen) |
186 | { | 205 | { |
187 | if (Uart_fd == Uart_DEV1_fd) | 206 | if (Uart_fd == Uart_DEV1_fd) |
188 | { | 207 | { |
@@ -198,7 +217,7 @@ static int UartDeal_Recv_Ouput(int Uart_fd, unsigned char *getbuf, int ReadLen) | @@ -198,7 +217,7 @@ static int UartDeal_Recv_Ouput(int Uart_fd, unsigned char *getbuf, int ReadLen) | ||
198 | } | 217 | } |
199 | else | 218 | else |
200 | { | 219 | { |
201 | - USER_LOG_ERROR("接收到的数据不是从正常串口来的"); | 220 | + JZSDK_LOG_ERROR("接收到的数据不是从正常串口来的"); |
202 | return 0; | 221 | return 0; |
203 | } | 222 | } |
204 | } | 223 | } |
@@ -208,101 +227,101 @@ static int UartDeal_Recv_Ouput(int Uart_fd, unsigned char *getbuf, int ReadLen) | @@ -208,101 +227,101 @@ static int UartDeal_Recv_Ouput(int Uart_fd, unsigned char *getbuf, int ReadLen) | ||
208 | 处理数据接口,返回没有处理的数据长度 | 227 | 处理数据接口,返回没有处理的数据长度 |
209 | 228 | ||
210 | */ | 229 | */ |
211 | -static int UartDeal_Recv_interface(int Uart_fd, unsigned char *getbuf, int getbufLen) | 230 | +static int UartDeal_Recv_interface(int Uart_fd, unsigned char *getbuf, int getbufLen) |
212 | { | 231 | { |
213 | if (Uart_fd == Uart_DEV1_fd) | 232 | if (Uart_fd == Uart_DEV1_fd) |
214 | { | 233 | { |
215 | - USER_LOG_INFO("串口-设备1号,接受到数据len: %d", getbufLen); | 234 | + JZSDK_LOG_INFO("串口-设备1号,接受到数据len: %d", getbufLen); |
216 | } | 235 | } |
217 | else if (Uart_fd == Uart_DEV2_fd) | 236 | else if (Uart_fd == Uart_DEV2_fd) |
218 | { | 237 | { |
219 | - USER_LOG_INFO("串口-设备2号,接受到数据len: %d ", getbufLen); | 238 | + JZSDK_LOG_INFO("串口-设备2号,接受到数据len: %d ", getbufLen); |
220 | } | 239 | } |
221 | else if (Uart_fd == Uart_4G_fd) | 240 | else if (Uart_fd == Uart_4G_fd) |
222 | { | 241 | { |
223 | - USER_LOG_INFO("串口-设备4G,接受到数据len: %d ", getbufLen); | 242 | + JZSDK_LOG_INFO("串口-设备4G,接受到数据len: %d ", getbufLen); |
224 | } | 243 | } |
225 | else | 244 | else |
226 | { | 245 | { |
227 | - USER_LOG_ERROR("接收到的数据不是从正常串口来的"); | 246 | + JZSDK_LOG_ERROR("接收到的数据不是从正常串口来的"); |
228 | return 0; | 247 | return 0; |
229 | } | 248 | } |
230 | 249 | ||
231 | - //是否要打印内容 | 250 | + // // 是否要打印内容 |
232 | // printf("getbuf: %s\n", getbuf); | 251 | // printf("getbuf: %s\n", getbuf); |
233 | - // for (int i = 0; i < len; i++) | 252 | + // for (int i = 0; i < getbufLen; i++) |
234 | // { | 253 | // { |
235 | - // printf("%x ",getbuf[i]); | 254 | + // printf("%x ", getbuf[i]); |
236 | // } | 255 | // } |
237 | // printf("\n"); | 256 | // printf("\n"); |
238 | 257 | ||
239 | - int HaveReadLen = 0; //已读长度 | ||
240 | - int HaveDealLen = 0; //已处理长度 | ||
241 | - int FrameFlag = 0; //帧标志 | 258 | + int HaveReadLen = 0; // 已读长度 |
259 | + int HaveDealLen = 0; // 已处理长度 | ||
260 | + int FrameFlag = 0; // 帧标志 | ||
242 | int FrameLen = 0; | 261 | int FrameLen = 0; |
243 | 262 | ||
244 | - //检索出帧数据 | 263 | + // 检索出帧数据 |
245 | 264 | ||
246 | - //遍历数据找帧头,直到数据的倒数第4位,如果这里有帧,帧存在帧头3位+数据长度两位 | ||
247 | - for (HaveReadLen = 0; HaveReadLen < getbufLen - 4; HaveReadLen++) | 265 | + // 遍历数据找帧头,直到数据的倒数第4位,如果这里有帧,帧存在帧头3位+数据长度两位 |
266 | + for (HaveReadLen = 0; HaveReadLen < getbufLen - 4; HaveReadLen++) | ||
248 | { | 267 | { |
249 | - //1、如果找到 5A 5B 6A 6B 判断是否是帧 | 268 | + // 1、如果找到 5A 5B 6A 6B 判断是否是帧 |
250 | switch (getbuf[HaveReadLen]) | 269 | switch (getbuf[HaveReadLen]) |
251 | { | 270 | { |
252 | - case 0x5A: | ||
253 | - if (getbuf[HaveReadLen+1] == 0x5A || getbuf[HaveReadLen+2] == 0x77) | ||
254 | - { | ||
255 | - FrameFlag = 0x5A; | ||
256 | - } | 271 | + case 0x5A: |
272 | + if (getbuf[HaveReadLen + 1] == 0x5A || getbuf[HaveReadLen + 2] == 0x77) | ||
273 | + { | ||
274 | + FrameFlag = 0x5A; | ||
275 | + } | ||
257 | break; | 276 | break; |
258 | 277 | ||
259 | - case 0x5B: | ||
260 | - if (getbuf[HaveReadLen+1] == 0x5B || getbuf[HaveReadLen+2] == 0x77) | ||
261 | - { | ||
262 | - FrameFlag = 0x5B; | ||
263 | - } | 278 | + case 0x5B: |
279 | + if (getbuf[HaveReadLen + 1] == 0x5B || getbuf[HaveReadLen + 2] == 0x77) | ||
280 | + { | ||
281 | + FrameFlag = 0x5B; | ||
282 | + } | ||
264 | break; | 283 | break; |
265 | 284 | ||
266 | - case 0x6A: | ||
267 | - if (getbuf[HaveReadLen+1] == 0x6A || getbuf[HaveReadLen+2] == 0x77) | ||
268 | - { | ||
269 | - FrameFlag = 0x6A; | ||
270 | - } | ||
271 | - break; | 285 | + case 0x6A: |
286 | + if (getbuf[HaveReadLen + 1] == 0x6A || getbuf[HaveReadLen + 2] == 0x77) | ||
287 | + { | ||
288 | + FrameFlag = 0x6A; | ||
289 | + } | ||
290 | + break; | ||
272 | 291 | ||
273 | - case 0x6B: | ||
274 | - if (getbuf[HaveReadLen+1] == 0x6B || getbuf[HaveReadLen+2] == 0x77) | ||
275 | - { | ||
276 | - FrameFlag = 0x6B; | ||
277 | - } | ||
278 | - break; | 292 | + case 0x6B: |
293 | + if (getbuf[HaveReadLen + 1] == 0x6B || getbuf[HaveReadLen + 2] == 0x77) | ||
294 | + { | ||
295 | + FrameFlag = 0x6B; | ||
296 | + } | ||
297 | + break; | ||
279 | 298 | ||
280 | - default: | 299 | + default: |
281 | break; | 300 | break; |
282 | } | 301 | } |
283 | 302 | ||
284 | - //2、如果没有帧头,直接continue | 303 | + // 2、如果没有帧头,直接continue |
285 | if (FrameFlag == 0) | 304 | if (FrameFlag == 0) |
286 | { | 305 | { |
287 | continue; | 306 | continue; |
288 | } | 307 | } |
289 | - | ||
290 | - //3、如果有帧头,则先判断前面有没有多余的数据残留,并将其排出到处理线程 | ||
291 | - if ( (HaveReadLen - HaveDealLen) > 0) | 308 | + |
309 | + // 3、如果有帧头,则先判断前面有没有多余的数据残留,并将其排出到处理线程 | ||
310 | + if ((HaveReadLen - HaveDealLen) > 0) | ||
292 | { | 311 | { |
293 | UartDeal_Recv_Ouput(Uart_fd, &getbuf[HaveDealLen], (HaveReadLen - HaveDealLen)); | 312 | UartDeal_Recv_Ouput(Uart_fd, &getbuf[HaveDealLen], (HaveReadLen - HaveDealLen)); |
294 | HaveDealLen = HaveReadLen; | 313 | HaveDealLen = HaveReadLen; |
295 | } | 314 | } |
296 | - | ||
297 | - //4、检查帧长度是否超过数组剩余内容 | 315 | + |
316 | + // 4、检查帧长度是否超过数组剩余内容 | ||
298 | FrameLen = (getbuf[3] << 8) + getbuf[4]; | 317 | FrameLen = (getbuf[3] << 8) + getbuf[4]; |
299 | if (FrameLen > (getbufLen - HaveReadLen)) | 318 | if (FrameLen > (getbufLen - HaveReadLen)) |
300 | { | 319 | { |
301 | - //直接跳出for循环 | 320 | + // 直接跳出for循环 |
302 | break; | 321 | break; |
303 | } | 322 | } |
304 | - | ||
305 | - //5、以上检查都没问题,则正常输出帧 | 323 | + |
324 | + // 5、以上检查都没问题,则正常输出帧 | ||
306 | UartDeal_Recv_Ouput(Uart_fd, &getbuf[HaveReadLen], FrameLen); | 325 | UartDeal_Recv_Ouput(Uart_fd, &getbuf[HaveReadLen], FrameLen); |
307 | HaveReadLen = HaveReadLen + FrameLen; | 326 | HaveReadLen = HaveReadLen + FrameLen; |
308 | FrameLen = 0; | 327 | FrameLen = 0; |
@@ -310,113 +329,112 @@ static int UartDeal_Recv_interface(int Uart_fd, unsigned char *getbuf, int getb | @@ -310,113 +329,112 @@ static int UartDeal_Recv_interface(int Uart_fd, unsigned char *getbuf, int getb | ||
310 | FrameFlag = 0; | 329 | FrameFlag = 0; |
311 | } | 330 | } |
312 | 331 | ||
313 | - //如果没有数据残留了 | 332 | + // 如果没有数据残留了 |
314 | if (HaveDealLen >= getbufLen) | 333 | if (HaveDealLen >= getbufLen) |
315 | { | 334 | { |
316 | - //printf("HaveReadLen:%d HaveDealLen%d getbufLen:%d\n",HaveReadLen,HaveDealLen,getbufLen); | 335 | + // printf("HaveReadLen:%d HaveDealLen%d getbufLen:%d\n",HaveReadLen,HaveDealLen,getbufLen); |
317 | return 0; | 336 | return 0; |
318 | } | 337 | } |
319 | - | ||
320 | - //如果是有帧头的情况跳出的,说明是帧被切了,需要返回帧长度给接收线程 | 338 | + |
339 | + // 如果是有帧头的情况跳出的,说明是帧被切了,需要返回帧长度给接收线程 | ||
321 | if (FrameFlag != 0) | 340 | if (FrameFlag != 0) |
322 | { | 341 | { |
323 | - //1、判断帧的长度会不会不合理,帧的长度最大为文件名帧,其长度为9+2+128 | ||
324 | - if (FrameLen > (9+2+128) ) | 342 | + // 1、判断帧的长度会不会不合理,帧的长度最大为文件名帧,其长度为9+2+128 |
343 | + if (FrameLen > (9 + 2 + 128)) | ||
325 | { | 344 | { |
326 | - //将其排出不返回 | ||
327 | - UartDeal_Recv_Ouput(Uart_fd, &getbuf[HaveReadLen], (getbufLen-HaveReadLen)); | 345 | + // 将其排出不返回 |
346 | + UartDeal_Recv_Ouput(Uart_fd, &getbuf[HaveReadLen], (getbufLen - HaveReadLen)); | ||
328 | HaveDealLen = HaveReadLen; | 347 | HaveDealLen = HaveReadLen; |
329 | return 0; | 348 | return 0; |
330 | } | 349 | } |
331 | - | ||
332 | - //2、如果合理,则返回剩余长度 | ||
333 | - return (getbufLen-HaveDealLen); | 350 | + |
351 | + // 2、如果合理,则返回剩余长度 | ||
352 | + return (getbufLen - HaveDealLen); | ||
334 | } | 353 | } |
335 | - | ||
336 | - //如果是没有帧头的情况下跳出的 | ||
337 | - //1、先检查 未经检查最后 最后4 3位 | ||
338 | - for ( ; HaveReadLen < getbufLen - 2; HaveReadLen++) | ||
339 | - { | ||
340 | - if ( (getbuf[HaveReadLen] == 0x5A && getbuf[HaveReadLen+1] == 0x5A &&getbuf[HaveReadLen+2] == 0x77) || | ||
341 | - (getbuf[HaveReadLen] == 0x5B && getbuf[HaveReadLen+1] == 0x5B &&getbuf[HaveReadLen+2] == 0x77) || | ||
342 | - (getbuf[HaveReadLen] == 0x6A && getbuf[HaveReadLen+1] == 0x6A &&getbuf[HaveReadLen+2] == 0x77) || | ||
343 | - (getbuf[HaveReadLen] == 0x6B && getbuf[HaveReadLen+1] == 0x6B &&getbuf[HaveReadLen+2] == 0x77) ) | 354 | + |
355 | + // 如果是没有帧头的情况下跳出的 | ||
356 | + // 1、先检查 未经检查最后 最后4 3位 | ||
357 | + for (; HaveReadLen < getbufLen - 2; HaveReadLen++) | ||
358 | + { | ||
359 | + if ((getbuf[HaveReadLen] == 0x5A && getbuf[HaveReadLen + 1] == 0x5A && getbuf[HaveReadLen + 2] == 0x77) || | ||
360 | + (getbuf[HaveReadLen] == 0x5B && getbuf[HaveReadLen + 1] == 0x5B && getbuf[HaveReadLen + 2] == 0x77) || | ||
361 | + (getbuf[HaveReadLen] == 0x6A && getbuf[HaveReadLen + 1] == 0x6A && getbuf[HaveReadLen + 2] == 0x77) || | ||
362 | + (getbuf[HaveReadLen] == 0x6B && getbuf[HaveReadLen + 1] == 0x6B && getbuf[HaveReadLen + 2] == 0x77)) | ||
344 | { | 363 | { |
345 | - if ( (HaveReadLen - HaveDealLen) > 0) | 364 | + if ((HaveReadLen - HaveDealLen) > 0) |
346 | { | 365 | { |
347 | UartDeal_Recv_Ouput(Uart_fd, &getbuf[HaveDealLen], (HaveReadLen - HaveDealLen)); | 366 | UartDeal_Recv_Ouput(Uart_fd, &getbuf[HaveDealLen], (HaveReadLen - HaveDealLen)); |
348 | HaveDealLen = HaveReadLen; | 367 | HaveDealLen = HaveReadLen; |
349 | } | 368 | } |
350 | - | ||
351 | - return (getbufLen-HaveDealLen); | 369 | + |
370 | + return (getbufLen - HaveDealLen); | ||
352 | } | 371 | } |
353 | } | 372 | } |
354 | 373 | ||
355 | - //2、检查最后两位 | ||
356 | - if ( (getbuf[HaveReadLen] == 0x5A && getbuf[HaveReadLen+1] == 0x5A ) || | ||
357 | - (getbuf[HaveReadLen] == 0x5B && getbuf[HaveReadLen+1] == 0x5B ) || | ||
358 | - (getbuf[HaveReadLen] == 0x6A && getbuf[HaveReadLen+1] == 0x6A ) || | ||
359 | - (getbuf[HaveReadLen] == 0x6B && getbuf[HaveReadLen+1] == 0x6B ) ) | ||
360 | - { | ||
361 | - if ( (HaveReadLen - HaveDealLen) > 0) | ||
362 | - { | ||
363 | - UartDeal_Recv_Ouput(Uart_fd, &getbuf[HaveDealLen], (HaveReadLen - HaveDealLen)); | ||
364 | - HaveDealLen = HaveReadLen; | ||
365 | - } | ||
366 | - | ||
367 | - return (getbufLen-HaveDealLen); | ||
368 | - } | ||
369 | - HaveReadLen++; | ||
370 | - | ||
371 | - //1、检查最后一位 | ||
372 | - if ( getbuf[HaveReadLen] == 0x5A || | ||
373 | - getbuf[HaveReadLen] == 0x5B || | ||
374 | - getbuf[HaveReadLen] == 0x6A || | ||
375 | - getbuf[HaveReadLen] == 0x6B ) | ||
376 | - { | ||
377 | - if ( (HaveReadLen - HaveDealLen) > 0) | ||
378 | - { | ||
379 | - UartDeal_Recv_Ouput(Uart_fd, &getbuf[HaveDealLen], (HaveReadLen - HaveDealLen)); | ||
380 | - HaveDealLen = HaveReadLen; | ||
381 | - } | ||
382 | - | ||
383 | - return (getbufLen-HaveDealLen); | ||
384 | - } | ||
385 | - HaveReadLen++; | ||
386 | - | ||
387 | - //都检查完了,还是没有帧头在里面, 将剩余的所有数据排出 | ||
388 | - UartDeal_Recv_Ouput(Uart_fd, &getbuf[HaveDealLen], (HaveReadLen - HaveDealLen)); | ||
389 | - | ||
390 | - //printf("HaveReadLen:%d HaveDealLen%d getbufLen:%d\n",HaveReadLen,HaveDealLen,getbufLen); | 374 | + // 2、检查最后两位 |
375 | + if ((getbuf[HaveReadLen] == 0x5A && getbuf[HaveReadLen + 1] == 0x5A) || | ||
376 | + (getbuf[HaveReadLen] == 0x5B && getbuf[HaveReadLen + 1] == 0x5B) || | ||
377 | + (getbuf[HaveReadLen] == 0x6A && getbuf[HaveReadLen + 1] == 0x6A) || | ||
378 | + (getbuf[HaveReadLen] == 0x6B && getbuf[HaveReadLen + 1] == 0x6B)) | ||
379 | + { | ||
380 | + if ((HaveReadLen - HaveDealLen) > 0) | ||
381 | + { | ||
382 | + UartDeal_Recv_Ouput(Uart_fd, &getbuf[HaveDealLen], (HaveReadLen - HaveDealLen)); | ||
383 | + HaveDealLen = HaveReadLen; | ||
384 | + } | ||
385 | + | ||
386 | + return (getbufLen - HaveDealLen); | ||
387 | + } | ||
388 | + HaveReadLen++; | ||
389 | + | ||
390 | + // 1、检查最后一位 | ||
391 | + if (getbuf[HaveReadLen] == 0x5A || | ||
392 | + getbuf[HaveReadLen] == 0x5B || | ||
393 | + getbuf[HaveReadLen] == 0x6A || | ||
394 | + getbuf[HaveReadLen] == 0x6B) | ||
395 | + { | ||
396 | + if ((HaveReadLen - HaveDealLen) > 0) | ||
397 | + { | ||
398 | + UartDeal_Recv_Ouput(Uart_fd, &getbuf[HaveDealLen], (HaveReadLen - HaveDealLen)); | ||
399 | + HaveDealLen = HaveReadLen; | ||
400 | + } | ||
401 | + | ||
402 | + return (getbufLen - HaveDealLen); | ||
403 | + } | ||
404 | + HaveReadLen++; | ||
405 | + | ||
406 | + // 都检查完了,还是没有帧头在里面, 将剩余的所有数据排出 | ||
407 | + UartDeal_Recv_Ouput(Uart_fd, &getbuf[HaveDealLen], (HaveReadLen - HaveDealLen)); | ||
408 | + | ||
409 | + // printf("HaveReadLen:%d HaveDealLen%d getbufLen:%d\n",HaveReadLen,HaveDealLen,getbufLen); | ||
391 | 410 | ||
392 | return 0; | 411 | return 0; |
393 | } | 412 | } |
394 | 413 | ||
395 | - | ||
396 | /**************** | 414 | /**************** |
397 | - * | ||
398 | - * | ||
399 | - * 发送函数 | ||
400 | - * | 415 | + * |
416 | + * | ||
417 | + * 发送函数 | ||
418 | + * | ||
401 | * ****************/ | 419 | * ****************/ |
402 | -int JZsdk_Uart_UartSend(int UartPort ,unsigned char *send, int num) | 420 | +int JZsdk_Uart_UartSend(int UartPort, unsigned char *send, int num) |
403 | { | 421 | { |
404 | if (UartPort == UART_4G) | 422 | if (UartPort == UART_4G) |
405 | { | 423 | { |
406 | printf("向4G设备发送\n"); | 424 | printf("向4G设备发送\n"); |
407 | - write(Uart_4G_fd,send, num); | 425 | + write(Uart_4G_fd, send, num); |
408 | return 0; | 426 | return 0; |
409 | } | 427 | } |
410 | else if (UartPort == UART_DEV_1) | 428 | else if (UartPort == UART_DEV_1) |
411 | - { | 429 | + { |
412 | printf("向串口1号设备发送\n"); | 430 | printf("向串口1号设备发送\n"); |
413 | - write(Uart_DEV1_fd,send, num); | 431 | + write(Uart_DEV1_fd, send, num); |
414 | return 0; | 432 | return 0; |
415 | } | 433 | } |
416 | - else if (UartPort == UART_DEV_2) | 434 | + else if (UartPort == UART_DEV_2) |
417 | { | 435 | { |
418 | printf("向串口2号设备发送\n"); | 436 | printf("向串口2号设备发送\n"); |
419 | - write(Uart_DEV2_fd,send, num); | 437 | + write(Uart_DEV2_fd, send, num); |
420 | return 0; | 438 | return 0; |
421 | } | 439 | } |
422 | } | 440 | } |
@@ -4,7 +4,12 @@ | @@ -4,7 +4,12 @@ | ||
4 | 4 | ||
5 | #include <pthread.h> | 5 | #include <pthread.h> |
6 | 6 | ||
7 | -#include "Gimbal_UartDeal.h" | 7 | +#include "Gimbal_H3_H150ST_UartDeal.h" |
8 | +#include "Gimbal_H3_H150ST.h" | ||
9 | +#include "BaseConfig.h" | ||
10 | + | ||
11 | +#include "UartConnection/UartConnection.h" | ||
12 | + | ||
8 | 13 | ||
9 | /* Private constants ---------------------------------------------------------*/ | 14 | /* Private constants ---------------------------------------------------------*/ |
10 | #define MOTOR_FILE_PATH "/root/motor" | 15 | #define MOTOR_FILE_PATH "/root/motor" |
@@ -22,6 +27,17 @@ static int H3_H150ST_motor_precise_adjustment_pitch =0;//默认H3微调值为0 | @@ -22,6 +27,17 @@ static int H3_H150ST_motor_precise_adjustment_pitch =0;//默认H3微调值为0 | ||
22 | static void *H3_H150ST_Motor_control(void *arg); | 27 | static void *H3_H150ST_Motor_control(void *arg); |
23 | static void H3_H150ST_Write_MotorAdjustmentPitch(int MotorAdjustmentPitch); | 28 | static void H3_H150ST_Write_MotorAdjustmentPitch(int MotorAdjustmentPitch); |
24 | static int H3_H150ST_Read_MotorAdjustmentPitch(void); | 29 | static int H3_H150ST_Read_MotorAdjustmentPitch(void); |
30 | + | ||
31 | +T_JZsdkReturnCode Gimbal_H3_H150ST_init_motor() | ||
32 | +{ | ||
33 | + int Uart_fd = 0; | ||
34 | + //1、串口初始化 | ||
35 | + Uart_fd = UartConnection_UartEnabled(GIMBAL_UART_NUM, GIMBAL_UART_BITRATE); | ||
36 | + | ||
37 | + //2、串口接收初始化 | ||
38 | + Gimbal_H3_H150ST_UartDeal_Receive(Uart_fd); | ||
39 | +} | ||
40 | + | ||
25 | //设置角度 | 41 | //设置角度 |
26 | int H3_H150ST_Gimbal_SetAngle(int angle) | 42 | int H3_H150ST_Gimbal_SetAngle(int angle) |
27 | { | 43 | { |
@@ -49,6 +65,9 @@ static void *H3_H150ST_Motor_control(void *arg) | @@ -49,6 +65,9 @@ static void *H3_H150ST_Motor_control(void *arg) | ||
49 | //传入的角度 -900~0 | 65 | //传入的角度 -900~0 |
50 | int angle = *(int*)arg; | 66 | int angle = *(int*)arg; |
51 | 67 | ||
68 | + //调整云台微调值 | ||
69 | + angle = angle + H3_H150ST_motor_precise_adjustment_pitch; | ||
70 | + | ||
52 | //调整为PWM值 1000~2000 | 71 | //调整为PWM值 1000~2000 |
53 | int angle_PWM = 0; | 72 | int angle_PWM = 0; |
54 | 73 | ||
@@ -66,11 +85,45 @@ static void *H3_H150ST_Motor_control(void *arg) | @@ -66,11 +85,45 @@ static void *H3_H150ST_Motor_control(void *arg) | ||
66 | char send_angle[]={0x5a,0x00,0x00,0xa5}; | 85 | char send_angle[]={0x5a,0x00,0x00,0xa5}; |
67 | send_angle[1]=(char )(angle_PWM); | 86 | send_angle[1]=(char )(angle_PWM); |
68 | send_angle[2]=(char )(angle_PWM>>8); | 87 | send_angle[2]=(char )(angle_PWM>>8); |
69 | - Gimbal_UartSend(send_angle, 4); | 88 | + Gimbal_H3_H150ST_UartDeal_UartSend(send_angle, 4); |
70 | 89 | ||
71 | free(arg); // 在线程函数中释放动态内存 | 90 | free(arg); // 在线程函数中释放动态内存 |
72 | } | 91 | } |
73 | 92 | ||
93 | +//H150ST云台范围 | ||
94 | +T_JZsdkReturnCode H3_H150ST_SetGimbalRange(int Range) | ||
95 | +{ | ||
96 | + uint8_t set_min_motor[]={0x4A,0x00,0x00,0xA4}; | ||
97 | + uint8_t set_max_motor[]={0x6A,0x00,0x00,0xA6}; | ||
98 | + | ||
99 | + if (Range == 0xFF) | ||
100 | + { | ||
101 | + printf("设置H150ST云台最大值\n"); | ||
102 | + Gimbal_H3_H150ST_UartDeal_UartSend(set_max_motor, 4); | ||
103 | + return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | ||
104 | + } | ||
105 | + else if (Range == 0x00) | ||
106 | + { | ||
107 | + printf("设置H150ST云台最小值\n"); | ||
108 | + Gimbal_H3_H150ST_UartDeal_UartSend(set_min_motor, 4); | ||
109 | + return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | ||
110 | + } | ||
111 | + | ||
112 | + return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; | ||
113 | +} | ||
114 | + | ||
115 | +//云台微调 | ||
116 | +T_JZsdkReturnCode Gimbal_H3_H150ST_set_PitchFineTuning(int Pitch) | ||
117 | +{ | ||
118 | + //微调的角度值 提高Pitch | ||
119 | + H3_H150ST_motor_precise_adjustment_pitch += Pitch; | ||
120 | + | ||
121 | + //写入本地文件 | ||
122 | + H3_H150ST_Write_MotorAdjustmentPitch(H3_H150ST_motor_precise_adjustment_pitch); | ||
123 | + | ||
124 | + return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | ||
125 | + | ||
126 | +} | ||
74 | 127 | ||
75 | //微调向上 | 128 | //微调向上 |
76 | void H3_H150ST_gimbal_up(void) | 129 | void H3_H150ST_gimbal_up(void) |
@@ -92,6 +145,12 @@ void H3_H150ST_gimbal_down(void) | @@ -92,6 +145,12 @@ void H3_H150ST_gimbal_down(void) | ||
92 | H3_H150ST_Write_MotorAdjustmentPitch(H3_H150ST_motor_precise_adjustment_pitch); | 145 | H3_H150ST_Write_MotorAdjustmentPitch(H3_H150ST_motor_precise_adjustment_pitch); |
93 | } | 146 | } |
94 | 147 | ||
148 | +//查询云台微调值 | ||
149 | +int Gimbal_H3_H150ST_CheckStatus_GimbalFineTuning(int *AdjustmentPitch) | ||
150 | +{ | ||
151 | + *AdjustmentPitch = H3_H150ST_motor_precise_adjustment_pitch; | ||
152 | +} | ||
153 | + | ||
95 | //从文件中读出电机微调值 | 154 | //从文件中读出电机微调值 |
96 | static int H3_H150ST_Read_MotorAdjustmentPitch(void) | 155 | static int H3_H150ST_Read_MotorAdjustmentPitch(void) |
97 | { | 156 | { |
@@ -11,6 +11,7 @@ | @@ -11,6 +11,7 @@ | ||
11 | #define GIMBAL_H3_H150ST_H | 11 | #define GIMBAL_H3_H150ST_H |
12 | 12 | ||
13 | /* Includes ------------------------------------------------------------------*/ | 13 | /* Includes ------------------------------------------------------------------*/ |
14 | +#include "JZsdk_Base/JZsdk_Code/JZsdk_Code.h" | ||
14 | 15 | ||
15 | #ifdef __cplusplus | 16 | #ifdef __cplusplus |
16 | extern "C" { | 17 | extern "C" { |
@@ -23,6 +24,10 @@ extern "C" { | @@ -23,6 +24,10 @@ extern "C" { | ||
23 | 24 | ||
24 | /* Exported functions --------------------------------------------------------*/ | 25 | /* Exported functions --------------------------------------------------------*/ |
25 | int H3_H150ST_Gimbal_SetAngle(int angle); | 26 | int H3_H150ST_Gimbal_SetAngle(int angle); |
27 | +int Gimbal_H3_H150ST_CheckStatus_GimbalFineTuning(int *AdjustmentPitch); | ||
28 | +T_JZsdkReturnCode Gimbal_H3_H150ST_init_motor(); | ||
29 | +T_JZsdkReturnCode H3_H150ST_SetGimbalRange(int Range); | ||
30 | +T_JZsdkReturnCode Gimbal_H3_H150ST_set_PitchFineTuning(int Pitch); | ||
26 | 31 | ||
27 | 32 | ||
28 | #ifdef __cplusplus | 33 | #ifdef __cplusplus |
@@ -17,7 +17,7 @@ static int Gimbal_Uart_fd = 0; | @@ -17,7 +17,7 @@ static int Gimbal_Uart_fd = 0; | ||
17 | 创建一个接收Gimbal的接收线程 | 17 | 创建一个接收Gimbal的接收线程 |
18 | 18 | ||
19 | ******************************************************************/ | 19 | ******************************************************************/ |
20 | -int Gimbal_UartDeal_Receive(int Uart_fd) | 20 | +int Gimbal_H3_H150ST_UartDeal_Receive(int Uart_fd) |
21 | { | 21 | { |
22 | int ret = 0; | 22 | int ret = 0; |
23 | pthread_t Uart_rece_task; | 23 | pthread_t Uart_rece_task; |
@@ -70,15 +70,6 @@ static void *UartDeal_rece(void *arg) | @@ -70,15 +70,6 @@ static void *UartDeal_rece(void *arg) | ||
70 | //1、读取串口内容 ret 接收长度 getbuf 获取的字符 | 70 | //1、读取串口内容 ret 接收长度 getbuf 获取的字符 |
71 | memset(getbuf,0,sizeof(getbuf)); //清空接收数组 | 71 | memset(getbuf,0,sizeof(getbuf)); //清空接收数组 |
72 | ret = read(Gimbal_Uart_fd,getbuf,sizeof(getbuf)); | 72 | ret = read(Gimbal_Uart_fd,getbuf,sizeof(getbuf)); |
73 | - | ||
74 | - //printf("Gimbalret: %d Gimbalgetbuf: %s\n", ret, getbuf); | ||
75 | - // for (int i = 0; i < ret; i++) | ||
76 | - // { | ||
77 | - // printf("%x ",getbuf[i]); | ||
78 | - // } | ||
79 | - // printf("\n"); | ||
80 | - | ||
81 | - //Comm_4G_RecvCharmDeal(getbuf, ret); | ||
82 | } | 73 | } |
83 | } | 74 | } |
84 | 75 | ||
@@ -91,7 +82,7 @@ static void *UartDeal_rece(void *arg) | @@ -91,7 +82,7 @@ static void *UartDeal_rece(void *arg) | ||
91 | * 发送函数 | 82 | * 发送函数 |
92 | * | 83 | * |
93 | * ****************/ | 84 | * ****************/ |
94 | -int Gimbal_UartSend(unsigned char *send, int num) | 85 | +int Gimbal_H3_H150ST_UartDeal_UartSend(unsigned char *send, int num) |
95 | { | 86 | { |
96 | 87 | ||
97 | write(Gimbal_Uart_fd,send, num); | 88 | write(Gimbal_Uart_fd,send, num); |
@@ -11,6 +11,7 @@ | @@ -11,6 +11,7 @@ | ||
11 | #define GIMBAL_UART_DEAL_H | 11 | #define GIMBAL_UART_DEAL_H |
12 | 12 | ||
13 | /* Includes ------------------------------------------------------------------*/ | 13 | /* Includes ------------------------------------------------------------------*/ |
14 | +#include "JZsdk_Base/JZsdk_Code/JZsdk_Code.h" | ||
14 | 15 | ||
15 | #ifdef __cplusplus | 16 | #ifdef __cplusplus |
16 | extern "C" { | 17 | extern "C" { |
@@ -22,8 +23,8 @@ extern "C" { | @@ -22,8 +23,8 @@ extern "C" { | ||
22 | /* Exported types ------------------------------------------------------------*/ | 23 | /* Exported types ------------------------------------------------------------*/ |
23 | 24 | ||
24 | /* Exported functions --------------------------------------------------------*/ | 25 | /* Exported functions --------------------------------------------------------*/ |
25 | -int Gimbal_UartDeal_Receive(int Uart_fd); | ||
26 | -int Gimbal_UartSend(unsigned char *send, int num); | 26 | +int Gimbal_H3_H150ST_UartDeal_Receive(int Uart_fd); |
27 | +int Gimbal_H3_H150ST_UartDeal_UartSend(unsigned char *send, int num); | ||
27 | 28 | ||
28 | #ifdef __cplusplus | 29 | #ifdef __cplusplus |
29 | } | 30 | } |
@@ -2,12 +2,9 @@ | @@ -2,12 +2,9 @@ | ||
2 | #include <string.h> | 2 | #include <string.h> |
3 | #include <stdlib.h> | 3 | #include <stdlib.h> |
4 | 4 | ||
5 | -#include "BaseConfig.h" | ||
6 | -#include "Gimbal_UartDeal.h" | ||
7 | #include "version_choose.h" | 5 | #include "version_choose.h" |
8 | #include "Gimbal_H3/Gimbal_H3.h" | 6 | #include "Gimbal_H3/Gimbal_H3.h" |
9 | #include "Gimbal_V3S/Gimbal_V3S.h" | 7 | #include "Gimbal_V3S/Gimbal_V3S.h" |
10 | -#include "UartConnection/UartConnection.h" | ||
11 | #include "Gimbal_InAndOut.h" | 8 | #include "Gimbal_InAndOut.h" |
12 | #include "JZsdkLib.h" | 9 | #include "JZsdkLib.h" |
13 | 10 | ||
@@ -31,12 +28,7 @@ int Gimbal_Init() | @@ -31,12 +28,7 @@ int Gimbal_Init() | ||
31 | { | 28 | { |
32 | if (DEVICE_VERSION == JZ_H150S || DEVICE_VERSION == JZ_H150T) | 29 | if (DEVICE_VERSION == JZ_H150S || DEVICE_VERSION == JZ_H150T) |
33 | { | 30 | { |
34 | - int Uart_fd = 0; | ||
35 | - //1、串口初始化 | ||
36 | - Uart_fd = UartConnection_UartEnabled(GIMBAL_UART_NUM, GIMBAL_UART_BITRATE); | ||
37 | - | ||
38 | - //2、串口接收初始化 | ||
39 | - Gimbal_UartDeal_Receive(Uart_fd); | 31 | + Gimbal_H3_H150ST_init_motor(); |
40 | } | 32 | } |
41 | else if (DEVICE_VERSION == JZ_H10) | 33 | else if (DEVICE_VERSION == JZ_H10) |
42 | { | 34 | { |
@@ -179,13 +171,13 @@ T_JZsdkReturnCode Gimbal_SetGimbalRange(int value) | @@ -179,13 +171,13 @@ T_JZsdkReturnCode Gimbal_SetGimbalRange(int value) | ||
179 | 171 | ||
180 | if (DEVICE_VERSION == JZ_H150S || DEVICE_VERSION == JZ_H150T) | 172 | if (DEVICE_VERSION == JZ_H150S || DEVICE_VERSION == JZ_H150T) |
181 | { | 173 | { |
182 | - /* code */ | 174 | + return H3_H150ST_SetGimbalRange(value); |
183 | } | 175 | } |
184 | 176 | ||
185 | 177 | ||
186 | if (DEVICE_VERSION == JZ_U3) | 178 | if (DEVICE_VERSION == JZ_U3) |
187 | { | 179 | { |
188 | - | 180 | + return V3S_U3_SetGimbalRange(value); |
189 | } | 181 | } |
190 | 182 | ||
191 | if (DEVICE_VERSION == JZ_H1T) | 183 | if (DEVICE_VERSION == JZ_H1T) |
@@ -193,7 +185,7 @@ T_JZsdkReturnCode Gimbal_SetGimbalRange(int value) | @@ -193,7 +185,7 @@ T_JZsdkReturnCode Gimbal_SetGimbalRange(int value) | ||
193 | /* code */ | 185 | /* code */ |
194 | } | 186 | } |
195 | 187 | ||
196 | - | 188 | + return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; |
197 | } | 189 | } |
198 | 190 | ||
199 | //查询云台微调值 | 191 | //查询云台微调值 |
@@ -203,13 +195,27 @@ T_JZsdkReturnCode Gimbal_CheckStatus_GimbalFineTuning(int *FineTunigPitch, int * | @@ -203,13 +195,27 @@ T_JZsdkReturnCode Gimbal_CheckStatus_GimbalFineTuning(int *FineTunigPitch, int * | ||
203 | 195 | ||
204 | if (DEVICE_VERSION == JZ_H150S || DEVICE_VERSION == JZ_H150T) | 196 | if (DEVICE_VERSION == JZ_H150S || DEVICE_VERSION == JZ_H150T) |
205 | { | 197 | { |
198 | + //1、获取微调值 | ||
199 | + Gimbal_H3_H150ST_CheckStatus_GimbalFineTuning(&Gimbal_PitchFineTuning); | ||
206 | 200 | ||
201 | + //2、回复微调值 | ||
202 | + *FineTunigPitch = Gimbal_PitchFineTuning; | ||
203 | + *FineTunigYaw = Gimbal_YawFineTuning; | ||
204 | + | ||
205 | + return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | ||
207 | } | 206 | } |
208 | 207 | ||
209 | 208 | ||
210 | if (DEVICE_VERSION == JZ_U3) | 209 | if (DEVICE_VERSION == JZ_U3) |
211 | - { | ||
212 | - | 210 | + { |
211 | + //1、获取微调值 | ||
212 | + Gimbal_V3S_U3_CheckStatus_GimbalFineTuning(&Gimbal_PitchFineTuning); | ||
213 | + | ||
214 | + //2、回复微调值 | ||
215 | + *FineTunigPitch = Gimbal_PitchFineTuning; | ||
216 | + *FineTunigYaw = Gimbal_YawFineTuning; | ||
217 | + | ||
218 | + return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | ||
213 | } | 219 | } |
214 | 220 | ||
215 | if (DEVICE_VERSION == JZ_H1T) | 221 | if (DEVICE_VERSION == JZ_H1T) |
@@ -226,7 +232,7 @@ T_JZsdkReturnCode Gimbal_CheckStatus_GimbalFineTuning(int *FineTunigPitch, int * | @@ -226,7 +232,7 @@ T_JZsdkReturnCode Gimbal_CheckStatus_GimbalFineTuning(int *FineTunigPitch, int * | ||
226 | return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | 232 | return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; |
227 | } | 233 | } |
228 | 234 | ||
229 | - | 235 | + return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; |
230 | } | 236 | } |
231 | 237 | ||
232 | //收到云台pitch微调值 | 238 | //收到云台pitch微调值 |
@@ -234,25 +240,24 @@ T_JZsdkReturnCode Gimbal_Obtain_GimbalFineTuning(int pitch) | @@ -234,25 +240,24 @@ T_JZsdkReturnCode Gimbal_Obtain_GimbalFineTuning(int pitch) | ||
234 | { | 240 | { |
235 | printf("收到云台pitch云台微调值\n"); | 241 | printf("收到云台pitch云台微调值\n"); |
236 | 242 | ||
237 | - Gimbal_PitchFineTuning = pitch; | ||
238 | - | ||
239 | if (DEVICE_VERSION == JZ_H150S || DEVICE_VERSION == JZ_H150T) | 243 | if (DEVICE_VERSION == JZ_H150S || DEVICE_VERSION == JZ_H150T) |
240 | { | 244 | { |
241 | - | 245 | + //无操作 |
242 | } | 246 | } |
243 | 247 | ||
244 | 248 | ||
245 | if (DEVICE_VERSION == JZ_U3) | 249 | if (DEVICE_VERSION == JZ_U3) |
246 | { | 250 | { |
247 | - | 251 | + //无操作 |
248 | } | 252 | } |
249 | 253 | ||
250 | if (DEVICE_VERSION == JZ_H1T) | 254 | if (DEVICE_VERSION == JZ_H1T) |
251 | { | 255 | { |
252 | - //无操作 | ||
253 | - //毕竟是t60s返回来的值 | 256 | + Gimbal_PitchFineTuning = pitch; |
254 | return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | 257 | return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; |
255 | } | 258 | } |
259 | + | ||
260 | + return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; | ||
256 | } | 261 | } |
257 | 262 | ||
258 | //设置云台pitch微调值 | 263 | //设置云台pitch微调值 |
@@ -265,18 +270,18 @@ T_JZsdkReturnCode Gimbal_Set_PitchFineTuning(int DeviceName ,int pitch) | @@ -265,18 +270,18 @@ T_JZsdkReturnCode Gimbal_Set_PitchFineTuning(int DeviceName ,int pitch) | ||
265 | 270 | ||
266 | if (DEVICE_VERSION == JZ_H150S || DEVICE_VERSION == JZ_H150T) | 271 | if (DEVICE_VERSION == JZ_H150S || DEVICE_VERSION == JZ_H150T) |
267 | { | 272 | { |
268 | - | 273 | + return Gimbal_H3_H150ST_set_PitchFineTuning(pitch); |
269 | } | 274 | } |
270 | 275 | ||
271 | 276 | ||
272 | if (DEVICE_VERSION == JZ_U3) | 277 | if (DEVICE_VERSION == JZ_U3) |
273 | { | 278 | { |
274 | - | 279 | + return Gimbal_V3S_U3_set_PitchFineTuning(pitch); |
275 | } | 280 | } |
276 | 281 | ||
277 | if (DEVICE_VERSION == JZ_H1T) | 282 | if (DEVICE_VERSION == JZ_H1T) |
278 | { | 283 | { |
279 | - Gimbal_V3S_H1T_set_PitchFineTuning(pitch); | 284 | + return Gimbal_V3S_H1T_set_PitchFineTuning(pitch); |
280 | } | 285 | } |
281 | } | 286 | } |
282 | 287 | ||
@@ -289,20 +294,22 @@ T_JZsdkReturnCode Gimbal_Set_GimbalLinkageControl(int value) | @@ -289,20 +294,22 @@ T_JZsdkReturnCode Gimbal_Set_GimbalLinkageControl(int value) | ||
289 | 294 | ||
290 | if (DEVICE_VERSION == JZ_H150S || DEVICE_VERSION == JZ_H150T) | 295 | if (DEVICE_VERSION == JZ_H150S || DEVICE_VERSION == JZ_H150T) |
291 | { | 296 | { |
292 | - | 297 | + //没这玩意 |
293 | } | 298 | } |
294 | 299 | ||
295 | if (DEVICE_VERSION == JZ_U3) | 300 | if (DEVICE_VERSION == JZ_U3) |
296 | { | 301 | { |
297 | - | 302 | + //没这玩意 |
298 | } | 303 | } |
299 | 304 | ||
300 | if (DEVICE_VERSION == JZ_H1T) | 305 | if (DEVICE_VERSION == JZ_H1T) |
301 | { | 306 | { |
302 | Gimbal_V3S_H1T_Set_GimbalLinkageControl(Gimbal_LinkageNum); | 307 | Gimbal_V3S_H1T_Set_GimbalLinkageControl(Gimbal_LinkageNum); |
308 | + return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | ||
303 | } | 309 | } |
304 | 310 | ||
305 | - return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | 311 | + return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; |
312 | + | ||
306 | } | 313 | } |
307 | 314 | ||
308 | //查询云台联动 | 315 | //查询云台联动 |
@@ -331,6 +338,8 @@ T_JZsdkReturnCode Gimbal_CheckStatus_GimbalLinkage(int *value) | @@ -331,6 +338,8 @@ T_JZsdkReturnCode Gimbal_CheckStatus_GimbalLinkage(int *value) | ||
331 | 338 | ||
332 | return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | 339 | return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; |
333 | } | 340 | } |
341 | + | ||
342 | + return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; | ||
334 | } | 343 | } |
335 | 344 | ||
336 | //收到云台联动值 | 345 | //收到云台联动值 |
@@ -357,6 +366,8 @@ T_JZsdkReturnCode Gimbal_Obtain_GimbalLinkage(int GimbalLinkage) | @@ -357,6 +366,8 @@ T_JZsdkReturnCode Gimbal_Obtain_GimbalLinkage(int GimbalLinkage) | ||
357 | //毕竟是t60s返回来的值 | 366 | //毕竟是t60s返回来的值 |
358 | return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | 367 | return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; |
359 | } | 368 | } |
369 | + | ||
370 | + return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; | ||
360 | } | 371 | } |
361 | 372 | ||
362 | 373 |
@@ -96,9 +96,11 @@ static void *Gimbal_V3S_H1T_Motor_control(void *arg) | @@ -96,9 +96,11 @@ static void *Gimbal_V3S_H1T_Motor_control(void *arg) | ||
96 | } | 96 | } |
97 | 97 | ||
98 | //微调云台 | 98 | //微调云台 |
99 | -int Gimbal_V3S_H1T_set_PitchFineTuning(int PitchFineTuning) | 99 | +T_JZsdkReturnCode Gimbal_V3S_H1T_set_PitchFineTuning(int PitchFineTuning) |
100 | { | 100 | { |
101 | JZsdk_Uart_Send_SetGimbalFineTuningPitch(UART_DEV_1, PitchFineTuning); | 101 | JZsdk_Uart_Send_SetGimbalFineTuningPitch(UART_DEV_1, PitchFineTuning); |
102 | + | ||
103 | + return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | ||
102 | } | 104 | } |
103 | 105 | ||
104 | //查询云台微调值 | 106 | //查询云台微调值 |
@@ -120,7 +122,7 @@ int Gimbal_V3S_H1T_CheckStatus_GimbalLinkage() | @@ -120,7 +122,7 @@ int Gimbal_V3S_H1T_CheckStatus_GimbalLinkage() | ||
120 | } | 122 | } |
121 | 123 | ||
122 | //查询云台值 | 124 | //查询云台值 |
123 | -int Gimbal_V3S_H1T_CheckStatus_GimbalAngle() | 125 | +T_JZsdkReturnCode Gimbal_V3S_H1T_CheckStatus_GimbalAngle() |
124 | { | 126 | { |
125 | JZsdk_Uart_Send_CheckStatus_GimbalAngle(UART_DEV_1, 0); | 127 | JZsdk_Uart_Send_CheckStatus_GimbalAngle(UART_DEV_1, 0); |
126 | } | 128 | } |
@@ -11,6 +11,7 @@ | @@ -11,6 +11,7 @@ | ||
11 | #define GIMBAL_V3S_H1T_H | 11 | #define GIMBAL_V3S_H1T_H |
12 | 12 | ||
13 | /* Includes ------------------------------------------------------------------*/ | 13 | /* Includes ------------------------------------------------------------------*/ |
14 | +#include "JZsdk_Base/JZsdk_Code/JZsdk_Code.h" | ||
14 | 15 | ||
15 | #ifdef __cplusplus | 16 | #ifdef __cplusplus |
16 | extern "C" { | 17 | extern "C" { |
@@ -24,11 +25,11 @@ extern "C" { | @@ -24,11 +25,11 @@ extern "C" { | ||
24 | /* Exported functions --------------------------------------------------------*/ | 25 | /* Exported functions --------------------------------------------------------*/ |
25 | void Gimbal_V3S_H1T_init_motor(void); | 26 | void Gimbal_V3S_H1T_init_motor(void); |
26 | int Gimbal_V3S_H1T_set_PitchAngle(int angle); | 27 | int Gimbal_V3S_H1T_set_PitchAngle(int angle); |
27 | -int Gimbal_V3S_H1T_set_PitchFineTuning(int PitchFineTuning); | 28 | +T_JZsdkReturnCode Gimbal_V3S_H1T_set_PitchFineTuning(int PitchFineTuning); |
28 | int Gimbal_V3S_H1T_CheckStatus_GimbalFineTuning(); | 29 | int Gimbal_V3S_H1T_CheckStatus_GimbalFineTuning(); |
29 | int Gimbal_V3S_H1T_Set_GimbalLinkageControl(int value); | 30 | int Gimbal_V3S_H1T_Set_GimbalLinkageControl(int value); |
30 | int Gimbal_V3S_H1T_CheckStatus_GimbalLinkage(); | 31 | int Gimbal_V3S_H1T_CheckStatus_GimbalLinkage(); |
31 | -int Gimbal_V3S_H1T_CheckStatus_GimbalAngle(); | 32 | +T_JZsdkReturnCode Gimbal_V3S_H1T_CheckStatus_GimbalAngle(); |
32 | 33 | ||
33 | 34 | ||
34 | 35 |
@@ -12,8 +12,6 @@ | @@ -12,8 +12,6 @@ | ||
12 | 12 | ||
13 | /* Private constants ---------------------------------------------------------*/ | 13 | /* Private constants ---------------------------------------------------------*/ |
14 | #define MOTOR_FILE_PATH "/root/motor" | 14 | #define MOTOR_FILE_PATH "/root/motor" |
15 | -#define V3S_U3_angle_PWM_MIN 700 | ||
16 | -#define V3S_U3_angle_PWM_MAX 820 | ||
17 | 15 | ||
18 | #define V3S_U3_MOTOR_ADJUSTMENT 5 //云台微调值 | 16 | #define V3S_U3_MOTOR_ADJUSTMENT 5 //云台微调值 |
19 | 17 | ||
@@ -58,15 +56,6 @@ int Gimbal_V3S_U3_set_angle(int angle) | @@ -58,15 +56,6 @@ int Gimbal_V3S_U3_set_angle(int angle) | ||
58 | return 0; | 56 | return 0; |
59 | } | 57 | } |
60 | 58 | ||
61 | -//微调向上 | ||
62 | -int V3S_U3_SetGimbalRange() | ||
63 | -{ | ||
64 | - //微调的pwm值 提高5 | ||
65 | - V3S_U3_motor_precise_adjustment_pitch = V3S_U3_motor_precise_adjustment_pitch + V3S_U3_MOTOR_ADJUSTMENT; | ||
66 | - | ||
67 | - //写入本地文件 | ||
68 | - V3S_U3_Write_MotorAdjustmentPitch(V3S_U3_motor_precise_adjustment_pitch); | ||
69 | -} | ||
70 | 59 | ||
71 | //控制电机线程 | 60 | //控制电机线程 |
72 | static void *Gimbal_V3S_U3_Motor_control(void *arg) | 61 | static void *Gimbal_V3S_U3_Motor_control(void *arg) |
@@ -74,7 +63,8 @@ static void *Gimbal_V3S_U3_Motor_control(void *arg) | @@ -74,7 +63,8 @@ static void *Gimbal_V3S_U3_Motor_control(void *arg) | ||
74 | //传入的角度 -900~0 | 63 | //传入的角度 -900~0 |
75 | int angle = *(int*)arg; | 64 | int angle = *(int*)arg; |
76 | 65 | ||
77 | - int PWM_num = 0; | 66 | + //微调角度值 |
67 | + angle = angle + V3S_U3_motor_precise_adjustment_pitch; | ||
78 | 68 | ||
79 | printf("V3S_U3_angle:%d\n",angle); | 69 | printf("V3S_U3_angle:%d\n",angle); |
80 | 70 | ||
@@ -98,24 +88,17 @@ static void *Gimbal_V3S_U3_Motor_control(void *arg) | @@ -98,24 +88,17 @@ static void *Gimbal_V3S_U3_Motor_control(void *arg) | ||
98 | free(arg); // 在线程函数中释放动态内存 | 88 | free(arg); // 在线程函数中释放动态内存 |
99 | } | 89 | } |
100 | 90 | ||
101 | -//微调向上 | ||
102 | -void V3S_U3_gimbal_up(void) | 91 | +//云台微调 |
92 | +T_JZsdkReturnCode Gimbal_V3S_U3_set_PitchFineTuning(int Pitch) | ||
103 | { | 93 | { |
104 | - //微调的pwm值 提高5 | ||
105 | - V3S_U3_motor_precise_adjustment_pitch = V3S_U3_motor_precise_adjustment_pitch + V3S_U3_MOTOR_ADJUSTMENT; | 94 | + //微调的角度值 提高Pitch |
95 | + V3S_U3_motor_precise_adjustment_pitch += Pitch; | ||
106 | 96 | ||
107 | //写入本地文件 | 97 | //写入本地文件 |
108 | V3S_U3_Write_MotorAdjustmentPitch(V3S_U3_motor_precise_adjustment_pitch); | 98 | V3S_U3_Write_MotorAdjustmentPitch(V3S_U3_motor_precise_adjustment_pitch); |
109 | -} | ||
110 | 99 | ||
111 | -//向下微调 | ||
112 | -void V3S_U3_gimbal_down(void) | ||
113 | -{ | ||
114 | - //微调的pwm值 减少5 | ||
115 | - V3S_U3_motor_precise_adjustment_pitch = V3S_U3_motor_precise_adjustment_pitch - V3S_U3_MOTOR_ADJUSTMENT; | 100 | + return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; |
116 | 101 | ||
117 | - //写入本地文件 | ||
118 | - V3S_U3_Write_MotorAdjustmentPitch(V3S_U3_motor_precise_adjustment_pitch); | ||
119 | } | 102 | } |
120 | 103 | ||
121 | //从文件中读出电机微调值 | 104 | //从文件中读出电机微调值 |
@@ -169,4 +152,26 @@ static void V3S_U3_Write_MotorAdjustmentPitch(int MotorAdjustmentPitch) | @@ -169,4 +152,26 @@ static void V3S_U3_Write_MotorAdjustmentPitch(int MotorAdjustmentPitch) | ||
169 | fclose(motor_file); | 152 | fclose(motor_file); |
170 | } | 153 | } |
171 | 154 | ||
155 | +int Gimbal_V3S_U3_CheckStatus_GimbalFineTuning(int *AdjustmentPitch) | ||
156 | +{ | ||
157 | + *AdjustmentPitch = V3S_U3_motor_precise_adjustment_pitch; | ||
158 | +} | ||
172 | 159 | ||
160 | +//U3范围 | ||
161 | +T_JZsdkReturnCode V3S_U3_SetGimbalRange(int Range) | ||
162 | +{ | ||
163 | + if (Range == 0xFF) | ||
164 | + { | ||
165 | + printf("设置u3云台最大值\n"); | ||
166 | + JZsdk_Uart_Send_SetGimbalRange(UART_DEV_1, 0, Range); | ||
167 | + return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | ||
168 | + } | ||
169 | + else if (Range == 0x00) | ||
170 | + { | ||
171 | + printf("设置u3云台最小值\n"); | ||
172 | + JZsdk_Uart_Send_SetGimbalRange(UART_DEV_1, 0, Range); | ||
173 | + return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | ||
174 | + } | ||
175 | + | ||
176 | + return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; | ||
177 | +} |
@@ -11,6 +11,7 @@ | @@ -11,6 +11,7 @@ | ||
11 | #define GIMBAL_V3S_U3_H | 11 | #define GIMBAL_V3S_U3_H |
12 | 12 | ||
13 | /* Includes ------------------------------------------------------------------*/ | 13 | /* Includes ------------------------------------------------------------------*/ |
14 | +#include "JZsdk_Base/JZsdk_Code/JZsdk_Code.h" | ||
14 | 15 | ||
15 | #ifdef __cplusplus | 16 | #ifdef __cplusplus |
16 | extern "C" { | 17 | extern "C" { |
@@ -24,7 +25,9 @@ extern "C" { | @@ -24,7 +25,9 @@ extern "C" { | ||
24 | /* Exported functions --------------------------------------------------------*/ | 25 | /* Exported functions --------------------------------------------------------*/ |
25 | void Gimbal_V3S_U3_init_motor(void); | 26 | void Gimbal_V3S_U3_init_motor(void); |
26 | int Gimbal_V3S_U3_set_angle(int angle); | 27 | int Gimbal_V3S_U3_set_angle(int angle); |
27 | -int V3S_U3_SetGimbalRange(); | 28 | +T_JZsdkReturnCode V3S_U3_SetGimbalRange(int Range); |
29 | +T_JZsdkReturnCode Gimbal_V3S_U3_set_PitchFineTuning(int Pitch); | ||
30 | +int Gimbal_V3S_U3_CheckStatus_GimbalFineTuning(int *AdjustmentPitch); | ||
28 | 31 | ||
29 | 32 | ||
30 | 33 |
@@ -50,6 +50,8 @@ PIO_Map *PIO = NULL; | @@ -50,6 +50,8 @@ PIO_Map *PIO = NULL; | ||
50 | unsigned int addr_start, addr_offset; | 50 | unsigned int addr_start, addr_offset; |
51 | unsigned int PageSize, PageMask; | 51 | unsigned int PageSize, PageMask; |
52 | 52 | ||
53 | +static int PowerContorl; | ||
54 | + | ||
53 | #define PIO_BASE_ADDR 0x01C20000 | 55 | #define PIO_BASE_ADDR 0x01C20000 |
54 | #define PIO_ADDR_OFF 0x800 | 56 | #define PIO_ADDR_OFF 0x800 |
55 | #define PIO_CFG_OFF 0x24 //配置 | 57 | #define PIO_CFG_OFF 0x24 //配置 |
@@ -262,6 +264,21 @@ static void PWM_init() //pwm初始化 | @@ -262,6 +264,21 @@ static void PWM_init() //pwm初始化 | ||
262 | printf("v3spwm初始化完成\n"); | 264 | printf("v3spwm初始化完成\n"); |
263 | } | 265 | } |
264 | 266 | ||
267 | +static int V3S_Power_Pin_init() | ||
268 | +{ | ||
269 | + //这里已经将0x1c20000的地址映射到了内存中,但是我们需要的地址是0x01C20800,所以要再加上地址偏移量~ | ||
270 | + PIO = (PIO_Map *)((unsigned int)base_map + addr_offset); | ||
271 | + printf("PIO:0x%.8X", PIO); | ||
272 | + | ||
273 | + if (DEVICE_VERSION == JZ_H10T) | ||
274 | + { | ||
275 | + GPIO_ConfigPin(PB,6,OUT); | ||
276 | + | ||
277 | + } | ||
278 | + | ||
279 | +} | ||
280 | + | ||
281 | + | ||
265 | 282 | ||
266 | 283 | ||
267 | void V3s_Ircut_Init()//引脚初始化 | 284 | void V3s_Ircut_Init()//引脚初始化 |
@@ -273,6 +290,7 @@ void V3s_Ircut_Init()//引脚初始化 | @@ -273,6 +290,7 @@ void V3s_Ircut_Init()//引脚初始化 | ||
273 | if (DEVICE_VERSION == JZ_H10T) | 290 | if (DEVICE_VERSION == JZ_H10T) |
274 | { | 291 | { |
275 | PWM_init() ; //pwm初始化 | 292 | PWM_init() ; //pwm初始化 |
293 | + V3S_Power_Pin_init(); //对外供电初始化 | ||
276 | } | 294 | } |
277 | 295 | ||
278 | //状态灯初始化 | 296 | //状态灯初始化 |
@@ -289,16 +307,21 @@ int V3s_Ircut_uInit() | @@ -289,16 +307,21 @@ int V3s_Ircut_uInit() | ||
289 | printf("munmap success!\n"); | 307 | printf("munmap success!\n"); |
290 | } | 308 | } |
291 | 309 | ||
292 | -void TypeC_PowerControl(int power_control) | 310 | +void Ircut_V3S_Set_OutPutPowerControl(int power_control) |
293 | { | 311 | { |
294 | - if (power_control == 1) | ||
295 | - { | ||
296 | - GPIO_ConfigPin(PB,6,OUT); //电源脚初始化 | ||
297 | - GPIO_SetPin(PB,6,1); //打开开关 | ||
298 | - } | ||
299 | - else if(power_control ==0) | 312 | + if (DEVICE_VERSION == JZ_H10T) |
300 | { | 313 | { |
301 | - GPIO_SetPin(PB,6,0); //关闭开关 | ||
302 | - GPIO_ConfigPin(PB,6,DISABLE); //释放引脚 | 314 | + if (power_control == 1) |
315 | + { | ||
316 | + GPIO_ConfigPin(PB,6,OUT); //电源脚初始化 | ||
317 | + GPIO_SetPin(PB,6,1); //打开开关 | ||
318 | + } | ||
319 | + else if(power_control ==0) | ||
320 | + { | ||
321 | + GPIO_SetPin(PB,6,0); //关闭开关 | ||
322 | + GPIO_ConfigPin(PB,6,DISABLE); //释放引脚 | ||
323 | + } | ||
324 | + | ||
303 | } | 325 | } |
326 | + | ||
304 | } | 327 | } |
@@ -5,5 +5,6 @@ void V3s_Ircut_Init(); | @@ -5,5 +5,6 @@ void V3s_Ircut_Init(); | ||
5 | int V3s_Ircut_uInit() ; | 5 | int V3s_Ircut_uInit() ; |
6 | void V3s_set_amplifier(int amplifier_mode); | 6 | void V3s_set_amplifier(int amplifier_mode); |
7 | int V3s_PWM_contrl(int PWM_num); | 7 | int V3s_PWM_contrl(int PWM_num); |
8 | +void Ircut_V3S_Set_OutPutPowerControl(int power_control); | ||
8 | 9 | ||
9 | #endif | 10 | #endif |
@@ -3,7 +3,9 @@ | @@ -3,7 +3,9 @@ | ||
3 | #include "./V3s_ircut/V3s_ircut.h" | 3 | #include "./V3s_ircut/V3s_ircut.h" |
4 | #include "./H3_ircut/H3_ircut.h" | 4 | #include "./H3_ircut/H3_ircut.h" |
5 | #include "./H3_ircut/Ircut_H3_H10/Ircut_H3_H10.h" | 5 | #include "./H3_ircut/Ircut_H3_H10/Ircut_H3_H10.h" |
6 | +#include "ircut.h" | ||
6 | 7 | ||
8 | +static int OutPutPower = JZ_FLAGCODE_OFF; | ||
7 | 9 | ||
8 | void Ircut_Init()//引脚初始化 | 10 | void Ircut_Init()//引脚初始化 |
9 | { | 11 | { |
@@ -61,3 +63,33 @@ int Ircut_PWM_control(int pwm_num) | @@ -61,3 +63,33 @@ int Ircut_PWM_control(int pwm_num) | ||
61 | } | 63 | } |
62 | 64 | ||
63 | } | 65 | } |
66 | + | ||
67 | +//对外电源控制 | ||
68 | +T_JZsdkReturnCode Ircut_Set_OutPutPower_Control(int value) | ||
69 | +{ | ||
70 | + if (DEVICE_VERSION == JZ_H10T) | ||
71 | + { | ||
72 | + if (value == JZ_FLAGCODE_OFF || value == JZ_FLAGCODE_ON) | ||
73 | + { | ||
74 | + Ircut_V3S_Set_OutPutPowerControl(value); | ||
75 | + OutPutPower = value; | ||
76 | + return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | ||
77 | + } | ||
78 | + } | ||
79 | + | ||
80 | + return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; | ||
81 | +} | ||
82 | + | ||
83 | + | ||
84 | +//查询是否有开启电源控制 | ||
85 | +T_JZsdkReturnCode Ircut_CheckStatus_OutPutPower(int *value) | ||
86 | +{ | ||
87 | + if (DEVICE_VERSION == JZ_H10T) | ||
88 | + { | ||
89 | + *value = OutPutPower; | ||
90 | + | ||
91 | + return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | ||
92 | + } | ||
93 | + | ||
94 | + return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE; | ||
95 | +} |
@@ -11,6 +11,7 @@ | @@ -11,6 +11,7 @@ | ||
11 | #define IRCUT_H | 11 | #define IRCUT_H |
12 | 12 | ||
13 | /* Includes ------------------------------------------------------------------*/ | 13 | /* Includes ------------------------------------------------------------------*/ |
14 | +#include "JZsdk_Base/JZsdk_Code/JZsdk_Code.h" | ||
14 | 15 | ||
15 | #ifdef __cplusplus | 16 | #ifdef __cplusplus |
16 | extern "C" { | 17 | extern "C" { |
@@ -26,6 +27,8 @@ void Ircut_Init(); | @@ -26,6 +27,8 @@ void Ircut_Init(); | ||
26 | int Ircut_uInit() ; | 27 | int Ircut_uInit() ; |
27 | void set_amplifier(int amplifier_mode); | 28 | void set_amplifier(int amplifier_mode); |
28 | int Ircut_PWM_control(int pwm_num); | 29 | int Ircut_PWM_control(int pwm_num); |
30 | +T_JZsdkReturnCode Ircut_Set_OutPutPower_Control(int value); | ||
31 | +T_JZsdkReturnCode Ircut_CheckStatus_OutPutPower(int *value); | ||
29 | 32 | ||
30 | #ifdef __cplusplus | 33 | #ifdef __cplusplus |
31 | } | 34 | } |
@@ -25,12 +25,12 @@ T_JZsdkReturnCode AudioFile_SaveAudioFileStart(char *FileName) | @@ -25,12 +25,12 @@ T_JZsdkReturnCode AudioFile_SaveAudioFileStart(char *FileName) | ||
25 | memset(SaveFile, 0, 1024); | 25 | memset(SaveFile, 0, 1024); |
26 | sprintf(SaveFile, "/root/sdcard/audio/%s", FileName); | 26 | sprintf(SaveFile, "/root/sdcard/audio/%s", FileName); |
27 | 27 | ||
28 | - USER_LOG_INFO("上传文件的存储路径为%s",SaveFile); | 28 | + JZSDK_LOG_INFO("上传文件的存储路径为%s",SaveFile); |
29 | 29 | ||
30 | g_AudioFile_SaveAudioFile_NameFp = fopen(SaveFile, "w"); | 30 | g_AudioFile_SaveAudioFile_NameFp = fopen(SaveFile, "w"); |
31 | if (g_AudioFile_SaveAudioFile_NameFp == NULL) | 31 | if (g_AudioFile_SaveAudioFile_NameFp == NULL) |
32 | { | 32 | { |
33 | - USER_LOG_INFO("上传audio文件创建失败"); | 33 | + JZSDK_LOG_INFO("上传audio文件创建失败"); |
34 | return -1; | 34 | return -1; |
35 | } | 35 | } |
36 | 36 | ||
@@ -43,6 +43,11 @@ T_JZsdkReturnCode AudioFile_SaveAudioFileStart(char *FileName) | @@ -43,6 +43,11 @@ T_JZsdkReturnCode AudioFile_SaveAudioFileStart(char *FileName) | ||
43 | //正在保存传输中的流 | 43 | //正在保存传输中的流 |
44 | int AudioFile_SaveAudioFileTrans(char *SaveData, int size) | 44 | int AudioFile_SaveAudioFileTrans(char *SaveData, int size) |
45 | { | 45 | { |
46 | + //如果创建的保存文件为空 | ||
47 | + if (g_AudioFile_SaveAudioFile_NameFp == NULL) | ||
48 | + { | ||
49 | + return -1; | ||
50 | + } | ||
46 | int writelen; | 51 | int writelen; |
47 | 52 | ||
48 | //如果创建的保存文件不为空 | 53 | //如果创建的保存文件不为空 |
@@ -60,6 +65,7 @@ int AudioFile_SaveAudioFileTrans(char *SaveData, int size) | @@ -60,6 +65,7 @@ int AudioFile_SaveAudioFileTrans(char *SaveData, int size) | ||
60 | 65 | ||
61 | g_AudioFile_SaveAudioFile_len = g_AudioFile_SaveAudioFile_len +writelen; | 66 | g_AudioFile_SaveAudioFile_len = g_AudioFile_SaveAudioFile_len +writelen; |
62 | } | 67 | } |
68 | + | ||
63 | //传输结束 | 69 | //传输结束 |
64 | int AudioFile_SaveAudioFileStop() | 70 | int AudioFile_SaveAudioFileStop() |
65 | { | 71 | { |
@@ -69,6 +75,12 @@ int AudioFile_SaveAudioFileStop() | @@ -69,6 +75,12 @@ int AudioFile_SaveAudioFileStop() | ||
69 | printf("未创建AudioFile保存的文件,退出保存操作\n"); | 75 | printf("未创建AudioFile保存的文件,退出保存操作\n"); |
70 | return -1; | 76 | return -1; |
71 | } | 77 | } |
78 | + | ||
79 | + //如果创建的保存文件为空 | ||
80 | + if (g_AudioFile_SaveAudioFile_NameFp == NULL) | ||
81 | + { | ||
82 | + return -1; | ||
83 | + } | ||
72 | 84 | ||
73 | //1、关闭存储的文件 | 85 | //1、关闭存储的文件 |
74 | fflush(g_AudioFile_SaveAudioFile_NameFp); | 86 | fflush(g_AudioFile_SaveAudioFile_NameFp); |
@@ -245,7 +245,7 @@ int Music_SendFrame_CheckMusicPlayStatus() | @@ -245,7 +245,7 @@ int Music_SendFrame_CheckMusicPlayStatus() | ||
245 | //向音频库发送播放音乐 | 245 | //向音频库发送播放音乐 |
246 | int Music_SendFrame_PlayMusic(char *music_name,int datasize)//播放指定音乐,music_name文件名 | 246 | int Music_SendFrame_PlayMusic(char *music_name,int datasize)//播放指定音乐,music_name文件名 |
247 | { | 247 | { |
248 | - uint8_t playdata[128]={0x5a,0x5a,0x77,0x00,0x00,0x01,0x00,0x52,0x03}; | 248 | + uint8_t playdata[128]={0x5a,0x5a,0x77,0x00,0x00,0x01,0x00,0x52,0x02}; |
249 | memcpy(&playdata[9],music_name,datasize); | 249 | memcpy(&playdata[9],music_name,datasize); |
250 | playdata[4]=(uint8_t)(11+datasize);//补全长度位 | 250 | playdata[4]=(uint8_t)(11+datasize);//补全长度位 |
251 | 251 | ||
@@ -259,6 +259,8 @@ int Music_SendFrame_PlayMusic(char *music_name,int datasize)//播放指定音乐 | @@ -259,6 +259,8 @@ int Music_SendFrame_PlayMusic(char *music_name,int datasize)//播放指定音乐 | ||
259 | } | 259 | } |
260 | } | 260 | } |
261 | 261 | ||
262 | + playdata[8] = 0x03; | ||
263 | + | ||
262 | //如果没有找到,判断是否是海外版的tts内容 | 264 | //如果没有找到,判断是否是海外版的tts内容 |
263 | int result = strcmp(music_name, "IntlTTS.wav"); | 265 | int result = strcmp(music_name, "IntlTTS.wav"); |
264 | if (result == 0) | 266 | if (result == 0) |
@@ -504,21 +506,26 @@ void returnframe(char* data, int datasize)//回调函数,监听播放状态 | @@ -504,21 +506,26 @@ void returnframe(char* data, int datasize)//回调函数,监听播放状态 | ||
504 | } | 506 | } |
505 | if(data[6]==0x50) | 507 | if(data[6]==0x50) |
506 | { //开始播放获取音频总时长 | 508 | { //开始播放获取音频总时长 |
507 | - music_time=0; | ||
508 | - for(int i=7;data[i]!=0;i++){ | ||
509 | - music_time=music_time*16+data[i]; | ||
510 | - } | ||
511 | - if(music_time<=0){ | 509 | + music_time=0; |
510 | + int num; | ||
511 | + | ||
512 | + for(int i=0 ;data[7+i]!=0;i++) | ||
513 | + { | ||
514 | + num = (data[7+i]); | ||
515 | + music_time += ( num << (i*8) ); | ||
512 | } | 516 | } |
513 | printf("总时长:%d\n",music_time); | 517 | printf("总时长:%d\n",music_time); |
518 | + | ||
514 | } | 519 | } |
515 | if(data[6]==0x51) | 520 | if(data[6]==0x51) |
516 | { //当前播放时长 | 521 | { //当前播放时长 |
517 | music_nowtime=0; | 522 | music_nowtime=0; |
523 | + int num; | ||
518 | 524 | ||
519 | - for(int i=7;data[i]!=0;i++) | ||
520 | - { | ||
521 | - music_nowtime=music_nowtime*16+data[i]; | 525 | + for(int i=0 ;data[7+i]!=0;i++) |
526 | + { | ||
527 | + num = (data[7+i]); | ||
528 | + music_nowtime += ( num << (i*8) ); | ||
522 | } | 529 | } |
523 | 530 | ||
524 | printf("当前时长:%d\n",music_nowtime); | 531 | printf("当前时长:%d\n",music_nowtime); |
@@ -527,8 +534,8 @@ void returnframe(char* data, int datasize)//回调函数,监听播放状态 | @@ -527,8 +534,8 @@ void returnframe(char* data, int datasize)//回调函数,监听播放状态 | ||
527 | if(data[6]==0xff) //播放结束 | 534 | if(data[6]==0xff) //播放结束 |
528 | { | 535 | { |
529 | printf("播放结束\n"); | 536 | printf("播放结束\n"); |
530 | - // if(music_nowtime>=music_time ) | ||
531 | - // { | 537 | + if(music_nowtime>=music_time - 1) |
538 | + { | ||
532 | printf("播放整首歌结束\n"); | 539 | printf("播放整首歌结束\n"); |
533 | //循环模式打开 | 540 | //循环模式打开 |
534 | if (MusicLoopPlayMode == 1) | 541 | if (MusicLoopPlayMode == 1) |
@@ -546,11 +553,11 @@ void returnframe(char* data, int datasize)//回调函数,监听播放状态 | @@ -546,11 +553,11 @@ void returnframe(char* data, int datasize)//回调函数,监听播放状态 | ||
546 | //回复关闭状态 | 553 | //回复关闭状态 |
547 | Megaphone_Reply_PlayStatus_end(); | 554 | Megaphone_Reply_PlayStatus_end(); |
548 | } | 555 | } |
549 | - //} | ||
550 | - // else | ||
551 | - // { | ||
552 | - // printf("播放结束时间对不上轴,music_nowtime:%d music_time:%d\n",music_nowtime,music_time); | ||
553 | - // } | 556 | + } |
557 | + else | ||
558 | + { | ||
559 | + printf("播放结束时间对不上轴,继续播放,music_nowtime:%d music_time:%d\n",music_nowtime,music_time); | ||
560 | + } | ||
554 | 561 | ||
555 | } | 562 | } |
556 | if(data[6]==0x43) | 563 | if(data[6]==0x43) |
@@ -43,7 +43,13 @@ static int Music_RealTimeMP2_WriteData_init(); | @@ -43,7 +43,13 @@ static int Music_RealTimeMP2_WriteData_init(); | ||
43 | 43 | ||
44 | 44 | ||
45 | T_JZsdkReturnCode Music_RealTimeMP2_start() | 45 | T_JZsdkReturnCode Music_RealTimeMP2_start() |
46 | -{ | 46 | +{ |
47 | + //如果实时mp2开启 | ||
48 | + if (ReadTimeMP2_StatusFlag == JZ_FLAGCODE_ON) | ||
49 | + { | ||
50 | + return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE ; | ||
51 | + } | ||
52 | + | ||
47 | //1、开启实时mp2模式 | 53 | //1、开启实时mp2模式 |
48 | ReadTimeMP2_StatusFlag = JZ_FLAGCODE_ON; | 54 | ReadTimeMP2_StatusFlag = JZ_FLAGCODE_ON; |
49 | 55 | ||
@@ -58,6 +64,11 @@ T_JZsdkReturnCode Music_RealTimeMP2_start() | @@ -58,6 +64,11 @@ T_JZsdkReturnCode Music_RealTimeMP2_start() | ||
58 | 64 | ||
59 | T_JZsdkReturnCode Music_RealTimeMP2_trans(unsigned char *getdata, int len) | 65 | T_JZsdkReturnCode Music_RealTimeMP2_trans(unsigned char *getdata, int len) |
60 | { | 66 | { |
67 | + //如果实时mp2未开启 | ||
68 | + if (ReadTimeMP2_StatusFlag != JZ_FLAGCODE_ON) | ||
69 | + { | ||
70 | + return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE ; | ||
71 | + } | ||
61 | 72 | ||
62 | Music_RealTimeMP2_WriteDataToLoop(getdata, len); | 73 | Music_RealTimeMP2_WriteDataToLoop(getdata, len); |
63 | 74 | ||
@@ -66,6 +77,12 @@ T_JZsdkReturnCode Music_RealTimeMP2_trans(unsigned char *getdata, int len) | @@ -66,6 +77,12 @@ T_JZsdkReturnCode Music_RealTimeMP2_trans(unsigned char *getdata, int len) | ||
66 | 77 | ||
67 | T_JZsdkReturnCode Music_RealTimeMP2_stop() | 78 | T_JZsdkReturnCode Music_RealTimeMP2_stop() |
68 | { | 79 | { |
80 | + //如果实时mp2未开启 | ||
81 | + if (ReadTimeMP2_StatusFlag != JZ_FLAGCODE_ON) | ||
82 | + { | ||
83 | + return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE ; | ||
84 | + } | ||
85 | + | ||
69 | ReadTimeMP2_StatusFlag = JZ_FLAGCODE_OFF; | 86 | ReadTimeMP2_StatusFlag = JZ_FLAGCODE_OFF; |
70 | 87 | ||
71 | Music_RealTimeMP2__PlayData_LoopReadFlag = JZ_FLAGCODE_OFF; | 88 | Music_RealTimeMP2__PlayData_LoopReadFlag = JZ_FLAGCODE_OFF; |
@@ -197,7 +197,7 @@ int TTS_Play(int len, char *data, int ReplyFlag) | @@ -197,7 +197,7 @@ int TTS_Play(int len, char *data, int ReplyFlag) | ||
197 | 197 | ||
198 | static int TTS(int name,int volume,int speed,int len,char *data, int ReplyFlag)//文本播放UTF-8,name发音人默认name==1;volume合成音量默认合成音量100;speed语速默认speed==50;argv文本内容。 | 198 | static int TTS(int name,int volume,int speed,int len,char *data, int ReplyFlag)//文本播放UTF-8,name发音人默认name==1;volume合成音量默认合成音量100;speed语速默认speed==50;argv文本内容。 |
199 | { | 199 | { |
200 | - if(name < 40) //中英文或者方言 | 200 | + if(name < 0x40) //中英文或者方言 |
201 | { | 201 | { |
202 | pthread_t TTS_flie_task; | 202 | pthread_t TTS_flie_task; |
203 | pthread_attr_t task_attribute; //线程属性 | 203 | pthread_attr_t task_attribute; //线程属性 |
@@ -236,7 +236,9 @@ static int TTS(int name,int volume,int speed,int len,char *data, int ReplyFlag)/ | @@ -236,7 +236,9 @@ static int TTS(int name,int volume,int speed,int len,char *data, int ReplyFlag)/ | ||
236 | } | 236 | } |
237 | else if(name>0x40&&name<0x50)//外语 | 237 | else if(name>0x40&&name<0x50)//外语 |
238 | { | 238 | { |
239 | +#if FIRMWARE_ORIGIN == OVERSEAS_VERSION | ||
239 | espeak_tts(name,speed,data,len); | 240 | espeak_tts(name,speed,data,len); |
241 | +#endif | ||
240 | } | 242 | } |
241 | } | 243 | } |
242 | 244 |
@@ -73,7 +73,7 @@ int Opus_RealTimeVoice_Start(int decode_rate) | @@ -73,7 +73,7 @@ int Opus_RealTimeVoice_Start(int decode_rate) | ||
73 | //3、创建解码线程 | 73 | //3、创建解码线程 |
74 | Opus_RealTimeVoice_DecodeAndPlay_init(); | 74 | Opus_RealTimeVoice_DecodeAndPlay_init(); |
75 | 75 | ||
76 | - USER_LOG_INFO("实时喊话初始化成功"); | 76 | + JZSDK_LOG_INFO("实时喊话初始化成功"); |
77 | 77 | ||
78 | return 0 ; | 78 | return 0 ; |
79 | } | 79 | } |
@@ -92,7 +92,7 @@ static int Opus_RealTimeVoice_DecodeAndPlay_init() | @@ -92,7 +92,7 @@ static int Opus_RealTimeVoice_DecodeAndPlay_init() | ||
92 | //创建opus解码器 | 92 | //创建opus解码器 |
93 | Opus_RealTimeVoice_decoder = opus_decoder_create(RealTimeDecodeRate, WIDGET_SPEAKER_AUDIO_OPUS_CHANNELS, &err); | 93 | Opus_RealTimeVoice_decoder = opus_decoder_create(RealTimeDecodeRate, WIDGET_SPEAKER_AUDIO_OPUS_CHANNELS, &err); |
94 | if (err < 0) { | 94 | if (err < 0) { |
95 | - USER_LOG_ERROR("实时喊话器解码器创建失败"); | 95 | + JZSDK_LOG_ERROR("实时喊话器解码器创建失败"); |
96 | ReadTimeVoice_StatusFlag = JZ_FLAGCODE_OFF; | 96 | ReadTimeVoice_StatusFlag = JZ_FLAGCODE_OFF; |
97 | return -1; | 97 | return -1; |
98 | } | 98 | } |
@@ -108,7 +108,7 @@ static int Opus_RealTimeVoice_DecodeAndPlay_init() | @@ -108,7 +108,7 @@ static int Opus_RealTimeVoice_DecodeAndPlay_init() | ||
108 | int opus_Protection = pthread_create(&loop_play_task,&task_attribute,Opus_RealTimeVoice_LoopPlay,NULL); //线程 | 108 | int opus_Protection = pthread_create(&loop_play_task,&task_attribute,Opus_RealTimeVoice_LoopPlay,NULL); //线程 |
109 | if(opus_Protection != 0) | 109 | if(opus_Protection != 0) |
110 | { | 110 | { |
111 | - USER_LOG_ERROR("创建自动解码线程失败!"); | 111 | + JZSDK_LOG_ERROR("创建自动解码线程失败!"); |
112 | ReadTimeVoice_StatusFlag = JZ_FLAGCODE_OFF; | 112 | ReadTimeVoice_StatusFlag = JZ_FLAGCODE_OFF; |
113 | return -2; | 113 | return -2; |
114 | } | 114 | } |
@@ -125,7 +125,7 @@ static int Opus_RealTimeVoice_PlayData(unsigned char *data,int len) | @@ -125,7 +125,7 @@ static int Opus_RealTimeVoice_PlayData(unsigned char *data,int len) | ||
125 | //解码 | 125 | //解码 |
126 | frame_size = opus_decode(Opus_RealTimeVoice_decoder, (const unsigned char *)data, len, out, WIDGET_SPEAKER_AUDIO_OPUS_MAX_FRAME_SIZE, 0); | 126 | frame_size = opus_decode(Opus_RealTimeVoice_decoder, (const unsigned char *)data, len, out, WIDGET_SPEAKER_AUDIO_OPUS_MAX_FRAME_SIZE, 0); |
127 | if (frame_size < 0) { | 127 | if (frame_size < 0) { |
128 | - USER_LOG_ERROR("decoder failed"); | 128 | + JZSDK_LOG_ERROR("decoder failed"); |
129 | return -1; | 129 | return -1; |
130 | } | 130 | } |
131 | 131 | ||
@@ -147,7 +147,7 @@ static void *Opus_RealTimeVoice_LoopPlay(void *arg) | @@ -147,7 +147,7 @@ static void *Opus_RealTimeVoice_LoopPlay(void *arg) | ||
147 | 147 | ||
148 | Opus_RealTimeVoice_LoopReadStopFlag = JZ_FLAGCODE_ON; | 148 | Opus_RealTimeVoice_LoopReadStopFlag = JZ_FLAGCODE_ON; |
149 | int ret; | 149 | int ret; |
150 | - USER_LOG_INFO("实施喊话,数据解码播放线程建立\n"); | 150 | + JZSDK_LOG_INFO("实施喊话,数据解码播放线程建立\n"); |
151 | 151 | ||
152 | //设立缓冲区域 | 152 | //设立缓冲区域 |
153 | int range = 0; | 153 | int range = 0; |
@@ -183,11 +183,11 @@ static void *Opus_RealTimeVoice_LoopPlay(void *arg) | @@ -183,11 +183,11 @@ static void *Opus_RealTimeVoice_LoopPlay(void *arg) | ||
183 | //录音喊话异常中断 | 183 | //录音喊话异常中断 |
184 | Opus_RealTimeVoice_AbnormalInterrupt(); | 184 | Opus_RealTimeVoice_AbnormalInterrupt(); |
185 | 185 | ||
186 | - USER_LOG_INFO("实时喊话关闭\n"); | 186 | + JZSDK_LOG_INFO("实时喊话关闭\n"); |
187 | } | 187 | } |
188 | else | 188 | else |
189 | { | 189 | { |
190 | - USER_LOG_ERROR("实时喊话解码器出错"); | 190 | + JZSDK_LOG_ERROR("实时喊话解码器出错"); |
191 | //录音喊话异常中断 | 191 | //录音喊话异常中断 |
192 | Opus_RealTimeVoice_AbnormalInterrupt(); | 192 | Opus_RealTimeVoice_AbnormalInterrupt(); |
193 | 193 | ||
@@ -244,7 +244,7 @@ static int Opus_RealTimeVoice_WriteData_init() | @@ -244,7 +244,7 @@ static int Opus_RealTimeVoice_WriteData_init() | ||
244 | int opus_Protection = pthread_create(&WriteDataTask,&task_attribute,Opus_RealTimeVoice_WriteData_Task,NULL); //线程 | 244 | int opus_Protection = pthread_create(&WriteDataTask,&task_attribute,Opus_RealTimeVoice_WriteData_Task,NULL); //线程 |
245 | if(opus_Protection != 0) | 245 | if(opus_Protection != 0) |
246 | { | 246 | { |
247 | - USER_LOG_ERROR("创建输入缓冲池线程线程失败!"); | 247 | + JZSDK_LOG_ERROR("创建输入缓冲池线程线程失败!"); |
248 | ReadTimeVoice_StatusFlag = JZ_FLAGCODE_OFF; | 248 | ReadTimeVoice_StatusFlag = JZ_FLAGCODE_OFF; |
249 | return -2; | 249 | return -2; |
250 | } | 250 | } |
@@ -266,7 +266,7 @@ static void *Opus_RealTimeVoice_WriteData_Task(void *arg) | @@ -266,7 +266,7 @@ static void *Opus_RealTimeVoice_WriteData_Task(void *arg) | ||
266 | { | 266 | { |
267 | 267 | ||
268 | int ret; | 268 | int ret; |
269 | - USER_LOG_INFO("实施喊话,输入数据缓冲线程建立"); | 269 | + JZSDK_LOG_INFO("实施喊话,输入数据缓冲线程建立"); |
270 | Opus_RealTimeVoice_WriteDataFlag = JZ_FLAGCODE_ON; | 270 | Opus_RealTimeVoice_WriteDataFlag = JZ_FLAGCODE_ON; |
271 | 271 | ||
272 | Opus_RealTimeVoice_WriteDataStopFlag = JZ_FLAGCODE_ON; | 272 | Opus_RealTimeVoice_WriteDataStopFlag = JZ_FLAGCODE_ON; |
@@ -328,7 +328,7 @@ int Opus_RealTimeVoice_WriteDataToLoop(unsigned char *buf,int length) | @@ -328,7 +328,7 @@ int Opus_RealTimeVoice_WriteDataToLoop(unsigned char *buf,int length) | ||
328 | //判断输入的数据长度是否正常 | 328 | //判断输入的数据长度是否正常 |
329 | if (length <= 0) | 329 | if (length <= 0) |
330 | { | 330 | { |
331 | - USER_LOG_ERROR("输入进缓冲池的数据长度有误:%d",length); | 331 | + JZSDK_LOG_ERROR("输入进缓冲池的数据长度有误:%d",length); |
332 | return -1; | 332 | return -1; |
333 | } | 333 | } |
334 | 334 | ||
@@ -458,13 +458,13 @@ static int Opus_RealTimeVoice_DeinitDecoder() | @@ -458,13 +458,13 @@ static int Opus_RealTimeVoice_DeinitDecoder() | ||
458 | if (Opus_RealTimeVoice_decoder != NULL) | 458 | if (Opus_RealTimeVoice_decoder != NULL) |
459 | { | 459 | { |
460 | //释放掉解码器 | 460 | //释放掉解码器 |
461 | - USER_LOG_INFO("释放解码器完成"); | 461 | + JZSDK_LOG_INFO("释放解码器完成"); |
462 | opus_decoder_destroy(Opus_RealTimeVoice_decoder); | 462 | opus_decoder_destroy(Opus_RealTimeVoice_decoder); |
463 | Opus_RealTimeVoice_decoder = NULL; | 463 | Opus_RealTimeVoice_decoder = NULL; |
464 | } | 464 | } |
465 | else | 465 | else |
466 | { | 466 | { |
467 | - USER_LOG_INFO("解码器为空"); | 467 | + JZSDK_LOG_INFO("解码器为空"); |
468 | } | 468 | } |
469 | } | 469 | } |
470 | 470 |
@@ -30,6 +30,7 @@ static int Opus_play_Flag = 0; //opus的播放标志位 | @@ -30,6 +30,7 @@ static int Opus_play_Flag = 0; //opus的播放标志位 | ||
30 | 30 | ||
31 | static int RecordVoiceOpusLoopPlayMode = 0; //opus的循环播放标志位 | 31 | static int RecordVoiceOpusLoopPlayMode = 0; //opus的循环播放标志位 |
32 | 32 | ||
33 | + | ||
33 | /* | 34 | /* |
34 | * | 35 | * |
35 | * 存储opus文件 | 36 | * 存储opus文件 |
@@ -54,6 +55,11 @@ int Opus_RecordVoice_SaveOpusStart(int decode_rate) | @@ -54,6 +55,11 @@ int Opus_RecordVoice_SaveOpusStart(int decode_rate) | ||
54 | //正在保存传输中的流 | 55 | //正在保存传输中的流 |
55 | int Opus_RecordVoice_SaveOpusTrans(char *SaveData, int size) | 56 | int Opus_RecordVoice_SaveOpusTrans(char *SaveData, int size) |
56 | { | 57 | { |
58 | + if (SaveFixedOpus_fp == NULL) { | ||
59 | + printf("固定opus保存文件未打开,不能正常传输流"); | ||
60 | + return -1; | ||
61 | + } | ||
62 | + | ||
57 | int writelen; | 63 | int writelen; |
58 | 64 | ||
59 | //如果创建的保存文件不为空 | 65 | //如果创建的保存文件不为空 |
@@ -69,11 +75,17 @@ int Opus_RecordVoice_SaveOpusTrans(char *SaveData, int size) | @@ -69,11 +75,17 @@ int Opus_RecordVoice_SaveOpusTrans(char *SaveData, int size) | ||
69 | } | 75 | } |
70 | 76 | ||
71 | SaveFixedOpus_len = SaveFixedOpus_len +size; | 77 | SaveFixedOpus_len = SaveFixedOpus_len +size; |
78 | + | ||
72 | } | 79 | } |
73 | 80 | ||
74 | //传输结束,开始解码 | 81 | //传输结束,开始解码 |
75 | int Opus_RecordVoice_SaveOpusStop() | 82 | int Opus_RecordVoice_SaveOpusStop() |
76 | { | 83 | { |
84 | + if (SaveFixedOpus_fp == NULL) { | ||
85 | + printf("固定opus保存文件未打开,不能正常解码"); | ||
86 | + return -1; | ||
87 | + } | ||
88 | + | ||
77 | //1、关闭存储的文件 | 89 | //1、关闭存储的文件 |
78 | fflush(SaveFixedOpus_fp); | 90 | fflush(SaveFixedOpus_fp); |
79 | fclose(SaveFixedOpus_fp); | 91 | fclose(SaveFixedOpus_fp); |
@@ -127,7 +139,7 @@ static void *PlayFixedFile_task(void *arg) | @@ -127,7 +139,7 @@ static void *PlayFixedFile_task(void *arg) | ||
127 | if (i == 15) | 139 | if (i == 15) |
128 | { | 140 | { |
129 | printf("opus解码超时,无法播放\n"); | 141 | printf("opus解码超时,无法播放\n"); |
130 | - pthread_exit(NULL);; | 142 | + pthread_exit(NULL); |
131 | } | 143 | } |
132 | 144 | ||
133 | printf("播放指定位置的opus pcm文件\n"); | 145 | printf("播放指定位置的opus pcm文件\n"); |
@@ -8,6 +8,7 @@ | @@ -8,6 +8,7 @@ | ||
8 | #include "JZsdk_Uart_Input.h" | 8 | #include "JZsdk_Uart_Input.h" |
9 | #include "Uart_Config.h" | 9 | #include "Uart_Config.h" |
10 | #include "Psdk_UI_io.h" | 10 | #include "Psdk_UI_io.h" |
11 | +#include "ircut.h" | ||
11 | 12 | ||
12 | static char *UI_CONTROL_ERROR = "ui_control处错误"; | 13 | static char *UI_CONTROL_ERROR = "ui_control处错误"; |
13 | 14 | ||
@@ -1065,6 +1066,78 @@ T_JZsdkReturnCode UIcontrol_CheckStatus_WarningLightColor(int *ValueColor1, int | @@ -1065,6 +1066,78 @@ T_JZsdkReturnCode UIcontrol_CheckStatus_WarningLightColor(int *ValueColor1, int | ||
1065 | Lighting_CheckStatus_WarningLightColor(ValueColor1, ValueColor2); | 1066 | Lighting_CheckStatus_WarningLightColor(ValueColor1, ValueColor2); |
1066 | } | 1067 | } |
1067 | 1068 | ||
1069 | + | ||
1070 | +/**************************************************************************************************************************************** | ||
1071 | + * | ||
1072 | + * 电源相关 | ||
1073 | + * | ||
1074 | + * ****************************************************************************************************************************************/ | ||
1075 | +/********* | ||
1076 | + * | ||
1077 | + * 对外供电开关 | ||
1078 | + * | ||
1079 | + **********/ | ||
1080 | +T_JZsdkReturnCode UIcontrol_Set_OutPutPower_Control(int DeviceName, int Value) | ||
1081 | +{ | ||
1082 | + //调用供电开关的接口 | ||
1083 | + T_JZsdkReturnCode ret = Ircut_Set_OutPutPower_Control(Value); | ||
1084 | + if (ret != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | ||
1085 | + { | ||
1086 | + printf("%s:%s\n",UI_CONTROL_ERROR,JZsdk_GetReturnCodeMessage(ret)); | ||
1087 | + return ret; | ||
1088 | + } | ||
1089 | + | ||
1090 | + delayMs(10); | ||
1091 | + | ||
1092 | + //获取当前供电开关值 | ||
1093 | + int OutPutPowerValue; | ||
1094 | + Ircut_CheckStatus_OutPutPower(&OutPutPowerValue); | ||
1095 | + | ||
1096 | + | ||
1097 | + //通知其他设备的ui界面变化 | ||
1098 | + //如果4G模块有启动 | ||
1099 | + if ((JZsdk_Get_UartDev_UseFlag(UART_4G) == JZ_FLAGCODE_ON) && (DeviceName != UART_4G) ) | ||
1100 | + { | ||
1101 | + JZsdk_Uart_Send_OutputPowerStatus(UART_4G, 0, OutPutPowerValue); | ||
1102 | + } | ||
1103 | + //如果设备1有启动 | ||
1104 | + if ( (JZsdk_Get_UartDev_UseFlag(UART_DEV_1) == JZ_FLAGCODE_ON) && (DeviceName != UART_DEV_1) ) | ||
1105 | + { | ||
1106 | + JZsdk_Uart_Send_OutputPowerStatus(UART_DEV_1, 0, OutPutPowerValue); | ||
1107 | + | ||
1108 | + } | ||
1109 | + //如果设备2有启动 | ||
1110 | + if ( (JZsdk_Get_UartDev_UseFlag(UART_DEV_2) == JZ_FLAGCODE_ON) && (DeviceName != UART_DEV_2) ) | ||
1111 | + { | ||
1112 | + JZsdk_Uart_Send_OutputPowerStatus(UART_DEV_2, 0, OutPutPowerValue); | ||
1113 | + | ||
1114 | + } | ||
1115 | + //如果psdk接口已经使用 | ||
1116 | + if ( (JZsdk_Get_Psdk_UIcontrol_UseFlag() == JZ_FLAGCODE_ON) && DeviceName != DEVICE_PSDK ) | ||
1117 | + { | ||
1118 | + | ||
1119 | + } | ||
1120 | + | ||
1121 | + return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS; | ||
1122 | +} | ||
1123 | + | ||
1124 | +/********* | ||
1125 | + * | ||
1126 | + * 对外电源查询 | ||
1127 | + * | ||
1128 | + **********/ | ||
1129 | +T_JZsdkReturnCode UIcontrol_CheckStatus_OutPutPowerValue(int *Value) | ||
1130 | +{ | ||
1131 | + //调用对外电源查询的接口 | ||
1132 | + T_JZsdkReturnCode ret = Ircut_CheckStatus_OutPutPower(Value); | ||
1133 | + if (ret != JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS) | ||
1134 | + { | ||
1135 | + printf("%s:%s\n",UI_CONTROL_ERROR,JZsdk_GetReturnCodeMessage(ret)); | ||
1136 | + return ret; | ||
1137 | + } | ||
1138 | +} | ||
1139 | + | ||
1140 | + | ||
1068 | /******************************************************************************************************** | 1141 | /******************************************************************************************************** |
1069 | ********* ********| | 1142 | ********* ********| |
1070 | ********* ********| | 1143 | ********* ********| |
@@ -70,6 +70,11 @@ T_JZsdkReturnCode UIcontrol_CheckStatus_WarningLightStatus(int *ValueSwitch, int | @@ -70,6 +70,11 @@ T_JZsdkReturnCode UIcontrol_CheckStatus_WarningLightStatus(int *ValueSwitch, int | ||
70 | T_JZsdkReturnCode UIcontrol_CheckStatus_WarningLightColor(int *ValueColor1, int *ValueColor2); | 70 | T_JZsdkReturnCode UIcontrol_CheckStatus_WarningLightColor(int *ValueColor1, int *ValueColor2); |
71 | T_JZsdkReturnCode UIcontrol_ObtainWarningLight_Color(int DeviceName, int color1, int color2); | 71 | T_JZsdkReturnCode UIcontrol_ObtainWarningLight_Color(int DeviceName, int color1, int color2); |
72 | 72 | ||
73 | +//对外电源类 | ||
74 | +T_JZsdkReturnCode UIcontrol_Set_OutPutPower_Control(int DeviceName, int Value); | ||
75 | +T_JZsdkReturnCode UIcontrol_CheckStatus_OutPutPowerValue(int *Value); | ||
76 | + | ||
77 | + | ||
73 | 78 | ||
74 | //接收处理类 | 79 | //接收处理类 |
75 | T_JZsdkReturnCode UIcontrol_ObtainSearchLight_Frequency(int DeviceName, int Frequency); | 80 | T_JZsdkReturnCode UIcontrol_ObtainSearchLight_Frequency(int DeviceName, int Frequency); |
Upgrade_Package/JZ_H1E_V00.00.00.09.bin
已删除
100644 → 0
不能预览此文件类型
Upgrade_Package/JZ_U3_V00.00.00.12.bin
0 → 100644
不能预览此文件类型
Upgrade_Package/Package/app/JZ_UART_APP
已删除
100644 → 0
不能预览此文件类型
1 | #1、输入设备名字,程序模式,硬件号,版本号 | 1 | #1、输入设备名字,程序模式,硬件号,版本号 |
2 | -payload_name="JZ_H1E" | 2 | +payload_name="JZ_U3" |
3 | payload_mode="APP_UART" # APP_PSDK 或者 APP_UART | 3 | payload_mode="APP_UART" # APP_PSDK 或者 APP_UART |
4 | -payload_platform="PLATFORM_V3S" | ||
5 | -payload_version="V00.00.00.09" | ||
6 | -payload_origin="OVERSEAS_VERSION" # 国内版DOMESTIC_VERSION 海外版OVERSEAS_VERSION | 4 | +payload_platform="PLATFORM_V3" |
5 | +payload_version="V00.00.00.12" | ||
6 | +payload_origin="DOMESTIC_VERSION" # 国内版DOMESTIC_VERSION 海外版OVERSEAS_VERSION | ||
7 | #2、根据负载选择滤波方式,目前仅h10使用带阻滤波 | 7 | #2、根据负载选择滤波方式,目前仅h10使用带阻滤波 |
8 | #high_pass_filtering | 8 | #high_pass_filtering |
9 | #directed_stopband_filtering | 9 | #directed_stopband_filtering |
10 | 10 | ||
11 | -if [ "${payload_name}" == "JZ_H10" ] ; then | 11 | +#if [ "${payload_name}" == "JZ_H10" ] || [ "${payload_name}" == "JZ_U3" ]; then |
12 | +if [ "${payload_name}" == "JZ_H10" ] ; then | ||
12 | filtering_way="directed_stopband_filtering" | 13 | filtering_way="directed_stopband_filtering" |
13 | filter_type="DIRECTED_STOPBAND_FILTERING" | 14 | filter_type="DIRECTED_STOPBAND_FILTERING" |
14 | else | 15 | else |
@@ -26,7 +26,7 @@ int Main_APP_Uart() | @@ -26,7 +26,7 @@ int Main_APP_Uart() | ||
26 | Ircut_Init(); | 26 | Ircut_Init(); |
27 | 27 | ||
28 | //串口程序计时开始(用于连接上就跑串口程序,没连上就退出 继续跑psdk) | 28 | //串口程序计时开始(用于连接上就跑串口程序,没连上就退出 继续跑psdk) |
29 | - Main_WorkMode(); | 29 | + //Main_WorkMode(); |
30 | 30 | ||
31 | if (DEVICE_VERSION == JZ_H1E) | 31 | if (DEVICE_VERSION == JZ_H1E) |
32 | { | 32 | { |
@@ -215,4 +215,3 @@ static void *Main_WorkModeTask(void *arg) | @@ -215,4 +215,3 @@ static void *Main_WorkModeTask(void *arg) | ||
215 | } | 215 | } |
216 | } | 216 | } |
217 | 217 | ||
218 | - |
@@ -7,25 +7,25 @@ | @@ -7,25 +7,25 @@ | ||
7 | #define VERSION_CHOOSE_H | 7 | #define VERSION_CHOOSE_H |
8 | 8 | ||
9 | //1~10行 除了D可以修改版本选择 禁止动任何东西 | 9 | //1~10行 除了D可以修改版本选择 禁止动任何东西 |
10 | -#define DEVICE_VERSION JZ_H1E | 10 | +#define DEVICE_VERSION JZ_U3 |
11 | 11 | ||
12 | //禁止修改行 选择是串口程序 还是 psdk程序 | 12 | //禁止修改行 选择是串口程序 还是 psdk程序 |
13 | #define APP_VERSION APP_UART | 13 | #define APP_VERSION APP_UART |
14 | 14 | ||
15 | //禁止修改行 板子型号 | 15 | //禁止修改行 板子型号 |
16 | -#define PLATFORM_VERSION PLATFORM_V3S | 16 | +#define PLATFORM_VERSION PLATFORM_V3 |
17 | 17 | ||
18 | //禁止修改行 串口连接程序的软件版本号 | 18 | //禁止修改行 串口连接程序的软件版本号 |
19 | #define MAJOR_VERSION 0x00 | 19 | #define MAJOR_VERSION 0x00 |
20 | #define MINOR_VERSION 0x00 | 20 | #define MINOR_VERSION 0x00 |
21 | #define MODIFY_VERSION 0x00 | 21 | #define MODIFY_VERSION 0x00 |
22 | -#define DEBUG_VERSION 0x09 | 22 | +#define DEBUG_VERSION 0x12 |
23 | 23 | ||
24 | //禁止修改行 滤波方式 | 24 | //禁止修改行 滤波方式 |
25 | #define FILTERING_TYPE HIGH_PASS_FILTERING | 25 | #define FILTERING_TYPE HIGH_PASS_FILTERING |
26 | 26 | ||
27 | //禁止修改行固件属地 目前 国内版/海外版 | 27 | //禁止修改行固件属地 目前 国内版/海外版 |
28 | -#define FIRMWARE_ORIGIN OVERSEAS_VERSION | 28 | +#define FIRMWARE_ORIGIN DOMESTIC_VERSION |
29 | 29 | ||
30 | //软件模式 | 30 | //软件模式 |
31 | #define APP_PSDK 0x01 | 31 | #define APP_PSDK 0x01 |
@@ -28,20 +28,20 @@ The CXX compiler identification is GNU, found in "/mnt/hgfs/share/展架程序/b | @@ -28,20 +28,20 @@ The CXX compiler identification is GNU, found in "/mnt/hgfs/share/展架程序/b | ||
28 | Detecting C compiler ABI info compiled with the following output: | 28 | Detecting C compiler ABI info compiled with the following output: |
29 | Change Dir: /mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp | 29 | Change Dir: /mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp |
30 | 30 | ||
31 | -Run Build Command(s):/usr/bin/make -f Makefile cmTC_006c8/fast && make: Warning: File 'Makefile' has modification time 0.38 s in the future | ||
32 | -/usr/bin/make -f CMakeFiles/cmTC_006c8.dir/build.make CMakeFiles/cmTC_006c8.dir/build | 31 | +Run Build Command(s):/usr/bin/make -f Makefile cmTC_5fed3/fast && make: Warning: File 'Makefile' has modification time 0.36 s in the future |
32 | +/usr/bin/make -f CMakeFiles/cmTC_5fed3.dir/build.make CMakeFiles/cmTC_5fed3.dir/build | ||
33 | make[1]: Entering directory '/mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp' | 33 | make[1]: Entering directory '/mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp' |
34 | -make[1]: Warning: File 'CMakeFiles/cmTC_006c8.dir/flags.make' has modification time 0.38 s in the future | ||
35 | -Building C object CMakeFiles/cmTC_006c8.dir/CMakeCCompilerABI.c.o | ||
36 | -/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc -pthread -std=gnu99 -lm -ldl -lstdc++ -v -o CMakeFiles/cmTC_006c8.dir/CMakeCCompilerABI.c.o -c /usr/local/share/cmake-3.24/Modules/CMakeCCompilerABI.c | 34 | +make[1]: Warning: File 'CMakeFiles/cmTC_5fed3.dir/flags.make' has modification time 0.36 s in the future |
35 | +Building C object CMakeFiles/cmTC_5fed3.dir/CMakeCCompilerABI.c.o | ||
36 | +/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc -pthread -std=gnu99 -lm -ldl -lstdc++ -v -o CMakeFiles/cmTC_5fed3.dir/CMakeCCompilerABI.c.o -c /usr/local/share/cmake-3.24/Modules/CMakeCCompilerABI.c | ||
37 | Using built-in specs. | 37 | Using built-in specs. |
38 | COLLECT_GCC=/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc | 38 | COLLECT_GCC=/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc |
39 | Target: arm-cortexa9-linux-gnueabihf | 39 | Target: arm-cortexa9-linux-gnueabihf |
40 | Configured with: /work/toolchain/build/src/gcc-4.9.3/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=arm-cortexa9-linux-gnueabihf --prefix=/opt/FriendlyARM/toolchain/4.9.3 --with-sysroot=/opt/FriendlyARM/toolchain/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root --enable-languages=c,c++ --with-arch=armv7-a --with-tune=cortex-a9 --with-fpu=vfpv3 --with-float=hard --with-pkgversion=ctng-1.21.0-229g-FA --with-bugurl=http://www.friendlyarm.com/ --enable-__cxa_atexit --disable-libmudflap --disable-libgomp --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libsanitizer --with-gmp=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-mpfr=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-mpc=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-isl=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-cloog=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-libelf=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --enable-lto --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --enable-threads=posix --enable-linker-build-id --with-linker-hash-style=gnu --enable-plugin --enable-gold --disable-multilib --with-local-prefix=/opt/FriendlyARM/toolchain/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root --enable-long-long | 40 | Configured with: /work/toolchain/build/src/gcc-4.9.3/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=arm-cortexa9-linux-gnueabihf --prefix=/opt/FriendlyARM/toolchain/4.9.3 --with-sysroot=/opt/FriendlyARM/toolchain/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root --enable-languages=c,c++ --with-arch=armv7-a --with-tune=cortex-a9 --with-fpu=vfpv3 --with-float=hard --with-pkgversion=ctng-1.21.0-229g-FA --with-bugurl=http://www.friendlyarm.com/ --enable-__cxa_atexit --disable-libmudflap --disable-libgomp --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libsanitizer --with-gmp=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-mpfr=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-mpc=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-isl=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-cloog=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-libelf=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --enable-lto --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --enable-threads=posix --enable-linker-build-id --with-linker-hash-style=gnu --enable-plugin --enable-gold --disable-multilib --with-local-prefix=/opt/FriendlyARM/toolchain/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root --enable-long-long |
41 | Thread model: posix | 41 | Thread model: posix |
42 | gcc version 4.9.3 (ctng-1.21.0-229g-FA) | 42 | gcc version 4.9.3 (ctng-1.21.0-229g-FA) |
43 | -COLLECT_GCC_OPTIONS='-pthread' '-std=gnu99' '-v' '-o' 'CMakeFiles/cmTC_006c8.dir/CMakeCCompilerABI.c.o' '-c' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu' | ||
44 | - /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/cc1 -quiet -v -iprefix /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/ -isysroot /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root -D_REENTRANT /usr/local/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -march=armv7-a -mtune=cortex-a9 -mfloat-abi=hard -mfpu=vfpv3 -mtls-dialect=gnu -auxbase-strip CMakeFiles/cmTC_006c8.dir/CMakeCCompilerABI.c.o -std=gnu99 -version -o /tmp/ccfEGNsd.s | 43 | +COLLECT_GCC_OPTIONS='-pthread' '-std=gnu99' '-v' '-o' 'CMakeFiles/cmTC_5fed3.dir/CMakeCCompilerABI.c.o' '-c' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu' |
44 | + /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/cc1 -quiet -v -iprefix /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/ -isysroot /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root -D_REENTRANT /usr/local/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -march=armv7-a -mtune=cortex-a9 -mfloat-abi=hard -mfpu=vfpv3 -mtls-dialect=gnu -auxbase-strip CMakeFiles/cmTC_5fed3.dir/CMakeCCompilerABI.c.o -std=gnu99 -version -o /tmp/cckawBAI.s | ||
45 | GNU C (ctng-1.21.0-229g-FA) version 4.9.3 (arm-cortexa9-linux-gnueabihf) | 45 | GNU C (ctng-1.21.0-229g-FA) version 4.9.3 (arm-cortexa9-linux-gnueabihf) |
46 | compiled by GNU C version 4.8.4, GMP version 6.0.0, MPFR version 3.1.3, MPC version 1.0.3 | 46 | compiled by GNU C version 4.8.4, GMP version 6.0.0, MPFR version 3.1.3, MPC version 1.0.3 |
47 | GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 | 47 | GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 |
@@ -60,15 +60,15 @@ GNU C (ctng-1.21.0-229g-FA) version 4.9.3 (arm-cortexa9-linux-gnueabihf) | @@ -60,15 +60,15 @@ GNU C (ctng-1.21.0-229g-FA) version 4.9.3 (arm-cortexa9-linux-gnueabihf) | ||
60 | compiled by GNU C version 4.8.4, GMP version 6.0.0, MPFR version 3.1.3, MPC version 1.0.3 | 60 | compiled by GNU C version 4.8.4, GMP version 6.0.0, MPFR version 3.1.3, MPC version 1.0.3 |
61 | GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 | 61 | GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 |
62 | Compiler executable checksum: eeb0d0cd8c4112e84e5c64edda5289df | 62 | Compiler executable checksum: eeb0d0cd8c4112e84e5c64edda5289df |
63 | -COLLECT_GCC_OPTIONS='-pthread' '-std=gnu99' '-v' '-o' 'CMakeFiles/cmTC_006c8.dir/CMakeCCompilerABI.c.o' '-c' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu' | ||
64 | - /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/as -v -march=armv7-a -mfloat-abi=hard -mfpu=vfpv3 -meabi=5 -o CMakeFiles/cmTC_006c8.dir/CMakeCCompilerABI.c.o /tmp/ccfEGNsd.s | 63 | +COLLECT_GCC_OPTIONS='-pthread' '-std=gnu99' '-v' '-o' 'CMakeFiles/cmTC_5fed3.dir/CMakeCCompilerABI.c.o' '-c' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu' |
64 | + /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/as -v -march=armv7-a -mfloat-abi=hard -mfpu=vfpv3 -meabi=5 -o CMakeFiles/cmTC_5fed3.dir/CMakeCCompilerABI.c.o /tmp/cckawBAI.s | ||
65 | GNU assembler version 2.25.1 (arm-cortexa9-linux-gnueabihf) using BFD version (ctng-1.21.0-229g-FA) 2.25.1 | 65 | GNU assembler version 2.25.1 (arm-cortexa9-linux-gnueabihf) using BFD version (ctng-1.21.0-229g-FA) 2.25.1 |
66 | COMPILER_PATH=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../libexec/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/ | 66 | COMPILER_PATH=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../libexec/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/ |
67 | LIBRARY_PATH=/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../lib/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/ | 67 | LIBRARY_PATH=/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../lib/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/ |
68 | -COLLECT_GCC_OPTIONS='-pthread' '-std=gnu99' '-v' '-o' 'CMakeFiles/cmTC_006c8.dir/CMakeCCompilerABI.c.o' '-c' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu' | ||
69 | -Linking C executable cmTC_006c8 | ||
70 | -/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_006c8.dir/link.txt --verbose=1 | ||
71 | -/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc -pthread -std=gnu99 -lm -ldl -lstdc++ -v -rdynamic CMakeFiles/cmTC_006c8.dir/CMakeCCompilerABI.c.o -o cmTC_006c8 | 68 | +COLLECT_GCC_OPTIONS='-pthread' '-std=gnu99' '-v' '-o' 'CMakeFiles/cmTC_5fed3.dir/CMakeCCompilerABI.c.o' '-c' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu' |
69 | +Linking C executable cmTC_5fed3 | ||
70 | +/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5fed3.dir/link.txt --verbose=1 | ||
71 | +/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc -pthread -std=gnu99 -lm -ldl -lstdc++ -v -rdynamic CMakeFiles/cmTC_5fed3.dir/CMakeCCompilerABI.c.o -o cmTC_5fed3 | ||
72 | Using built-in specs. | 72 | Using built-in specs. |
73 | COLLECT_GCC=/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc | 73 | COLLECT_GCC=/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc |
74 | COLLECT_LTO_WRAPPER=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper | 74 | COLLECT_LTO_WRAPPER=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper |
@@ -78,8 +78,8 @@ Thread model: posix | @@ -78,8 +78,8 @@ Thread model: posix | ||
78 | gcc version 4.9.3 (ctng-1.21.0-229g-FA) | 78 | gcc version 4.9.3 (ctng-1.21.0-229g-FA) |
79 | COMPILER_PATH=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../libexec/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/ | 79 | COMPILER_PATH=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../libexec/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/ |
80 | LIBRARY_PATH=/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../lib/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/ | 80 | LIBRARY_PATH=/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../lib/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/ |
81 | -COLLECT_GCC_OPTIONS='-pthread' '-std=gnu99' '-v' '-rdynamic' '-o' 'cmTC_006c8' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu' | ||
82 | - /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/collect2 -plugin /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/liblto_plugin.so -plugin-opt=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper -plugin-opt=-fresolution=/tmp/cc7J6Ikc.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root --build-id --eh-frame-hdr --hash-style=gnu -export-dynamic -dynamic-linker /lib/ld-linux-armhf.so.3 -X -m armelf_linux_eabi -o cmTC_006c8 /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crt1.o /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crti.o /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtbegin.o -L/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3 -L/usr/local/arm/4.9.3/bin/../lib/gcc -L/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib -L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib -L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib -lm -ldl -lstdc++ CMakeFiles/cmTC_006c8.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lpthread -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtend.o /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crtn.o | 81 | +COLLECT_GCC_OPTIONS='-pthread' '-std=gnu99' '-v' '-rdynamic' '-o' 'cmTC_5fed3' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu' |
82 | + /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/collect2 -plugin /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/liblto_plugin.so -plugin-opt=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper -plugin-opt=-fresolution=/tmp/ccGaNAWL.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root --build-id --eh-frame-hdr --hash-style=gnu -export-dynamic -dynamic-linker /lib/ld-linux-armhf.so.3 -X -m armelf_linux_eabi -o cmTC_5fed3 /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crt1.o /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crti.o /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtbegin.o -L/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3 -L/usr/local/arm/4.9.3/bin/../lib/gcc -L/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib -L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib -L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib -lm -ldl -lstdc++ CMakeFiles/cmTC_5fed3.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lpthread -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtend.o /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crtn.o | ||
83 | make[1]: warning: Clock skew detected. Your build may be incomplete. | 83 | make[1]: warning: Clock skew detected. Your build may be incomplete. |
84 | make[1]: Leaving directory '/mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp' | 84 | make[1]: Leaving directory '/mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp' |
85 | make: warning: Clock skew detected. Your build may be incomplete. | 85 | make: warning: Clock skew detected. Your build may be incomplete. |
@@ -105,20 +105,20 @@ Parsed C implicit link information from above output: | @@ -105,20 +105,20 @@ Parsed C implicit link information from above output: | ||
105 | link line regex: [^( *|.*[/\])(arm-cortexa9-linux-gnueabihf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] | 105 | link line regex: [^( *|.*[/\])(arm-cortexa9-linux-gnueabihf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] |
106 | ignore line: [Change Dir: /mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp] | 106 | ignore line: [Change Dir: /mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp] |
107 | ignore line: [] | 107 | ignore line: [] |
108 | - ignore line: [Run Build Command(s):/usr/bin/make -f Makefile cmTC_006c8/fast && make: Warning: File 'Makefile' has modification time 0.38 s in the future] | ||
109 | - ignore line: [/usr/bin/make -f CMakeFiles/cmTC_006c8.dir/build.make CMakeFiles/cmTC_006c8.dir/build] | 108 | + ignore line: [Run Build Command(s):/usr/bin/make -f Makefile cmTC_5fed3/fast && make: Warning: File 'Makefile' has modification time 0.36 s in the future] |
109 | + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_5fed3.dir/build.make CMakeFiles/cmTC_5fed3.dir/build] | ||
110 | ignore line: [make[1]: Entering directory '/mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp'] | 110 | ignore line: [make[1]: Entering directory '/mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp'] |
111 | - ignore line: [make[1]: Warning: File 'CMakeFiles/cmTC_006c8.dir/flags.make' has modification time 0.38 s in the future] | ||
112 | - ignore line: [Building C object CMakeFiles/cmTC_006c8.dir/CMakeCCompilerABI.c.o] | ||
113 | - ignore line: [/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc -pthread -std=gnu99 -lm -ldl -lstdc++ -v -o CMakeFiles/cmTC_006c8.dir/CMakeCCompilerABI.c.o -c /usr/local/share/cmake-3.24/Modules/CMakeCCompilerABI.c] | 111 | + ignore line: [make[1]: Warning: File 'CMakeFiles/cmTC_5fed3.dir/flags.make' has modification time 0.36 s in the future] |
112 | + ignore line: [Building C object CMakeFiles/cmTC_5fed3.dir/CMakeCCompilerABI.c.o] | ||
113 | + ignore line: [/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc -pthread -std=gnu99 -lm -ldl -lstdc++ -v -o CMakeFiles/cmTC_5fed3.dir/CMakeCCompilerABI.c.o -c /usr/local/share/cmake-3.24/Modules/CMakeCCompilerABI.c] | ||
114 | ignore line: [Using built-in specs.] | 114 | ignore line: [Using built-in specs.] |
115 | ignore line: [COLLECT_GCC=/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc] | 115 | ignore line: [COLLECT_GCC=/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc] |
116 | ignore line: [Target: arm-cortexa9-linux-gnueabihf] | 116 | ignore line: [Target: arm-cortexa9-linux-gnueabihf] |
117 | ignore line: [Configured with: /work/toolchain/build/src/gcc-4.9.3/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=arm-cortexa9-linux-gnueabihf --prefix=/opt/FriendlyARM/toolchain/4.9.3 --with-sysroot=/opt/FriendlyARM/toolchain/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root --enable-languages=c c++ --with-arch=armv7-a --with-tune=cortex-a9 --with-fpu=vfpv3 --with-float=hard --with-pkgversion=ctng-1.21.0-229g-FA --with-bugurl=http://www.friendlyarm.com/ --enable-__cxa_atexit --disable-libmudflap --disable-libgomp --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libsanitizer --with-gmp=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-mpfr=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-mpc=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-isl=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-cloog=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-libelf=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --enable-lto --with-host-libstdcxx='-static-libgcc -Wl -Bstatic -lstdc++ -Bdynamic -lm' --enable-threads=posix --enable-linker-build-id --with-linker-hash-style=gnu --enable-plugin --enable-gold --disable-multilib --with-local-prefix=/opt/FriendlyARM/toolchain/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root --enable-long-long] | 117 | ignore line: [Configured with: /work/toolchain/build/src/gcc-4.9.3/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=arm-cortexa9-linux-gnueabihf --prefix=/opt/FriendlyARM/toolchain/4.9.3 --with-sysroot=/opt/FriendlyARM/toolchain/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root --enable-languages=c c++ --with-arch=armv7-a --with-tune=cortex-a9 --with-fpu=vfpv3 --with-float=hard --with-pkgversion=ctng-1.21.0-229g-FA --with-bugurl=http://www.friendlyarm.com/ --enable-__cxa_atexit --disable-libmudflap --disable-libgomp --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libsanitizer --with-gmp=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-mpfr=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-mpc=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-isl=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-cloog=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-libelf=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --enable-lto --with-host-libstdcxx='-static-libgcc -Wl -Bstatic -lstdc++ -Bdynamic -lm' --enable-threads=posix --enable-linker-build-id --with-linker-hash-style=gnu --enable-plugin --enable-gold --disable-multilib --with-local-prefix=/opt/FriendlyARM/toolchain/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root --enable-long-long] |
118 | ignore line: [Thread model: posix] | 118 | ignore line: [Thread model: posix] |
119 | ignore line: [gcc version 4.9.3 (ctng-1.21.0-229g-FA) ] | 119 | ignore line: [gcc version 4.9.3 (ctng-1.21.0-229g-FA) ] |
120 | - ignore line: [COLLECT_GCC_OPTIONS='-pthread' '-std=gnu99' '-v' '-o' 'CMakeFiles/cmTC_006c8.dir/CMakeCCompilerABI.c.o' '-c' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu'] | ||
121 | - ignore line: [ /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/cc1 -quiet -v -iprefix /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/ -isysroot /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root -D_REENTRANT /usr/local/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -march=armv7-a -mtune=cortex-a9 -mfloat-abi=hard -mfpu=vfpv3 -mtls-dialect=gnu -auxbase-strip CMakeFiles/cmTC_006c8.dir/CMakeCCompilerABI.c.o -std=gnu99 -version -o /tmp/ccfEGNsd.s] | 120 | + ignore line: [COLLECT_GCC_OPTIONS='-pthread' '-std=gnu99' '-v' '-o' 'CMakeFiles/cmTC_5fed3.dir/CMakeCCompilerABI.c.o' '-c' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu'] |
121 | + ignore line: [ /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/cc1 -quiet -v -iprefix /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/ -isysroot /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root -D_REENTRANT /usr/local/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -march=armv7-a -mtune=cortex-a9 -mfloat-abi=hard -mfpu=vfpv3 -mtls-dialect=gnu -auxbase-strip CMakeFiles/cmTC_5fed3.dir/CMakeCCompilerABI.c.o -std=gnu99 -version -o /tmp/cckawBAI.s] | ||
122 | ignore line: [GNU C (ctng-1.21.0-229g-FA) version 4.9.3 (arm-cortexa9-linux-gnueabihf)] | 122 | ignore line: [GNU C (ctng-1.21.0-229g-FA) version 4.9.3 (arm-cortexa9-linux-gnueabihf)] |
123 | ignore line: [ compiled by GNU C version 4.8.4 GMP version 6.0.0 MPFR version 3.1.3 MPC version 1.0.3] | 123 | ignore line: [ compiled by GNU C version 4.8.4 GMP version 6.0.0 MPFR version 3.1.3 MPC version 1.0.3] |
124 | ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] | 124 | ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] |
@@ -137,15 +137,15 @@ Parsed C implicit link information from above output: | @@ -137,15 +137,15 @@ Parsed C implicit link information from above output: | ||
137 | ignore line: [ compiled by GNU C version 4.8.4 GMP version 6.0.0 MPFR version 3.1.3 MPC version 1.0.3] | 137 | ignore line: [ compiled by GNU C version 4.8.4 GMP version 6.0.0 MPFR version 3.1.3 MPC version 1.0.3] |
138 | ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] | 138 | ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] |
139 | ignore line: [Compiler executable checksum: eeb0d0cd8c4112e84e5c64edda5289df] | 139 | ignore line: [Compiler executable checksum: eeb0d0cd8c4112e84e5c64edda5289df] |
140 | - ignore line: [COLLECT_GCC_OPTIONS='-pthread' '-std=gnu99' '-v' '-o' 'CMakeFiles/cmTC_006c8.dir/CMakeCCompilerABI.c.o' '-c' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu'] | ||
141 | - ignore line: [ /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/as -v -march=armv7-a -mfloat-abi=hard -mfpu=vfpv3 -meabi=5 -o CMakeFiles/cmTC_006c8.dir/CMakeCCompilerABI.c.o /tmp/ccfEGNsd.s] | 140 | + ignore line: [COLLECT_GCC_OPTIONS='-pthread' '-std=gnu99' '-v' '-o' 'CMakeFiles/cmTC_5fed3.dir/CMakeCCompilerABI.c.o' '-c' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu'] |
141 | + ignore line: [ /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/as -v -march=armv7-a -mfloat-abi=hard -mfpu=vfpv3 -meabi=5 -o CMakeFiles/cmTC_5fed3.dir/CMakeCCompilerABI.c.o /tmp/cckawBAI.s] | ||
142 | ignore line: [GNU assembler version 2.25.1 (arm-cortexa9-linux-gnueabihf) using BFD version (ctng-1.21.0-229g-FA) 2.25.1] | 142 | ignore line: [GNU assembler version 2.25.1 (arm-cortexa9-linux-gnueabihf) using BFD version (ctng-1.21.0-229g-FA) 2.25.1] |
143 | ignore line: [COMPILER_PATH=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../libexec/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/] | 143 | ignore line: [COMPILER_PATH=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../libexec/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/] |
144 | ignore line: [LIBRARY_PATH=/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../lib/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/] | 144 | ignore line: [LIBRARY_PATH=/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../lib/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/] |
145 | - ignore line: [COLLECT_GCC_OPTIONS='-pthread' '-std=gnu99' '-v' '-o' 'CMakeFiles/cmTC_006c8.dir/CMakeCCompilerABI.c.o' '-c' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu'] | ||
146 | - ignore line: [Linking C executable cmTC_006c8] | ||
147 | - ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_006c8.dir/link.txt --verbose=1] | ||
148 | - ignore line: [/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc -pthread -std=gnu99 -lm -ldl -lstdc++ -v -rdynamic CMakeFiles/cmTC_006c8.dir/CMakeCCompilerABI.c.o -o cmTC_006c8 ] | 145 | + ignore line: [COLLECT_GCC_OPTIONS='-pthread' '-std=gnu99' '-v' '-o' 'CMakeFiles/cmTC_5fed3.dir/CMakeCCompilerABI.c.o' '-c' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu'] |
146 | + ignore line: [Linking C executable cmTC_5fed3] | ||
147 | + ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5fed3.dir/link.txt --verbose=1] | ||
148 | + ignore line: [/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc -pthread -std=gnu99 -lm -ldl -lstdc++ -v -rdynamic CMakeFiles/cmTC_5fed3.dir/CMakeCCompilerABI.c.o -o cmTC_5fed3 ] | ||
149 | ignore line: [Using built-in specs.] | 149 | ignore line: [Using built-in specs.] |
150 | ignore line: [COLLECT_GCC=/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc] | 150 | ignore line: [COLLECT_GCC=/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc] |
151 | ignore line: [COLLECT_LTO_WRAPPER=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper] | 151 | ignore line: [COLLECT_LTO_WRAPPER=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper] |
@@ -155,13 +155,13 @@ Parsed C implicit link information from above output: | @@ -155,13 +155,13 @@ Parsed C implicit link information from above output: | ||
155 | ignore line: [gcc version 4.9.3 (ctng-1.21.0-229g-FA) ] | 155 | ignore line: [gcc version 4.9.3 (ctng-1.21.0-229g-FA) ] |
156 | ignore line: [COMPILER_PATH=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../libexec/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/] | 156 | ignore line: [COMPILER_PATH=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../libexec/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/] |
157 | ignore line: [LIBRARY_PATH=/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../lib/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/] | 157 | ignore line: [LIBRARY_PATH=/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../lib/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/] |
158 | - ignore line: [COLLECT_GCC_OPTIONS='-pthread' '-std=gnu99' '-v' '-rdynamic' '-o' 'cmTC_006c8' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu'] | ||
159 | - link line: [ /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/collect2 -plugin /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/liblto_plugin.so -plugin-opt=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper -plugin-opt=-fresolution=/tmp/cc7J6Ikc.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root --build-id --eh-frame-hdr --hash-style=gnu -export-dynamic -dynamic-linker /lib/ld-linux-armhf.so.3 -X -m armelf_linux_eabi -o cmTC_006c8 /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crt1.o /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crti.o /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtbegin.o -L/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3 -L/usr/local/arm/4.9.3/bin/../lib/gcc -L/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib -L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib -L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib -lm -ldl -lstdc++ CMakeFiles/cmTC_006c8.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lpthread -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtend.o /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crtn.o] | 158 | + ignore line: [COLLECT_GCC_OPTIONS='-pthread' '-std=gnu99' '-v' '-rdynamic' '-o' 'cmTC_5fed3' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu'] |
159 | + link line: [ /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/collect2 -plugin /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/liblto_plugin.so -plugin-opt=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper -plugin-opt=-fresolution=/tmp/ccGaNAWL.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root --build-id --eh-frame-hdr --hash-style=gnu -export-dynamic -dynamic-linker /lib/ld-linux-armhf.so.3 -X -m armelf_linux_eabi -o cmTC_5fed3 /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crt1.o /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crti.o /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtbegin.o -L/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3 -L/usr/local/arm/4.9.3/bin/../lib/gcc -L/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib -L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib -L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib -lm -ldl -lstdc++ CMakeFiles/cmTC_5fed3.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lpthread -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtend.o /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crtn.o] | ||
160 | arg [/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/collect2] ==> ignore | 160 | arg [/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/collect2] ==> ignore |
161 | arg [-plugin] ==> ignore | 161 | arg [-plugin] ==> ignore |
162 | arg [/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/liblto_plugin.so] ==> ignore | 162 | arg [/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/liblto_plugin.so] ==> ignore |
163 | arg [-plugin-opt=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper] ==> ignore | 163 | arg [-plugin-opt=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper] ==> ignore |
164 | - arg [-plugin-opt=-fresolution=/tmp/cc7J6Ikc.res] ==> ignore | 164 | + arg [-plugin-opt=-fresolution=/tmp/ccGaNAWL.res] ==> ignore |
165 | arg [-plugin-opt=-pass-through=-lgcc] ==> ignore | 165 | arg [-plugin-opt=-pass-through=-lgcc] ==> ignore |
166 | arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore | 166 | arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore |
167 | arg [-plugin-opt=-pass-through=-lpthread] ==> ignore | 167 | arg [-plugin-opt=-pass-through=-lpthread] ==> ignore |
@@ -179,7 +179,7 @@ Parsed C implicit link information from above output: | @@ -179,7 +179,7 @@ Parsed C implicit link information from above output: | ||
179 | arg [-m] ==> ignore | 179 | arg [-m] ==> ignore |
180 | arg [armelf_linux_eabi] ==> ignore | 180 | arg [armelf_linux_eabi] ==> ignore |
181 | arg [-o] ==> ignore | 181 | arg [-o] ==> ignore |
182 | - arg [cmTC_006c8] ==> ignore | 182 | + arg [cmTC_5fed3] ==> ignore |
183 | arg [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crt1.o] ==> obj [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crt1.o] | 183 | arg [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crt1.o] ==> obj [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crt1.o] |
184 | arg [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crti.o] ==> obj [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crti.o] | 184 | arg [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crti.o] ==> obj [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crti.o] |
185 | arg [/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtbegin.o] ==> obj [/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtbegin.o] | 185 | arg [/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtbegin.o] ==> obj [/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtbegin.o] |
@@ -191,7 +191,7 @@ Parsed C implicit link information from above output: | @@ -191,7 +191,7 @@ Parsed C implicit link information from above output: | ||
191 | arg [-lm] ==> lib [m] | 191 | arg [-lm] ==> lib [m] |
192 | arg [-ldl] ==> lib [dl] | 192 | arg [-ldl] ==> lib [dl] |
193 | arg [-lstdc++] ==> lib [stdc++] | 193 | arg [-lstdc++] ==> lib [stdc++] |
194 | - arg [CMakeFiles/cmTC_006c8.dir/CMakeCCompilerABI.c.o] ==> ignore | 194 | + arg [CMakeFiles/cmTC_5fed3.dir/CMakeCCompilerABI.c.o] ==> ignore |
195 | arg [-lgcc] ==> lib [gcc] | 195 | arg [-lgcc] ==> lib [gcc] |
196 | arg [--as-needed] ==> ignore | 196 | arg [--as-needed] ==> ignore |
197 | arg [-lgcc_s] ==> lib [gcc_s] | 197 | arg [-lgcc_s] ==> lib [gcc_s] |
@@ -223,20 +223,20 @@ Parsed C implicit link information from above output: | @@ -223,20 +223,20 @@ Parsed C implicit link information from above output: | ||
223 | Detecting CXX compiler ABI info compiled with the following output: | 223 | Detecting CXX compiler ABI info compiled with the following output: |
224 | Change Dir: /mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp | 224 | Change Dir: /mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp |
225 | 225 | ||
226 | -Run Build Command(s):/usr/bin/make -f Makefile cmTC_0ba72/fast && make: Warning: File 'Makefile' has modification time 0.23 s in the future | ||
227 | -/usr/bin/make -f CMakeFiles/cmTC_0ba72.dir/build.make CMakeFiles/cmTC_0ba72.dir/build | 226 | +Run Build Command(s):/usr/bin/make -f Makefile cmTC_03379/fast && make: Warning: File 'Makefile' has modification time 1.2 s in the future |
227 | +/usr/bin/make -f CMakeFiles/cmTC_03379.dir/build.make CMakeFiles/cmTC_03379.dir/build | ||
228 | make[1]: Entering directory '/mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp' | 228 | make[1]: Entering directory '/mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp' |
229 | -make[1]: Warning: File 'CMakeFiles/cmTC_0ba72.dir/flags.make' has modification time 0.23 s in the future | ||
230 | -Building CXX object CMakeFiles/cmTC_0ba72.dir/CMakeCXXCompilerABI.cpp.o | ||
231 | -/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++ -v -o CMakeFiles/cmTC_0ba72.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp | 229 | +make[1]: Warning: File 'CMakeFiles/cmTC_03379.dir/flags.make' has modification time 1.2 s in the future |
230 | +Building CXX object CMakeFiles/cmTC_03379.dir/CMakeCXXCompilerABI.cpp.o | ||
231 | +/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++ -v -o CMakeFiles/cmTC_03379.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp | ||
232 | Using built-in specs. | 232 | Using built-in specs. |
233 | COLLECT_GCC=/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++ | 233 | COLLECT_GCC=/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++ |
234 | Target: arm-cortexa9-linux-gnueabihf | 234 | Target: arm-cortexa9-linux-gnueabihf |
235 | Configured with: /work/toolchain/build/src/gcc-4.9.3/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=arm-cortexa9-linux-gnueabihf --prefix=/opt/FriendlyARM/toolchain/4.9.3 --with-sysroot=/opt/FriendlyARM/toolchain/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root --enable-languages=c,c++ --with-arch=armv7-a --with-tune=cortex-a9 --with-fpu=vfpv3 --with-float=hard --with-pkgversion=ctng-1.21.0-229g-FA --with-bugurl=http://www.friendlyarm.com/ --enable-__cxa_atexit --disable-libmudflap --disable-libgomp --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libsanitizer --with-gmp=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-mpfr=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-mpc=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-isl=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-cloog=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-libelf=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --enable-lto --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --enable-threads=posix --enable-linker-build-id --with-linker-hash-style=gnu --enable-plugin --enable-gold --disable-multilib --with-local-prefix=/opt/FriendlyARM/toolchain/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root --enable-long-long | 235 | Configured with: /work/toolchain/build/src/gcc-4.9.3/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=arm-cortexa9-linux-gnueabihf --prefix=/opt/FriendlyARM/toolchain/4.9.3 --with-sysroot=/opt/FriendlyARM/toolchain/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root --enable-languages=c,c++ --with-arch=armv7-a --with-tune=cortex-a9 --with-fpu=vfpv3 --with-float=hard --with-pkgversion=ctng-1.21.0-229g-FA --with-bugurl=http://www.friendlyarm.com/ --enable-__cxa_atexit --disable-libmudflap --disable-libgomp --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libsanitizer --with-gmp=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-mpfr=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-mpc=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-isl=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-cloog=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-libelf=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --enable-lto --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --enable-threads=posix --enable-linker-build-id --with-linker-hash-style=gnu --enable-plugin --enable-gold --disable-multilib --with-local-prefix=/opt/FriendlyARM/toolchain/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root --enable-long-long |
236 | Thread model: posix | 236 | Thread model: posix |
237 | gcc version 4.9.3 (ctng-1.21.0-229g-FA) | 237 | gcc version 4.9.3 (ctng-1.21.0-229g-FA) |
238 | -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_0ba72.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu' | ||
239 | - /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/cc1plus -quiet -v -iprefix /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/ -isysroot /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root -D_GNU_SOURCE /usr/local/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -march=armv7-a -mtune=cortex-a9 -mfloat-abi=hard -mfpu=vfpv3 -mtls-dialect=gnu -auxbase-strip CMakeFiles/cmTC_0ba72.dir/CMakeCXXCompilerABI.cpp.o -version -o /tmp/ccViDTcm.s | 238 | +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_03379.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu' |
239 | + /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/cc1plus -quiet -v -iprefix /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/ -isysroot /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root -D_GNU_SOURCE /usr/local/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -march=armv7-a -mtune=cortex-a9 -mfloat-abi=hard -mfpu=vfpv3 -mtls-dialect=gnu -auxbase-strip CMakeFiles/cmTC_03379.dir/CMakeCXXCompilerABI.cpp.o -version -o /tmp/ccQHRHfV.s | ||
240 | GNU C++ (ctng-1.21.0-229g-FA) version 4.9.3 (arm-cortexa9-linux-gnueabihf) | 240 | GNU C++ (ctng-1.21.0-229g-FA) version 4.9.3 (arm-cortexa9-linux-gnueabihf) |
241 | compiled by GNU C version 4.8.4, GMP version 6.0.0, MPFR version 3.1.3, MPC version 1.0.3 | 241 | compiled by GNU C version 4.8.4, GMP version 6.0.0, MPFR version 3.1.3, MPC version 1.0.3 |
242 | GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 | 242 | GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 |
@@ -261,15 +261,15 @@ GNU C++ (ctng-1.21.0-229g-FA) version 4.9.3 (arm-cortexa9-linux-gnueabihf) | @@ -261,15 +261,15 @@ GNU C++ (ctng-1.21.0-229g-FA) version 4.9.3 (arm-cortexa9-linux-gnueabihf) | ||
261 | compiled by GNU C version 4.8.4, GMP version 6.0.0, MPFR version 3.1.3, MPC version 1.0.3 | 261 | compiled by GNU C version 4.8.4, GMP version 6.0.0, MPFR version 3.1.3, MPC version 1.0.3 |
262 | GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 | 262 | GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 |
263 | Compiler executable checksum: 3ff7ac3bbb22638e38898d02aefebadb | 263 | Compiler executable checksum: 3ff7ac3bbb22638e38898d02aefebadb |
264 | -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_0ba72.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu' | ||
265 | - /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/as -v -march=armv7-a -mfloat-abi=hard -mfpu=vfpv3 -meabi=5 -o CMakeFiles/cmTC_0ba72.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccViDTcm.s | 264 | +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_03379.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu' |
265 | + /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/as -v -march=armv7-a -mfloat-abi=hard -mfpu=vfpv3 -meabi=5 -o CMakeFiles/cmTC_03379.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccQHRHfV.s | ||
266 | GNU assembler version 2.25.1 (arm-cortexa9-linux-gnueabihf) using BFD version (ctng-1.21.0-229g-FA) 2.25.1 | 266 | GNU assembler version 2.25.1 (arm-cortexa9-linux-gnueabihf) using BFD version (ctng-1.21.0-229g-FA) 2.25.1 |
267 | COMPILER_PATH=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../libexec/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/ | 267 | COMPILER_PATH=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../libexec/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/ |
268 | LIBRARY_PATH=/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../lib/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/ | 268 | LIBRARY_PATH=/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../lib/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/ |
269 | -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_0ba72.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu' | ||
270 | -Linking CXX executable cmTC_0ba72 | ||
271 | -/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0ba72.dir/link.txt --verbose=1 | ||
272 | -/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++ -v -rdynamic CMakeFiles/cmTC_0ba72.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_0ba72 | 269 | +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_03379.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu' |
270 | +Linking CXX executable cmTC_03379 | ||
271 | +/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_03379.dir/link.txt --verbose=1 | ||
272 | +/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++ -v -rdynamic CMakeFiles/cmTC_03379.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_03379 | ||
273 | Using built-in specs. | 273 | Using built-in specs. |
274 | COLLECT_GCC=/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++ | 274 | COLLECT_GCC=/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++ |
275 | COLLECT_LTO_WRAPPER=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper | 275 | COLLECT_LTO_WRAPPER=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper |
@@ -279,8 +279,8 @@ Thread model: posix | @@ -279,8 +279,8 @@ Thread model: posix | ||
279 | gcc version 4.9.3 (ctng-1.21.0-229g-FA) | 279 | gcc version 4.9.3 (ctng-1.21.0-229g-FA) |
280 | COMPILER_PATH=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../libexec/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/ | 280 | COMPILER_PATH=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../libexec/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/ |
281 | LIBRARY_PATH=/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../lib/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/ | 281 | LIBRARY_PATH=/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../lib/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/ |
282 | -COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_0ba72' '-shared-libgcc' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu' | ||
283 | - /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/collect2 -plugin /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/liblto_plugin.so -plugin-opt=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper -plugin-opt=-fresolution=/tmp/cczCbxYp.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root --build-id --eh-frame-hdr --hash-style=gnu -export-dynamic -dynamic-linker /lib/ld-linux-armhf.so.3 -X -m armelf_linux_eabi -o cmTC_0ba72 /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crt1.o /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crti.o /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtbegin.o -L/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3 -L/usr/local/arm/4.9.3/bin/../lib/gcc -L/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib -L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib -L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib CMakeFiles/cmTC_0ba72.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtend.o /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crtn.o | 282 | +COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_03379' '-shared-libgcc' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu' |
283 | + /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/collect2 -plugin /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/liblto_plugin.so -plugin-opt=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper -plugin-opt=-fresolution=/tmp/ccqInIeU.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root --build-id --eh-frame-hdr --hash-style=gnu -export-dynamic -dynamic-linker /lib/ld-linux-armhf.so.3 -X -m armelf_linux_eabi -o cmTC_03379 /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crt1.o /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crti.o /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtbegin.o -L/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3 -L/usr/local/arm/4.9.3/bin/../lib/gcc -L/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib -L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib -L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib CMakeFiles/cmTC_03379.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtend.o /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crtn.o | ||
284 | make[1]: warning: Clock skew detected. Your build may be incomplete. | 284 | make[1]: warning: Clock skew detected. Your build may be incomplete. |
285 | make[1]: Leaving directory '/mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp' | 285 | make[1]: Leaving directory '/mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp' |
286 | make: warning: Clock skew detected. Your build may be incomplete. | 286 | make: warning: Clock skew detected. Your build may be incomplete. |
@@ -312,20 +312,20 @@ Parsed CXX implicit link information from above output: | @@ -312,20 +312,20 @@ Parsed CXX implicit link information from above output: | ||
312 | link line regex: [^( *|.*[/\])(arm-cortexa9-linux-gnueabihf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] | 312 | link line regex: [^( *|.*[/\])(arm-cortexa9-linux-gnueabihf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] |
313 | ignore line: [Change Dir: /mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp] | 313 | ignore line: [Change Dir: /mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp] |
314 | ignore line: [] | 314 | ignore line: [] |
315 | - ignore line: [Run Build Command(s):/usr/bin/make -f Makefile cmTC_0ba72/fast && make: Warning: File 'Makefile' has modification time 0.23 s in the future] | ||
316 | - ignore line: [/usr/bin/make -f CMakeFiles/cmTC_0ba72.dir/build.make CMakeFiles/cmTC_0ba72.dir/build] | 315 | + ignore line: [Run Build Command(s):/usr/bin/make -f Makefile cmTC_03379/fast && make: Warning: File 'Makefile' has modification time 1.2 s in the future] |
316 | + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_03379.dir/build.make CMakeFiles/cmTC_03379.dir/build] | ||
317 | ignore line: [make[1]: Entering directory '/mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp'] | 317 | ignore line: [make[1]: Entering directory '/mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp'] |
318 | - ignore line: [make[1]: Warning: File 'CMakeFiles/cmTC_0ba72.dir/flags.make' has modification time 0.23 s in the future] | ||
319 | - ignore line: [Building CXX object CMakeFiles/cmTC_0ba72.dir/CMakeCXXCompilerABI.cpp.o] | ||
320 | - ignore line: [/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++ -v -o CMakeFiles/cmTC_0ba72.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp] | 318 | + ignore line: [make[1]: Warning: File 'CMakeFiles/cmTC_03379.dir/flags.make' has modification time 1.2 s in the future] |
319 | + ignore line: [Building CXX object CMakeFiles/cmTC_03379.dir/CMakeCXXCompilerABI.cpp.o] | ||
320 | + ignore line: [/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++ -v -o CMakeFiles/cmTC_03379.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp] | ||
321 | ignore line: [Using built-in specs.] | 321 | ignore line: [Using built-in specs.] |
322 | ignore line: [COLLECT_GCC=/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++] | 322 | ignore line: [COLLECT_GCC=/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++] |
323 | ignore line: [Target: arm-cortexa9-linux-gnueabihf] | 323 | ignore line: [Target: arm-cortexa9-linux-gnueabihf] |
324 | ignore line: [Configured with: /work/toolchain/build/src/gcc-4.9.3/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=arm-cortexa9-linux-gnueabihf --prefix=/opt/FriendlyARM/toolchain/4.9.3 --with-sysroot=/opt/FriendlyARM/toolchain/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root --enable-languages=c c++ --with-arch=armv7-a --with-tune=cortex-a9 --with-fpu=vfpv3 --with-float=hard --with-pkgversion=ctng-1.21.0-229g-FA --with-bugurl=http://www.friendlyarm.com/ --enable-__cxa_atexit --disable-libmudflap --disable-libgomp --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libsanitizer --with-gmp=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-mpfr=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-mpc=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-isl=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-cloog=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-libelf=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --enable-lto --with-host-libstdcxx='-static-libgcc -Wl -Bstatic -lstdc++ -Bdynamic -lm' --enable-threads=posix --enable-linker-build-id --with-linker-hash-style=gnu --enable-plugin --enable-gold --disable-multilib --with-local-prefix=/opt/FriendlyARM/toolchain/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root --enable-long-long] | 324 | ignore line: [Configured with: /work/toolchain/build/src/gcc-4.9.3/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=arm-cortexa9-linux-gnueabihf --prefix=/opt/FriendlyARM/toolchain/4.9.3 --with-sysroot=/opt/FriendlyARM/toolchain/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root --enable-languages=c c++ --with-arch=armv7-a --with-tune=cortex-a9 --with-fpu=vfpv3 --with-float=hard --with-pkgversion=ctng-1.21.0-229g-FA --with-bugurl=http://www.friendlyarm.com/ --enable-__cxa_atexit --disable-libmudflap --disable-libgomp --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libsanitizer --with-gmp=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-mpfr=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-mpc=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-isl=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-cloog=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --with-libelf=/work/toolchain/build/arm-cortexa9-linux-gnueabihf/buildtools --enable-lto --with-host-libstdcxx='-static-libgcc -Wl -Bstatic -lstdc++ -Bdynamic -lm' --enable-threads=posix --enable-linker-build-id --with-linker-hash-style=gnu --enable-plugin --enable-gold --disable-multilib --with-local-prefix=/opt/FriendlyARM/toolchain/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root --enable-long-long] |
325 | ignore line: [Thread model: posix] | 325 | ignore line: [Thread model: posix] |
326 | ignore line: [gcc version 4.9.3 (ctng-1.21.0-229g-FA) ] | 326 | ignore line: [gcc version 4.9.3 (ctng-1.21.0-229g-FA) ] |
327 | - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_0ba72.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu'] | ||
328 | - ignore line: [ /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/cc1plus -quiet -v -iprefix /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/ -isysroot /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root -D_GNU_SOURCE /usr/local/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -march=armv7-a -mtune=cortex-a9 -mfloat-abi=hard -mfpu=vfpv3 -mtls-dialect=gnu -auxbase-strip CMakeFiles/cmTC_0ba72.dir/CMakeCXXCompilerABI.cpp.o -version -o /tmp/ccViDTcm.s] | 327 | + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_03379.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu'] |
328 | + ignore line: [ /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/cc1plus -quiet -v -iprefix /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/ -isysroot /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root -D_GNU_SOURCE /usr/local/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -march=armv7-a -mtune=cortex-a9 -mfloat-abi=hard -mfpu=vfpv3 -mtls-dialect=gnu -auxbase-strip CMakeFiles/cmTC_03379.dir/CMakeCXXCompilerABI.cpp.o -version -o /tmp/ccQHRHfV.s] | ||
329 | ignore line: [GNU C++ (ctng-1.21.0-229g-FA) version 4.9.3 (arm-cortexa9-linux-gnueabihf)] | 329 | ignore line: [GNU C++ (ctng-1.21.0-229g-FA) version 4.9.3 (arm-cortexa9-linux-gnueabihf)] |
330 | ignore line: [ compiled by GNU C version 4.8.4 GMP version 6.0.0 MPFR version 3.1.3 MPC version 1.0.3] | 330 | ignore line: [ compiled by GNU C version 4.8.4 GMP version 6.0.0 MPFR version 3.1.3 MPC version 1.0.3] |
331 | ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] | 331 | ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] |
@@ -350,15 +350,15 @@ Parsed CXX implicit link information from above output: | @@ -350,15 +350,15 @@ Parsed CXX implicit link information from above output: | ||
350 | ignore line: [ compiled by GNU C version 4.8.4 GMP version 6.0.0 MPFR version 3.1.3 MPC version 1.0.3] | 350 | ignore line: [ compiled by GNU C version 4.8.4 GMP version 6.0.0 MPFR version 3.1.3 MPC version 1.0.3] |
351 | ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] | 351 | ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] |
352 | ignore line: [Compiler executable checksum: 3ff7ac3bbb22638e38898d02aefebadb] | 352 | ignore line: [Compiler executable checksum: 3ff7ac3bbb22638e38898d02aefebadb] |
353 | - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_0ba72.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu'] | ||
354 | - ignore line: [ /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/as -v -march=armv7-a -mfloat-abi=hard -mfpu=vfpv3 -meabi=5 -o CMakeFiles/cmTC_0ba72.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccViDTcm.s] | 353 | + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_03379.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu'] |
354 | + ignore line: [ /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/as -v -march=armv7-a -mfloat-abi=hard -mfpu=vfpv3 -meabi=5 -o CMakeFiles/cmTC_03379.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccQHRHfV.s] | ||
355 | ignore line: [GNU assembler version 2.25.1 (arm-cortexa9-linux-gnueabihf) using BFD version (ctng-1.21.0-229g-FA) 2.25.1] | 355 | ignore line: [GNU assembler version 2.25.1 (arm-cortexa9-linux-gnueabihf) using BFD version (ctng-1.21.0-229g-FA) 2.25.1] |
356 | ignore line: [COMPILER_PATH=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../libexec/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/] | 356 | ignore line: [COMPILER_PATH=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../libexec/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/] |
357 | ignore line: [LIBRARY_PATH=/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../lib/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/] | 357 | ignore line: [LIBRARY_PATH=/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../lib/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/] |
358 | - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_0ba72.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu'] | ||
359 | - ignore line: [Linking CXX executable cmTC_0ba72] | ||
360 | - ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0ba72.dir/link.txt --verbose=1] | ||
361 | - ignore line: [/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++ -v -rdynamic CMakeFiles/cmTC_0ba72.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_0ba72 ] | 358 | + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_03379.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu'] |
359 | + ignore line: [Linking CXX executable cmTC_03379] | ||
360 | + ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_03379.dir/link.txt --verbose=1] | ||
361 | + ignore line: [/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++ -v -rdynamic CMakeFiles/cmTC_03379.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_03379 ] | ||
362 | ignore line: [Using built-in specs.] | 362 | ignore line: [Using built-in specs.] |
363 | ignore line: [COLLECT_GCC=/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++] | 363 | ignore line: [COLLECT_GCC=/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++] |
364 | ignore line: [COLLECT_LTO_WRAPPER=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper] | 364 | ignore line: [COLLECT_LTO_WRAPPER=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper] |
@@ -368,13 +368,13 @@ Parsed CXX implicit link information from above output: | @@ -368,13 +368,13 @@ Parsed CXX implicit link information from above output: | ||
368 | ignore line: [gcc version 4.9.3 (ctng-1.21.0-229g-FA) ] | 368 | ignore line: [gcc version 4.9.3 (ctng-1.21.0-229g-FA) ] |
369 | ignore line: [COMPILER_PATH=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../libexec/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/] | 369 | ignore line: [COMPILER_PATH=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../libexec/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/bin/] |
370 | ignore line: [LIBRARY_PATH=/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../lib/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/] | 370 | ignore line: [LIBRARY_PATH=/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/:/usr/local/arm/4.9.3/bin/../lib/gcc/:/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib/:/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/] |
371 | - ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_0ba72' '-shared-libgcc' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu'] | ||
372 | - link line: [ /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/collect2 -plugin /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/liblto_plugin.so -plugin-opt=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper -plugin-opt=-fresolution=/tmp/cczCbxYp.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root --build-id --eh-frame-hdr --hash-style=gnu -export-dynamic -dynamic-linker /lib/ld-linux-armhf.so.3 -X -m armelf_linux_eabi -o cmTC_0ba72 /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crt1.o /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crti.o /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtbegin.o -L/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3 -L/usr/local/arm/4.9.3/bin/../lib/gcc -L/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib -L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib -L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib CMakeFiles/cmTC_0ba72.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtend.o /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crtn.o] | 371 | + ignore line: [COLLECT_GCC_OPTIONS='-v' '-rdynamic' '-o' 'cmTC_03379' '-shared-libgcc' '-march=armv7-a' '-mtune=cortex-a9' '-mfloat-abi=hard' '-mfpu=vfpv3' '-mtls-dialect=gnu'] |
372 | + link line: [ /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/collect2 -plugin /usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/liblto_plugin.so -plugin-opt=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper -plugin-opt=-fresolution=/tmp/ccqInIeU.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root --build-id --eh-frame-hdr --hash-style=gnu -export-dynamic -dynamic-linker /lib/ld-linux-armhf.so.3 -X -m armelf_linux_eabi -o cmTC_03379 /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crt1.o /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crti.o /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtbegin.o -L/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3 -L/usr/local/arm/4.9.3/bin/../lib/gcc -L/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib -L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib -L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib CMakeFiles/cmTC_03379.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtend.o /usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crtn.o] | ||
373 | arg [/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/collect2] ==> ignore | 373 | arg [/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/collect2] ==> ignore |
374 | arg [-plugin] ==> ignore | 374 | arg [-plugin] ==> ignore |
375 | arg [/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/liblto_plugin.so] ==> ignore | 375 | arg [/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/liblto_plugin.so] ==> ignore |
376 | arg [-plugin-opt=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper] ==> ignore | 376 | arg [-plugin-opt=/usr/local/arm/4.9.3/bin/../libexec/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/lto-wrapper] ==> ignore |
377 | - arg [-plugin-opt=-fresolution=/tmp/cczCbxYp.res] ==> ignore | 377 | + arg [-plugin-opt=-fresolution=/tmp/ccqInIeU.res] ==> ignore |
378 | arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore | 378 | arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore |
379 | arg [-plugin-opt=-pass-through=-lgcc] ==> ignore | 379 | arg [-plugin-opt=-pass-through=-lgcc] ==> ignore |
380 | arg [-plugin-opt=-pass-through=-lc] ==> ignore | 380 | arg [-plugin-opt=-pass-through=-lc] ==> ignore |
@@ -391,7 +391,7 @@ Parsed CXX implicit link information from above output: | @@ -391,7 +391,7 @@ Parsed CXX implicit link information from above output: | ||
391 | arg [-m] ==> ignore | 391 | arg [-m] ==> ignore |
392 | arg [armelf_linux_eabi] ==> ignore | 392 | arg [armelf_linux_eabi] ==> ignore |
393 | arg [-o] ==> ignore | 393 | arg [-o] ==> ignore |
394 | - arg [cmTC_0ba72] ==> ignore | 394 | + arg [cmTC_03379] ==> ignore |
395 | arg [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crt1.o] ==> obj [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crt1.o] | 395 | arg [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crt1.o] ==> obj [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crt1.o] |
396 | arg [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crti.o] ==> obj [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crti.o] | 396 | arg [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crti.o] ==> obj [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib/crti.o] |
397 | arg [/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtbegin.o] ==> obj [/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtbegin.o] | 397 | arg [/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtbegin.o] ==> obj [/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/crtbegin.o] |
@@ -400,7 +400,7 @@ Parsed CXX implicit link information from above output: | @@ -400,7 +400,7 @@ Parsed CXX implicit link information from above output: | ||
400 | arg [-L/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib] ==> dir [/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib] | 400 | arg [-L/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib] ==> dir [/usr/local/arm/4.9.3/bin/../lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/../../../../arm-cortexa9-linux-gnueabihf/lib] |
401 | arg [-L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib] ==> dir [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib] | 401 | arg [-L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib] ==> dir [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/lib] |
402 | arg [-L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib] ==> dir [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib] | 402 | arg [-L/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib] ==> dir [/usr/local/arm/4.9.3/bin/../arm-cortexa9-linux-gnueabihf/sys-root/usr/lib] |
403 | - arg [CMakeFiles/cmTC_0ba72.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore | 403 | + arg [CMakeFiles/cmTC_03379.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore |
404 | arg [-lstdc++] ==> lib [stdc++] | 404 | arg [-lstdc++] ==> lib [stdc++] |
405 | arg [-lm] ==> lib [m] | 405 | arg [-lm] ==> lib [m] |
406 | arg [-lgcc_s] ==> lib [gcc_s] | 406 | arg [-lgcc_s] ==> lib [gcc_s] |
@@ -431,15 +431,15 @@ Parsed CXX implicit link information from above output: | @@ -431,15 +431,15 @@ Parsed CXX implicit link information from above output: | ||
431 | Detecting CXX [-std=c++14] compiler features compiled with the following output: | 431 | Detecting CXX [-std=c++14] compiler features compiled with the following output: |
432 | Change Dir: /mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp | 432 | Change Dir: /mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp |
433 | 433 | ||
434 | -Run Build Command(s):/usr/bin/make -f Makefile cmTC_01ec4/fast && make: Warning: File 'Makefile' has modification time 0.079 s in the future | ||
435 | -/usr/bin/make -f CMakeFiles/cmTC_01ec4.dir/build.make CMakeFiles/cmTC_01ec4.dir/build | 434 | +Run Build Command(s):/usr/bin/make -f Makefile cmTC_272f3/fast && make: Warning: File 'Makefile' has modification time 1.1 s in the future |
435 | +/usr/bin/make -f CMakeFiles/cmTC_272f3.dir/build.make CMakeFiles/cmTC_272f3.dir/build | ||
436 | make[1]: Entering directory '/mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp' | 436 | make[1]: Entering directory '/mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp' |
437 | -make[1]: Warning: File 'CMakeFiles/cmTC_01ec4.dir/flags.make' has modification time 0.076 s in the future | ||
438 | -Building CXX object CMakeFiles/cmTC_01ec4.dir/feature_tests.cxx.o | ||
439 | -/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++ -std=c++14 -o CMakeFiles/cmTC_01ec4.dir/feature_tests.cxx.o -c /mnt/hgfs/share/展架程序/build/CMakeFiles/feature_tests.cxx | ||
440 | -Linking CXX executable cmTC_01ec4 | ||
441 | -/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_01ec4.dir/link.txt --verbose=1 | ||
442 | -/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++ -rdynamic CMakeFiles/cmTC_01ec4.dir/feature_tests.cxx.o -o cmTC_01ec4 | 437 | +make[1]: Warning: File 'CMakeFiles/cmTC_272f3.dir/flags.make' has modification time 1.1 s in the future |
438 | +Building CXX object CMakeFiles/cmTC_272f3.dir/feature_tests.cxx.o | ||
439 | +/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++ -std=c++14 -o CMakeFiles/cmTC_272f3.dir/feature_tests.cxx.o -c /mnt/hgfs/share/展架程序/build/CMakeFiles/feature_tests.cxx | ||
440 | +Linking CXX executable cmTC_272f3 | ||
441 | +/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_272f3.dir/link.txt --verbose=1 | ||
442 | +/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-g++ -rdynamic CMakeFiles/cmTC_272f3.dir/feature_tests.cxx.o -o cmTC_272f3 | ||
443 | make[1]: 警告:检测到时钟错误。您的创建可能是不完整的。 | 443 | make[1]: 警告:检测到时钟错误。您的创建可能是不完整的。 |
444 | make[1]: Leaving directory '/mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp' | 444 | make[1]: Leaving directory '/mnt/hgfs/share/展架程序/build/CMakeFiles/CMakeTmp' |
445 | make: 警告:检测到时钟错误。您的创建可能是不完整的。 | 445 | make: 警告:检测到时钟错误。您的创建可能是不完整的。 |
@@ -31,8 +31,8 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES | @@ -31,8 +31,8 @@ set(CMAKE_DEPENDS_DEPENDENCY_FILES | ||
31 | "/mnt/hgfs/share/展架程序/JZsdk_Uart/UartConnection/UartConnection.c" "CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/UartConnection/UartConnection.c.o" "gcc" "CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/UartConnection/UartConnection.c.o.d" | 31 | "/mnt/hgfs/share/展架程序/JZsdk_Uart/UartConnection/UartConnection.c" "CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/UartConnection/UartConnection.c.o" "gcc" "CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/UartConnection/UartConnection.c.o.d" |
32 | "/mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3_H10/Gimbal_H3_H10.c" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H10/Gimbal_H3_H10.c.o" "gcc" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H10/Gimbal_H3_H10.c.o.d" | 32 | "/mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3_H10/Gimbal_H3_H10.c" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H10/Gimbal_H3_H10.c.o" "gcc" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H10/Gimbal_H3_H10.c.o.d" |
33 | "/mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.o" "gcc" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.o.d" | 33 | "/mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.o" "gcc" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.o.d" |
34 | + "/mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.o" "gcc" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.o.d" | ||
34 | "/mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_InAndOut.c" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o" "gcc" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o.d" | 35 | "/mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_InAndOut.c" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o" "gcc" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o.d" |
35 | - "/mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_UartDeal.c" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.o" "gcc" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.o.d" | ||
36 | "/mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o" "gcc" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o.d" | 36 | "/mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o" "gcc" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o.d" |
37 | "/mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/Gimbal_V3S_H1T.c" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/Gimbal_V3S_H1T.c.o" "gcc" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/Gimbal_V3S_H1T.c.o.d" | 37 | "/mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/Gimbal_V3S_H1T.c" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/Gimbal_V3S_H1T.c.o" "gcc" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/Gimbal_V3S_H1T.c.o.d" |
38 | "/mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_U3/Gimbal_V3S_U3.c" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_U3/Gimbal_V3S_U3.c.o" "gcc" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_U3/Gimbal_V3S_U3.c.o.d" | 38 | "/mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_U3/Gimbal_V3S_U3.c" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_U3/Gimbal_V3S_U3.c.o" "gcc" "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_U3/Gimbal_V3S_U3.c.o.d" |
@@ -28,6 +28,7 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdkLib.c.o: \ | @@ -28,6 +28,7 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdkLib.c.o: \ | ||
28 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | 28 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ |
29 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ | 29 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ |
30 | /mnt/hgfs/share/展架程序/JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | 30 | /mnt/hgfs/share/展架程序/JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ |
31 | + /mnt/hgfs/share/展架程序/JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
31 | /mnt/hgfs/share/展架程序/JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ | 32 | /mnt/hgfs/share/展架程序/JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ |
32 | /mnt/hgfs/share/展架程序/JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | 33 | /mnt/hgfs/share/展架程序/JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ |
33 | /mnt/hgfs/share/展架程序/JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ | 34 | /mnt/hgfs/share/展架程序/JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ |
不能预览此文件类型
@@ -48,6 +48,7 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c.o: \ | @@ -48,6 +48,7 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c.o: \ | ||
48 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdkBase.h \ | 48 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdkBase.h \ |
49 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ | 49 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ |
50 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | 50 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ |
51 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
51 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ | 52 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ |
52 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | 53 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ |
53 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ | 54 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ |
@@ -17,6 +17,14 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.c.o: \ | @@ -17,6 +17,14 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.c.o: \ | ||
17 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdio_lim.h \ | 17 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdio_lim.h \ |
18 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sys_errlist.h \ | 18 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sys_errlist.h \ |
19 | /mnt/hgfs/share/展架程序/JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | 19 | /mnt/hgfs/share/展架程序/JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ |
20 | + /mnt/hgfs/share/展架程序/JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
21 | + /mnt/hgfs/share/展架程序/JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_InsCode.h \ | ||
22 | + /mnt/hgfs/share/展架程序/JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_FLagCode.h \ | ||
23 | + /mnt/hgfs/share/展架程序/JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_ReturnCode.h \ | ||
24 | + /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \ | ||
25 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \ | ||
26 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | ||
27 | + /mnt/hgfs/share/展架程序/JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_ErrorCode.h \ | ||
20 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdlib.h \ | 28 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdlib.h \ |
21 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitflags.h \ | 29 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitflags.h \ |
22 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitstatus.h \ | 30 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitstatus.h \ |
@@ -34,4 +42,6 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.c.o: \ | @@ -34,4 +42,6 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.c.o: \ | ||
34 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/pthreadtypes.h \ | 42 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/pthreadtypes.h \ |
35 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/alloca.h \ | 43 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/alloca.h \ |
36 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 44 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
37 | - /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h | 45 | + /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \ |
46 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \ | ||
47 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/xlocale.h |
@@ -52,4 +52,14 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Output.c.o: \ | @@ -52,4 +52,14 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Output.c.o: \ | ||
52 | /mnt/hgfs/share/展架程序/./Module/Gimbal/Gimbal_InAndOut.h \ | 52 | /mnt/hgfs/share/展架程序/./Module/Gimbal/Gimbal_InAndOut.h \ |
53 | /mnt/hgfs/share/展架程序/JZsdk_Uart/Uart_Config.h \ | 53 | /mnt/hgfs/share/展架程序/JZsdk_Uart/Uart_Config.h \ |
54 | /mnt/hgfs/share/展架程序/JZsdk_Uart/JZsdk_Uart_Send/JZsdk_Uart_Send.h \ | 54 | /mnt/hgfs/share/展架程序/JZsdk_Uart/JZsdk_Uart_Send/JZsdk_Uart_Send.h \ |
55 | - /mnt/hgfs/share/展架程序/./Module/UI_control/UI_control.h | 55 | + /mnt/hgfs/share/展架程序/./Module/UI_control/UI_control.h \ |
56 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdkLib.h \ | ||
57 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdkBase.h \ | ||
58 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ | ||
59 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | ||
60 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
61 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ | ||
62 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | ||
63 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ | ||
64 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \ | ||
65 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_Code.h |
@@ -36,6 +36,7 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal_4G.c.o | @@ -36,6 +36,7 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal_4G.c.o | ||
36 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdkBase.h \ | 36 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdkBase.h \ |
37 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ | 37 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ |
38 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | 38 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ |
39 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
39 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ | 40 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ |
40 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | 41 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ |
41 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ | 42 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ |
@@ -36,6 +36,7 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal_DEV1.c | @@ -36,6 +36,7 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal_DEV1.c | ||
36 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdkBase.h \ | 36 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdkBase.h \ |
37 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ | 37 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ |
38 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | 38 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ |
39 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
39 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ | 40 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ |
40 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | 41 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ |
41 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ | 42 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ |
@@ -36,6 +36,7 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal_DEV2.c | @@ -36,6 +36,7 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal_DEV2.c | ||
36 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdkBase.h \ | 36 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdkBase.h \ |
37 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ | 37 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ |
38 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | 38 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ |
39 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
39 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ | 40 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ |
40 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | 41 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ |
41 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ | 42 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ |
@@ -68,6 +68,7 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_UartDeal.c.o: \ | @@ -68,6 +68,7 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_UartDeal.c.o: \ | ||
68 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | 68 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ |
69 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ | 69 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ |
70 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | 70 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ |
71 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
71 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ | 72 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ |
72 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | 73 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ |
73 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ | 74 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ |
@@ -60,6 +60,7 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/UartConnection/UartConnection.c.o: \ | @@ -60,6 +60,7 @@ CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/UartConnection/UartConnection.c.o: \ | ||
60 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | 60 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ |
61 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ | 61 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ |
62 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | 62 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ |
63 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
63 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ | 64 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ |
64 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | 65 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ |
65 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ | 66 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ |
不能预览此文件类型
@@ -38,4 +38,16 @@ CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H1 | @@ -38,4 +38,16 @@ CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H1 | ||
38 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sched.h \ | 38 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sched.h \ |
39 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/xlocale.h \ | 39 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/xlocale.h \ |
40 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/setjmp.h \ | 40 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/setjmp.h \ |
41 | - /mnt/hgfs/share/展架程序/./Module/Gimbal/Gimbal_UartDeal.h | 41 | + /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.h \ |
42 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \ | ||
43 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_InsCode.h \ | ||
44 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | ||
45 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode.h \ | ||
46 | + /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \ | ||
47 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \ | ||
48 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | ||
49 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ | ||
50 | + /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.h \ | ||
51 | + /mnt/hgfs/share/展架程序/./application/BaseConfig.h \ | ||
52 | + /mnt/hgfs/share/展架程序/./application/version_choose.h \ | ||
53 | + /mnt/hgfs/share/展架程序/./JZsdk_Uart/UartConnection/UartConnection.h |
1 | -CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.o: \ | ||
2 | - /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_UartDeal.c \ | 1 | +CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.o: \ |
2 | + /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c \ | ||
3 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \ | 3 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \ |
4 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \ | 4 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \ |
5 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/features.h \ | 5 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/features.h \ |
@@ -35,19 +35,9 @@ CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o: \ | @@ -35,19 +35,9 @@ CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o: \ | ||
35 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/pthreadtypes.h \ | 35 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/pthreadtypes.h \ |
36 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/alloca.h \ | 36 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/alloca.h \ |
37 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ | 37 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \ |
38 | - /mnt/hgfs/share/展架程序/./application/BaseConfig.h \ | ||
39 | - /mnt/hgfs/share/展架程序/./application/version_choose.h \ | ||
40 | - /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_UartDeal.h \ | ||
41 | /mnt/hgfs/share/展架程序/./application/version_choose.h \ | 38 | /mnt/hgfs/share/展架程序/./application/version_choose.h \ |
42 | /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3.h \ | 39 | /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3.h \ |
43 | /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.h \ | 40 | /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.h \ |
44 | - /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3_H10/Gimbal_H3_H10.h \ | ||
45 | - /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S.h \ | ||
46 | - /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.h \ | ||
47 | - /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_U3/Gimbal_V3S_U3.h \ | ||
48 | - /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/Gimbal_V3S_H1T.h \ | ||
49 | - /mnt/hgfs/share/展架程序/./JZsdk_Uart/UartConnection/UartConnection.h \ | ||
50 | - /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_InAndOut.h \ | ||
51 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \ | 41 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \ |
52 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_InsCode.h \ | 42 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_InsCode.h \ |
53 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | 43 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ |
@@ -56,10 +46,17 @@ CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o: \ | @@ -56,10 +46,17 @@ CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o: \ | ||
56 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \ | 46 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \ |
57 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | 47 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ |
58 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ | 48 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ |
49 | + /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3_H10/Gimbal_H3_H10.h \ | ||
50 | + /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S.h \ | ||
51 | + /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.h \ | ||
52 | + /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_U3/Gimbal_V3S_U3.h \ | ||
53 | + /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/Gimbal_V3S_H1T.h \ | ||
54 | + /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_InAndOut.h \ | ||
59 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdkLib.h \ | 55 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdkLib.h \ |
60 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdkBase.h \ | 56 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdkBase.h \ |
61 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ | 57 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ |
62 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | 58 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ |
59 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
63 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ | 60 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ |
64 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | 61 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ |
65 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ | 62 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ |
@@ -81,4 +81,12 @@ CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H | @@ -81,4 +81,12 @@ CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H | ||
81 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/utsname.h \ | 81 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/utsname.h \ |
82 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/utsname.h \ | 82 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/utsname.h \ |
83 | /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/./Gimbal_V3S_H10T.h \ | 83 | /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/./Gimbal_V3S_H10T.h \ |
84 | - /mnt/hgfs/share/展架程序/./Module/Ircut/ircut.h | 84 | + /mnt/hgfs/share/展架程序/./Module/Ircut/ircut.h \ |
85 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \ | ||
86 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_InsCode.h \ | ||
87 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | ||
88 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode.h \ | ||
89 | + /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \ | ||
90 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \ | ||
91 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | ||
92 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h |
不能预览此文件类型
@@ -81,6 +81,14 @@ CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/Gimbal_V3S_H1 | @@ -81,6 +81,14 @@ CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/Gimbal_V3S_H1 | ||
81 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/utsname.h \ | 81 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/utsname.h \ |
82 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/utsname.h \ | 82 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/utsname.h \ |
83 | /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/./Gimbal_V3S_H1T.h \ | 83 | /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/./Gimbal_V3S_H1T.h \ |
84 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \ | ||
85 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_InsCode.h \ | ||
86 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | ||
87 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode.h \ | ||
88 | + /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \ | ||
89 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \ | ||
90 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | ||
91 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ | ||
84 | /mnt/hgfs/share/展架程序/./JZsdk_Uart/JZsdk_Uart_Input.h \ | 92 | /mnt/hgfs/share/展架程序/./JZsdk_Uart/JZsdk_Uart_Input.h \ |
85 | /mnt/hgfs/share/展架程序/./Module/Ircut/ircut.h \ | 93 | /mnt/hgfs/share/展架程序/./Module/Ircut/ircut.h \ |
86 | /mnt/hgfs/share/展架程序/./application/BaseConfig.h \ | 94 | /mnt/hgfs/share/展架程序/./application/BaseConfig.h \ |
@@ -81,6 +81,14 @@ CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_U3/Gimbal_V3S_U3. | @@ -81,6 +81,14 @@ CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_U3/Gimbal_V3S_U3. | ||
81 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/utsname.h \ | 81 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/utsname.h \ |
82 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/utsname.h \ | 82 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/utsname.h \ |
83 | /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_U3/./Gimbal_V3S_U3.h \ | 83 | /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_U3/./Gimbal_V3S_U3.h \ |
84 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \ | ||
85 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_InsCode.h \ | ||
86 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | ||
87 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode.h \ | ||
88 | + /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \ | ||
89 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \ | ||
90 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | ||
91 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ | ||
84 | /mnt/hgfs/share/展架程序/./JZsdk_Uart/JZsdk_Uart_Input.h \ | 92 | /mnt/hgfs/share/展架程序/./JZsdk_Uart/JZsdk_Uart_Input.h \ |
85 | /mnt/hgfs/share/展架程序/./Module/Ircut/ircut.h \ | 93 | /mnt/hgfs/share/展架程序/./Module/Ircut/ircut.h \ |
86 | /mnt/hgfs/share/展架程序/./application/BaseConfig.h \ | 94 | /mnt/hgfs/share/展架程序/./application/BaseConfig.h \ |
@@ -2,12 +2,20 @@ CMakeFiles/JZ_UART_APP.dir/Module/Ircut/V3s_ircut/V3s_ircut.c.o: \ | @@ -2,12 +2,20 @@ CMakeFiles/JZ_UART_APP.dir/Module/Ircut/V3s_ircut/V3s_ircut.c.o: \ | ||
2 | /mnt/hgfs/share/展架程序/Module/Ircut/V3s_ircut/V3s_ircut.c \ | 2 | /mnt/hgfs/share/展架程序/Module/Ircut/V3s_ircut/V3s_ircut.c \ |
3 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \ | 3 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \ |
4 | /mnt/hgfs/share/展架程序/./Module/Ircut/ircut.h \ | 4 | /mnt/hgfs/share/展架程序/./Module/Ircut/ircut.h \ |
5 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \ | 5 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \ |
6 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_InsCode.h \ | ||
7 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | ||
8 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode.h \ | ||
9 | + /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \ | ||
10 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \ | ||
6 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/features.h \ | 11 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/features.h \ |
7 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/cdefs.h \ | 12 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/cdefs.h \ |
8 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wordsize.h \ | 13 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wordsize.h \ |
9 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/gnu/stubs.h \ | 14 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/gnu/stubs.h \ |
10 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/gnu/stubs-hard.h \ | 15 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/gnu/stubs-hard.h \ |
16 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | ||
17 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ | ||
18 | + /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \ | ||
11 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stddef.h \ | 19 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stddef.h \ |
12 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/types.h \ | 20 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/types.h \ |
13 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/typesizes.h \ | 21 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/typesizes.h \ |
@@ -27,9 +35,6 @@ CMakeFiles/JZ_UART_APP.dir/Module/Ircut/V3s_ircut/V3s_ircut.c.o: \ | @@ -27,9 +35,6 @@ CMakeFiles/JZ_UART_APP.dir/Module/Ircut/V3s_ircut/V3s_ircut.c.o: \ | ||
27 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/fcntl-linux.h \ | 35 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/fcntl-linux.h \ |
28 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/time.h \ | 36 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/time.h \ |
29 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stat.h \ | 37 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stat.h \ |
30 | - /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \ | ||
31 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \ | ||
32 | - /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | ||
33 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdlib.h \ | 38 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdlib.h \ |
34 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitflags.h \ | 39 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitflags.h \ |
35 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitstatus.h \ | 40 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitstatus.h \ |
@@ -22,4 +22,10 @@ CMakeFiles/JZ_UART_APP.dir/Module/Ircut/ircut.c.o: \ | @@ -22,4 +22,10 @@ CMakeFiles/JZ_UART_APP.dir/Module/Ircut/ircut.c.o: \ | ||
22 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \ | 22 | /usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \ |
23 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \ | 23 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \ |
24 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | 24 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ |
25 | - /mnt/hgfs/share/展架程序/Module/Ircut/./H3_ircut/Ircut_H3_H10/Ircut_H3_H10.h | 25 | + /mnt/hgfs/share/展架程序/Module/Ircut/./H3_ircut/Ircut_H3_H10/Ircut_H3_H10.h \ |
26 | + /mnt/hgfs/share/展架程序/Module/Ircut/ircut.h \ | ||
27 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \ | ||
28 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_InsCode.h \ | ||
29 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | ||
30 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode.h \ | ||
31 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h |
@@ -57,6 +57,7 @@ CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/AudioFile/Megaphone_AudioFile.c.o: \ | @@ -57,6 +57,7 @@ CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/AudioFile/Megaphone_AudioFile.c.o: \ | ||
57 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | 57 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ |
58 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ | 58 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ |
59 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | 59 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ |
60 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
60 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ | 61 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ |
61 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | 62 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ |
62 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ | 63 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ |
@@ -55,6 +55,7 @@ CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/Music/Megaphone_Music.c.o: \ | @@ -55,6 +55,7 @@ CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/Music/Megaphone_Music.c.o: \ | ||
55 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdkBase.h \ | 55 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdkBase.h \ |
56 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ | 56 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ |
57 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | 57 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ |
58 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
58 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ | 59 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ |
59 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | 60 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ |
60 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ | 61 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ |
不能预览此文件类型
@@ -57,6 +57,7 @@ CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/Music/RealTimeMP2/Megaphone_RealTime | @@ -57,6 +57,7 @@ CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/Music/RealTimeMP2/Megaphone_RealTime | ||
57 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | 57 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ |
58 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ | 58 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ |
59 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | 59 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ |
60 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
60 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ | 61 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ |
61 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | 62 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ |
62 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ | 63 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ |
@@ -32,6 +32,7 @@ CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/TTS/Intl_tts/Intl_tts.c.o: \ | @@ -32,6 +32,7 @@ CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/TTS/Intl_tts/Intl_tts.c.o: \ | ||
32 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdkBase.h \ | 32 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdkBase.h \ |
33 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ | 33 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ |
34 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | 34 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ |
35 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
35 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ | 36 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ |
36 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | 37 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ |
37 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ | 38 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ |
@@ -44,6 +44,7 @@ CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/TTS/Megaphone_TTS.c.o: \ | @@ -44,6 +44,7 @@ CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/TTS/Megaphone_TTS.c.o: \ | ||
44 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdkBase.h \ | 44 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdkBase.h \ |
45 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ | 45 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \ |
46 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | 46 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ |
47 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
47 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ | 48 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ |
48 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | 49 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ |
49 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ | 50 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ |
@@ -62,6 +62,7 @@ CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/TTS/cn_tts/cn_tts.c.o: \ | @@ -62,6 +62,7 @@ CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/TTS/cn_tts/cn_tts.c.o: \ | ||
62 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | 62 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ |
63 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ | 63 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ |
64 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | 64 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ |
65 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
65 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ | 66 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ |
66 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | 67 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ |
67 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ | 68 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ |
不能预览此文件类型
@@ -57,6 +57,7 @@ CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/opus/RealTimeVoice/Megaphone_RealTim | @@ -57,6 +57,7 @@ CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/opus/RealTimeVoice/Megaphone_RealTim | ||
57 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | 57 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ |
58 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ | 58 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ |
59 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | 59 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ |
60 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
60 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ | 61 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ |
61 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | 62 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ |
62 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ | 63 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ |
不能预览此文件类型
@@ -60,6 +60,7 @@ CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/opus/RecordVoice/Megaphone_RecordVoi | @@ -60,6 +60,7 @@ CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/opus/RecordVoice/Megaphone_RecordVoi | ||
60 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode.h \ | 60 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode.h \ |
61 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ | 61 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ |
62 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | 62 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ |
63 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
63 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ | 64 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ |
64 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | 65 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ |
65 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ | 66 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ |
@@ -28,6 +28,7 @@ CMakeFiles/JZ_UART_APP.dir/Module/UI_control/UI_control.c.o: \ | @@ -28,6 +28,7 @@ CMakeFiles/JZ_UART_APP.dir/Module/UI_control/UI_control.c.o: \ | ||
28 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | 28 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ |
29 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ | 29 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ |
30 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | 30 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ |
31 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
31 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ | 32 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ |
32 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | 33 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ |
33 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ | 34 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ |
@@ -40,4 +41,5 @@ CMakeFiles/JZ_UART_APP.dir/Module/UI_control/UI_control.c.o: \ | @@ -40,4 +41,5 @@ CMakeFiles/JZ_UART_APP.dir/Module/UI_control/UI_control.c.o: \ | ||
40 | /mnt/hgfs/share/展架程序/./JZsdk_Uart/Uart_Config.h \ | 41 | /mnt/hgfs/share/展架程序/./JZsdk_Uart/Uart_Config.h \ |
41 | /mnt/hgfs/share/展架程序/./application/BaseConfig.h \ | 42 | /mnt/hgfs/share/展架程序/./application/BaseConfig.h \ |
42 | /mnt/hgfs/share/展架程序/./application/version_choose.h \ | 43 | /mnt/hgfs/share/展架程序/./application/version_choose.h \ |
43 | - /mnt/hgfs/share/展架程序/Module/UI_control/Psdk_UI_io.h | 44 | + /mnt/hgfs/share/展架程序/Module/UI_control/Psdk_UI_io.h \ |
45 | + /mnt/hgfs/share/展架程序/./Module/Ircut/ircut.h |
@@ -51,6 +51,7 @@ CMakeFiles/JZ_UART_APP.dir/application/main.c.o: \ | @@ -51,6 +51,7 @@ CMakeFiles/JZ_UART_APP.dir/application/main.c.o: \ | ||
51 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ | 51 | /usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \ |
52 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ | 52 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ErrorCode.h \ |
53 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ | 53 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \ |
54 | + /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \ | ||
54 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ | 55 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \ |
55 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ | 56 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \ |
56 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ | 57 | /mnt/hgfs/share/展架程序/./JZsdk/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \ |
@@ -965,10 +965,24 @@ CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H1 | @@ -965,10 +965,24 @@ CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H1 | ||
965 | @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.s" | 965 | @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.s" |
966 | /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c -o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.s | 966 | /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c -o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.s |
967 | 967 | ||
968 | +CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.o: CMakeFiles/JZ_UART_APP.dir/flags.make | ||
969 | +CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.o: /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c | ||
970 | +CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.o: CMakeFiles/JZ_UART_APP.dir/compiler_depend.ts | ||
971 | + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/hgfs/share/展架程序/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_65) "Building C object CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.o" | ||
972 | + /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.o -MF CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.o.d -o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.o -c /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c | ||
973 | + | ||
974 | +CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.i: cmake_force | ||
975 | + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.i" | ||
976 | + /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c > CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.i | ||
977 | + | ||
978 | +CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.s: cmake_force | ||
979 | + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.s" | ||
980 | + /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c -o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.s | ||
981 | + | ||
968 | CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o: CMakeFiles/JZ_UART_APP.dir/flags.make | 982 | CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o: CMakeFiles/JZ_UART_APP.dir/flags.make |
969 | CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o: /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_InAndOut.c | 983 | CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o: /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_InAndOut.c |
970 | CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o: CMakeFiles/JZ_UART_APP.dir/compiler_depend.ts | 984 | CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o: CMakeFiles/JZ_UART_APP.dir/compiler_depend.ts |
971 | - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/hgfs/share/展架程序/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_65) "Building C object CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o" | 985 | + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/hgfs/share/展架程序/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_66) "Building C object CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o" |
972 | /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o -MF CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o.d -o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o -c /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_InAndOut.c | 986 | /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o -MF CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o.d -o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o -c /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_InAndOut.c |
973 | 987 | ||
974 | CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.i: cmake_force | 988 | CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.i: cmake_force |
@@ -979,20 +993,6 @@ CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.s: cmake_force | @@ -979,20 +993,6 @@ CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.s: cmake_force | ||
979 | @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.s" | 993 | @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.s" |
980 | /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_InAndOut.c -o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.s | 994 | /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_InAndOut.c -o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.s |
981 | 995 | ||
982 | -CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.o: CMakeFiles/JZ_UART_APP.dir/flags.make | ||
983 | -CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.o: /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_UartDeal.c | ||
984 | -CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.o: CMakeFiles/JZ_UART_APP.dir/compiler_depend.ts | ||
985 | - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/hgfs/share/展架程序/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_66) "Building C object CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.o" | ||
986 | - /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.o -MF CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.o.d -o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.o -c /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_UartDeal.c | ||
987 | - | ||
988 | -CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.i: cmake_force | ||
989 | - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.i" | ||
990 | - /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_UartDeal.c > CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.i | ||
991 | - | ||
992 | -CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.s: cmake_force | ||
993 | - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.s" | ||
994 | - /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_UartDeal.c -o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.s | ||
995 | - | ||
996 | CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o: CMakeFiles/JZ_UART_APP.dir/flags.make | 996 | CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o: CMakeFiles/JZ_UART_APP.dir/flags.make |
997 | CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o: /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c | 997 | CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o: /mnt/hgfs/share/展架程序/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c |
998 | CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o: CMakeFiles/JZ_UART_APP.dir/compiler_depend.ts | 998 | CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o: CMakeFiles/JZ_UART_APP.dir/compiler_depend.ts |
@@ -1185,8 +1185,8 @@ JZ_UART_APP_OBJECTS = \ | @@ -1185,8 +1185,8 @@ JZ_UART_APP_OBJECTS = \ | ||
1185 | "CMakeFiles/JZ_UART_APP.dir/Module/Ircut/ircut.c.o" \ | 1185 | "CMakeFiles/JZ_UART_APP.dir/Module/Ircut/ircut.c.o" \ |
1186 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H10/Gimbal_H3_H10.c.o" \ | 1186 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H10/Gimbal_H3_H10.c.o" \ |
1187 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.o" \ | 1187 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.o" \ |
1188 | +"CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.o" \ | ||
1188 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o" \ | 1189 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o" \ |
1189 | -"CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.o" \ | ||
1190 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o" \ | 1190 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o" \ |
1191 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/Gimbal_V3S_H1T.c.o" \ | 1191 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/Gimbal_V3S_H1T.c.o" \ |
1192 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_U3/Gimbal_V3S_U3.c.o" \ | 1192 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_U3/Gimbal_V3S_U3.c.o" \ |
@@ -1264,8 +1264,8 @@ JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Ircut/V3s_ircut/V3s_ircut.c.o | @@ -1264,8 +1264,8 @@ JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Ircut/V3s_ircut/V3s_ircut.c.o | ||
1264 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Ircut/ircut.c.o | 1264 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Ircut/ircut.c.o |
1265 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H10/Gimbal_H3_H10.c.o | 1265 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H10/Gimbal_H3_H10.c.o |
1266 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.o | 1266 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.o |
1267 | +JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.o | ||
1267 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o | 1268 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o |
1268 | -JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.o | ||
1269 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o | 1269 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o |
1270 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/Gimbal_V3S_H1T.c.o | 1270 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/Gimbal_V3S_H1T.c.o |
1271 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_U3/Gimbal_V3S_U3.c.o | 1271 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_U3/Gimbal_V3S_U3.c.o |
@@ -1277,8 +1277,6 @@ JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Lighting/SearchLight/SearchLight_ | @@ -1277,8 +1277,6 @@ JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Lighting/SearchLight/SearchLight_ | ||
1277 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o | 1277 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o |
1278 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/build.make | 1278 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/build.make |
1279 | JZ_UART_APP: /mnt/hgfs/share/展架程序/ModuleLib/music/high_pass_filtering/libAudioPlayer.so | 1279 | JZ_UART_APP: /mnt/hgfs/share/展架程序/ModuleLib/music/high_pass_filtering/libAudioPlayer.so |
1280 | -JZ_UART_APP: /mnt/hgfs/share/展架程序/ModuleLib/TTS/intl_tts/libportaudio.so.2 | ||
1281 | -JZ_UART_APP: /mnt/hgfs/share/展架程序/ModuleLib/TTS/intl_tts/libTTS_Player.so | ||
1282 | JZ_UART_APP: /mnt/hgfs/share/展架程序/ModuleLib/TTS/libmsc.so | 1280 | JZ_UART_APP: /mnt/hgfs/share/展架程序/ModuleLib/TTS/libmsc.so |
1283 | JZ_UART_APP: /mnt/hgfs/share/展架程序/ModuleLib/opus/libopus.so | 1281 | JZ_UART_APP: /mnt/hgfs/share/展架程序/ModuleLib/opus/libopus.so |
1284 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/link.txt | 1282 | JZ_UART_APP: CMakeFiles/JZ_UART_APP.dir/link.txt |
@@ -45,10 +45,10 @@ file(REMOVE_RECURSE | @@ -45,10 +45,10 @@ file(REMOVE_RECURSE | ||
45 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H10/Gimbal_H3_H10.c.o.d" | 45 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H10/Gimbal_H3_H10.c.o.d" |
46 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.o" | 46 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.o" |
47 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.o.d" | 47 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.o.d" |
48 | + "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.o" | ||
49 | + "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.o.d" | ||
48 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o" | 50 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o" |
49 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o.d" | 51 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o.d" |
50 | - "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.o" | ||
51 | - "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.o.d" | ||
52 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o" | 52 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o" |
53 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o.d" | 53 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o.d" |
54 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/Gimbal_V3S_H1T.c.o" | 54 | "CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/Gimbal_V3S_H1T.c.o" |
此 diff 太大无法显示。
此 diff 太大无法显示。
1 | -/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc -pthread -std=gnu99 -lm -ldl -lstdc++ -rdynamic CMakeFiles/JZ_UART_APP.dir/application/main.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdkLib.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComParsion.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Input.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Output.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal_4G.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal_DEV1.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal_DEV2.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Send/JZsdk_Uart_Send.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Send/JZsdk_Uart_SendDeal.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_UartDeal.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/UartConnection/UartConnection.c.o CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/AudioFile/Megaphone_AudioFile.c.o CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/Megaphone_InputAndOutput.c.o CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/Music/Megaphone_Music.c.o CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/Music/RealTimeMP2/Megaphone_RealTimeMP2.c.o CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/TTS/Intl_tts/Intl_tts.c.o CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/TTS/Megaphone_TTS.c.o CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/TTS/cn_tts/cn_tts.c.o CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/opus/RealTimeVoice/Megaphone_RealTimeVoice.c.o CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/opus/RecordVoice/Megaphone_RecordVoice.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/H3_ircut.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/Ircut_H3_H10/Ircut_H3_H10.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/boardtype_friendlyelec.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/drcSerial.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/max31855.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/max5322.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/mcp23008.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/mcp23016.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/mcp23017.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/mcp23s08.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/mcp23s17.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/mcp3002.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/mcp3004.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/mcp3422.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/mcp4802.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/pcf8574.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/pcf8591.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/piHiPri.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/piThread.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/sn3218.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/softPwm.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/softServo.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/softTone.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/sr595.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/wiringPi.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/wiringPiI2C.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/wiringPiSPI.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/wiringSerial.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/wiringShift.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/V3s_ircut/V3s_ircut.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/ircut.c.o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H10/Gimbal_H3_H10.c.o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/Gimbal_V3S_H1T.c.o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_U3/Gimbal_V3S_U3.c.o CMakeFiles/JZ_UART_APP.dir/Module/UI_control/Psdk_UI_io.c.o CMakeFiles/JZ_UART_APP.dir/Module/UI_control/UI_control.c.o CMakeFiles/JZ_UART_APP.dir/Module/Lighting/Lighting_InAndOut.c.o CMakeFiles/JZ_UART_APP.dir/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o CMakeFiles/JZ_UART_APP.dir/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o CMakeFiles/JZ_UART_APP.dir/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o -o JZ_UART_APP -L/mnt/hgfs/share/展架程序/ModuleLib/TTS -Wl,-rpath,/mnt/hgfs/share/展架程序/ModuleLib/music/high_pass_filtering:/mnt/hgfs/share/展架程序/ModuleLib/TTS/intl_tts:/mnt/hgfs/share/展架程序/ModuleLib/TTS:/mnt/hgfs/share/展架程序/ModuleLib/opus /mnt/hgfs/share/展架程序/ModuleLib/music/high_pass_filtering/libAudioPlayer.so /mnt/hgfs/share/展架程序/ModuleLib/TTS/intl_tts/libportaudio.so.2 /mnt/hgfs/share/展架程序/ModuleLib/TTS/intl_tts/libTTS_Player.so -lmsc /mnt/hgfs/share/展架程序/ModuleLib/opus/libopus.so | 1 | +/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc -pthread -std=gnu99 -lm -ldl -lstdc++ -rdynamic CMakeFiles/JZ_UART_APP.dir/application/main.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdkLib.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComParsion.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Input.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Output.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal_4G.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal_DEV1.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal_DEV2.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Send/JZsdk_Uart_Send.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_Send/JZsdk_Uart_SendDeal.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/JZsdk_Uart_UartDeal.c.o CMakeFiles/JZ_UART_APP.dir/JZsdk_Uart/UartConnection/UartConnection.c.o CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/AudioFile/Megaphone_AudioFile.c.o CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/Megaphone_InputAndOutput.c.o CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/Music/Megaphone_Music.c.o CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/Music/RealTimeMP2/Megaphone_RealTimeMP2.c.o CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/TTS/Intl_tts/Intl_tts.c.o CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/TTS/Megaphone_TTS.c.o CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/TTS/cn_tts/cn_tts.c.o CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/opus/RealTimeVoice/Megaphone_RealTimeVoice.c.o CMakeFiles/JZ_UART_APP.dir/Module/Megaphone/opus/RecordVoice/Megaphone_RecordVoice.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/H3_ircut.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/Ircut_H3_H10/Ircut_H3_H10.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/boardtype_friendlyelec.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/drcSerial.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/max31855.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/max5322.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/mcp23008.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/mcp23016.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/mcp23017.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/mcp23s08.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/mcp23s17.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/mcp3002.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/mcp3004.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/mcp3422.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/mcp4802.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/pcf8574.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/pcf8591.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/piHiPri.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/piThread.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/sn3218.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/softPwm.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/softServo.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/softTone.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/sr595.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/wiringPi.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/wiringPiI2C.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/wiringPiSPI.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/wiringSerial.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/H3_ircut/wiringPi/wiringShift.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/V3s_ircut/V3s_ircut.c.o CMakeFiles/JZ_UART_APP.dir/Module/Ircut/ircut.c.o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H10/Gimbal_H3_H10.c.o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H1T/Gimbal_V3S_H1T.c.o CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_V3S/Gimbal_V3S_U3/Gimbal_V3S_U3.c.o CMakeFiles/JZ_UART_APP.dir/Module/UI_control/Psdk_UI_io.c.o CMakeFiles/JZ_UART_APP.dir/Module/UI_control/UI_control.c.o CMakeFiles/JZ_UART_APP.dir/Module/Lighting/Lighting_InAndOut.c.o CMakeFiles/JZ_UART_APP.dir/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o CMakeFiles/JZ_UART_APP.dir/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o CMakeFiles/JZ_UART_APP.dir/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o -o JZ_UART_APP -L/mnt/hgfs/share/展架程序/ModuleLib/TTS -Wl,-rpath,/mnt/hgfs/share/展架程序/ModuleLib/music/high_pass_filtering:/mnt/hgfs/share/展架程序/ModuleLib/TTS:/mnt/hgfs/share/展架程序/ModuleLib/opus /mnt/hgfs/share/展架程序/ModuleLib/music/high_pass_filtering/libAudioPlayer.so -lmsc /mnt/hgfs/share/展架程序/ModuleLib/opus/libopus.so |
不能预览此文件类型
@@ -681,6 +681,30 @@ Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.s: | @@ -681,6 +681,30 @@ Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.s: | ||
681 | $(MAKE) $(MAKESILENT) -f CMakeFiles/JZ_UART_APP.dir/build.make CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.s | 681 | $(MAKE) $(MAKESILENT) -f CMakeFiles/JZ_UART_APP.dir/build.make CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.s |
682 | .PHONY : Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.s | 682 | .PHONY : Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.c.s |
683 | 683 | ||
684 | +Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.o: Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.o | ||
685 | +.PHONY : Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.o | ||
686 | + | ||
687 | +# target to build an object file | ||
688 | +Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.o: | ||
689 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/JZ_UART_APP.dir/build.make CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.o | ||
690 | +.PHONY : Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.o | ||
691 | + | ||
692 | +Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.i: Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.i | ||
693 | +.PHONY : Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.i | ||
694 | + | ||
695 | +# target to preprocess a source file | ||
696 | +Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.i: | ||
697 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/JZ_UART_APP.dir/build.make CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.i | ||
698 | +.PHONY : Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.i | ||
699 | + | ||
700 | +Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.s: Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.s | ||
701 | +.PHONY : Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.s | ||
702 | + | ||
703 | +# target to generate assembly for a file | ||
704 | +Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.s: | ||
705 | + $(MAKE) $(MAKESILENT) -f CMakeFiles/JZ_UART_APP.dir/build.make CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.s | ||
706 | +.PHONY : Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.c.s | ||
707 | + | ||
684 | Module/Gimbal/Gimbal_InAndOut.o: Module/Gimbal/Gimbal_InAndOut.c.o | 708 | Module/Gimbal/Gimbal_InAndOut.o: Module/Gimbal/Gimbal_InAndOut.c.o |
685 | .PHONY : Module/Gimbal/Gimbal_InAndOut.o | 709 | .PHONY : Module/Gimbal/Gimbal_InAndOut.o |
686 | 710 | ||
@@ -705,30 +729,6 @@ Module/Gimbal/Gimbal_InAndOut.c.s: | @@ -705,30 +729,6 @@ Module/Gimbal/Gimbal_InAndOut.c.s: | ||
705 | $(MAKE) $(MAKESILENT) -f CMakeFiles/JZ_UART_APP.dir/build.make CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.s | 729 | $(MAKE) $(MAKESILENT) -f CMakeFiles/JZ_UART_APP.dir/build.make CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_InAndOut.c.s |
706 | .PHONY : Module/Gimbal/Gimbal_InAndOut.c.s | 730 | .PHONY : Module/Gimbal/Gimbal_InAndOut.c.s |
707 | 731 | ||
708 | -Module/Gimbal/Gimbal_UartDeal.o: Module/Gimbal/Gimbal_UartDeal.c.o | ||
709 | -.PHONY : Module/Gimbal/Gimbal_UartDeal.o | ||
710 | - | ||
711 | -# target to build an object file | ||
712 | -Module/Gimbal/Gimbal_UartDeal.c.o: | ||
713 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/JZ_UART_APP.dir/build.make CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.o | ||
714 | -.PHONY : Module/Gimbal/Gimbal_UartDeal.c.o | ||
715 | - | ||
716 | -Module/Gimbal/Gimbal_UartDeal.i: Module/Gimbal/Gimbal_UartDeal.c.i | ||
717 | -.PHONY : Module/Gimbal/Gimbal_UartDeal.i | ||
718 | - | ||
719 | -# target to preprocess a source file | ||
720 | -Module/Gimbal/Gimbal_UartDeal.c.i: | ||
721 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/JZ_UART_APP.dir/build.make CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.i | ||
722 | -.PHONY : Module/Gimbal/Gimbal_UartDeal.c.i | ||
723 | - | ||
724 | -Module/Gimbal/Gimbal_UartDeal.s: Module/Gimbal/Gimbal_UartDeal.c.s | ||
725 | -.PHONY : Module/Gimbal/Gimbal_UartDeal.s | ||
726 | - | ||
727 | -# target to generate assembly for a file | ||
728 | -Module/Gimbal/Gimbal_UartDeal.c.s: | ||
729 | - $(MAKE) $(MAKESILENT) -f CMakeFiles/JZ_UART_APP.dir/build.make CMakeFiles/JZ_UART_APP.dir/Module/Gimbal/Gimbal_UartDeal.c.s | ||
730 | -.PHONY : Module/Gimbal/Gimbal_UartDeal.c.s | ||
731 | - | ||
732 | Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.o: Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o | 732 | Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.o: Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.c.o |
733 | .PHONY : Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.o | 733 | .PHONY : Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.o |
734 | 734 | ||
@@ -2007,12 +2007,12 @@ help: | @@ -2007,12 +2007,12 @@ help: | ||
2007 | @echo "... Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.o" | 2007 | @echo "... Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.o" |
2008 | @echo "... Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.i" | 2008 | @echo "... Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.i" |
2009 | @echo "... Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.s" | 2009 | @echo "... Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST.s" |
2010 | + @echo "... Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.o" | ||
2011 | + @echo "... Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.i" | ||
2012 | + @echo "... Module/Gimbal/Gimbal_H3/Gimbal_H3_H150ST/Gimbal_H3_H150ST_UartDeal.s" | ||
2010 | @echo "... Module/Gimbal/Gimbal_InAndOut.o" | 2013 | @echo "... Module/Gimbal/Gimbal_InAndOut.o" |
2011 | @echo "... Module/Gimbal/Gimbal_InAndOut.i" | 2014 | @echo "... Module/Gimbal/Gimbal_InAndOut.i" |
2012 | @echo "... Module/Gimbal/Gimbal_InAndOut.s" | 2015 | @echo "... Module/Gimbal/Gimbal_InAndOut.s" |
2013 | - @echo "... Module/Gimbal/Gimbal_UartDeal.o" | ||
2014 | - @echo "... Module/Gimbal/Gimbal_UartDeal.i" | ||
2015 | - @echo "... Module/Gimbal/Gimbal_UartDeal.s" | ||
2016 | @echo "... Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.o" | 2016 | @echo "... Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.o" |
2017 | @echo "... Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.i" | 2017 | @echo "... Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.i" |
2018 | @echo "... Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.s" | 2018 | @echo "... Module/Gimbal/Gimbal_V3S/Gimbal_V3S_H10T/Gimbal_V3S_H10T.s" |
1 | #!/bin/bash | 1 | #!/bin/bash |
2 | #1、输入分支名,账号,密码,描述信息 | 2 | #1、输入分支名,账号,密码,描述信息 |
3 | -branch_name="dev_00.00.00.10" | 3 | +branch_name="dev_00.00.00.12" |
4 | Account="PanHaoBin" | 4 | Account="PanHaoBin" |
5 | PassWord="ookk3866" | 5 | PassWord="ookk3866" |
6 | -Message="10更新" | 6 | +Message="12更新" |
7 | ProjectName="114.132.166.25:8099/PanHaoBin/SerialPorject.git" | 7 | ProjectName="114.132.166.25:8099/PanHaoBin/SerialPorject.git" |
8 | 8 | ||
9 | 9 |
-
请 注册 或 登录 后发表评论