parent
1a73d6bbe0
commit
93d626249a
|
@ -50,7 +50,7 @@
|
||||||
<InvalidFlash>1</InvalidFlash>
|
<InvalidFlash>1</InvalidFlash>
|
||||||
</TargetStatus>
|
</TargetStatus>
|
||||||
<OutputDirectory>.\Objects\</OutputDirectory>
|
<OutputDirectory>.\Objects\</OutputDirectory>
|
||||||
<OutputName>CVWL568_MI10PRO_20230704</OutputName>
|
<OutputName>CVWL568_MI10PRO_V100_20230714</OutputName>
|
||||||
<CreateExecutable>1</CreateExecutable>
|
<CreateExecutable>1</CreateExecutable>
|
||||||
<CreateLib>0</CreateLib>
|
<CreateLib>0</CreateLib>
|
||||||
<CreateHexFile>1</CreateHexFile>
|
<CreateHexFile>1</CreateHexFile>
|
||||||
|
@ -403,6 +403,11 @@
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<FilePath>..\src\app\demo\app_tp_st_touch.c</FilePath>
|
<FilePath>..\src\app\demo\app_tp_st_touch.c</FilePath>
|
||||||
</File>
|
</File>
|
||||||
|
<File>
|
||||||
|
<FileName>demo_version.txt</FileName>
|
||||||
|
<FileType>5</FileType>
|
||||||
|
<FilePath>..\..\WL568_MI10PRO_NT37800_20230419\src\app\demo\demo_version.txt</FilePath>
|
||||||
|
</File>
|
||||||
</Files>
|
</Files>
|
||||||
</Group>
|
</Group>
|
||||||
<Group>
|
<Group>
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
@ -3922,7 +3922,8 @@ void tp_heartbeat_exec(void)
|
||||||
{
|
{
|
||||||
// TAU_LOGD("hb");
|
// TAU_LOGD("hb");
|
||||||
s_heartbeat = 0;
|
s_heartbeat = 0;
|
||||||
ap_tp_st_touch_software_reset();
|
// ap_tp_st_touch_software_reset();
|
||||||
|
ap_tp_st_touch_hardware_reset();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3940,7 +3941,8 @@ void ap_demo(void)
|
||||||
|
|
||||||
/* mipi rx³õʼ»¯ */
|
/* mipi rx³õʼ»¯ */
|
||||||
open_mipi_rx();
|
open_mipi_rx();
|
||||||
TAU_LOGD("Mi10Pro demo [%s]", __DATE__);
|
// TAU_LOGD("Mi10Pro demo [%s]", __DATE__);
|
||||||
|
TAU_LOGD("Mi10Pro V100 20230714");
|
||||||
/* swire ³õʼ»¯ */
|
/* swire ³õʼ»¯ */
|
||||||
// swire_init();
|
// swire_init();
|
||||||
|
|
||||||
|
|
|
@ -540,9 +540,11 @@ void ap_tp_st_touch_scan_point_record_event_exec(void)
|
||||||
void ap_tp_st_touch_error_handler_F3(uint8_t* screendata)
|
void ap_tp_st_touch_error_handler_F3(uint8_t* screendata)
|
||||||
{
|
{
|
||||||
// 收到 TP 异常回复 0xF3 0x02 0x00 0x00 0x00 0x00 0x00 0x00
|
// 收到 TP 异常回复 0xF3 0x02 0x00 0x00 0x00 0x00 0x00 0x00
|
||||||
if(screendata[0] == 0xF3 && screendata[1] == 0x02 && screendata[2] == 0x00)
|
// if(screendata[0] == 0xF3 && screendata[1] == 0x02 && screendata[2] == 0x00)
|
||||||
|
if(screendata[0] == 0xF3)
|
||||||
{
|
{
|
||||||
ap_tp_st_touch_software_reset();
|
// ap_tp_st_touch_software_reset();
|
||||||
|
ap_tp_st_touch_hardware_reset();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -559,7 +561,8 @@ void ap_tp_st_touch_error_handler_FF(uint8_t* screendata)
|
||||||
// 收到 TP 异常回复 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF
|
// 收到 TP 异常回复 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF 0xFF
|
||||||
if(screendata[1] == 0xFF && screendata[2] == 0xFF&& screendata[3] == 0xFF&&screendata[4] == 0xFF)
|
if(screendata[1] == 0xFF && screendata[2] == 0xFF&& screendata[3] == 0xFF&&screendata[4] == 0xFF)
|
||||||
{
|
{
|
||||||
ap_tp_st_touch_software_reset();
|
// ap_tp_st_touch_software_reset();
|
||||||
|
ap_tp_st_touch_hardware_reset();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
WL568_MI10PRO_NT37800_20230704
|
WL568_MI10PRO_NT37800_V100_20230714
|
||||||
|
|
||||||
1、基于WL568_MI10PRO_NT37800_20230505修改时序版本基础上修改
|
1、解决偶发触摸卡问题:将ST触摸芯片的软件复位全部改成硬件复位。
|
||||||
2、解决AOD界面黑屏问题:修改51调光值为0时给固定亮度值。
|
2、增加版本号打印和BIN文件版本
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue