3 次代碼提交 ac244f8574 ... db9753e229

作者 SHA1 備註 提交日期
  caihoucong db9753e229 解决部分软件问题,并且发布V1.0.7版本 1 月之前
  caihoucong 4015f92904 app.layout改变 1 月之前
  caihoucong e0d9a5a1b4 解决不播放也能加减音量,解决一拖二,一个通话,一个来电导致耳机异常复位,解决单个回连失败不进入配对 1 月之前
共有 29 個文件被更改,包括 1112 次插入1082 次删除
  1. 8 2
      sdk_bt893x_v013_s8759_20241213/app/functions/func.c
  2. 二進制
      sdk_bt893x_v013_s8759_20241213/app/libs/bt8930/libbtstack.a
  3. 15 0
      sdk_bt893x_v013_s8759_20241213/app/modules/bluetooth/hlw_bt_handle.c
  4. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/bin/BT8931H_AnSheng_HQ32(1MORE HQ32)_CHC_EQ_KG_V1.0.7_20250424(0000A952_8969099C).fot
  5. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/bin/BT8931H_AnSheng_HQ32(1MORE HQ32)_CHC_EQ_KG_V1.0.7_20250424(0000A952_8969099C).prd
  6. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/bin/BT8931H_AnSheng_HQ32(1MORE HQ32)_CHC_EQ_KG_V1.0.7_20250424_pa7_log(0000114C_89411010).prd
  7. 1 1
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/bin/Settings/earphone.setting
  8. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/bin/app.bin
  9. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/bin/app.dcf
  10. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/bin/app.rv32
  11. 841 842
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/bin/map.txt
  12. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/bsp/bsp_huart.o
  13. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/functions/func.o
  14. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/functions/func_bt_dut.o
  15. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/libs/bt8930/strong_bt.o
  16. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/modules/audio/bsp_audio.o
  17. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/modules/audio/bsp_eq.o
  18. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/modules/bluetooth/app/app_fota/app_fota.o
  19. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/modules/bluetooth/app/app_onemore/onemore_app.o
  20. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/modules/bluetooth/bt/bt.o
  21. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/modules/bluetooth/hlw_bt_handle.o
  22. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/modules/test/iodm.o
  23. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/modules/test/onemore_hq51_test.o
  24. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/projects/earphone/plugin/plugin.o
  25. 二進制
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/system/system.o
  26. 9 9
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/app.depend
  27. 224 224
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/app.layout
  28. 4 4
      sdk_bt893x_v013_s8759_20241213/app/projects/earphone/config.h
  29. 10 0
      安声HQ32修改记录.txt

+ 8 - 2
sdk_bt893x_v013_s8759_20241213/app/functions/func.c

@@ -296,7 +296,10 @@ void func_message(u16 msg)
                 break;
             }
 #endif // ONEMORE_SPP_TEST_EN
-            func_volume_up();
+            if((bt_get_disp_status() >= BT_STA_PLAYING)&&(bt_get_disp_status() <= BT_STA_INCALL))
+            {
+                func_volume_up();
+            }
             break;
 
         case KLU_VOL_UP:
@@ -318,7 +321,10 @@ void func_message(u16 msg)
                 break;
             }
 #endif // ONEMORE_SPP_TEST_EN
-            func_volume_down();
+            if((bt_get_disp_status() >= BT_STA_PLAYING)&&(bt_get_disp_status() <= BT_STA_INCALL))
+            {
+                func_volume_down();
+            }
             break;
 
         //长按PP/POWER软关机(通过PWROFF_PRESS_TIME控制长按时间)

二進制
sdk_bt893x_v013_s8759_20241213/app/libs/bt8930/libbtstack.a


+ 15 - 0
sdk_bt893x_v013_s8759_20241213/app/modules/bluetooth/hlw_bt_handle.c

@@ -65,6 +65,7 @@ void hlw_bt_reconnect_fail_handle(u8* packet)
     {
         hlw_cb.poweron_reconfail_cent--;
     }
+
     if(hlw_cb.poweron_reconfail_cent != 0)
     {
         return;
@@ -91,6 +92,20 @@ void hlw_bt_reconnect_fail_handle(u8* packet)
             hlw_cb.poweron_need_connect_flag = false;
             hlw_bt_open_reconnect_start_handle();
         }
