1.修复预约问题

This commit is contained in:
payton 2024-01-20 00:58:24 +08:00
parent 7277e45c54
commit faa2014ac8
5 changed files with 21 additions and 7 deletions

View File

@ -4857,7 +4857,7 @@ SINT32 sf_auto_net_reg(void)
SF_MODULE_END:
// sendStartTime = clock();
sf_time(&sendStartTime);
printf("[%s:%d]ret:[0x%08X] sendStartTime:%d\n\n", __FUNCTION__, __LINE__, ret, sendStartTime);
printf("[%s:%d]ret:[0x%08X] sendStartTime:%s\n\n", __FUNCTION__, __LINE__, ret, ctime(&sendStartTime));
return ret;
}

View File

@ -2019,7 +2019,7 @@ SF_HD_END:
pSifarPara->picSendFailCount += ((SendFileTotal + 1) - (sendAlreadyFlag + 1));
//pSifarPara->sendThumbnailFailCount += ((piccount + 1) - sendAlreadyFlag);
pSifarPara->picSendTimeoutCount += timeoutCnt;
MLOGD("[%s:%d]TotalPicsSent:%d\n\n", pSifarPara->TotalPicsSent);
MLOGD("TotalPicsSent:%d\n\n", pSifarPara->TotalPicsSent);
}
//printf("[%s:%d]ret1:[0x%08X],ret2:[0x%08X]\n\n", __FUNCTION__, __LINE__, ret1, ret2);
MLOGD(" end ret1:[0x%08X],ret2:[0x%08X]\n", ret1, ret2);

View File

@ -2159,6 +2159,13 @@ void sf_hd_pic_add_to_list(UINT8 *fileName)
SF_SPRINTF(fname, "%s%s/%03dMEDIA/%s%04d.JPG", SF_EMMC_ROOT, SF_DCIM_DIR, dirKey, SF_EMMC_DCF_FILE_NAME, fileKey);
storage = 0;
}
if(SF_FAILURE == sf_check_sd())
{
MLOGE("%s\n", fname);
return;
}
if(sf_file_IsExsit(fname) != SF_TRUE)
{
MLOGE("%s\n", fname);
@ -2234,7 +2241,7 @@ void sf_hd_pic_list_print(void)
}
else{
if (mkdir(hd_dir, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) != 0) {
printf("Failed to create directory");
printf("Failed to create directory\n");
}
}
//snprintf(sendListName, sizeof(sendListName), "%s", SF_HD_DIR_LIST);
@ -2301,6 +2308,12 @@ void sf_video_add_to_list(UINT8 *fileName)
fileIndex = dirKey * 10000 + fileKey + 1;
if(SF_FAILURE == sf_check_sd())
{
MLOGE("%s\n", fileName);
return;
}
for(i = 0; i < 3; i++)
{
dirKeytmp = fileIndex / 10000;

View File

@ -923,6 +923,9 @@ void sf_power_off(void)
sf_power_off_statistics();
sf_power_off_check_sd();
sf_power_off_check_sd_fail();
sf_poweroff_check_lpa_excute_cmd();
sf_poweroff_check_lpa_enable_profile();
@ -939,9 +942,6 @@ void sf_power_off(void)
sf_power_off_check_format_sd();
sf_power_off_check_sd();
sf_power_off_check_sd_fail();
sf_power_off_check_gprs();
sf_power_off_check_fw_update();

View File

@ -2958,7 +2958,7 @@ void* sf_cardv_hd_cap_thread(void *arg)
snprintf(HdflieName, sizeof(HdflieName), "%s%c%03d%04d.JPG", SF_HD_DIR_EMMC , (SF_EMMC_DCF_HANDLE), fileCfg->stfileattr[fileIndex].dirKey, fileCfg->stfileattr[fileIndex].fileKey);
snprintf(str, 64, "B:\\DCIM\\%03d%s\\%s%04d.JPG", fileCfg->stfileattr[fileIndex].dirKey, DCF_DIR_NAME, SF_EMMC_DCF_FILE_NAME, fileCfg->stfileattr[fileIndex].fileKey);
}
printf("flie:%s HdflieName:%s\n", str, HdflieName);
printf("flie:%s HdflieName:%s fileIndex:%d\n", str, HdflieName,fileIndex);
arg[0] = str;
sf_cmd_transcode_start(arg);
if(sf_hd_flag_wait_done_timeout(HD_FLAG_INITT_OK, 5000))
@ -2971,6 +2971,7 @@ void* sf_cardv_hd_cap_thread(void *arg)
free(str);
}
sf_share_mem_hd_down(0);
sf_mem_free();
}
}
MLOGD(" HD end\n");