作者 ookk303

209日常更新

正在显示 100 个修改的文件 包含 1210 行增加1521 行删除

要显示太多修改。

为保证性能只显示 100 of 100+ 个文件。

... ... @@ -55,7 +55,8 @@
"unistd.h": "c",
"mediaparm.h": "c",
"videostream_push.h": "c",
"v4l2_record.h": "c"
"v4l2_record.h": "c",
"deviceinfo.h": "c"
},
"Codegeex.GenerationPreference": "automatic",
"C_Cpp.dimInactiveRegions": false
... ...
# 编译链的配置
#1、编译链与设备类型的选择
set(DEVICE_NAME JZ_C1)
set(DEVICE_NAME JZ_H150S)
#上一行为禁止修改行
message("**************************JZSDK构建编译开始***************************\n")
... ...
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h> // 包含getopt函数
#include <unistd.h>
#include <ctype.h>
#include <getopt.h>
#include "JZsdkLib.h"
#include "./ParamterParsing.h"
/*
struct option {
const char *name; 参数名称
int has_arg; 指明是否带有参数
int *flag; flag=NULL时,返回value;不为空时,*flag=val,返回0
int val; 用于指定函数找到选项的返回值或flag非空时指定*flag的值
};
no_argument 不带参数 如: --version,--help
required_argument 必须带参数 --参数 值 或者 --参数=值。如:--dir=/root
optional_argument 参数可选 只能为:--参数=值
char *optstring="ab:c::";
运行程序可以给最多三个参数,分别为-a,-b和-c,其中
a选项 :因为没有跟冒号,不能有参数,如:-a
b选项 :因为后面跟了1个冒号,必须有参数,如:-b 100
c选项 :因为跟了2个冒号,参数可有可无,如:-c 100 或 -c 都行
*/
typedef enum parameter{
PARAMETER_OUT_TIMEFLAG = 0x1010, //备用超时标志位
PARAMETER_OUT_TIMEOUT = 0x1011, //备用超时时间
PARAMETER_PLAY_PROMPT_TTS = 0x1012, //播放提示音
}parameter;
static const struct option storage_opts[] = {
{ "OutFlag", required_argument, 0, PARAMETER_OUT_TIMEFLAG }, //超时标志
{ "OutTime", required_argument, 0, PARAMETER_OUT_TIMEOUT }, //超时时间
{ "play_prompt_tts", required_argument, NULL, PARAMETER_PLAY_PROMPT_TTS }, //提示选项
{ 0, 0, 0, 0 }
};
static int Timeout_flag = JZ_FLAGCODE_OFF; //超时标记位,默认关闭
static int Timeout_time = 60; //超时时间
unsigned char *g_JZsdkParam_PlayPromptTTS = NULL; //播放提示音
int JZsdk_ParamterParsing_GetTimeOutFlag()
{
... ... @@ -25,20 +65,46 @@ int JZsdk_ParamterParsing_GetTimeOutTime()
*
* * 程序参数解析
* * 输入:参数字符串
*
* 输出:模式
* 目前 模式0 为不开启任何单独功能,即psdk或者串口模式
* 模式1 为开起喊话器播放模式
*
* ********************************/
T_JZsdkReturnCode JZsdk_ParamterParsing(int argc, char *argv[])
T_JZsdkReturnCode JZsdk_ParamterParsing(int argc, char *argv[], unsigned int *mode)
{
JZSDK_LOG_INFO("参数解析");
int c;
// getopt_long 需要长选项,但这里我们只使用短选项
// getopt循环将逐个处理选项,直到没有更多选项
while ((c = getopt(argc, argv, "f:t:")) != -1)
{
switch (c) {
int insCode = 0; //指令码
//获取短选项
static char *opt_storage = "t:f:";
//解析参数
while (1)
{
int opt_index = 0;
insCode = getopt_long(argc, argv, opt_storage, storage_opts, &opt_index);
if (insCode == -1)
break;
switch (insCode)
{
case PARAMETER_OUT_TIMEFLAG:
printf("备用:outtimeflag:%d \n", atoi(optarg));
Timeout_flag = atoi(optarg);
break;
case PARAMETER_OUT_TIMEOUT:
printf("备用:time %d \n", atoi(optarg));
Timeout_time = atoi(optarg);
break;
//提示音选项
case PARAMETER_PLAY_PROMPT_TTS:
printf("prompt_option:%s \n", optarg);
g_JZsdkParam_PlayPromptTTS = optarg;
*mode = 1;
break;
case 'f': //超时标记位
Timeout_flag = atoi(optarg);
break;
... ... @@ -46,18 +112,21 @@ T_JZsdkReturnCode JZsdk_ParamterParsing(int argc, char *argv[])
Timeout_time = atoi(optarg);
break;
case '?':
case '?':
// 如果getopt遇到一个它不认识的选项,它会打印一个消息到stderr
// 并返回'?'。然后我们可以选择退出或给出更多帮助。
if (isprint(optopt))
JZSDK_LOG_ERROR("Unknown option `-%c'.", optopt);
else
JZSDK_LOG_ERROR("Unknown option character `\\x%x'.", optopt);
return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE;
default:
return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE;
break;
}
}
default:
break;
}
}
JZSDK_LOG_INFO("参数解析成功");
... ...
... ... @@ -24,7 +24,7 @@ extern "C" {
/* Exported functions --------------------------------------------------------*/
T_JZsdkReturnCode JZsdk_ParamterParsing(int argc, char *argv[]);
T_JZsdkReturnCode JZsdk_ParamterParsing(int argc, char *argv[], unsigned int *mode);
int JZsdk_ParamterParsing_GetTimeOutFlag();
int JZsdk_ParamterParsing_GetTimeOutTime();
... ...
... ... @@ -7,25 +7,25 @@
#define VERSION_CHOOSE_H
#include "./ConfigParams.h"
//1~10行 除了D可以修改版本选择 禁止动任何东西
#define DEVICE_VERSION JZ_C1
#define DEVICE_VERSION JZ_H150S
//禁止修改行 选择是串口程序 还是 psdk程序
#define APP_VERSION APP_PSDK
#define APP_VERSION APP_UART
//禁止修改行 板子型号
#define PLATFORM_VERSION PLATFORM_V3S
//禁止修改行 串口连接程序的软件版本号
#define MAJOR_VERSION 0x01
#define MINOR_VERSION 0x03
#define MODIFY_VERSION 0x09
#define DEBUG_VERSION 0x03
#define MAJOR_VERSION 0x00
#define MINOR_VERSION 0x00
#define MODIFY_VERSION 0x02
#define DEBUG_VERSION 0x08
//禁止修改行 滤波方式
#define FILTERING_TYPE HIGH_PASS_FILTERING
//禁止修改行固件属地 目前 国内版/海外版
#define FIRMWARE_ORIGIN DOMESTIC_VERSION
#define FIRMWARE_ORIGIN OVERSEAS_VERSION
//禁止修改行指定特殊固件
#define SPECIAL_VERSION SPECIAL_NORMAL
... ...
... ... @@ -237,11 +237,19 @@ static void *JZsdk_Kt_Irc_DataDeal_Thread(void *args)
//4、将原始码流数据转换成h264流,为避免多次复制,这里的h264会直接放入视频流管理的缓冲区
JZsdk_RTKMMP_RawData_to_h264(raw_data, raw_data_len);
free(raw_data);
raw_data = NULL;
free(gary_data);
gary_data = NULL;
//5、释放内存
if (raw_data != NULL)
{
free(raw_data);
raw_data = NULL;
}
if (gary_data != NULL)
{
free(gary_data);
gary_data = NULL;
}
//JZSDK_LOG_DEBUG("得到了一帧红外h264");
}
}
... ...
... ... @@ -828,9 +828,32 @@ T_JZsdkReturnCode JZIrcLib_DataDeal(U16_t* U16_data, unsigned int U16_dataSize,
break;
default:
if (GrayImage != NULL)
{
free(GrayImage);
GrayImage = NULL;
}
if (u16_CorrentData != NULL)
{
free(u16_CorrentData);
u16_CorrentData = NULL;
}
return JZ_ERROR_SYSTEM_MODULE_CODE_FAILURE;
break;
}
if (GrayImage != NULL)
{
free(GrayImage);
GrayImage = NULL;
}
if (u16_CorrentData != NULL)
{
free(u16_CorrentData);
u16_CorrentData = NULL;
}
return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS;
}
\ No newline at end of file
... ...
... ... @@ -5,6 +5,8 @@
#include "Megaphone/Megaphone.h"
#include "DeviceInfo/DeviceInfo.h"
extern unsigned char *g_JZsdkParam_PlayPromptTTS; //播放提示音
T_JZsdkReturnCode Start_voice()
{
if (APP_VERSION == APP_UART)
... ... @@ -107,4 +109,105 @@ T_JZsdkReturnCode Start_up_and_broadcast_voice()
}
}
}
}
T_JZsdkReturnCode AttentionVoice_IndependencePlay()
{
//如果是 -p sucess 程序成功 播放喊话器升级成功
//如果是 -p updefeat 程序失败 播放喊话器升级失败
//设置音量
Megaphone_SetVolume(30 , 0);
delayMs(100);
//根据属地设置默认语言
int language = 0;
int OriginValue = FOMAT_Get_FirewareOriginRegion();
//如果是国内版或者无属地 设置为中文
if (OriginValue == ORIGIN_DEFAULT || OriginValue == ORIGIN_CN)
{
language = 0x01;
Megaphone_TTS_param(JZ_FLAGCODE_SET, MEGAPHONE_TTS_TONE, &language);
}
//如果是海外版 设置为英文
else
{
language = 0x11;
Megaphone_TTS_param(JZ_FLAGCODE_SET, MEGAPHONE_TTS_TONE, &language);
}
//如果是 -p error 程序错误 播放喊话器错误
if (strcmp((const char *)g_JZsdkParam_PlayPromptTTS, "error") == 0)
{
JZSDK_LOG_INFO("播放喊话器错误");
if (language == 0x11)
{
Megaphone_TTS_Play("Software error, restarting Megaphone.", strlen("Software error, restarting Megaphone."), JZ_FLAGCODE_ON);
}
else
{
Megaphone_TTS_Play("程序错误,正在重启喊话器", strlen("程序错误,正在重启喊话器"), JZ_FLAGCODE_ON);
}
}
else if (strcmp((const char *)g_JZsdkParam_PlayPromptTTS, "upsucess") == 0)
{
JZSDK_LOG_INFO("播放喊话器升级成功");
if (language == 0x11)
{
Megaphone_TTS_Play("Upgrade completed, restarting Megaphone.", strlen("Upgrade completed, restarting Megaphone."), JZ_FLAGCODE_ON);
}
else
{
Megaphone_TTS_Play("升级已完成,正在重启喊话器", strlen("升级已完成,正在重启喊话器"), JZ_FLAGCODE_ON);
}
}
else if (strcmp((const char *)g_JZsdkParam_PlayPromptTTS, "updefeat") == 0)
{
JZSDK_LOG_INFO("播放喊话器升级失败");
if (language == 0x11)
{
Megaphone_TTS_Play("Upgrade defeat, restarting Megaphone.", strlen("Upgrade defeat, restarting Megaphone."), JZ_FLAGCODE_ON);
}
else
{
Megaphone_TTS_Play("升级失败,请检查Log或者重启喊话器", strlen("升级失败,请检查Log或者重启喊话器"), JZ_FLAGCODE_ON);
}
}
else if (strcmp((const char *)g_JZsdkParam_PlayPromptTTS, "start") == 0)
{
JZSDK_LOG_INFO("播放喊话器启动中");
if (language == 0x11)
{
Megaphone_TTS_Play("Upgrade defeat, restarting Megaphone.", strlen("Upgrade defeat, restarting Megaphone."), JZ_FLAGCODE_ON);
}
else
{
Megaphone_TTS_Play("喊话器启动中", strlen("喊话器启动中"), JZ_FLAGCODE_ON);
}
}
delayMs(100);
//等待播放状态结束
while(1)
{
if (Megaphone_GetMegaphoneStatus() != JZ_FLAGCODE_OFF)
{
delayMs(1);
continue;
}
break;
}
return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS;
}
\ No newline at end of file
... ...
/**
********************************************************************
* @file
*
*
*********************************************************************
*/
/* Define to prevent recursive inclusion 避免重定义 -------------------------------------*/
#ifndef ATTENTIONVOICE_H
#define ATTENTIONVOICE_H
/* Includes ------------------------------------------------------------------*/
#include "JZsdk_Base/JZsdk_Code/JZsdk_Code.h"
#ifdef __cplusplus
extern "C" {
#endif
/* Exported constants --------------------------------------------------------*/
/* 常亮定义*/
/* Exported types ------------------------------------------------------------*/
/* Exported functions --------------------------------------------------------*/
T_JZsdkReturnCode Start_voice();
T_JZsdkReturnCode Start_up_and_broadcast_voice();
T_JZsdkReturnCode AttentionVoice_IndependencePlay();
#ifdef __cplusplus
}
#endif
#endif
... ...
... ... @@ -1174,8 +1174,8 @@ T_JZsdkReturnCode Megaphone_SetVolume(int value, int mode)//设置音量,音
now_volume=value;//获取当前音量
//10T要提高30初始音量
if (DEVICE_VERSION == JZ_H10T)
//v3s自设系统 10T要提高30初始音量
if (DEVICE_VERSION == JZ_H10T || DEVICE_VERSION == JZ_U3 || DEVICE_VERSION == JZ_U3S || DEVICE_VERSION == JZ_U3D || DEVICE_VERSION == JZ_U30)
{
if (value > 0)
{
... ... @@ -1227,8 +1227,8 @@ static T_JZsdkReturnCode Megaphone_SetTTSvolume()
int value = now_volume;
printf("TTS音量修改\n");
//10T要提高30初始音量
if (DEVICE_VERSION == JZ_H10T)
//v3s自设系统 10T要提高30初始音量
if (DEVICE_VERSION == JZ_H10T || DEVICE_VERSION == JZ_U3 || DEVICE_VERSION == JZ_U3S || DEVICE_VERSION == JZ_U3D || DEVICE_VERSION == JZ_U30)
{
if (value > 0)
{
... ...
... ... @@ -857,6 +857,8 @@ T_JZsdkReturnCode JZsdk_Psdk_Ui_io_Gimbal_PitchRotationMode(int Pitch)
//1、将得到的拨轮pitch值裁切,避免变化角度过大
int CutPitch = Pitch/50;
//printf("拨轮控制pitch%d\n",Pitch);
Gimbal_PitchRotationMode(CutPitch);
}
... ... @@ -890,6 +892,7 @@ T_JZsdkReturnCode JZsdk_Psdk_Ui_io_Gimbal_PitchScaleMode(int value)
T_JZsdkReturnCode JZsdk_Psdk_Ui_io_Gimbal_PitchSelfangleMode(int Pitch)
{
//printf("飞机自身角度pitch%d\n",Pitch);
Gimbal_PitchSelfangleMode(Pitch);
}
... ...
# cmake 最低版本要求 第三行名字不能动
cmake_minimum_required(VERSION 2.8)
project(JZ_UART_APP)
project(ATTENTION_APP)
set(CMAKE_C_FLAGS "-pthread -std=gnu99 -lm -ldl -lstdc++")
#"-pthread":指定在编译时链接POSIX线程库,以支持多线程程序。
... ... @@ -32,8 +32,9 @@ include_directories(${ALL_INC_FILES})
# 生成可执行文件
add_executable(
JZ_UART_APP
ATTENTION_APP
./application/main.c
./application/Megaphone_Attention.c
${ALL_SRC_FILES} #加载jzsdk的源文件 *****************************************************
)
... ...
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
if [ "`id -u`" -eq 0 ]; then
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
else
PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
fi
export PATH
if [ "$PS1" ]; then
if [ "$BASH" ] && [ "$BASH" != "/bin/sh" ]; then
# The file bash.bashrc already sets the default PS1.
# PS1='\h:\w\$ '
if [ -f /etc/bash.bashrc ]; then
. /etc/bash.bashrc
fi
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi
if [ -d /etc/profile.d ]; then
for i in /etc/profile.d/*.sh; do
if [ -r $i ]; then
. $i
fi
done
unset i
fi
echo "____ins_language_mod_____"
export LANG="C.UTF-8";
export LANGUAGE="C.UTF-8";
echo "____挂载数据缓冲区____"
mkswap /dev/mmcblk0p5
swapon /dev/mmcblk0p5
cat /proc/swaps
echo "____挂载sdcard用户区____"
mount -t vfat -o iocharset=utf8 /dev/mmcblk0p3 /root/sdcard;
echo "____安装驱动____"
cd /root/kofile/
#insmod libcomposite.ko
#insmod usb_f_mass_storage.ko
insmod g_mass_storage.ko file=/dev/mmcblk0p3 stall=0 removable=1
echo "____初始化文件夹____";
cd /root/
mkdir -p /root/sdcard/audio;
mkdir -p /root/sdcard/record;
mkdir -p /root/sdcard/Logs;
echo "____解除静音____"
amixer sset -c 0 'Headphone' 30% unmute
echo "____检查更新____";
chmod 777 up.sh;
./up.sh;
echo "_____启动开始语音_____";
chmod 777 H1start;
./H1start;
ehco "____It_Just_Work____"
while true; do
echo "____开启 程序___"
chmod 777 CheckConnect.sh
./CheckConnect.sh
echo "_____启动错误文件_____"
mount -o remount rw sdcard/
sync
echo "____错误处理____"
chmod 777 H1error;
./H1error;
done
\ No newline at end of file
#!/bin/bash
echo "仅启动串口程序"
chmod 777 JZ_UART_APP
./JZ_UART_APP -f 0
sync;
#1、输入设备名字,程序模式,硬件号,版本号
payload_name="JZ_U30" #psdk名字
payload_mode="APP_UART" # APP_PSDK 或者 APP_UART APP_TEST
payload_platform="PLATFORM_V3S" #硬件平台
payload_version="V00.00.02.08" #版本号
payload_origin="DOMESTIC_VERSION" # 国内版DOMESTIC_VERSION 海外版OVERSEAS_VERSION
payload_special="SPECIAL_NORMAL" # 特殊固件注释
payload_OutTimeSet=VERSION_SWITCH_OFF # 超时注释
# 目前已有的特殊版本类型
# SPECIAL_NORMAL 普通版本
# SPECIAL_DAOTONG 道通版本
Root_Dir="../../../../../"
CmakeList_Dir="../../../CMakeLists.txt"
CmakeConfig_Dir="${Root_Dir}CmakeConfig/"
#将设备名字写入cmake
cmake_payload_name="set(DEVICE_NAME ${payload_name})"
sed -i "4s/.*/$cmake_payload_name/" ${CmakeConfig_Dir}Compiler.cmake
# #将工程名进cmake文件
# # 国内版
# if [ "${payload_origin}" == "DOMESTIC_VERSION" ]; then
# cmake_filtering="project(${payload_name}) "
# sed -i "3s/.*/$cmake_filtering/" $CmakeList_Dir
# # 海外版
# elif [ "${payload_origin}" == "OVERSEAS_VERSION" ]; then
# if [[ $payload_name == *"_"* ]]; then
# replaced_payload_name=${payload_name//_/-}
# echo "替换前的工程名: $payload_name"
# echo "替换后的工程名: $replaced_payload_name"
# cmake_filtering="project(${replaced_payload_name}) "
# sed -i "3s/.*/$cmake_filtering/" $CmakeList_Dir
# else
# echo "出错,这个名字不含_符号,请修改你的工程名"
# exit
# fi
# fi
#修改编译的名字
# 国内版
if [ "${payload_origin}" == "DOMESTIC_VERSION" ]; then
echo "国内版"
# 海外版
elif [ "${payload_origin}" == "OVERSEAS_VERSION" ]; then
if [[ $payload_name == *"_"* ]]; then
replaced_payload_name=${payload_name//_/-}
echo "替换前的工程名: $payload_name"
echo "替换后的工程名: $replaced_payload_name"
else
echo "出错,这个名字不含_符号,请修改你的工程名"
exit
fi
fi
#将固件特殊类型名写入version_choose.h
payload_special_text="#define SPECIAL_VERSION ${payload_special}"
sed -i "31s/.*/$payload_special_text/" ${Root_Dir}JZsdk_Config/version_choose.h
#3、将负载版本 负载模式 负载平台 负载版本号 写入version_choose.h
#负载版本
name_text="#define DEVICE_VERSION ${payload_name}"
echo $name_text
sed -i "10s/.*/$name_text/" ${Root_Dir}JZsdk_Config/version_choose.h
#负载模式
mode_text="#define APP_VERSION ${payload_mode}"
echo $mode_text
sed -i "13s/.*/$mode_text/" ${Root_Dir}JZsdk_Config/version_choose.h
#负载平台
platform_text="#define PLATFORM_VERSION ${payload_platform}"
echo $platform_text
sed -i "16s/.*/$platform_text/" ${Root_Dir}JZsdk_Config/version_choose.h
#负载版本号
# 提取版本号的四个部分
payload_version_part1=${payload_version:1:2} # 截取第2和第3个字符
payload_version_part2=${payload_version:4:2} # 截取第5和第6个字符
payload_version_part3=${payload_version:7:2} # 截取第8和第9个字符
payload_version_part4=${payload_version:10:2} # 截取第11和第12个字符
version_text="#define MAJOR_VERSION 0x${payload_version_part1}"
echo $version_text
sed -i "19s/.*/$version_text/" ${Root_Dir}JZsdk_Config/version_choose.h
version_text="#define MINOR_VERSION 0x${payload_version_part2}"
echo $version_text
sed -i "20s/.*/$version_text/" ${Root_Dir}JZsdk_Config/version_choose.h
version_text="#define MODIFY_VERSION 0x${payload_version_part3}"
echo $version_text
sed -i "21s/.*/$version_text/" ${Root_Dir}JZsdk_Config/version_choose.h
version_text="#define DEBUG_VERSION 0x${payload_version_part4}"
echo $version_text
sed -i "22s/.*/$version_text/" ${Root_Dir}JZsdk_Config/version_choose.h
# # 修改json文件的版本号
# ## 获取旧版本号
# json_file_CN_cn="./Package/config/Configs/DJI_widget_file/cn/widget_file/cn_big_screen/widget_config.json"
# json_content_CN_cn=$(cat "$json_file_CN_cn")
# json_file_CN_en="./Package/config/Configs/DJI_widget_file/cn/widget_file/en_big_screen/widget_config.json"
# json_content_CN_en=$(cat "$json_file_CN_en")
# json_file_EN_cn="./Package/config/Configs/DJI_widget_file/en/widget_file/cn_big_screen/widget_config.json"
# json_content_EN_cn=$(cat "$json_file_EN_cn")
# json_file_EN_en="./Package/config/Configs/DJI_widget_file/en/widget_file/en_big_screen/widget_config.json"
# json_content_EN_en=$(cat "$json_file_EN_en")
# ## 提取原始版本号
# original_version_CN_cn=$(echo "$json_content_CN_cn" | grep -Po '(?<="版本号:)[\d.]+')
# echo "CN区cn原始版本号: $original_version_CN_cn"
# original_version_CN_en=$(echo "$json_content_CN_en" | grep -Po '(?<="version:)[\d.]+')
# echo "CN区en原始版本号: $original_version_CN_en"
# original_version_EN_cn=$(echo "$json_content_EN_cn" | grep -Po '(?<="版本号:)[\d.]+')
# echo "EN区cn原始版本号: $original_version_EN_cn"
# original_version_EN_en=$(echo "$json_content_EN_en" | grep -Po '(?<="version:)[\d.]+')
# echo "EN区en原始版本号: $original_version_EN_en"
# ## 定义新的版本号
# json_version=${payload_version:1:11} #
# echo "json新版本号:$json_version"
# ## 替换版本号
# updated_content_CN_cn="${json_content_CN_cn//$original_version_CN_cn/$json_version}"
# updated_content_CN_en="${json_content_CN_en//$original_version_CN_en/$json_version}"
# updated_content_EN_cn="${json_content_EN_cn//$original_version_EN_cn/$json_version}"
# updated_content_EN_en="${json_content_EN_en//$original_version_EN_en/$json_version}"
# ## 将更新后的内容写回 JSON 文件
# echo "$updated_content_CN_cn" > "$json_file_CN_cn"
# echo "$updated_content_CN_en" > "$json_file_CN_en"
# echo "$updated_content_EN_cn" > "$json_file_EN_cn"
# echo "$updated_content_EN_en" > "$json_file_EN_en"
# 修改version.h,是否需要加载海外tts模块
version_origin="#define FIRMWARE_ORIGIN ${payload_origin}"
sed -i "28s/.*/$version_origin/" ${Root_Dir}JZsdk_Config/version_choose.h
# 固件是否设置超时退出
version_outtimeset="#define CONNECTION_TIMED_OUT $payload_OutTimeSet"
echo $version_outtimeset
sed -i "37s/.*/$version_outtimeset/" ${Root_Dir}JZsdk_Config/version_choose.h
#打包诱骗升级包
# 拼接字符串得到更新包名字
# 国内版
if [ "${payload_origin}" == "DOMESTIC_VERSION" ]; then
BinName=$payload_name"_"$payload_version".bin"
# 海外版
elif [ "${payload_origin}" == "OVERSEAS_VERSION" ]; then
BinName=$replaced_payload_name"_"$payload_version".bin"
fi
TarPackage_second=UpgradePackage.tar.gz #二次解压包的名字
HardwareIdentification="HardwareIdeNum" #硬件码文件
MD5saveFile=UpdateMD5num #md5文件内部的md5值
#二次压缩包的打包
cd ShellPack
./shellpack.sh
cd ../
#一级压缩包的打包
mkdir Temp
mv $TarPackage_second ./Temp/ # 二级压缩包
# #硬件码 自行判断是否需要烧录
# cp SHellPack/$HardwareIdentification ./Temp
# #3.4添加恢复出厂文件
# cp ShellPack/FactoryReset.sh ./Temp
# 将升级步骤放进一级压缩包
cp ShellPack/updata.sh ./Temp
# psdk 1385更新up.sh
# cp ShellPack/up.sh ./Temp
#md5 校准
# 获取二级压缩包的md5值
cd Temp
md5_File="$(md5sum "$TarPackage_second" | cut -d ' ' -f 1)"
echo $md5_File
#把md5校准码写进去
echo $md5_File | tee $MD5saveFile > /dev/null #覆盖写
echo "_____打包一级压缩包_____"
tar -zcf $BinName *
mv $BinName ../
cd ../
rm -rf Temp
echo "_____输出一级压缩包目录_____"
#参数说明 t 查看内容 f 压缩包名字指定
tar -tf $BinName
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
if [ "`id -u`" -eq 0 ]; then
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
else
PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
fi
export PATH
if [ "$PS1" ]; then
if [ "$BASH" ] && [ "$BASH" != "/bin/sh" ]; then
# The file bash.bashrc already sets the default PS1.
# PS1='\h:\w\$ '
if [ -f /etc/bash.bashrc ]; then
. /etc/bash.bashrc
fi
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi
if [ -d /etc/profile.d ]; then
for i in /etc/profile.d/*.sh; do
if [ -r $i ]; then
. $i
fi
done
unset i
fi
echo "____ins_language_mod_____"
export LANG="C.UTF-8";
export LANGUAGE="C.UTF-8";
echo "____挂载数据缓冲区____"
mkswap /dev/mmcblk0p5
swapon /dev/mmcblk0p5
cat /proc/swaps
echo "____挂载sdcard用户区____"
mount -t vfat -o iocharset=utf8 /dev/mmcblk0p3 /root/sdcard;
echo "____安装驱动____"
cd /root/kofile/
#insmod libcomposite.ko
#insmod usb_f_mass_storage.ko
insmod g_mass_storage.ko file=/dev/mmcblk0p3 stall=0 removable=1
echo "____初始化文件夹____";
cd /root/
mkdir -p /root/sdcard/audio;
mkdir -p /root/sdcard/record;
mkdir -p /root/sdcard/Logs;
echo "____解除静音____"
amixer sset -c 0 'Headphone' 30% unmute
echo "____检查更新____";
chmod 777 up.sh;
./up.sh;
echo "_____启动开始语音_____";
chmod 777 H1start;
./H1start;
ehco "____It_Just_Work____"
while true; do
echo "____开启 程序___"
chmod 777 CheckConnect.sh
./CheckConnect.sh
echo "_____启动错误文件_____"
mount -o remount rw sdcard/
sync
echo "____错误处理____"
chmod 777 H1error;
./H1error;
done
\ No newline at end of file
#!/bin/bash
echo "仅启动串口程序"
chmod 777 JZ_UART_APP
./JZ_UART_APP -f 0
sync;
#!/bin/bash
TarPackage_second=UpgradePackage.tar.gz #二次解压包的名字
ProjectDir="../../../"
#获取更新脚本所在的文件夹名字
cd ..
dir_name=$(pwd)
echo "_____清除build文件夹内容_____"
cd ${ProjectDir}build
echo $(pwd)
rm -rf *
echo "_____cmake编译make目录_____"
cmake ..
echo "_____8核编译PSDK_____"
make -j8
echo "_____回到打包目录_____"
cd $dir_name
echo "_____删除上一个更新包内容_____"
# 如果存在psdk,删除
if [ -f ./Package/psdk/* ]; then
rm ./Package/psdk/*
fi
# 如果存在bin包,删除
if [ -f ./*.bin ]; then
rm *.bin
fi
# 如果存在二次压缩包,删除
if [ -f ./$TarPackage_second ]; then
rm $TarPackage_second
fi
echo "_____复制应用程序到psdk目录下_____"
#复制psdk程序,没有就退出脚本
if [ -f ${ProjectDir}build/JZ* ]; then
cp ${ProjectDir}build/JZ* ./Package/app/
else
echo "___没有串口程序,脚本退出____"
exit
fi
echo "_____使用gzip打包 应用程序 和 更新包内容_____"
#二次压缩包的打包
tar -zcf $TarPackage_second Package
echo "_____输出当前目录_____"
ls -la
echo "_____输出二次压缩包目录_____"
#参数说明 t 查看内容 f 压缩包名字指定
tar -tf $TarPackage_second
echo "___shellpack.sh执行完毕____";
\ No newline at end of file
#! /bin/bash
echo "updata.sh"
Update_PsdkPack="JZ*"
Update_Package="Package"
HardwareIdentification="HardwareIdeNum" #硬件码文件
TarPackage_second=UpgradePackage.tar.gz #二次解压包的名字
MD5saveFile=UpdateMD5num #md5文件内部的md5值文件
#得到二次解压包和md5校验文件
# 校验mp5 失败直接删除
# 获取文件的md5值
md5_File="$(md5sum "${TarPackage_second}" | cut -d ' ' -f 1)"
echo 文件的md5为:$md5_File
# 读取文件第一行并删除不可见字符
md5_save=$(sed '1s/[^[:print:]]//g' "$MD5saveFile")
echo 读取的md5为:$md5_save
# 比较md5值是否匹配
if [ "$md5_File" == "$md5_save" ]; then
echo "MD5 matches: $md5_File"
else
delete_updateFile; #删除更新文件
#mkdir /root/sdcard/MP5校验失败;
rm /root/sdcard/update_log.txt
echo "MP5校验失败" > /root/sdcard/update_log.txt
# 播报升级失败
./defeat;
exit;
fi
# 二次解压
tar -zxvf $TarPackage_second;
#标准更新
# 定义一个名为 HardwareNum 的数组
declare -a HardwareNum
echo "___识别更新用的序列号,判断该机器是否能够更新____"
# 补充添加
# 添加硬件区分
# 硬件版本号 4位
# ① 芯片型号
# ② 硬件大型改动
# ③ 硬件非通用改动
# ④ 通用改动
#1、读取硬件号
if [ ! -f /root/${HardwareIdentification} ]; then
echo "____硬件序列号不存在___"
else
# 逐行读取文件,将每一行内容保存到数组中
while read line; do
HardwareNum+=("$line")
done < /root/${HardwareIdentification}
# 打印数组的每个元素
for i in "${HardwareNum[@]}"; do
echo "$i"
done
fi
echo "____更新步骤____"
#1、更新app
mv /root/Package/app/sox /bin/ #将滤波器移动到bin目录
rm /usr/bin/ffmpeg
mv /root/Package/app/ffmpeg /bin/ #将滤波器移动到bin目录
mv /root/Package/app/* /root/ #如h1start h1error等报语音程序
#2、更新配置文件
cp /root/Package/config/Configs -r /root/ #将Configs文件夹移动到/root
#3、更新lib文件
mv /root/Package/lib/* /lib/ #更新lib文件
#4、更新psdk
mv /root/Package/psdk/* /root/ #更新psdk
#5、更新驱动文件kofile
mkdir /root/kofile
mv /root/Package/kofile/*.ko /root/kofile #更新ko驱动文件
#6、更新杂项
mv /root/Package/others/* /root/ #将others下的所有文件移动到root
tar xvf /root/espeak-data.tar #如果本地有海外版的压缩包 进行解压
rm /root/espeak-data.tar
#7、更新脚本文件
# 备注,由于脚本文件是执行一行行的格式 自身被覆盖不会导致出错
# 但是后续的执行后会被改变,所以即使updata.sh和up.sh被打开 也能执行mv
# 但是为了保证更新正常, up.sh的操作 最好只加不改
mv /root/Package/sh/*.sh /root/ #更新剩下的脚本
#8、更新启动文件
mv /root/Package/ProFile/profile /etc/profile #更新启动文件
mv /root/Package/ProFile/asound.conf /etc/asound.conf #更新语音配置
rm /usr/sbin/NetworkManager #删除linux上的网络管理工具
#9、删除原本的滤波记录文件
rm /root/wav_save_name
echo "____更新完成,删除文件____"
rm -rf /root/sdcard/$Update_PsdkPack #删除psdk更新包
rm -rf /root/$Update_Package #删除解压后的更新包
rm -rf /root/$TarPackage_second #删除二次更新包
rm -rf /root/$MD5saveFile; #删除md5校准文件
rm -rf /root/FactoryReset.sh
echo "___updata.sh____";
\ No newline at end of file
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
if [ "`id -u`" -eq 0 ]; then
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
else
PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
fi
export PATH
if [ "$PS1" ]; then
if [ "$BASH" ] && [ "$BASH" != "/bin/sh" ]; then
# The file bash.bashrc already sets the default PS1.
# PS1='\h:\w\$ '
if [ -f /etc/bash.bashrc ]; then
. /etc/bash.bashrc
fi
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi
if [ -d /etc/profile.d ]; then
for i in /etc/profile.d/*.sh; do
if [ -r $i ]; then
. $i
fi
done
unset i
fi
echo "____ins_language_mod_____"
export LANG="C.UTF-8";
export LANGUAGE="C.UTF-8";
echo "____挂载数据缓冲区____"
mkswap /dev/mmcblk0p5
swapon /dev/mmcblk0p5
cat /proc/swaps
echo "____挂载sdcard用户区____"
mount -t vfat -o iocharset=utf8 /dev/mmcblk0p3 /root/sdcard;
echo "____安装驱动____"
cd /root/kofile/
#insmod libcomposite.ko
#insmod usb_f_mass_storage.ko
insmod g_mass_storage.ko file=/dev/mmcblk0p3 stall=0 removable=1
echo "____初始化文件夹____";
cd /root/
mkdir -p /root/sdcard/audio;
mkdir -p /root/sdcard/record;
mkdir -p /root/sdcard/Logs;
echo "____解除静音____"
amixer sset -c 0 'Headphone' 30% unmute
echo "____检查更新____";
chmod 777 up.sh;
./up.sh;
echo "_____启动开始语音_____";
chmod 777 H1start;
./H1start;
ehco "____It_Just_Work____"
while true; do
echo "____开启 程序___"
chmod 777 CheckConnect.sh
./CheckConnect.sh
echo "_____启动错误文件_____"
mount -o remount rw sdcard/
sync
echo "____错误处理____"
chmod 777 H1error;
./H1error;
done
\ No newline at end of file
#!/bin/bash
echo "仅启动串口程序"
chmod 777 JZ_UART_APP
./JZ_UART_APP -f 0
sync;
#!/bin/bash
TarPackage_second=UpgradePackage.tar.gz #二次解压包的名字
ProjectDir="../../../"
#获取更新脚本所在的文件夹名字
cd ..
dir_name=$(pwd)
echo "_____清除build文件夹内容_____"
cd ${ProjectDir}build
echo $(pwd)
rm -rf *
echo "_____cmake编译make目录_____"
cmake ..
echo "_____8核编译PSDK_____"
make -j8
echo "_____回到打包目录_____"
cd $dir_name
echo "_____删除上一个更新包内容_____"
# 如果存在psdk,删除
if [ -f ./Package/psdk/* ]; then
rm ./Package/psdk/*
fi
# 如果存在bin包,删除
if [ -f ./*.bin ]; then
rm *.bin
fi
# 如果存在二次压缩包,删除
if [ -f ./$TarPackage_second ]; then
rm $TarPackage_second
fi
echo "_____复制应用程序到psdk目录下_____"
#复制psdk程序,没有就退出脚本
if [ -f ${ProjectDir}build/JZ* ]; then
cp ${ProjectDir}build/JZ* ./Package/app/
else
echo "___没有串口程序,脚本退出____"
exit
fi
echo "_____使用gzip打包 应用程序 和 更新包内容_____"
#二次压缩包的打包
tar -zcf $TarPackage_second Package
echo "_____输出当前目录_____"
ls -la
echo "_____输出二次压缩包目录_____"
#参数说明 t 查看内容 f 压缩包名字指定
tar -tf $TarPackage_second
echo "___shellpack.sh执行完毕____";
\ No newline at end of file
#! /bin/bash
echo "updata.sh"
Update_PsdkPack="JZ*"
Update_Package="Package"
HardwareIdentification="HardwareIdeNum" #硬件码文件
TarPackage_second=UpgradePackage.tar.gz #二次解压包的名字
MD5saveFile=UpdateMD5num #md5文件内部的md5值文件
#得到二次解压包和md5校验文件
# 校验mp5 失败直接删除
# 获取文件的md5值
md5_File="$(md5sum "${TarPackage_second}" | cut -d ' ' -f 1)"
echo 文件的md5为:$md5_File
# 读取文件第一行并删除不可见字符
md5_save=$(sed '1s/[^[:print:]]//g' "$MD5saveFile")
echo 读取的md5为:$md5_save
# 比较md5值是否匹配
if [ "$md5_File" == "$md5_save" ]; then
echo "MD5 matches: $md5_File"
else
delete_updateFile; #删除更新文件
#mkdir /root/sdcard/MP5校验失败;
rm /root/sdcard/update_log.txt
echo "MP5校验失败" > /root/sdcard/update_log.txt
# 播报升级失败
./defeat;
exit;
fi
# 二次解压
tar -zxvf $TarPackage_second;
#标准更新
# 定义一个名为 HardwareNum 的数组
declare -a HardwareNum
echo "___识别更新用的序列号,判断该机器是否能够更新____"
# 补充添加
# 添加硬件区分
# 硬件版本号 4位
# ① 芯片型号
# ② 硬件大型改动
# ③ 硬件非通用改动
# ④ 通用改动
#1、读取硬件号
if [ ! -f /root/${HardwareIdentification} ]; then
echo "____硬件序列号不存在___"
else
# 逐行读取文件,将每一行内容保存到数组中
while read line; do
HardwareNum+=("$line")
done < /root/${HardwareIdentification}
# 打印数组的每个元素
for i in "${HardwareNum[@]}"; do
echo "$i"
done
fi
echo "____更新步骤____"
#1、更新app
mv /root/Package/app/sox /bin/ #将滤波器移动到bin目录
rm /usr/bin/ffmpeg
mv /root/Package/app/ffmpeg /bin/ #将滤波器移动到bin目录
mv /root/Package/app/* /root/ #如h1start h1error等报语音程序
#2、更新配置文件
cp /root/Package/config/Configs -r /root/ #将Configs文件夹移动到/root
#3、更新lib文件
mv /root/Package/lib/* /lib/ #更新lib文件
#4、更新psdk
mv /root/Package/psdk/* /root/ #更新psdk
#5、更新驱动文件kofile
mkdir /root/kofile
mv /root/Package/kofile/*.ko /root/kofile #更新ko驱动文件
#6、更新杂项
mv /root/Package/others/* /root/ #将others下的所有文件移动到root
tar xvf /root/espeak-data.tar #如果本地有海外版的压缩包 进行解压
rm /root/espeak-data.tar
#7、更新脚本文件
# 备注,由于脚本文件是执行一行行的格式 自身被覆盖不会导致出错
# 但是后续的执行后会被改变,所以即使updata.sh和up.sh被打开 也能执行mv
# 但是为了保证更新正常, up.sh的操作 最好只加不改
mv /root/Package/sh/*.sh /root/ #更新剩下的脚本
#8、更新启动文件
mv /root/Package/ProFile/profile /etc/profile #更新启动文件
mv /root/Package/ProFile/asound.conf /etc/asound.conf #更新语音配置
rm /usr/sbin/NetworkManager #删除linux上的网络管理工具
#9、删除原本的滤波记录文件
rm /root/wav_save_name
echo "____更新完成,删除文件____"
rm -rf /root/sdcard/$Update_PsdkPack #删除psdk更新包
rm -rf /root/$Update_Package #删除解压后的更新包
rm -rf /root/$TarPackage_second #删除二次更新包
rm -rf /root/$MD5saveFile; #删除md5校准文件
rm -rf /root/FactoryReset.sh
echo "___updata.sh____";
\ No newline at end of file
#1、输入设备名字,程序模式,硬件号,版本号
payload_name="JZ_U3S" #psdk名字
payload_mode="APP_UART" # APP_PSDK 或者 APP_UART APP_TEST
payload_platform="PLATFORM_V3S" #硬件平台
payload_version="V00.00.02.08" #版本号
payload_origin="DOMESTIC_VERSION" # 国内版DOMESTIC_VERSION 海外版OVERSEAS_VERSION
payload_special="SPECIAL_NORMAL" # 特殊固件注释
payload_OutTimeSet=VERSION_SWITCH_OFF # 超时注释
# 目前已有的特殊版本类型
# SPECIAL_NORMAL 普通版本
# SPECIAL_DAOTONG 道通版本
Root_Dir="../../../../../"
CmakeList_Dir="../../../CMakeLists.txt"
CmakeConfig_Dir="${Root_Dir}CmakeConfig/"
#将设备名字写入cmake
cmake_payload_name="set(DEVICE_NAME ${payload_name})"
sed -i "4s/.*/$cmake_payload_name/" ${CmakeConfig_Dir}Compiler.cmake
# #将工程名进cmake文件
# # 国内版
# if [ "${payload_origin}" == "DOMESTIC_VERSION" ]; then
# cmake_filtering="project(${payload_name}) "
# sed -i "3s/.*/$cmake_filtering/" $CmakeList_Dir
# # 海外版
# elif [ "${payload_origin}" == "OVERSEAS_VERSION" ]; then
# if [[ $payload_name == *"_"* ]]; then
# replaced_payload_name=${payload_name//_/-}
# echo "替换前的工程名: $payload_name"
# echo "替换后的工程名: $replaced_payload_name"
# cmake_filtering="project(${replaced_payload_name}) "
# sed -i "3s/.*/$cmake_filtering/" $CmakeList_Dir
# else
# echo "出错,这个名字不含_符号,请修改你的工程名"
# exit
# fi
# fi
#修改编译的名字
# 国内版
if [ "${payload_origin}" == "DOMESTIC_VERSION" ]; then
echo "国内版"
# 海外版
elif [ "${payload_origin}" == "OVERSEAS_VERSION" ]; then
if [[ $payload_name == *"_"* ]]; then
replaced_payload_name=${payload_name//_/-}
echo "替换前的工程名: $payload_name"
echo "替换后的工程名: $replaced_payload_name"
else
echo "出错,这个名字不含_符号,请修改你的工程名"
exit
fi
fi
#将固件特殊类型名写入version_choose.h
payload_special_text="#define SPECIAL_VERSION ${payload_special}"
sed -i "31s/.*/$payload_special_text/" ${Root_Dir}JZsdk_Config/version_choose.h
#3、将负载版本 负载模式 负载平台 负载版本号 写入version_choose.h
#负载版本
name_text="#define DEVICE_VERSION ${payload_name}"
echo $name_text
sed -i "10s/.*/$name_text/" ${Root_Dir}JZsdk_Config/version_choose.h
#负载模式
mode_text="#define APP_VERSION ${payload_mode}"
echo $mode_text
sed -i "13s/.*/$mode_text/" ${Root_Dir}JZsdk_Config/version_choose.h
#负载平台
platform_text="#define PLATFORM_VERSION ${payload_platform}"
echo $platform_text
sed -i "16s/.*/$platform_text/" ${Root_Dir}JZsdk_Config/version_choose.h
#负载版本号
# 提取版本号的四个部分
payload_version_part1=${payload_version:1:2} # 截取第2和第3个字符
payload_version_part2=${payload_version:4:2} # 截取第5和第6个字符
payload_version_part3=${payload_version:7:2} # 截取第8和第9个字符
payload_version_part4=${payload_version:10:2} # 截取第11和第12个字符
version_text="#define MAJOR_VERSION 0x${payload_version_part1}"
echo $version_text
sed -i "19s/.*/$version_text/" ${Root_Dir}JZsdk_Config/version_choose.h
version_text="#define MINOR_VERSION 0x${payload_version_part2}"
echo $version_text
sed -i "20s/.*/$version_text/" ${Root_Dir}JZsdk_Config/version_choose.h
version_text="#define MODIFY_VERSION 0x${payload_version_part3}"
echo $version_text
sed -i "21s/.*/$version_text/" ${Root_Dir}JZsdk_Config/version_choose.h
version_text="#define DEBUG_VERSION 0x${payload_version_part4}"
echo $version_text
sed -i "22s/.*/$version_text/" ${Root_Dir}JZsdk_Config/version_choose.h
# # 修改json文件的版本号
# ## 获取旧版本号
# json_file_CN_cn="./Package/config/Configs/DJI_widget_file/cn/widget_file/cn_big_screen/widget_config.json"
# json_content_CN_cn=$(cat "$json_file_CN_cn")
# json_file_CN_en="./Package/config/Configs/DJI_widget_file/cn/widget_file/en_big_screen/widget_config.json"
# json_content_CN_en=$(cat "$json_file_CN_en")
# json_file_EN_cn="./Package/config/Configs/DJI_widget_file/en/widget_file/cn_big_screen/widget_config.json"
# json_content_EN_cn=$(cat "$json_file_EN_cn")
# json_file_EN_en="./Package/config/Configs/DJI_widget_file/en/widget_file/en_big_screen/widget_config.json"
# json_content_EN_en=$(cat "$json_file_EN_en")
# ## 提取原始版本号
# original_version_CN_cn=$(echo "$json_content_CN_cn" | grep -Po '(?<="版本号:)[\d.]+')
# echo "CN区cn原始版本号: $original_version_CN_cn"
# original_version_CN_en=$(echo "$json_content_CN_en" | grep -Po '(?<="version:)[\d.]+')
# echo "CN区en原始版本号: $original_version_CN_en"
# original_version_EN_cn=$(echo "$json_content_EN_cn" | grep -Po '(?<="版本号:)[\d.]+')
# echo "EN区cn原始版本号: $original_version_EN_cn"
# original_version_EN_en=$(echo "$json_content_EN_en" | grep -Po '(?<="version:)[\d.]+')
# echo "EN区en原始版本号: $original_version_EN_en"
# ## 定义新的版本号
# json_version=${payload_version:1:11} #
# echo "json新版本号:$json_version"
# ## 替换版本号
# updated_content_CN_cn="${json_content_CN_cn//$original_version_CN_cn/$json_version}"
# updated_content_CN_en="${json_content_CN_en//$original_version_CN_en/$json_version}"
# updated_content_EN_cn="${json_content_EN_cn//$original_version_EN_cn/$json_version}"
# updated_content_EN_en="${json_content_EN_en//$original_version_EN_en/$json_version}"
# ## 将更新后的内容写回 JSON 文件
# echo "$updated_content_CN_cn" > "$json_file_CN_cn"
# echo "$updated_content_CN_en" > "$json_file_CN_en"
# echo "$updated_content_EN_cn" > "$json_file_EN_cn"
# echo "$updated_content_EN_en" > "$json_file_EN_en"
# 修改version.h,是否需要加载海外tts模块
version_origin="#define FIRMWARE_ORIGIN ${payload_origin}"
sed -i "28s/.*/$version_origin/" ${Root_Dir}JZsdk_Config/version_choose.h
# 固件是否设置超时退出
version_outtimeset="#define CONNECTION_TIMED_OUT $payload_OutTimeSet"
echo $version_outtimeset
sed -i "37s/.*/$version_outtimeset/" ${Root_Dir}JZsdk_Config/version_choose.h
#打包诱骗升级包
# 拼接字符串得到更新包名字
# 国内版
if [ "${payload_origin}" == "DOMESTIC_VERSION" ]; then
BinName=$payload_name"_"$payload_version".bin"
# 海外版
elif [ "${payload_origin}" == "OVERSEAS_VERSION" ]; then
BinName=$replaced_payload_name"_"$payload_version".bin"
fi
TarPackage_second=UpgradePackage.tar.gz #二次解压包的名字
HardwareIdentification="HardwareIdeNum" #硬件码文件
MD5saveFile=UpdateMD5num #md5文件内部的md5值
#二次压缩包的打包
cd ShellPack
./shellpack.sh
cd ../
#一级压缩包的打包
mkdir Temp
mv $TarPackage_second ./Temp/ # 二级压缩包
# #硬件码 自行判断是否需要烧录
# cp SHellPack/$HardwareIdentification ./Temp
# #3.4添加恢复出厂文件
# cp ShellPack/FactoryReset.sh ./Temp
# 将升级步骤放进一级压缩包
cp ShellPack/updata.sh ./Temp
# psdk 1385更新up.sh
# cp ShellPack/up.sh ./Temp
#md5 校准
# 获取二级压缩包的md5值
cd Temp
md5_File="$(md5sum "$TarPackage_second" | cut -d ' ' -f 1)"
echo $md5_File
#把md5校准码写进去
echo $md5_File | tee $MD5saveFile > /dev/null #覆盖写
echo "_____打包一级压缩包_____"
tar -zcf $BinName *
mv $BinName ../
cd ../
rm -rf Temp
echo "_____输出一级压缩包目录_____"
#参数说明 t 查看内容 f 压缩包名字指定
tar -tf $BinName
... ... @@ -42,8 +42,8 @@ fi
echo "_____复制应用程序到psdk目录下_____"
#复制psdk程序,没有就退出脚本
if [ -f ${ProjectDir}build/JZ* ]; then
cp ${ProjectDir}build/JZ* ./Package/app/
if [ -f ${ProjectDir}build/ATTENTION_APP ]; then
cp ${ProjectDir}build/ATTENTION_APP ./Package/app/
else
echo "___没有串口程序,脚本退出____"
exit
... ...
... ... @@ -73,10 +73,33 @@ fi
echo "____更新步骤____"
echo "____更新步骤____"
# u3和u3d增加一个移库步骤,用于适配新的音频库
if [ ! -d " /home/audio/alsa-lib_output/share/alsa" ]; then
echo "新音频库 alsa 文件夹不存在,正在创建..."
mkdir /home
mkdir /home/audio
mkdir /home/audio/alsa-lib_output
mkdir /home/audio/alsa-lib_output/share
mkdir /home/audio/alsa-lib_output/share/alsa
echo "alsa 文件夹已创建"
cp /usr/share/alsa/alsa.conf /home/audio/alsa-lib_output/share/alsa/
echo "alsa.conf 文件已复制"
echo "____解除静音____"
amixer sset -c 0 'Headphone' 30% unmute
else
echo "alsa 文件夹已存在"
fi
#1、更新app
mv /root/Package/app/sox /bin/ #将滤波器移动到bin目录
rm /usr/bin/ffmpeg
mv /root/Package/app/ffmpeg /bin/ #将滤波器移动到bin目录
mv /root/Package/app/ffprobe /bin/ #将app移动到usr/bin目录
mv /root/Package/app/* /root/ #如h1start h1error等报语音程序
#2、更新配置文件
... ... @@ -108,9 +131,6 @@ mv /root/Package/ProFile/profile /etc/profile #更新启动文件
mv /root/Package/ProFile/asound.conf /etc/asound.conf #更新语音配置
rm /usr/sbin/NetworkManager #删除linux上的网络管理工具
#9、删除原本的滤波记录文件
rm /root/wav_save_name
echo "____更新完成,删除文件____"
rm -rf /root/sdcard/$Update_PsdkPack #删除psdk更新包
rm -rf /root/$Update_Package #删除解压后的更新包
... ...
#1、输入设备名字,程序模式,硬件号,版本号
payload_name="JZ_U3D" #psdk名字
payload_name="JZ_U3" #psdk名字
payload_mode="APP_UART" # APP_PSDK 或者 APP_UART APP_TEST
payload_platform="PLATFORM_V3S" #硬件平台
payload_version="V00.00.02.09" #版本号
payload_origin="DOMESTIC_VERSION" # 国内版DOMESTIC_VERSION 海外版OVERSEAS_VERSION
payload_origin="DOMESTIC_VERSION" # 国内版DOMESTIC_VERSION 海外版 OVERSEAS_VERSION
payload_special="SPECIAL_NORMAL" # 特殊固件注释
payload_OutTimeSet=VERSION_SWITCH_OFF # 超时注释
... ...
#!/bin/bash
# 进入Upgrade_Package文件夹
cd ../
# 获取Upgrade_Package文件夹下的所有文件夹(除了make_all文件夹)
folders=$(find ./* -maxdepth 0 -type d -not -name "make_all")
# 获取文件夹总数
total_folders=$(echo "$folders" | wc -l)
# 初始化计数器
count=1
# 遍历每个文件夹
for folder in $folders; do
echo "处理文件夹: $folder ($count/$total_folders)"
cd "$folder"
# 执行make_package.sh脚本
./make_package.sh
# 将生成的.bin文件复制到make_all文件夹内
cp *.bin ../make_all/
cd ..
# 更新计数器
count=$((count+1))
done
echo "打包已完成,一共打包了($count)个文件"
ls -la #显示当前文件夹内容
\ No newline at end of file
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "JZsdkLib.h"
#include "BaseConfig.h"
#include "UI_control/UI_control.h"
#include "DeviceInfo/DeviceInfo.h"
#if MEGAPHONE_CONFIG_STATUS == VERSION_SWITCH_ON
#include "Megaphone/Megaphone.h"
#endif
T_JZsdkReturnCode Megphone_Attention()
{
//如果是喊话器设备
#if MEGAPHONE_CONFIG_STATUS == VERSION_SWITCH_ON
//引脚初始化
Ircut_Init();
//设备信息初始化
DeviceInfo_Init();
//音频库初始化
AudioDeal_Init();
//喊话器初始化
Megaphone_Init();
//播放声音
AttentionVoice_IndependencePlay();
#endif
return JZ_ERROR_SYSTEM_MODULE_CODE_SUCCESS;
}
\ No newline at end of file
... ...
... ... @@ -7,103 +7,30 @@
#include "BaseConfig.h"
//./JZ_UART_APP --play_prompt_tts error
int main(int argc, char* argv[])
{
//设定本程序为 uart程序模式 还是 psdk程序模式
//前者可用于 uart连接对外接口 或者是 通过uart控制的psdk
//后者则是用于直接镶套在psdk程序里面
//暂时没必要初始化sdk库
//JZsdk_LibInit();
//参数解析
JZsdk_ParamterParsing(argc, argv);
int mode = 0;
JZsdk_ParamterParsing(argc, argv, &mode);
//通过参数判断出进行什么提示程序操作
//如果是喊话器设备
#if MEGAPHONE_CONFIG_STATUS == VERSION_SWITCH_ON
//如果是 -e 程序错误 播放喊话器错误
//如果是 -s 程序成功 播放喊话器升级成功
//如果是 -f 程序失败 播放喊话器升级失败
#endif
while (1)
if (mode == 1)
{
delayMs(1000);
Megphone_Attention();
}
}
// #include<stdio.h>
// #include<unistd.h>
// #include<string.h>
// #include<getopt.h>
// void print_usage()
// {
// printf("\nUsage:\n");
// printf("\t--name=student name\n");
// printf("\t-s, --sex=student sex\n"
// "\t\tif no usage ,sex is 0 means man\n\n");
// printf("\t-g, --grade=student in grade\n");
// printf("\t-c, --class=student in class\n");
// printf("\t-h, --help\n");
// }
// int main(int argc, char* argv[])
// {
// int opt, grade, class, sex = -1;
// char *name = NULL;
// struct option long_options[] = {
// {"name", required_argument, NULL, 'n'},
// {"sex", optional_argument, &sex, 's'},
// {"grade", optional_argument, NULL, 'g'},
// {"class", required_argument, NULL, 'c'},
// {"help", no_argument, NULL, 'H'},
// {0, 0, 0, 0}
// };
// printf("n:s::g::c:H\n");
// while ((opt = getopt_long(argc, argv, "n:s::g::c:H", long_options, NULL)) != -1) {
// printf ("\nopt:%c, optarg:%s, optind:%d, opterr:%d, optopt:%c, argv[optind]:%s\n",
// opt, optarg, optind, opterr, optopt, argv[optind-1]);
// switch (opt) {
// case 'n':
// name = optarg;
// printf("name:%s\n", name);
// break;
// case 's':
// printf("sex:%d\n", sex);
// if (sex == -1)sex = 0;
// //printf("sex:%d, %s", sex, sex > 0 ? "gilr":"mem");
// break;
// case 'g':
// if (!strcmp(argv[optind-1], "-g"))grade = 1;
// else
// grade = strtoul(optarg, NULL, 10);
// break;
// case 'c':
// class = strtoul(optarg, NULL, 10);
// break;
// case 'H':
// print_usage();
// return 0;
// default:
// print_usage();
// return -1;
// }
// }
// printf("A student info:\n"
// "name:%s\n"
// "sex:%s\n"
// "grade:%d\n"
// "class:%d\n",
// name, sex > 0 ? "gilr" : "men", grade, class)
// ;
// return 0;
// }
\ No newline at end of file
delayMs(100);
//程序退出
return 0;
}
\ No newline at end of file
... ...
# This is the CMakeCache file.
# For build in directory: /mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/build
# For build in directory: /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build
# It was generated by CMake: /usr/local/bin/cmake
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
... ... @@ -14,6 +14,15 @@
# EXTERNAL cache entries
########################
//Value Computed by CMake
ATTENTION_APP_BINARY_DIR:STATIC=/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build
//Value Computed by CMake
ATTENTION_APP_IS_TOP_LEVEL:STATIC=ON
//Value Computed by CMake
ATTENTION_APP_SOURCE_DIR:STATIC=/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序
//Path to a program.
CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line
... ... @@ -101,7 +110,7 @@ CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
//Value Computed by CMake.
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/build/CMakeFiles/pkgRedirects
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build/CMakeFiles/pkgRedirects
//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=/usr/local
... ... @@ -148,7 +157,7 @@ CMAKE_PROJECT_DESCRIPTION:STATIC=
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=JZ_UART_APP
CMAKE_PROJECT_NAME:STATIC=ATTENTION_APP
//Path to a program.
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
... ... @@ -212,15 +221,6 @@ CMAKE_STRIP:FILEPATH=/usr/bin/strip
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
//Value Computed by CMake
JZ_UART_APP_BINARY_DIR:STATIC=/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/build
//Value Computed by CMake
JZ_UART_APP_IS_TOP_LEVEL:STATIC=ON
//Value Computed by CMake
JZ_UART_APP_SOURCE_DIR:STATIC=/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial
########################
# INTERNAL cache entries
... ... @@ -231,7 +231,7 @@ CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/build
CMAKE_CACHEFILE_DIR:INTERNAL=/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/build
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
... ... @@ -306,7 +306,7 @@ CMAKE_GENERATOR_PLATFORM:INTERNAL=
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial
CMAKE_HOME_DIRECTORY:INTERNAL=/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序
//Install .so files without execute permission.
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
//ADVANCED property for variable: CMAKE_LINKER
... ...
# Consider dependencies only in project.
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of dependency files which are needed:
set(CMAKE_DEPENDS_DEPENDENCY_FILES
"/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/application/Megaphone_Attention.c" "CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/application/main.c" "CMakeFiles/ATTENTION_APP.dir/application/main.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/application/main.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComParsion.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComParsion.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComParsion.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/CheckSum_Src.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/CheckSum_Src.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/CheckSum_Src.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/Lwrb/lwrb.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/Lwrb/lwrb.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/Lwrb/lwrb.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/JZsdk_network.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/JZsdk_network.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/JZsdk_network.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_Input.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_Input.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_Input.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_Send/JZsdk_Uart_Send.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_Send/JZsdk_Uart_Send.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_Send/JZsdk_Uart_Send.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_UartDeal.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_UartDeal.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_UartDeal.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/UartConnection/UartConnection.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/UartConnection/UartConnection.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/UartConnection/UartConnection.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_usb_bulk/JZsdk_usb_bulk.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_usb_bulk/JZsdk_usb_bulk.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_usb_bulk/JZsdk_usb_bulk.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Alsa/Pcm_AlsaPlay.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Alsa/Pcm_AlsaPlay.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Alsa/Pcm_AlsaPlay.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDeal.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDeal.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDeal.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDealThread/AudioDealThread.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDealThread/AudioDealThread.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDealThread/AudioDealThread.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/AudioFile_Stream_Deal.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/AudioFile_Stream_Deal.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/AudioFile_Stream_Deal.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/File_Stream_deal.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/File_Stream_deal.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/File_Stream_deal.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/pcm_Stream_deal.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/pcm_Stream_deal.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/pcm_Stream_deal.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/FF_Filter.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/FF_Filter.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/FF_Filter.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/NoiseReduction/NoiseReduction.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/NoiseReduction/NoiseReduction.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/NoiseReduction/NoiseReduction.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Resample/pcm_Resample.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Resample/pcm_Resample.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Resample/pcm_Resample.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_DataDeal/Gimbal_DataDeal.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_DataDeal/Gimbal_DataDeal.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_DataDeal/Gimbal_DataDeal.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_MotorFineTuning/MotorFineTuning.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_MotorFineTuning/MotorFineTuning.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_MotorFineTuning/MotorFineTuning.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_SpecialUart/Gimbal_SpecialUart.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_SpecialUart/Gimbal_SpecialUart.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_SpecialUart/Gimbal_SpecialUart.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3_ircut.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3_ircut.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3_ircut.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioFile/AudioFile_PlayDeal.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioFile/AudioFile_PlayDeal.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioFile/AudioFile_PlayDeal.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioFile/AudioMange.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioFile/AudioMange.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioFile/AudioMange.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioFile/Megaphone_AudioFile.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioFile/Megaphone_AudioFile.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioFile/Megaphone_AudioFile.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megaphone.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megaphone.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megaphone.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/RealTimeMP2/Megaphone_RealTimeMP2.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/RealTimeMP2/Megaphone_RealTimeMP2.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/RealTimeMP2/Megaphone_RealTimeMP2.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/SoxFiliter/SoxFilter.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/SoxFiliter/SoxFilter.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/SoxFiliter/SoxFilter.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Espeak_tts/Espeak_tts.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Espeak_tts/Espeak_tts.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Espeak_tts/Espeak_tts.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Megaphone_TTS.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Megaphone_TTS.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Megaphone_TTS.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/cnTTS/cnTTS.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/cnTTS/cnTTS.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/cnTTS/cnTTS.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/opus/RealTimeVoice/Megaphone_RealTimeVoice.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/opus/RealTimeVoice/Megaphone_RealTimeVoice.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/opus/RealTimeVoice/Megaphone_RealTimeVoice.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/opus/RecordVoice/Megaphone_RecordVoice.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/opus/RecordVoice/Megaphone_RecordVoice.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/opus/RecordVoice/Megaphone_RecordVoice.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/PowerManager/HeartBeat/HeartBeat.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/PowerManager/HeartBeat/HeartBeat.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/PowerManager/HeartBeat/HeartBeat.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/PowerManager/PowerManager_InAndOut.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/PowerManager/PowerManager_InAndOut.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/PowerManager/PowerManager_InAndOut.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Dji_Control/DJI_VideoDeal.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Dji_Control/DJI_VideoDeal.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Dji_Control/DJI_VideoDeal.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Psdk_UI_io.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Psdk_UI_io.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Psdk_UI_io.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/UI_control.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/UI_control.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/UI_control.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o.d"
"/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o" "gcc" "CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o.d"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
... ...
CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o: \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/application/Megaphone_Attention.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/features.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/cdefs.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wordsize.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/gnu/stubs.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/gnu/stubs-hard.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stddef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/types.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/typesizes.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/libio.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/_G_config.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/wchar.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdarg.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdio_lim.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sys_errlist.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdlib.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitflags.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitstatus.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/endian.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/endian.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/byteswap.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/byteswap-16.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/types.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/time.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/select.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/select.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sigset.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/time.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/sysmacros.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/pthreadtypes.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/alloca.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/xlocale.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/BaseConfig.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/version_choose.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ConfigParams.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ParamterParsing.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control/UI_control.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceInfo.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceMessage/DeviceMessage.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/Megaphone.h
... ...
CMakeFiles/JZ_UART_APP.dir/application/main.c.o: \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/application/main.c \
CMakeFiles/ATTENTION_APP.dir/application/main.c.o: \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/application/main.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/features.h \
... ... @@ -39,33 +39,33 @@ CMakeFiles/JZ_UART_APP.dir/application/main.c.o: \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/xlocale.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/setjmp.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Config/BaseConfig.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Config/version_choose.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Config/./ConfigParams.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Config/./ParamterParsing.h
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/BaseConfig.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/version_choose.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ConfigParams.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ParamterParsing.h
... ...
file(REMOVE_RECURSE
"ATTENTION_APP"
"ATTENTION_APP.pdb"
"CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o"
"CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/application/main.c.o"
"CMakeFiles/ATTENTION_APP.dir/application/main.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComParsion.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComParsion.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/CheckSum_Src.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/CheckSum_Src.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/Lwrb/lwrb.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/Lwrb/lwrb.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/JZsdk_network.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/JZsdk_network.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_Input.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_Input.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_Send/JZsdk_Uart_Send.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_Send/JZsdk_Uart_Send.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_UartDeal.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_UartDeal.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/UartConnection/UartConnection.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/UartConnection/UartConnection.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_usb_bulk/JZsdk_usb_bulk.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_usb_bulk/JZsdk_usb_bulk.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Alsa/Pcm_AlsaPlay.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Alsa/Pcm_AlsaPlay.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDeal.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDeal.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDealThread/AudioDealThread.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDealThread/AudioDealThread.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/AudioFile_Stream_Deal.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/AudioFile_Stream_Deal.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/File_Stream_deal.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/File_Stream_deal.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/pcm_Stream_deal.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/pcm_Stream_deal.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/FF_Filter.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/FF_Filter.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/NoiseReduction/NoiseReduction.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/NoiseReduction/NoiseReduction.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Resample/pcm_Resample.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Resample/pcm_Resample.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_DataDeal/Gimbal_DataDeal.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_DataDeal/Gimbal_DataDeal.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_MotorFineTuning/MotorFineTuning.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_MotorFineTuning/MotorFineTuning.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_SpecialUart/Gimbal_SpecialUart.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_SpecialUart/Gimbal_SpecialUart.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3_ircut.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3_ircut.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioFile/AudioFile_PlayDeal.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioFile/AudioFile_PlayDeal.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioFile/AudioMange.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioFile/AudioMange.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioFile/Megaphone_AudioFile.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioFile/Megaphone_AudioFile.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megaphone.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megaphone.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/RealTimeMP2/Megaphone_RealTimeMP2.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/RealTimeMP2/Megaphone_RealTimeMP2.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/SoxFiliter/SoxFilter.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/SoxFiliter/SoxFilter.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Espeak_tts/Espeak_tts.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Espeak_tts/Espeak_tts.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Megaphone_TTS.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Megaphone_TTS.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/cnTTS/cnTTS.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/cnTTS/cnTTS.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/opus/RealTimeVoice/Megaphone_RealTimeVoice.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/opus/RealTimeVoice/Megaphone_RealTimeVoice.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/opus/RecordVoice/Megaphone_RecordVoice.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/opus/RecordVoice/Megaphone_RecordVoice.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/PowerManager/HeartBeat/HeartBeat.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/PowerManager/HeartBeat/HeartBeat.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/PowerManager/PowerManager_InAndOut.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/PowerManager/PowerManager_InAndOut.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Dji_Control/DJI_VideoDeal.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Dji_Control/DJI_VideoDeal.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Psdk_UI_io.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Psdk_UI_io.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/UI_control.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/UI_control.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o.d"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o"
"CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o.d"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
include(CMakeFiles/ATTENTION_APP.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()
... ...
# Empty compiler generated dependencies file for JZ_UART_APP.
# Empty compiler generated dependencies file for ATTENTION_APP.
# This may be replaced when dependencies are built.
... ...
# CMAKE generated file: DO NOT EDIT!
# Timestamp file for compiler generated dependencies management for ATTENTION_APP.
... ...
# Empty dependencies file for JZ_UART_APP.
# Empty dependencies file for ATTENTION_APP.
# This may be replaced when dependencies are built.
... ...
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.24
# compile C with /usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc
C_DEFINES = -DMACRO_LIGHTING_MODULE -DMACRO_MEGAPHONE_MODULE
C_INCLUDES = -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_osal -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Gimbal -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Lighting -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Camera -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/PowerManager -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/TestAPP -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/ImageProcessing -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/SerialManagement -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/iFLYTEK_TTS/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/AlsaLib/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/opus/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/x264_2245/include -I/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/fdk_aac_2_0_3/include
C_FLAGS = -pthread -std=gnu99 -lm -ldl -lstdc++ -D COMPILE_MODE_MODULE
... ...
/usr/local/arm/4.9.3/bin/arm-cortexa9-linux-gnueabihf-gcc -pthread -std=gnu99 -lm -ldl -lstdc++ -pthread -rdynamic CMakeFiles/ATTENTION_APP.dir/application/main.c.o CMakeFiles/ATTENTION_APP.dir/application/Megaphone_Attention.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComParsion.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/CheckSum_Src.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/Lwrb/lwrb.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/JZsdk_network.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_Input.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_Recv/JZsdk_Uart_RecvDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_Send/JZsdk_Uart_Send.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/JZsdk_Uart_UartDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_uart/UartConnection/UartConnection.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_usb_bulk/JZsdk_usb_bulk.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceInfo.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/DeviceMessage/DeviceMessage.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/HardwareInfo/HardwareInfo.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/ActivateMAT/ActivateMAT.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/DeviceInfo/SerialNumberProc/SerialProc.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_DataDeal/Gimbal_DataDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_MotorFineTuning/MotorFineTuning.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Gimbal/Gimbal_SpecialUart/Gimbal_SpecialUart.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/H3_ircut/H3_ircut.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/Sysfs_gpio/Sysfs_gpio.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/V3s_ircut/V3s_ircut.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Ircut/ircut.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/Lighting_InAndOut.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/JZ_SearchLightTemp_calculation.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLightTemControl/SearchLightTemControl.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_H1T/SearchLight_V3S_H1T.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_TFA1/SearchLight_V3S_TFA1.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/SearchLight/SearchLight_V3S/SearchLight_V3S_U3/SearchLight_V3S_U3.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_H1T/WarningLight_V3S_H1T.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Lighting/WarningLight/WarningLight_V3S/WarningLight_V3S_TFA1/WarningLight_V3S_TFA1.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AttentionVoice/AttentionVoice.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioFile/AudioFile_PlayDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioFile/AudioMange.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/AudioFile/Megaphone_AudioFile.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/MegTempControl/MegTempControl.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/Megaphone.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/RealTimeMP2/Megaphone_RealTimeMP2.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/SoxFiliter/SoxFilter.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Espeak_tts/Espeak_tts.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/Megaphone_TTS.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/TTS/cnTTS/cnTTS.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/opus/RealTimeVoice/Megaphone_RealTimeVoice.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/Megaphone/opus/RecordVoice/Megaphone_RecordVoice.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Alsa/Pcm_AlsaPlay.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioDealThread/AudioDealThread.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/AudioFile_Stream_Deal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/File_Stream_deal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/AudioStreamDeal/pcm_Stream_deal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Filter/FF_Filter.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/NoiseReduction/NoiseReduction.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/AudioDeal/Resample/pcm_Resample.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/PowerManager/HeartBeat/HeartBeat.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/PowerManager/PowerManager_InAndOut.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Dji_Control/DJI_VideoDeal.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/Psdk_UI_io.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/UI_control.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_Widget.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetControl.c.o CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.c.o -o ATTENTION_APP -L/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/iFLYTEK_TTS/lib/arm-cortexa9-linux-gnueabihf -Wl,-rpath,/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/iFLYTEK_TTS/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/AlsaLib/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/opus/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/x264_2245/lib/arm-cortexa9-linux-gnueabihf:/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/fdk_aac_2_0_3/lib/arm-cortexa9-linux-gnueabihf -lmsc /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf/libportaudio.so.2 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/Espeak/lib/arm-cortexa9-linux-gnueabihf/libTTS_Player.so /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/AlsaLib/lib/arm-cortexa9-linux-gnueabihf/libasound.so.2.0.0 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/opus/lib/arm-cortexa9-linux-gnueabihf/libopus.so /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavcodec.so.60 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavdevice.so.60 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavfilter.so.9 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavformat.so.60 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libavutil.so.58 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libpostproc.so.57 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libswresample.so.4 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/lib/arm-cortexa9-linux-gnueabihf/libswscale.so.7 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/x264_2245/lib/arm-cortexa9-linux-gnueabihf/libx264.so.157 /mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/fdk_aac_2_0_3/lib/arm-cortexa9-linux-gnueabihf/libfdk-aac.so.2
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
... ... @@ -19,16 +19,16 @@ CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.c.o:
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_ReturnCode.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComParsion.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComParsion.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComParsion.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
... ... @@ -36,32 +36,32 @@ CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZ
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/xlocale.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/pthread.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sched.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sched.h \
... ...
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/CheckSum_Src.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/CheckSum_Src.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/features.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/cdefs.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wordsize.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/gnu/stubs.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/gnu/stubs-hard.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stddef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/types.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/typesizes.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/libio.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/_G_config.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/wchar.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdarg.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdio_lim.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sys_errlist.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/./CheckSum_Src.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/./../../JZsdk_Code/JZsdk_Code.h
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
... ... @@ -40,29 +40,29 @@ CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZ
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/./CheckSum_Src.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/./../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/./JZsdk_CheckSum.h
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
... ... @@ -65,22 +65,22 @@ CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZ
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/mathcalls.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/stat.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stat.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/dirent.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/dirent.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/posix1_lim.h \
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
... ... @@ -36,29 +36,29 @@ CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/JZ
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdbool.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/xlocale.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/Lwrb/lwrb.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/Lwrb/lwrb.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/Lwrb/lwrb.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_Base/Lwrb/./lwrb.h \
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
... ... @@ -19,16 +19,16 @@ CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonF
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/xlocale.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/../../JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/../../JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/../../JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskManagement.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
... ... @@ -44,29 +44,29 @@ CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskMan
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/confname.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/getopt.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/./TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/TaskMgmt_sample.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
... ... @@ -44,29 +44,29 @@ CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskMan
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/confname.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/getopt.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Common/JZsdk_TaskManagement/./TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h
... ...
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/features.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/cdefs.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wordsize.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/gnu/stubs.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/gnu/stubs-hard.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stddef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/types.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/typesizes.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/libio.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/_G_config.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/wchar.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdarg.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdio_lim.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sys_errlist.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdlib.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitflags.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/waitstatus.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/endian.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/endian.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/byteswap.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/byteswap-16.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/types.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/time.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/select.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/select.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sigset.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/time.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sys/sysmacros.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/pthreadtypes.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/alloca.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/stdlib-float.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/pthread.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sched.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sched.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/xlocale.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/setjmp.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/version_choose.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/./ConfigParams.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut/ircut.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut/./ircutParams.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Ircut/./Sysfs_gpio/Sysfs_gpio.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Megaphone/Megaphone.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Gimbal/Gimbal.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_uart/JZsdk_Uart_Input.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/BaseConfig.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/./ParamterParsing.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control/Psdk_UI_io.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/Lighting/Lighting_InAndOut.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_network/JZsdk_network.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/MediaProc.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/./Camera/Camera.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/MediaProc_Param.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/./VideoMgmt/VideoMgmt.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/./VideoMgmt/./VideoMgmt_Parm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/./ImageProc/PseudoColor/PseudoColor.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/./IRC_funtion/IRC_funtion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/MediaProc/IRC_funtion/IRC_Param.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control/WidegMgmt/JZsdk_Widget.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/UI_control/WidegMgmt/JZsdk_WidgetIndex.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceInfo.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/DeviceMessage/DeviceMessage.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/SerialProc.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/SerialNumberProc/FirewareOriginMAT/FirewareOriginMAT.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/DeviceInfo/HardwareInfo/HardwareInfo.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../Module/AudioDeal/AudioDeal.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/channel_layout.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/version.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/macros.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/avconfig.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/attributes.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/frame.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/avutil.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/common.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/errno.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/errno.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/errno.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm/errno.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/errno.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/asm-generic/errno-base.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/inttypes.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include-fixed/limits.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include-fixed/syslimits.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/limits.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/posix1_lim.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/local_lim.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/linux/limits.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/posix2_lim.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/math.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/math-vector.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/libm-simd-decl-stubs.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/huge_val.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/huge_valf.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/huge_vall.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/inf.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/nan.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/mathdef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/mathcalls.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/mem.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/error.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/rational.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/mathematics.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/intfloat.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/log.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/pixfmt.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/buffer.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/channel_layout.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/dict.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../ThirdParty/ffmpeg_6_0/include/libavutil/samplefmt.h
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsing.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
... ... @@ -41,30 +41,30 @@ CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/ParamterParsi
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/confname.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/getopt.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/ctype.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_Config/./ParamterParsing.h
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_deal/JZsdk_data_transmisson.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
... ... @@ -39,41 +39,41 @@ CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_haldata_de
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/sched.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/sched.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/setjmp.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/usr/local/arm/4.9.3/lib/gcc/arm-cortexa9-linux-gnueabihf/4.9.3/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdint.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_hal/JZsdk_uart/JZsdk_Uart_UartDeal.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Config/BaseConfig.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Config/version_choose.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Config/./ConfigParams.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Config/./ParamterParsing.h
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Aframe.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_5Bframe.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Aframe.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_FrameComparsion_6Bframe.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_FrameComparsion/JZsdk_GetFrameTemplate.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_hal/JZsdk_uart/JZsdk_Uart_UartDeal.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/BaseConfig.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/version_choose.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ConfigParams.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ParamterParsing.h
... ...
CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/JZsdk_network.c.o: \
CMakeFiles/ATTENTION_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/JZsdk_network.c.o: \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/JZsdk_network.c \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdc-predef.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/stdio.h \
... ... @@ -54,32 +54,32 @@ CMakeFiles/JZ_UART_APP.dir/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/JZ
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/wchar.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/bits/in.h \
/usr/local/arm/4.9.3/arm-cortexa9-linux-gnueabihf/sys-root/usr/include/arpa/inet.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Config/BaseConfig.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Config/version_choose.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Config/./ConfigParams.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Config/./ParamterParsing.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Only_Serial/../../JZsdk_Config/version_choose.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/BaseConfig.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/version_choose.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ConfigParams.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdkLib.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdkBase.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Logger/JZsdk_Logger.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_InsCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ReturnCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_ErrorCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_FileType.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/./JZsdk_WidgetCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_FileSystm.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/./JZsdk_FS_Standards.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Delay/JZsdk_Delay.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_FLagCode.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_MemoryAdapter.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/JZsdk_CheckSum.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Osal/JZsdk_CheckSum/../../JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_Base/JZsdk_Code/JZsdk_Code.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdkCommonFuntion.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_string/JZsdk_string.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_CommonFuntion/JZsdk_math/JZsdk_math.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Common/JZsdk_TaskManagement/TaskManagement.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/./ParamterParsing.h \
/mnt/hgfs/share/JZSDK_Linux/project_build/Attention_提示程序/../../JZsdk_Config/version_choose.h \
/mnt/hgfs/share/JZSDK_Linux/JZsdk_hal/JZsdk_network/./JZsdk_network.h
... ...