+        else
+        {
+            if((connect_num == 0)&&(!hlw_cb.reconnect_flag))
+            {
+                if(func_cb.sta == FUNC_BT)
+                {
+                    hlw_bt_enter_pairmode_handle();
+                }
+                else if(func_cb.sta != FUNC_BT)
+                {
+                    hlw_cb.poweron_reconnect_fail_flag = true;
+                }
+            }
+        }
     }
     else
     {

二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/bin/BT8931H_AnSheng_HQ32(1MORE HQ32)_CHC_EQ_KG_V1.0.7_20250424(0000A952_8969099C).fot


二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/bin/BT8931H_AnSheng_HQ32(1MORE HQ32)_CHC_EQ_KG_V1.0.7_20250424(0000A952_8969099C).prd


二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/bin/BT8931H_AnSheng_HQ32(1MORE HQ32)_CHC_EQ_KG_V1.0.7_20250424_pa7_log(0000114C_89411010).prd


+ 1 - 1
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/bin/Settings/earphone.setting

@@ -20,7 +20,7 @@
         <add key="pwron_press_time" value="3" />
         <add key="pwroff_press_time" value="4" />
         <add key="eq_dgb_spp_en" value="True" />
-        <add key="huart_en" value="False" />
+        <add key="huart_en" value="True" />
         <add key="huart_sel" value="0" />
         <add key="uart1_en" value="False" />
         <add key="uart1_sel" value="2" />

二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/bin/app.bin


二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/bin/app.dcf


二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/bin/app.rv32


文件差異過大導致無法顯示
+ 841 - 842
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/bin/map.txt


二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/bsp/bsp_huart.o


二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/functions/func.o


二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/functions/func_bt_dut.o


二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/libs/bt8930/strong_bt.o


二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/modules/audio/bsp_audio.o


二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/modules/audio/bsp_eq.o


二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/modules/bluetooth/app/app_fota/app_fota.o


二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/modules/bluetooth/app/app_onemore/onemore_app.o


二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/modules/bluetooth/bt/bt.o


二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/modules/bluetooth/hlw_bt_handle.o


二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/modules/test/iodm.o


二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/modules/test/onemore_hq51_test.o


二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/projects/earphone/plugin/plugin.o


二進制
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/Output/obj/system/system.o


+ 9 - 9
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/app.depend

@@ -27453,9 +27453,9 @@
 
 1739933000 d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\include\sfr.h
 
-1739938385 d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\projects\earphone\xcfg.h
+1745473367 d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\projects\earphone\xcfg.h
 
-1744875105 d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\projects\earphone\config.h
+1745473594 d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\projects\earphone\config.h
 	"config_define.h"
 	"config_extra.h"
 
@@ -27923,7 +27923,7 @@
 	"bsp_vad.h"
 	"asr.h"
 
-1744010299 source:d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\functions\func.c
+1745473309 source:d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\functions\func.c
 	"include.h"
 	"hlw_func.h"
 
@@ -27934,7 +27934,7 @@
 	"func.h"
 	"func_aux.h"
 
-1744874480 source:d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\functions\func_bt.c
+1745473309 source:d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\functions\func_bt.c
 	"include.h"
 	"func.h"
 	"func_bt.h"
@@ -27987,7 +27987,7 @@
 	"func_usbdev.h"
 	"hlw_func.h"
 
-1744874480 source:d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\functions\hlw_func.c
+1745473309 source:d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\functions\hlw_func.c
 	"include.h"
 	"api.h"
 	"hlw_func.h"
@@ -28065,7 +28065,7 @@
 	"include.h"
 	"hlw_func.h"
 
-1739967414 source:d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\modules\audio\bsp_eq.c
+1745473309 source:d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\modules\audio\bsp_eq.c
 	"include.h"
 	"bsp_eq.h"
 	"bsp_anc.h"
@@ -28662,7 +28662,7 @@
 1727140073 source:d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\modules\bluetooth\gfps\gfps_util.c
 	"include.h"
 
-1744874480 source:d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\modules\bluetooth\hlw_bt_handle.c
+1745473309 source:d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\modules\bluetooth\hlw_bt_handle.c
 	"include.h"
 	"api.h"
 	"hlw_bt_handle.h"
@@ -28885,14 +28885,14 @@
 	"func.h"
 	"func_idle.h"
 
-1739938372 source:d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\projects\earphone\output\bin\app.xm
+1745473309 source:d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\projects\earphone\output\bin\app.xm
 	"config.h"
 
 1697613588 source:d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\projects\earphone\output\bin\download.xm
 
 1697613588 source:d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\projects\earphone\output\bin\res.xm
 
-1739938383 source:d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\projects\earphone\output\bin\xcfg.xm
+1745473309 source:d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\projects\earphone\output\bin\xcfg.xm
 
 1733737764 source:d:\bluetrum\project\a_ansheng\hq32\code\20250416\sdk_bt893x_v013_s8759_20241213\app\projects\earphone\plugin\bt_call.c
 	"include.h"

+ 224 - 224
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/app.layout

@@ -2,559 +2,559 @@
 <CodeBlocks_layout_file>
 	<FileVersion major="1" minor="0" />
 	<ActiveTarget name="Debug" />
-	<File name="..\..\modules\bluetooth\app\app_onemore\onemore_profile.c" open="0" top="0" tabpos="4" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\libs\bt8930\api_uart.h" open="0" top="0" tabpos="79" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="80" topLine="0" />
+			<Cursor1 position="708" topLine="6" />
 		</Cursor>
 	</File>
-	<File name="..\..\functions\hlw_func.h" open="1" top="0" tabpos="18" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\modules\charge\charge.c" open="1" top="0" tabpos="13" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="3324" topLine="79" />
+			<Cursor1 position="4564" topLine="175" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\audio\bsp_anc_param_table.c" open="0" top="0" tabpos="80" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\system\device.c" open="1" top="0" tabpos="35" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="2515" topLine="29" />
+			<Cursor1 position="3474" topLine="107" />
 		</Cursor>
 	</File>
-	<File name="message\msg_aux.c" open="0" top="0" tabpos="28" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\functions\sfunc_bt_call.c" open="1" top="0" tabpos="27" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="393" topLine="0" />
+			<Cursor1 position="8012" topLine="304" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\key\key_scan.h" open="1" top="0" tabpos="22" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\modules\bluetooth\bt\a2dp.c" open="0" top="0" tabpos="66" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="1288" topLine="7" />
+			<Cursor1 position="1209" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\libs\bt8930\api_btstack.h" open="1" top="0" tabpos="8" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\audio\bsp_anc_param_table.h" open="0" top="0" tabpos="81" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="6714" topLine="105" />
+			<Cursor1 position="946" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\libs\bt8930\api_device.h" open="0" top="0" tabpos="35" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\audio\bsp_effect.h" open="1" top="0" tabpos="31" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="140" topLine="0" />
+			<Cursor1 position="1237" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\key\pwrkey.c" open="0" top="0" tabpos="8" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\libs\bt8930\api_btstack.h" open="1" top="0" tabpos="8" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="491" topLine="33" />
+			<Cursor1 position="6548" topLine="105" />
 		</Cursor>
 	</File>
-	<File name="..\..\system\param.h" open="0" top="0" tabpos="29" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\audio\bsp_dac.c" open="1" top="0" tabpos="19" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="4163" topLine="50" />
+			<Cursor1 position="3153" topLine="113" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\bt\a2dp.c" open="0" top="0" tabpos="66" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="res.h" open="0" top="0" tabpos="27" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="1209" topLine="0" />
+			<Cursor1 position="22153" topLine="418" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\call\bt_sco.c" open="1" top="0" tabpos="47" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="port\port_led.c" open="0" top="0" tabpos="11" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="7309" topLine="228" />
+			<Cursor1 position="5317" topLine="79" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\hlw_bt_handle.h" open="1" top="0" tabpos="38" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\bluetooth\bt\spp.c" open="1" top="0" tabpos="50" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="816" topLine="0" />
+			<Cursor1 position="799" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\app\app_onemore\onemore_app.h" open="1" top="0" tabpos="29" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\bsp\bsp_uart.h" open="0" top="0" tabpos="78" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="4114" topLine="76" />
+			<Cursor1 position="0" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\app\ab_mate\ab_mate_tws.h" open="0" top="0" tabpos="42" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\bsp\bsp_huart.c" open="0" top="0" tabpos="30" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="52" topLine="0" />
+			<Cursor1 position="163" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\functions\func_bt_dut.c" open="1" top="0" tabpos="51" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\libs\bt8930\api_nr.h" open="1" top="0" tabpos="44" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="4023" topLine="121" />
+			<Cursor1 position="16070" topLine="429" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\app\tuya\port\tuya_ble_app.h" open="0" top="0" tabpos="31" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\bluetooth\app\app_onemore\onemore_app.h" open="1" top="0" tabpos="29" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="9699" topLine="224" />
+			<Cursor1 position="4114" topLine="76" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\audio\bsp_anc.c" open="1" top="0" tabpos="24" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\system\vbat.c" open="1" top="0" tabpos="2" split="0" active="1" splitpos="0" zoom_1="-1" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="16325" topLine="497" />
+			<Cursor1 position="1246" topLine="40" />
 		</Cursor>
 	</File>
-	<File name="message\msg_usbdev.c" open="1" top="0" tabpos="21" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
+	<File name="..\..\system\system.h" open="0" top="0" tabpos="34" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="119" topLine="4" />
+			<Cursor1 position="2733" topLine="57" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\gui\led\led.c" open="1" top="0" tabpos="9" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\functions\hlw_func.h" open="1" top="0" tabpos="18" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="5077" topLine="213" />
+			<Cursor1 position="3324" topLine="79" />
 		</Cursor>
 	</File>
-	<File name="..\..\libs\bt8930\api_cm.h" open="0" top="0" tabpos="21" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\functions\hlw_func.c" open="1" top="0" tabpos="5" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="1194" topLine="5" />
+			<Cursor1 position="14824" topLine="512" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\bsp_bt.c" open="1" top="0" tabpos="25" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
+	<File name="..\..\modules\bluetooth\bsp_bt.h" open="1" top="0" tabpos="41" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="1891" topLine="55" />
+			<Cursor1 position="0" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="plugin\multi_lang.c" open="0" top="0" tabpos="100" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\include\macro.h" open="1" top="0" tabpos="49" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="428" topLine="0" />
+			<Cursor1 position="1167" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\libs\bt8930\api_uart.h" open="0" top="0" tabpos="79" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\bluetooth\hlw_bt_handle.h" open="1" top="0" tabpos="38" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="708" topLine="6" />
+			<Cursor1 position="816" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\bsp\bsp_uart.h" open="0" top="0" tabpos="78" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="ram.ld" open="0" top="0" tabpos="92" split="0" active="1" splitpos="0" zoom_1="1" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="0" topLine="0" />
+			<Cursor1 position="26060" topLine="947" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\app\ab_mate\ab_mate_tws.c" open="0" top="0" tabpos="41" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="plugin\eq_table.c" open="0" top="0" tabpos="99" split="0" active="1" splitpos="0" zoom_1="1" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="134" topLine="0" />
+			<Cursor1 position="1375" topLine="6" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\app\ab_mate\ab_mate_profile.c" open="0" top="0" tabpos="38" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="port\port_key.c" open="0" top="0" tabpos="9" split="0" active="1" splitpos="0" zoom_1="1" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="54" topLine="0" />
+			<Cursor1 position="10032" topLine="258" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\app\ab_mate\ab_mate_timer.h" open="0" top="0" tabpos="40" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\test\onemore_hq51_test.h" open="0" top="0" tabpos="59" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="56" topLine="0" />
+			<Cursor1 position="464" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\audio\bsp_eq.h" open="0" top="0" tabpos="24" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="message\msg_usbdev.c" open="1" top="0" tabpos="21" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="825" topLine="1" />
+			<Cursor1 position="119" topLine="4" />
 		</Cursor>
 	</File>
-	<File name="config.c" open="0" top="0" tabpos="73" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\bluetooth\app\ab_mate\ab_mate_app.h" open="0" top="0" tabpos="36" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="2207" topLine="66" />
+			<Cursor1 position="52" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\music\bsp_piano.c" open="0" top="0" tabpos="95" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\system\system.c" open="1" top="0" tabpos="11" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="553" topLine="0" />
+			<Cursor1 position="21131" topLine="756" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\audio\bsp_anc_alg.c" open="0" top="0" tabpos="15" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\3rd-party\sensor\sc7a20.c" open="1" top="0" tabpos="43" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="115079" topLine="3130" />
+			<Cursor1 position="4351" topLine="152" />
 		</Cursor>
 	</File>
-	<File name="config.h" open="1" top="0" tabpos="7" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\modules\bluetooth\app\app_onemore\onemore_app.c" open="1" top="0" tabpos="28" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="13327" topLine="133" />
+			<Cursor1 position="13190" topLine="431" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\gui\led\led.h" open="0" top="0" tabpos="17" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\functions\func_bt.h" open="1" top="0" tabpos="17" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="1778" topLine="36" />
+			<Cursor1 position="305" topLine="1" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\bt\id3_tag.c" open="0" top="0" tabpos="44" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\functions\func_lowpwr.c" open="1" top="0" tabpos="20" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="1877" topLine="29" />
+			<Cursor1 position="21218" topLine="750" />
 		</Cursor>
 	</File>
-	<File name="port\port_led.c" open="0" top="0" tabpos="11" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\functions\func_lowpwr.h" open="0" top="0" tabpos="83" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="5317" topLine="79" />
+			<Cursor1 position="634" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\ble\priv_ble.c" open="0" top="0" tabpos="43" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\audio\bsp_anc_alg.c" open="0" top="0" tabpos="15" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="2046" topLine="34" />
+			<Cursor1 position="115079" topLine="3130" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\hlw_bt_handle.c" open="1" top="0" tabpos="6" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\modules\bluetooth\app\tuya\port\tuya_ble_app.h" open="0" top="0" tabpos="31" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="4634" topLine="163" />
+			<Cursor1 position="9699" topLine="224" />
 		</Cursor>
 	</File>
-	<File name="..\..\bsp\bsp_uart.c" open="0" top="0" tabpos="63" split="0" active="1" splitpos="0" zoom_1="4" zoom_2="0">
+	<File name="..\..\modules\audio\bsp_eq.h" open="0" top="0" tabpos="24" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="2442" topLine="81" />
+			<Cursor1 position="825" topLine="1" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\app\ab_mate\ab_mate_app.h" open="0" top="0" tabpos="36" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\bluetooth\tws\tws_res_tbl.c" open="1" top="0" tabpos="14" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="52" topLine="0" />
+			<Cursor1 position="6047" topLine="208" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\app\app_interface.c" open="0" top="0" tabpos="65" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\modules\bluetooth\app\tuya\port\tuya_ble_app.c" open="0" top="0" tabpos="32" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="2425" topLine="116" />
+			<Cursor1 position="16745" topLine="555" />
 		</Cursor>
 	</File>
-	<File name="..\..\functions\func_lowpwr.h" open="0" top="0" tabpos="83" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\bluetooth\tws\tws_res_tbl.h" open="0" top="0" tabpos="52" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="634" topLine="0" />
+			<Cursor1 position="1181" topLine="9" />
 		</Cursor>
 	</File>
-	<File name="..\..\functions\sfunc_bt_ring.c" open="0" top="0" tabpos="84" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="plugin\multi_lang.c" open="0" top="0" tabpos="100" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="6264" topLine="230" />
+			<Cursor1 position="428" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\audio\bsp_effect.c" open="1" top="0" tabpos="30" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
+	<File name="..\..\modules\gui\led\led.c" open="1" top="0" tabpos="9" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="10481" topLine="296" />
+			<Cursor1 position="5077" topLine="213" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\audio\bsp_eq.c" open="1" top="0" tabpos="33" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\system\param.h" open="0" top="0" tabpos="29" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="29512" topLine="882" />
+			<Cursor1 position="4163" topLine="50" />
 		</Cursor>
 	</File>
-	<File name="plugin\bt_call.c" open="1" top="0" tabpos="45" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\bluetooth\app\ab_mate\ab_mate_gfps_profile.c" open="0" top="0" tabpos="37" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="2919" topLine="85" />
+			<Cursor1 position="54" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\key\key_scan.c" open="0" top="0" tabpos="7" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\libs\bt8930\api_sdadc.h" open="1" top="0" tabpos="42" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="3952" topLine="196" />
+			<Cursor1 position="128" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="main.c" open="1" top="0" tabpos="10" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\functions\func_charge.c" open="1" top="0" tabpos="4" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="638" topLine="0" />
+			<Cursor1 position="2383" topLine="102" />
 		</Cursor>
 	</File>
-	<File name="res.h" open="0" top="0" tabpos="27" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\bluetooth\bsp_bt.c" open="1" top="0" tabpos="25" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="22153" topLine="418" />
+			<Cursor1 position="11182" topLine="359" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\gfps\gfps.c" open="0" top="0" tabpos="45" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\include\config_define.h" open="0" top="0" tabpos="20" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="754" topLine="0" />
+			<Cursor1 position="4661" topLine="45" />
 		</Cursor>
 	</File>
-	<File name="port\port_key.c" open="0" top="0" tabpos="9" split="0" active="1" splitpos="0" zoom_1="1" zoom_2="0">
+	<File name="..\..\modules\bluetooth\call\bt_sco.c" open="1" top="0" tabpos="47" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="10032" topLine="258" />
+			<Cursor1 position="7309" topLine="228" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\tws\tws_res_tbl.c" open="1" top="0" tabpos="14" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\bsp\bsp_iis.c" open="0" top="0" tabpos="20" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="6047" topLine="208" />
+			<Cursor1 position="19319" topLine="491" />
 		</Cursor>
 	</File>
-	<File name="plugin\multi_lang.h" open="0" top="0" tabpos="5" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\bsp\bsp_opus.c" open="0" top="0" tabpos="16" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="2380" topLine="42" />
+			<Cursor1 position="6129" topLine="203" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\app\tuya\port\tuya_ble_app.c" open="0" top="0" tabpos="32" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="message\msg_aux.c" open="0" top="0" tabpos="28" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="16745" topLine="555" />
+			<Cursor1 position="393" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\charge\charge.c" open="1" top="0" tabpos="13" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\modules\bluetooth\app\app.h" open="1" top="0" tabpos="36" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="4564" topLine="175" />
+			<Cursor1 position="5715" topLine="76" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\app\app.h" open="1" top="0" tabpos="36" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="config.h" open="1" top="0" tabpos="7" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="5715" topLine="76" />
+			<Cursor1 position="14437" topLine="178" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\app\ab_mate\ab_mate_app.c" open="1" top="0" tabpos="40" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\libs\bt8930\api_sys.h" open="0" top="0" tabpos="94" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="45202" topLine="1398" />
+			<Cursor1 position="786" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\functions\func_lowpwr.c" open="1" top="0" tabpos="20" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
+	<File name="..\..\system\param.c" open="0" top="0" tabpos="24" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="21218" topLine="750" />
+			<Cursor1 position="1192" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\audio\bsp_dac.c" open="1" top="0" tabpos="19" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\libs\bt8930\strong_bt.c" open="0" top="0" tabpos="17" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="3153" topLine="113" />
+			<Cursor1 position="2985" topLine="57" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\test\onemore_hq51_test.c" open="1" top="0" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\gui\led\led.h" open="0" top="0" tabpos="17" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="7445" topLine="179" />
+			<Cursor1 position="1778" topLine="36" />
 		</Cursor>
 	</File>
-	<File name="..\..\bsp\bsp_opus.c" open="0" top="0" tabpos="16" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\functions\func_bt.c" open="1" top="0" tabpos="16" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="6129" topLine="203" />
+			<Cursor1 position="13991" topLine="542" />
 		</Cursor>
 	</File>
-	<File name="..\..\system\vbat.c" open="1" top="0" tabpos="2" split="0" active="1" splitpos="0" zoom_1="-1" zoom_2="0">
+	<File name="..\..\modules\bluetooth\bt\bt.c" open="1" top="0" tabpos="37" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="1246" topLine="40" />
+			<Cursor1 position="1107" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\bt\hfhs.c" open="0" top="0" tabpos="22" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\functions\func_usbdev.h" open="0" top="0" tabpos="86" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="1455" topLine="49" />
+			<Cursor1 position="649" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="ram.ld" open="0" top="0" tabpos="92" split="0" active="1" splitpos="0" zoom_1="1" zoom_2="0">
+	<File name="..\..\include\config_extra.h" open="0" top="0" tabpos="33" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="26060" topLine="947" />
+			<Cursor1 position="23965" topLine="796" />
 		</Cursor>
 	</File>
-	<File name="..\..\libs\bt8930\api_eq.h" open="0" top="0" tabpos="98" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\modules\bluetooth\gfps\gfps.c" open="0" top="0" tabpos="45" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="390" topLine="0" />
+			<Cursor1 position="754" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\tws\tws_res.c" open="1" top="0" tabpos="32" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\functions\func.c" open="1" top="0" tabpos="15" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="631" topLine="39" />
+			<Cursor1 position="7043" topLine="299" />
 		</Cursor>
 	</File>
-	<File name="xcfg.h" open="1" top="0" tabpos="12" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="main.c" open="1" top="0" tabpos="10" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="6007" topLine="22" />
+			<Cursor1 position="638" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\functions\func_bt.h" open="1" top="0" tabpos="17" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="config.c" open="0" top="0" tabpos="73" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="305" topLine="1" />
+			<Cursor1 position="2207" topLine="66" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\app\app_onemore\onemore_timer.c" open="0" top="0" tabpos="23" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\modules\bluetooth\app\ab_mate\ab_mate_timer.c" open="0" top="0" tabpos="39" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="561" topLine="19" />
+			<Cursor1 position="52" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\functions\func_charge.c" open="1" top="0" tabpos="4" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\modules\bluetooth\app\app_onemore\onemore_timer.c" open="0" top="0" tabpos="23" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="2383" topLine="102" />
+			<Cursor1 position="561" topLine="19" />
 		</Cursor>
 	</File>
-	<File name="..\..\libs\bt8930\api_sys.h" open="0" top="0" tabpos="94" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\bluetooth\ble\priv_ble.c" open="0" top="0" tabpos="43" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="786" topLine="0" />
+			<Cursor1 position="2046" topLine="34" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\app\app_fota\app_fota.c" open="0" top="0" tabpos="90" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
+	<File name="..\..\libs\bt8930\api_dac.h" open="1" top="0" tabpos="48" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="7163" topLine="270" />
+			<Cursor1 position="1654" topLine="15" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\test\onemore_hq51_test.h" open="0" top="0" tabpos="59" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\functions\func_bt_dut.c" open="1" top="0" tabpos="51" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="464" topLine="0" />
+			<Cursor1 position="4023" topLine="121" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\audio\bsp_effect.h" open="1" top="0" tabpos="31" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\audio\bsp_anc.c" open="1" top="0" tabpos="24" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="1237" topLine="0" />
+			<Cursor1 position="16325" topLine="497" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\test\enc_test.c" open="0" top="0" tabpos="60" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="plugin\multi_lang.h" open="0" top="0" tabpos="5" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="229" topLine="9" />
+			<Cursor1 position="2380" topLine="42" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\audio\bsp_audio.c" open="1" top="0" tabpos="34" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\modules\bluetooth\hlw_bt_handle.c" open="1" top="1" tabpos="6" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="11618" topLine="287" />
+			<Cursor1 position="4179" topLine="150" />
 		</Cursor>
 	</File>
-	<File name="plugin\eq_table.c" open="0" top="0" tabpos="99" split="0" active="1" splitpos="0" zoom_1="1" zoom_2="0">
+	<File name="..\..\bsp\bsp_uart.c" open="0" top="0" tabpos="63" split="0" active="1" splitpos="0" zoom_1="4" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="1375" topLine="6" />
+			<Cursor1 position="2442" topLine="81" />
 		</Cursor>
 	</File>
-	<File name="..\..\system\system.h" open="0" top="0" tabpos="34" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\test\onemore_hq51_test.c" open="1" top="0" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="2733" topLine="57" />
+			<Cursor1 position="7445" topLine="179" />
 		</Cursor>
 	</File>
-	<File name="..\..\system\device.c" open="1" top="0" tabpos="35" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="plugin\bt_call.h" open="1" top="0" tabpos="46" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="3474" topLine="107" />
+			<Cursor1 position="2325" topLine="10" />
 		</Cursor>
 	</File>
-	<File name="..\..\libs\bt8930\api_dac.h" open="1" top="0" tabpos="48" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\music\bsp_piano.c" open="0" top="0" tabpos="95" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="1654" topLine="15" />
+			<Cursor1 position="553" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\libs\bt8930\api_nr.h" open="1" top="0" tabpos="44" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\bluetooth\app\ab_mate\ab_mate_app.c" open="1" top="0" tabpos="40" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="16070" topLine="429" />
+			<Cursor1 position="45202" topLine="1398" />
 		</Cursor>
 	</File>
-	<File name="..\..\functions\func_bt.c" open="1" top="0" tabpos="16" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="Output\bin\xcfg.xm" open="0" top="0" tabpos="76" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="2473" topLine="94" />
+			<Cursor1 position="36743" topLine="256" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\bt\spp.c" open="1" top="0" tabpos="50" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
+	<File name="..\..\modules\bluetooth\app\ab_mate\ab_mate_tws.c" open="0" top="0" tabpos="41" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="799" topLine="0" />
+			<Cursor1 position="134" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\functions\func_usbdev.h" open="0" top="0" tabpos="86" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\bluetooth\app\app_onemore\onemore_profile.c" open="0" top="0" tabpos="4" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="649" topLine="0" />
+			<Cursor1 position="80" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\app\ab_mate\ab_mate_gfps_profile.c" open="0" top="0" tabpos="37" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\key\key_scan.h" open="1" top="0" tabpos="22" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="54" topLine="0" />
+			<Cursor1 position="1288" topLine="7" />
 		</Cursor>
 	</File>
-	<File name="..\..\functions\sfunc_bt_call.c" open="1" top="0" tabpos="27" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\modules\bluetooth\bt\hfhs.c" open="0" top="0" tabpos="22" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="8012" topLine="304" />
+			<Cursor1 position="1455" topLine="49" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\audio\bsp_anc_param_table.h" open="0" top="0" tabpos="81" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\libs\bt8930\api_cm.h" open="0" top="0" tabpos="21" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="946" topLine="0" />
+			<Cursor1 position="1194" topLine="5" />
 		</Cursor>
 	</File>
-	<File name="..\..\bsp\bsp_huart.h" open="0" top="0" tabpos="77" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\functions\func_usbdev.c" open="1" top="0" tabpos="23" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="0" topLine="0" />
+			<Cursor1 position="3065" topLine="138" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\music\bsp_music.c" open="1" top="0" tabpos="26" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
+	<File name="..\..\modules\audio\bsp_anc_param_table.c" open="0" top="0" tabpos="80" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="7064" topLine="239" />
+			<Cursor1 position="2515" topLine="29" />
 		</Cursor>
 	</File>
-	<File name="plugin\bt_call.h" open="1" top="0" tabpos="46" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\libs\bt8930\api_eq.h" open="0" top="0" tabpos="98" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="2325" topLine="10" />
+			<Cursor1 position="390" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\bsp\bsp_huart.c" open="0" top="0" tabpos="30" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
+	<File name="..\..\functions\sfunc_bt_ring.c" open="0" top="0" tabpos="84" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="163" topLine="0" />
+			<Cursor1 position="6264" topLine="230" />
 		</Cursor>
 	</File>
-	<File name="Output\bin\app.xm" open="0" top="0" tabpos="75" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\audio\bsp_effect.c" open="1" top="0" tabpos="30" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="539" topLine="0" />
+			<Cursor1 position="10481" topLine="296" />
 		</Cursor>
 	</File>
-	<File name="..\..\system\param.c" open="0" top="0" tabpos="24" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\include\sfr.h" open="0" top="0" tabpos="36" split="0" active="1" splitpos="0" zoom_1="1" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="1192" topLine="0" />
+			<Cursor1 position="19865" topLine="350" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\bt\bt.c" open="1" top="0" tabpos="37" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\audio\bsp_audio.c" open="1" top="0" tabpos="34" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="1107" topLine="0" />
+			<Cursor1 position="11618" topLine="287" />
 		</Cursor>
 	</File>
-	<File name="..\..\include\sfr.h" open="0" top="0" tabpos="36" split="0" active="1" splitpos="0" zoom_1="1" zoom_2="0">
+	<File name="..\..\modules\bluetooth\bt\id3_tag.c" open="0" top="0" tabpos="44" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="19865" topLine="350" />
+			<Cursor1 position="1877" topLine="29" />
 		</Cursor>
 	</File>
-	<File name="..\..\functions\func.c" open="1" top="1" tabpos="15" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
+	<File name="..\..\bsp\bsp_huart.h" open="0" top="0" tabpos="77" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="5904" topLine="298" />
+			<Cursor1 position="0" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\include\config_define.h" open="0" top="0" tabpos="20" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\test\enc_test.c" open="0" top="0" tabpos="60" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="4661" topLine="45" />
+			<Cursor1 position="229" topLine="9" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\app\ab_mate\ab_mate_timer.c" open="0" top="0" tabpos="39" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="message\msg_bt.c" open="1" top="0" tabpos="3" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="52" topLine="0" />
+			<Cursor1 position="28334" topLine="887" />
 		</Cursor>
 	</File>
-	<File name="..\..\functions\hlw_func.c" open="1" top="0" tabpos="5" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\modules\music\bsp_music.c" open="1" top="0" tabpos="26" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="2629" topLine="51" />
+			<Cursor1 position="7064" topLine="239" />
 		</Cursor>
 	</File>
-	<File name="..\..\libs\bt8930\api_sdadc.h" open="1" top="0" tabpos="42" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\bluetooth\app\ab_mate\ab_mate_tws.h" open="0" top="0" tabpos="42" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="128" topLine="0" />
+			<Cursor1 position="52" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="Output\bin\xcfg.xm" open="0" top="0" tabpos="76" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\bluetooth\app\ab_mate\ab_mate_timer.h" open="0" top="0" tabpos="40" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="36743" topLine="256" />
+			<Cursor1 position="56" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\bsp\bsp_iis.c" open="0" top="0" tabpos="20" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\key\pwrkey.c" open="0" top="0" tabpos="8" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="19319" topLine="491" />
+			<Cursor1 position="491" topLine="33" />
 		</Cursor>
 	</File>
-	<File name="message\msg_bt.c" open="1" top="0" tabpos="3" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\modules\bluetooth\app\app_fota\app_fota.c" open="0" top="0" tabpos="90" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="28334" topLine="887" />
+			<Cursor1 position="7163" topLine="270" />
 		</Cursor>
 	</File>
-	<File name="..\..\include\macro.h" open="1" top="0" tabpos="49" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\audio\bsp_eq.c" open="1" top="0" tabpos="33" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="1167" topLine="0" />
+			<Cursor1 position="28929" topLine="882" />
 		</Cursor>
 	</File>
-	<File name="..\..\system\system.c" open="1" top="0" tabpos="11" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
+	<File name="..\..\libs\bt8930\api_device.h" open="0" top="0" tabpos="35" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="21131" topLine="756" />
+			<Cursor1 position="140" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\3rd-party\sensor\sc7a20.c" open="1" top="0" tabpos="43" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\include\clib.h" open="1" top="0" tabpos="39" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="4351" topLine="152" />
+			<Cursor1 position="195" topLine="0" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\bsp_bt.h" open="1" top="0" tabpos="41" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\bluetooth\tws\tws_res.c" open="1" top="0" tabpos="32" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="0" topLine="0" />
+			<Cursor1 position="631" topLine="39" />
 		</Cursor>
 	</File>
-	<File name="..\..\include\config_extra.h" open="0" top="0" tabpos="33" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="xcfg.h" open="1" top="0" tabpos="12" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="23965" topLine="796" />
+			<Cursor1 position="6007" topLine="22" />
 		</Cursor>
 	</File>
-	<File name="..\..\libs\bt8930\strong_bt.c" open="0" top="0" tabpos="17" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="plugin\bt_call.c" open="1" top="0" tabpos="45" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="2985" topLine="57" />
+			<Cursor1 position="2919" topLine="85" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\tws\tws_res_tbl.h" open="0" top="0" tabpos="52" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="..\..\modules\bluetooth\app\app_interface.c" open="0" top="0" tabpos="65" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="1181" topLine="9" />
+			<Cursor1 position="2425" topLine="116" />
 		</Cursor>
 	</File>
-	<File name="..\..\modules\bluetooth\app\app_onemore\onemore_app.c" open="1" top="0" tabpos="28" split="0" active="1" splitpos="0" zoom_1="3" zoom_2="0">
+	<File name="..\..\modules\key\key_scan.c" open="0" top="0" tabpos="7" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="13190" topLine="431" />
+			<Cursor1 position="3952" topLine="196" />
 		</Cursor>
 	</File>
-	<File name="..\..\include\clib.h" open="1" top="0" tabpos="39" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+	<File name="Output\bin\app.xm" open="0" top="0" tabpos="75" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="195" topLine="0" />
+			<Cursor1 position="539" topLine="0" />
 		</Cursor>
 	</File>
 	<File name="..\..\libs\bt8930\strong_symbol.c" open="0" top="0" tabpos="35" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
@@ -562,9 +562,9 @@
 			<Cursor1 position="6832" topLine="226" />
 		</Cursor>
 	</File>
-	<File name="..\..\functions\func_usbdev.c" open="1" top="0" tabpos="23" split="0" active="1" splitpos="0" zoom_1="2" zoom_2="0">
+	<File name="..\..\modules\bluetooth\app\ab_mate\ab_mate_profile.c" open="0" top="0" tabpos="38" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
 		<Cursor>
-			<Cursor1 position="3065" topLine="138" />
+			<Cursor1 position="54" topLine="0" />
 		</Cursor>
 	</File>
 </CodeBlocks_layout_file>

+ 4 - 4
sdk_bt893x_v013_s8759_20241213/app/projects/earphone/config.h

@@ -34,7 +34,7 @@
 #define PWRKEY_2_HW_PWRON               0                       //用PWRKEY模拟硬开关
 #define USB_SD_UPDATE_EN                0                       //是否支持UDISK/SD的离线升级
 #define GUI_SELECT                      GUI_NO                  //GUI Display Select
-#define UART0_PRINTF_SEL                PRINTF_PA7 //PRINTF_PB3   //PRINTF_PA7 //PRINTF_NONE //选择UART打印信息输出IO,或关闭打印信息输出
+#define UART0_PRINTF_SEL                PRINTF_NONE //PRINTF_PB3   //PRINTF_PA7 //PRINTF_NONE //选择UART打印信息输出IO,或关闭打印信息输出
 #define SYS_PARAM_RTCRAM                0                       //是否系统参数保存到RTCRAM
 #define PWRON_ENTER_BTMODE_EN           0                       //是否上电默认进蓝牙模式
 #define SLEEP_DAC_OFF_EN                (is_sleep_dac_off_enable()) //sfunc_sleep是否关闭DAC, 复用MICL检测方案不能关DAC。
@@ -590,10 +590,10 @@
 /*****************************************************************************
  * Module    :  产测功能选择
  *****************************************************************************/
-#define IODM_TEST_EN                    0//0               //是否打开小牛测控功能  如果要开启uart调试anc就要关闭小牛
+#define IODM_TEST_EN                    1//0               //是否打开小牛测控功能  如果要开启uart调试anc就要关闭小牛
 #define QTEST_EN                        0               //是否打开测试盒快测功能,默认VUSB 通讯测试
 #define QTEST_IS_ENABLE()               xcfg_cb.qtest_en    //setting中是否打开了快测功能
-#define TEST_INTF_SEL                   INTF_UART1 //INTF_UART1  //INTF_HUART    //产测通信接口选择
+#define TEST_INTF_SEL                   INTF_HUART //INTF_UART1  //INTF_HUART    //产测通信接口选择
 
 
 /*****************************************************************************
@@ -704,7 +704,7 @@
 #define USER_CHARGE_ANC_OFF             1
 
 
-#define SW_VERSION		"V1.0.6"		//只能使用数字0-9,ota需要转码
+#define SW_VERSION		"V1.0.7"		//只能使用数字0-9,ota需要转码
 #define HW_VERSION		"V0.0.1"		//只能使用数字0-9,ota需要转码
 #include "config_extra.h"
 

+ 10 - 0
安声HQ32修改记录.txt

@@ -105,3 +105,13 @@ BT8931H_AnSheng_HQ32(1MORE HQ32)_CHC_EQ_KG_V1.0.5_20250410(00003236_120DBA21).pr
 8:解决一拖二时,一个手机通话,断连后,再次连接,耳机没进入通话的问题
 9:更新anc参数
 10:版本升级为V1.0.6
+
+
+日期:20250417
+软件:
+BT8931H_AnSheng_HQ32(1MORE HQ32)_CHC_EQ_KG_V1.0.7_20250424(0000A952_8969099C).prd在
+BT8931H_AnSheng_HQ32(1MORE HQ32)_CHC_EQ_KG_V1.0.6_20250417(00004591_65AA29DE).prd的基础上修改了以下内容:
+1:解决音量调节的问题
+2:解决单个连接,回连失败不进入配对的问题
+3:解决一拖二通话出现断连的问题
+4:版本升级为V1.0.7

部分文件因文件數量過多而無法顯示