1.集中发送时不进行提示

This commit is contained in:
payton 2024-01-18 19:40:39 +08:00
parent e2f35d9f6d
commit ce4bb24031

View File

@ -3573,7 +3573,9 @@ void sf_cardv_set_wifi_en(UINT32 cnt)
INT32 sf_mem_write_photo(UINT32 buf, UINT32 size) INT32 sf_mem_write_photo(UINT32 buf, UINT32 size)
{ {
UINT32 fd = 0; UINT32 fd = 0;
UIMenuStoreInfo *puiPara = sf_ui_para_get();
if(0 == puiPara->SendType)
{
MLOGD("filesys not ready, store data into mem\n"); MLOGD("filesys not ready, store data into mem\n");
system("rm -rf /tmp/MEMPHOTO.JPG"); system("rm -rf /tmp/MEMPHOTO.JPG");
system("sync"); system("sync");
@ -3591,5 +3593,6 @@ INT32 sf_mem_write_photo(UINT32 buf, UINT32 size)
return 0; return 0;
} }
MLOGE("MEMPHOTO.JPG size:%ld\n", size); MLOGE("MEMPHOTO.JPG size:%ld\n", size);
}
return 1; return 1;
} }