Index: do.bat
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/do.bat	(revision 1492)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/do.bat	(working copy)
@@ -20,6 +20,10 @@
 @rem set device_option=flippen
 @echo off
 
+set now_path=%~dp0
+set util_path=%now_path%util
+set/p mode=Please press mode SA or SB:
+
 setlocal enabledelayedexpansion
 for %%f in (program\ble_protocol_stack\*.prog) do @set progs=!progs! %%f
 for %%f in (program\g24_protocol_stack\*.prog) do @set progs=!progs! %%f
@@ -74,9 +78,18 @@
 cd output
 osiuasm bt_program23 -O-W
 
-geneep -n 
-::geneep -n -k key.dat 
+if /I "%mode%" equ "SA" (goto SAmode)
+if /I "%mode%" equ "SB" (goto SBmode)
+
+:SAmode
+%util_path%/geneep  -n
+goto contin
+
+:SBmode
+%util_path%/geneep  -n -s
+goto contin
 
+:contin
 echo create auth rom
 perl ../util/mergepatch.pl mouse_ble_att_list usb_kbdata_vendor_define usb_kbdata usb_msdata usb_devicedata usb_confdata ble_shutter_gatt_list ble_shutter_key_value_list ble_car_att_list sha256 
 perl ../util/romcrc.pl romcode.rom
@@ -98,7 +111,4 @@
 cd ..
 call set_chip_type_flag.bat 
 
-:end
-
-
-
+:end
\ No newline at end of file
Index: format/app.format
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/format/app.format	(revision 1492)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/format/app.format	(working copy)
@@ -65,10 +65,19 @@
 
 
 //adc
+0 mem_reference_inter1p8v_2v_adc_io_data
+0 mem_inter1v_adc_ft_data
 2 mem_3v_adc_io_data
+0 mem_reference_inter1p8v_2p6v_adc_vdcdc_data
+0 mem_inter1p2v_adc_ft_data
 2 mem_2v_adc_hvin_data
+0 mem_reference_inter1p8v_1v_adc_io_data
+0 mem_io1v_adc_ft_data
 2 mem_1v_adc_io_data
+0 mem_reference_inter1p8v_4p6v_adc_vdcdc_data
+0 mem_io2v_adc_ft_data
 2 mem_3v_adc_hvin_data
+0 mem_adc_ratio
 2 mem_reference_voltage
 1 mem_adc_config_flag
 1 mem_adc_channel
@@ -209,6 +218,7 @@
 7 OTP_OFFSET_XRAM_BISTFIX	//2 byte
 9 OTP_OFFSET_PATCH_BISTFIX	//2 byte
 
+0xfc0 OTP_OFFSET_ADC_PARAM_L_C0
 0xfd0 OTP_OFFSET_ADC_PARAM_L
 0xff0 OTP_OFFSET_UCODE_KEY_L
 0x1000 OTP_OFFSET_H
@@ -369,3 +379,9 @@
 0x0e ADC_CH_GPIO13
 )
 
+//mem_adc_reference_mode 
+(
+1 SADC_REFERENCE_INTER3V
+2 SADC_REFERENCE_INTER1P8V_DIV2
+)
+
Index: format/app_mouse.format
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/format/app_mouse.format	(revision 1492)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/format/app_mouse.format	(working copy)
@@ -424,27 +424,19 @@
 3 mem_tx_power_factory_param_new
 18 mem_sensor_ka8g2_init_new
 
-//uart start 
-1 mem_device_uart_tx_gpio
-1 mem_device_uart_rx_gpio
-2 mem_device_uart_rx_buffer
-2 mem_device_uart_rx_buffer_end
-2 mem_device_uart_tx_buffer
-2 mem_device_uart_tx_buffer_end
-2 mem_device_uart_baud_rate
-//uart end
-
 64 mem_le_tx_buffer0_omemalloc_new
 64 mem_le_tx_buffer1_omemalloc_new
 64 mem_le_tx_buffer2_omemalloc_new
 64 mem_le_tx_buffer3_omemalloc_new
+
+1 mem_mouse_wheel_temp_gpio
+1 mem_mouse_qdec_set_flag
 )
 
 (
 0x20 MOUSE_BLE_L2CAP_TXBUFF_SIZE_NEW
 )
 
-
 xmemalloc g24_tx_hid_mouse_flippen(
 16 mem_24g_txpayload_buf
 1 mem_release_data_from_receiver_enable
Index: format/bt.format
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/format/bt.format	(revision 1492)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/format/bt.format	(working copy)
@@ -209,8 +209,18 @@
 1 mem_system_clk
 
 ifdef DEBUG_RF_INIT
-18 mem_rf_init_data
+5 mem_rf_init_data
 endif
+
+0 mem_adc_reference3v_ft_data	
+2 mem_adc_reference3v_gpio1v_ft_data	
+2 mem_adc_reference3v_gpio2v_ft_data	
+2 mem_adc_reference3v_vdcdc3p6v_ft_data	
+2 mem_adc_reference3v_vdcdc4p6v_ft_data	
+2 mem_adc_reference3v_inter1v_ft_data
+2 mem_adc_reference3v_inter1v_now_data	
+1 mem_adc_reference_mode
+
 1 mem_otp_charge_pump_x
 1 mem_otp_dpll_ibais_x
 
Index: output/eeprom.dat
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/eeprom.dat	(revision 1492)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/eeprom.dat	(working copy)
@@ -2,148 +2,164 @@
 02
 aa
 55
-56
-13
+4a
+14
 c2
 84
 00
-24
+28
 c0
 00
 02
-98
+ae
 c0
 01
 00
-4b
+55
 c0
 08
 00
-54
+5e
 c0
 08
 80
-56
+60
 c0
 0a
 01
-6f
+5f
 c0
 0a
 80
-d8
+e1
 c0
 0c
-00
-f8
+01
+01
 c0
 0c
-80
-ff
+81
+08
 c0
 0d
 00
-64
+6e
 c0
 12
 82
-1e
+30
 c0
 34
 02
-91
+a7
 c0
 34
 82
-b1
+ba
 c0
 36
 02
-5a
+70
 c0
 36
 80
-33
+3d
+c0
+37
+04
+53
 c0
 39
 84
-7e
+a8
+c0
+3a
+02
+2d
+c0
+3b
+80
+37
 c0
 3d
-04
-d0
+05
+0d
 c0
 3f
 84
-5e
+88
 c0
 40
 84
-b5
+f2
 c0
 42
 03
-9a
+a3
 c0
 42
 83
-e6
+ef
 c0
 43
-02
-06
+01
+f6
 c0
 43
 83
-c4
+cd
 c0
 44
 03
-e4
+ed
 c0
 45
 03
-ae
+b7
+c0
+45
+82
+d1
 c0
 46
 02
-ef
+f8
 c0
 46
 83
-57
+60
 c0
 47
 04
-48
-c0
-45
-82
-c8
+72
 c0
 48
 04
-aa
+e7
 c0
 4a
 84
-75
+9f
 c0
 4b
 04
-93
+d0
 c0
 62
 82
-3d
+53
 c0
-6d
-01
-40
+6a
+82
+15
 c0
-6e
+6b
+02
+0e
+c0
+6d
 01
-50
+48
 20
 20
 23
@@ -151,55 +167,55 @@
 c0
 0a
 01
-90
+80
 c0
 0d
 01
-8f
+7f
 c0
 12
 81
-bf
+af
 c0
 13
 01
-c4
+b4
 c0
 1c
 81
-d6
+c6
 c0
 1d
 01
-e0
+d0
 c0
 26
 01
-da
+cc
 c0
 26
 81
-de
+ca
 c0
 48
 02
-40
+56
 c0
 4b
 04
-69
+93
 c0
 4d
 00
-e6
+ef
 c0
 4e
 80
-ed
+f6
 c0
 4f
 82
-62
+78
 c1
 7f
 80
@@ -208,6 +224,30 @@
 20
 23
 5a
+20
+40
+6f
+82
+20
+40
+6f
+b0
+1f
+e6
+fc
+0a
+20
+40
+7d
+5f
+67
+e1
+46
+33
+20
+20
+55
+53
 6f
 e0
 c6
@@ -339,7 +379,7 @@
 20
 20
 00
-4b
+55
 70
 89
 00
@@ -447,7 +487,7 @@
 20
 40
 00
-ac
+b5
 20
 40
 70
@@ -479,7 +519,7 @@
 c0
 08
 00
-a1
+aa
 6f
 e0
 c4
@@ -523,7 +563,7 @@
 20
 40
 00
-93
+9c
 70
 80
 43
@@ -547,28 +587,24 @@
 20
 40
 01
-12
+1b
 20
 40
 01
-3d
+46
 20
 40
 00
-8d
+96
 70
 41
 48
 0c
 20
-40
+20
 6f
 4e
 20
-20
-01
-3f
-20
 75
 80
 00
@@ -599,7 +635,7 @@
 c0
 0c
 00
-99
+a2
 6f
 e0
 c4
@@ -691,11 +727,11 @@
 20
 20
 00
-7f
+89
 20
 35
 80
-d4
+dd
 6f
 e2
 02
@@ -867,7 +903,7 @@
 20
 20
 00
-be
+c7
 20
 40
 68
@@ -935,7 +971,7 @@
 20
 40
 00
-ea
+f3
 20
 20
 60
@@ -967,7 +1003,7 @@
 24
 21
 00
-f2
+fb
 20
 20
 36
@@ -991,7 +1027,7 @@
 20
 40
 02
-87
+9d
 20
 20
 36
@@ -1035,15 +1071,15 @@
 c0
 05
 01
-05
+0e
 c0
 4f
 01
-0e
+17
 c0
 55
 01
-0a
+13
 20
 20
 22
@@ -1151,7 +1187,7 @@
 20
 40
 01
-2f
+38
 2a
 2f
 fe
@@ -1183,7 +1219,7 @@
 20
 40
 01
-2f
+38
 d8
 a0
 8a
@@ -1211,7 +1247,7 @@
 20
 21
 01
-24
+2d
 20
 20
 21
@@ -1281,10 +1317,6 @@
 22
 72
 20
-60
-00
-00
-20
 75
 80
 00
@@ -1315,7 +1347,7 @@
 20
 40
 01
-68
+58
 70
 8a
 08
@@ -1348,134 +1380,38 @@
 60
 00
 00
-20
-40
-01
-5e
+70
+80
+cc
+03
 6f
 f0
-8a
-09
-79
-3f
-fe
-07
-67
-f0
-8a
-09
+81
+29
+c3
+02
+81
+59
+68
+59
+01
+64
+60
+49
+44
+0a
+70
+80
+cc
+00
+20
+60
+00
+00
 70
 8a
-07
-77
-70
-8a
-08
-c1
-70
-8a
-0b
-01
-20
-40
-6f
-90
-6f
-e0
-c4
-09
-67
-f0
-80
-cd
-20
-00
-0b
-b8
-20
-40
-01
-68
-70
-80
-cd
-00
-20
-20
-6f
-a1
-6f
-f0
-80
-cc
-79
-20
-7e
-01
-67
-f0
-80
-cc
-6a
-40
-c4
-19
-6f
-e0
-c4
-33
-67
-e0
-c4
-19
-df
-20
-00
-08
-20
-40
-6f
-67
-62
-40
-c4
-19
-20
-60
-00
-00
-70
-80
-cc
-03
-6f
-f0
-81
-29
-c3
-02
-81
-69
-68
-59
-01
-64
-60
-49
-44
-0a
-70
-80
-cc
-00
-20
-60
-00
-00
-70
-8a
-82
-11
+82
+11
 70
 8a
 8d
@@ -1491,7 +1427,7 @@
 c0
 08
 01
-88
+78
 58
 00
 57
@@ -1535,7 +1471,7 @@
 c0
 08
 01
-85
+75
 58
 00
 2b
@@ -1571,7 +1507,7 @@
 20
 20
 01
-81
+71
 58
 00
 83
@@ -1583,11 +1519,11 @@
 20
 20
 01
-76
+66
 6f
 e0
-cc
-02
+cb
+f8
 da
 60
 01
@@ -1603,39 +1539,39 @@
 20
 20
 01
-af
+9f
 20
 40
 01
-92
+82
 20
 20
 25
 63
 6f
 e0
-cc
-03
+cb
+f9
 20
 7a
 00
 00
 6f
 e0
-cc
-04
+cb
+fa
 24
 7a
 00
 00
 68
 48
-cc
-03
+cb
+f9
 6f
 e0
-cc
-02
+cb
+f8
 98
 46
 7c
@@ -1643,7 +1579,7 @@
 24
 41
 01
-8b
+7b
 98
 46
 7e
@@ -1655,11 +1591,11 @@
 20
 21
 01
-a4
+94
 6f
 e0
-cc
-05
+cb
+fb
 1f
 e6
 7c
@@ -1667,18 +1603,18 @@
 24
 41
 01
-a2
+92
 70
-4c
-04
+4b
+fa
 01
 20
 60
 00
 00
 70
-4c
-06
+4b
+fc
 01
 20
 20
@@ -1710,8 +1646,8 @@
 00
 68
 48
-cc
-05
+cb
+fb
 79
 20
 fe
@@ -1722,8 +1658,8 @@
 00
 60
 48
-cc
-05
+cb
+fb
 20
 60
 00
@@ -1743,19 +1679,19 @@
 24
 36
 81
-b6
+a6
 6f
 e0
-cc
-02
+cb
+f8
 1f
 e0
 fe
 01
 67
 e0
-cc
-02
+cb
+f8
 6f
 e0
 81
@@ -1900,6 +1836,14 @@
 20
 28
 e1
+79
+3f
+80
+30
+20
+20
+2a
+f6
 20
 40
 21
@@ -1916,14 +1860,6 @@
 20
 2a
 e3
-79
-3f
-80
-30
-20
-20
-2a
-f6
 ef
 e1
 00
@@ -1931,7 +1867,7 @@
 c0
 02
 01
-e3
+d3
 20
 20
 28
@@ -1947,11 +1883,11 @@
 c0
 05
 01
-e8
+d8
 c0
 09
 01
-f7
+e7
 20
 20
 2b
@@ -1979,7 +1915,7 @@
 c2
 81
 81
-f2
+e2
 6f
 e1
 43
@@ -2007,11 +1943,11 @@
 24
 22
 81
-ee
+de
 24
 34
 01
-ee
+de
 20
 20
 2d
@@ -2091,7 +2027,7 @@
 c0
 7f
 82
-11
+01
 6f
 e0
 c8
@@ -2106,16 +2042,16 @@
 00
 6f
 e0
-cc
-04
+cb
+fa
 20
 7a
 00
 00
 6f
 e0
-cc
-06
+cb
+fc
 24
 7a
 00
@@ -2167,11 +2103,147 @@
 20
 40
 04
-9f
+dc
+20
+20
+5b
+37
+18
+46
+7c
+ff
+20
+62
+80
+00
+d9
+00
+00
+04
+28
+4f
+fe
+07
+20
+20
+ee
+bd
+d9
+00
+00
+03
+20
+20
+6e
+bd
+18
+46
+7c
+ff
+20
+62
+80
+00
+60
+48
+cb
+1d
+20
+40
+6e
+e6
+20
+20
+82
+1e
+68
+48
+cb
+1d
+20
+40
+6f
+0f
+68
+48
+cb
+1d
+20
+20
+02
+25
+70
+4b
+1e
+01
+68
+48
+cb
+1d
+20
+40
+6f
+0f
+68
+48
+cb
+1d
+20
+20
+02
+23
+d9
+00
+00
+06
+20
+20
+6e
+bd
+d9
+00
+00
+03
+20
+20
+6e
+bd
+58
+00
+00
+10
+67
+f0
+81
+41
+37
+d9
+82
+00
+20
+60
+00
+00
+58
+00
+00
+80
+20
+20
+02
+28
+20
+40
+04
+99
+70
+4b
+1e
+00
 20
 20
-5b
-37
+55
+0d
 6f
 e1
 43
@@ -2195,11 +2267,27 @@
 20
 40
 02
-25
+3b
+20
+40
+02
+38
 20
 20
 24
 25
+6f
+e0
+cb
+1e
+20
+3a
+02
+27
+20
+20
+02
+2b
 60
 04
 40
@@ -2267,7 +2355,7 @@
 20
 22
 82
-38
+4e
 e7
 e0
 80
@@ -2287,7 +2375,7 @@
 c2
 00
 02
-32
+48
 1a
 42
 04
@@ -2323,7 +2411,7 @@
 20
 3a
 02
-48
+5e
 6f
 e1
 45
@@ -2367,7 +2455,7 @@
 20
 3a
 02
-57
+6d
 6f
 e2
 45
@@ -2383,7 +2471,7 @@
 20
 22
 82
-54
+6a
 20
 20
 35
@@ -2411,7 +2499,7 @@
 20
 20
 02
-4f
+65
 20
 40
 54
@@ -2419,7 +2507,7 @@
 20
 40
 02
-5d
+73
 20
 20
 54
@@ -2427,7 +2515,7 @@
 58
 00
 4a
-29
+1d
 67
 e1
 43
@@ -2479,7 +2567,7 @@
 c5
 13
 02
-6c
+82
 6f
 e0
 c6
@@ -2491,7 +2579,7 @@
 24
 21
 02
-86
+9c
 6f
 e0
 c6
@@ -2503,7 +2591,7 @@
 24
 21
 02
-74
+8a
 6f
 e0
 c6
@@ -2511,7 +2599,7 @@
 c0
 00
 02
-87
+9d
 20
 60
 00
@@ -2547,7 +2635,7 @@
 c5
 13
 02
-7d
+93
 6f
 e0
 c6
@@ -2579,7 +2667,7 @@
 c0
 01
 02
-8f
+a5
 c0
 00
 b7
@@ -2599,7 +2687,7 @@
 c0
 01
 82
-8d
+a3
 1f
 e0
 fe
@@ -2615,7 +2703,7 @@
 c0
 01
 02
-8f
+a5
 70
 41
 41
@@ -2642,8 +2730,8 @@
 f8
 58
 00
-02
-9b
+62
+2b
 67
 e1
 45
@@ -2651,7 +2739,7 @@
 58
 00
 02
-b0
+b9
 67
 e1
 43
@@ -2660,78 +2748,34 @@
 20
 53
 f3
+24
+35
+a0
+02
+37
+d9
+82
+00
+37
+d9
+82
+00
 20
 80
 00
 00
 20
 55
-e0
-04
+82
+b4
 20
 20
 20
 03
 20
 40
-36
-b4
-24
-74
-00
-00
-70
-47
-7c
-01
-20
-40
-36
-be
-70
-47
-72
-00
-20
-40
-62
-aa
-6f
-e0
-c7
-3f
-24
-5a
-54
-dc
-20
-40
 02
-a6
-6f
-e2
-45
-af
-20
-20
-36
-22
-6f
-e0
-c7
-3f
-24
-7a
-00
-00
-68
-48
-c6
-4a
-20
-40
-6f
-0f
+27
 68
 48
 c6
@@ -2739,15 +2783,7 @@
 20
 40
 6e
-c6
-68
-48
-c6
-4b
-20
-40
-6f
-0f
+dd
 68
 48
 c6
@@ -2755,7 +2791,7 @@
 20
 20
 6e
-c6
+dd
 20
 60
 00
@@ -2763,7 +2799,7 @@
 20
 40
 04
-42
+6c
 6f
 e4
 47
@@ -2779,7 +2815,7 @@
 c2
 8a
 02
-b7
+c0
 20
 60
 00
@@ -2787,7 +2823,7 @@
 20
 40
 02
-c2
+cb
 20
 40
 5e
@@ -2799,19 +2835,19 @@
 20
 40
 02
-d6
+df
 20
 40
 02
-bf
+c8
 20
 40
 02
-c5
+ce
 20
 40
 02
-de
+e7
 20
 20
 5d
@@ -2827,7 +2863,7 @@
 20
 40
 04
-aa
+e7
 6f
 e0
 c6
@@ -2867,7 +2903,7 @@
 20
 22
 83
-4b
+54
 60
 49
 46
@@ -2919,7 +2955,7 @@
 20
 22
 82
-d3
+dc
 1f
 e6
 7c
@@ -2927,7 +2963,7 @@
 20
 22
 82
-dc
+e5
 20
 61
 00
@@ -2967,7 +3003,7 @@
 20
 3a
 02
-ec
+f5
 67
 e1
 49
@@ -2987,7 +3023,7 @@
 24
 21
 02
-ec
+f5
 1a
 62
 24
@@ -2995,7 +3031,7 @@
 20
 20
 02
-e2
+eb
 6f
 e1
 49
@@ -3023,19 +3059,19 @@
 c2
 8a
 02
-f4
+fd
 20
 60
 00
 00
 20
 40
-02
-f7
+03
+00
 20
 40
-02
-fc
+03
+05
 20
 20
 5c
@@ -3051,11 +3087,11 @@
 c0
 00
 83
-23
+2c
 c0
 01
 03
-37
+40
 20
 60
 00
@@ -3079,7 +3115,7 @@
 20
 3a
 03
-08
+11
 67
 e0
 c9
@@ -3106,8 +3142,8 @@
 00
 20
 20
-02
-fe
+03
+07
 6f
 e0
 c9
@@ -3119,7 +3155,7 @@
 20
 3a
 03
-12
+1b
 6f
 e0
 c6
@@ -3127,7 +3163,7 @@
 20
 40
 03
-20
+29
 67
 e0
 c9
@@ -3159,7 +3195,7 @@
 20
 40
 03
-20
+29
 98
 46
 7c
@@ -3195,7 +3231,7 @@
 20
 22
 83
-0e
+17
 1a
 60
 a7
@@ -3203,7 +3239,7 @@
 20
 20
 03
-0e
+17
 c1
 80
 00
@@ -3235,7 +3271,7 @@
 20
 3a
 03
-2f
+38
 67
 e3
 49
@@ -3263,7 +3299,7 @@
 20
 20
 03
-25
+2e
 6f
 e3
 49
@@ -3315,7 +3351,7 @@
 20
 3a
 03
-43
+4c
 67
 e3
 49
@@ -3343,7 +3379,7 @@
 20
 20
 03
-39
+42
 6f
 e3
 49
@@ -3379,15 +3415,15 @@
 20
 40
 03
-84
+8d
 20
 40
 03
-9c
+a5
 20
 40
 03
-4f
+58
 20
 20
 5c
@@ -3411,7 +3447,7 @@
 c0
 03
 03
-55
+5e
 20
 60
 00
@@ -3435,7 +3471,7 @@
 c2
 8a
 03
-5b
+64
 20
 60
 00
@@ -3467,7 +3503,7 @@
 20
 3a
 03
-69
+72
 67
 e0
 c9
@@ -3495,7 +3531,7 @@
 20
 20
 03
-5f
+68
 6f
 e0
 c9
@@ -3507,7 +3543,7 @@
 20
 3a
 03
-73
+7c
 6f
 e0
 c6
@@ -3515,7 +3551,7 @@
 20
 40
 03
-81
+8a
 67
 e0
 c9
@@ -3547,7 +3583,7 @@
 20
 40
 03
-81
+8a
 98
 46
 7c
@@ -3583,7 +3619,7 @@
 20
 22
 83
-6f
+78
 1a
 60
 a7
@@ -3591,7 +3627,7 @@
 20
 20
 03
-6f
+78
 c1
 80
 00
@@ -3611,7 +3647,7 @@
 c2
 9f
 03
-8b
+94
 6f
 e0
 c6
@@ -3623,11 +3659,11 @@
 c0
 00
 83
-8b
+94
 c0
 01
 03
-92
+9b
 20
 60
 00
@@ -3695,7 +3731,7 @@
 20
 40
 03
-9c
+a5
 20
 20
 5a
@@ -3711,7 +3747,7 @@
 c2
 9f
 03
-a4
+ad
 6f
 e0
 c6
@@ -3723,11 +3759,11 @@
 c0
 00
 83
-a4
+ad
 c0
 01
 03
-a9
+b2
 20
 60
 00
@@ -3799,7 +3835,7 @@
 20
 40
 03
-b6
+bf
 20
 20
 5c
@@ -3811,11 +3847,11 @@
 c0
 00
 83
-ba
+c3
 c0
 01
 03
-bf
+c8
 20
 60
 00
@@ -3863,7 +3899,7 @@
 20
 40
 03
-da
+e3
 20
 40
 61
@@ -3935,7 +3971,7 @@
 20
 40
 03
-dd
+e6
 20
 40
 56
@@ -3967,7 +4003,7 @@
 da
 40
 03
-e0
+e9
 20
 20
 42
@@ -4002,32 +4038,32 @@
 00
 c0
 20
-03
-fb
+04
+04
 c0
 0a
 84
-00
+09
 c0
 19
 03
-f2
+fb
 c0
 1e
 04
-1e
+27
 c0
 1c
 84
-2f
+38
 c0
 1d
 04
-32
+3b
 c0
 0a
 03
-ef
+f8
 20
 20
 5a
@@ -4038,8 +4074,8 @@
 00
 67
 e2
-4c
-03
+4b
+f9
 20
 20
 5a
@@ -4051,15 +4087,15 @@
 c0
 00
 83
-f6
+ff
 70
 48
 44
 14
 20
 20
-03
-f8
+04
+01
 20
 40
 5a
@@ -4070,12 +4106,12 @@
 05
 6f
 e0
-cc
-02
+cb
+f8
 67
 e0
-cc
-03
+cb
+f9
 20
 20
 5a
@@ -4135,7 +4171,7 @@
 c2
 8d
 84
-0a
+13
 d8
 40
 00
@@ -4163,7 +4199,7 @@
 20
 20
 04
-10
+19
 20
 40
 5b
@@ -4175,7 +4211,7 @@
 c2
 83
 84
-15
+1e
 c2
 80
 42
@@ -4210,8 +4246,8 @@
 a9
 6f
 e0
-cc
-06
+cb
+fc
 24
 3a
 54
@@ -4283,7 +4319,7 @@
 20
 40
 04
-45
+6f
 20
 20
 60
@@ -4295,7 +4331,7 @@
 20
 40
 04
-45
+6f
 20
 20
 60
@@ -4307,7 +4343,7 @@
 20
 40
 04
-45
+6f
 6f
 e0
 c8
@@ -4331,7 +4367,15 @@
 c0
 02
 04
-3b
+46
+c0
+00
+e0
+5f
+c0
+01
+84
+4d
 20
 20
 60
@@ -4365,6 +4409,130 @@
 54
 a0
 6f
+e4
+47
+13
+c3
+1f
+60
+59
+c2
+89
+e0
+59
+c2
+8a
+60
+59
+c2
+89
+60
+59
+20
+20
+60
+34
+6f
+e4
+47
+13
+c2
+9f
+04
+58
+6f
+e0
+c6
+66
+c0
+00
+04
+5f
+20
+20
+54
+91
+20
+40
+54
+ac
+20
+34
+04
+5b
+20
+20
+60
+2f
+6f
+e0
+c6
+66
+c0
+00
+60
+67
+20
+40
+5a
+a8
+20
+20
+04
+4a
+6f
+e4
+47
+13
+c3
+08
+e0
+2a
+20
+40
+61
+95
+20
+40
+54
+ac
+20
+34
+60
+67
+6f
+e4
+47
+13
+c2
+98
+04
+67
+20
+20
+60
+23
+70
+46
+66
+00
+6f
+e1
+47
+21
+67
+e1
+45
+de
+70
+45
+e2
+01
+20
+20
+35
+34
+6f
 e0
 c1
 41
@@ -4399,7 +4567,7 @@
 20
 40
 04
-4c
+76
 20
 20
 5e
@@ -4427,7 +4595,7 @@
 20
 40
 04
-53
+7d
 20
 20
 56
@@ -4455,7 +4623,7 @@
 c0
 7f
 84
-5a
+84
 20
 20
 56
@@ -4475,7 +4643,7 @@
 20
 20
 04
-5e
+88
 1a
 62
 7e
@@ -4535,7 +4703,7 @@
 20
 40
 04
-6f
+99
 6f
 e1
 c6
@@ -4602,48 +4770,92 @@
 ed
 20
 20
-02
-9b
+62
+2b
+20
+40
+5a
+92
+20
+40
+04
+99
+20
+40
+56
+a9
+68
+48
+c6
+54
+20
+40
+6e
+f7
+68
+48
+c6
+54
+20
+40
+6e
+d3
+6f
+e0
+c6
+4d
+20
+40
+59
+43
+68
+48
+c6
+5a
+20
+40
+55
+ab
+d8
+40
+00
+15
 20
 40
-5a
-92
+55
+b5
 20
 40
-04
-6f
+61
+1a
 20
 40
-56
-a9
+55
+0c
+20
+40
+54
+f9
 68
 48
 c6
-54
+4a
 20
 40
-6e
-f7
+6f
+0f
 68
 48
 c6
-54
+4b
 20
 40
-6e
-d3
 6f
-e0
+0f
+68
+48
 c6
-4d
-20
-40
-59
-43
-d8
-40
-00
-15
+5b
 20
 40
 55
@@ -4651,43 +4863,75 @@
 20
 40
 04
-8b
+c0
 20
 20
 54
+e5
+6f
+e1
+c7
+3c
+67
+e1
+86
+70
 df
+20
+00
+18
+d8
+40
+00
+00
 6f
-e0
-c6
-5a
-c1
-7f
-80
+e1
+86
+70
+2f
+ef
+fe
 00
+20
+40
+84
+cd
 6f
-e0
-c6
-66
-c0
+e1
+86
+70
+1f
+e3
+7e
+00
+67
+e1
+86
+70
+18
+40
+84
+01
+c2
 00
 04
-91
-68
-48
-c6
-5a
+c4
 20
+60
+00
+00
+18
+46
+7c
+ff
 20
-55
-b5
-68
-48
-c6
-5a
+62
+80
+00
 20
 20
 6f
-0f
+0b
 c6
 93
 00
@@ -4711,7 +4955,7 @@
 24
 5a
 04
-a8
+e5
 6f
 e4
 47
@@ -4719,7 +4963,7 @@
 c3
 0b
 04
-9d
+da
 6f
 e0
 c9
@@ -4731,7 +4975,7 @@
 20
 40
 04
-9f
+dc
 20
 20
 60
@@ -4775,11 +5019,11 @@
 20
 40
 04
-6f
+99
 20
 20
 02
-2e
+44
 6f
 e4
 47
@@ -4839,7 +5083,7 @@
 c0
 2c
 04
-ba
+f7
 20
 20
 59
@@ -4855,7 +5099,7 @@
 c0
 2c
 84
-be
+fb
 20
 20
 59
@@ -4886,8 +5130,8 @@
 57
 c0
 05
-84
-c6
+85
+03
 20
 20
 59
@@ -4902,8 +5146,8 @@
 59
 c0
 7f
-84
-cc
+85
+09
 68
 48
 c6
@@ -4947,13 +5191,13 @@
 20
 40
 04
-c1
+fe
 20
 20
 56
 06
-88
-75
+db
+ef
 aa
 55
 40
@@ -4973,8 +5217,8 @@
 00
 00
 00
-33
-08
+73
+98
 84
 f2
 7d
@@ -4986,8 +5230,8 @@
 00
 20
 00
-00
-14
+60
+04
 00
 00
 00
@@ -5232,6 +5476,15 @@
 20
 aa
 55
+03
+00
+3c
+47
+00
+00
+00
+aa
+55
 02
 00
 66
@@ -5392,8 +5645,8 @@
 00
 4a
 47
-f2
-f9
+60
+ea
 00
 00
 77
@@ -5730,9 +5983,9 @@
 49
 fb
 1e
-c2
+ac
 1f
-c4
+ae
 1f
 aa
 55
@@ -5968,7 +6221,7 @@
 ff
 aa
 55
-1e
+1a
 00
 d6
 48
@@ -5984,20 +6237,16 @@
 41
 a1
 12
-a5
-84
 a7
 ff
-b5
-d0
 b6
 00
-ff
-00
-35
+b5
 c8
-25
+a5
 af
+ff
+00
 09
 00
 ff
@@ -6058,6 +6307,39 @@
 55
 01
 00
+07
+44
+01
+aa
+55
+01
+00
+09
+44
+0a
+aa
+55
+01
+00
+08
+44
+09
+aa
+55
+06
+00
+2d
+46
+a4
+01
+18
+01
+2c
+01
+aa
+55
+01
+00
 48
 41
 0c
@@ -6169,44 +6451,6 @@
 55
 01
 00
-07
-44
-01
-aa
-55
-01
-00
-09
-44
-0a
-aa
-55
-01
-00
-08
-44
-00
-aa
-55
-01
-00
-11
-44
-00
-aa
-55
-04
-00
-0d
-44
-00
-07
-ff
-07
-aa
-55
-01
-00
 38
 44
 a0
@@ -6253,254 +6497,10 @@
 aa
 aa
 55
-c3
-5e
-a6
-6e
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
+9f
+5d
+0c
+50
 ff
 ff
 ff
@@ -8188,5 +8188,5 @@
 ff
 ff
 ff
-2d
-0a
+40
+d6
Index: output/flash.dat
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/flash.dat	(revision 1492)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/flash.dat	(working copy)
@@ -2,148 +2,164 @@
 02
 aa
 55
-56
-13
+4a
+14
 c2
 84
 00
-24
+28
 c0
 00
 02
-98
+ae
 c0
 01
 00
-4b
+55
 c0
 08
 00
-54
+5e
 c0
 08
 80
-56
+60
 c0
 0a
 01
-6f
+5f
 c0
 0a
 80
-d8
+e1
 c0
 0c
-00
-f8
+01
+01
 c0
 0c
-80
-ff
+81
+08
 c0
 0d
 00
-64
+6e
 c0
 12
 82
-1e
+30
 c0
 34
 02
-91
+a7
 c0
 34
 82
-b1
+ba
 c0
 36
 02
-5a
+70
 c0
 36
 80
-33
+3d
+c0
+37
+04
+53
 c0
 39
 84
-7e
+a8
+c0
+3a
+02
+2d
+c0
+3b
+80
+37
 c0
 3d
-04
-d0
+05
+0d
 c0
 3f
 84
-5e
+88
 c0
 40
 84
-b5
+f2
 c0
 42
 03
-9a
+a3
 c0
 42
 83
-e6
+ef
 c0
 43
-02
-06
+01
+f6
 c0
 43
 83
-c4
+cd
 c0
 44
 03
-e4
+ed
 c0
 45
 03
-ae
+b7
+c0
+45
+82
+d1
 c0
 46
 02
-ef
+f8
 c0
 46
 83
-57
+60
 c0
 47
 04
-48
-c0
-45
-82
-c8
+72
 c0
 48
 04
-aa
+e7
 c0
 4a
 84
-75
+9f
 c0
 4b
 04
-93
+d0
 c0
 62
 82
-3d
+53
 c0
-6d
-01
-40
+6a
+82
+15
 c0
-6e
+6b
+02
+0e
+c0
+6d
 01
-50
+48
 20
 20
 23
@@ -151,55 +167,55 @@
 c0
 0a
 01
-90
+80
 c0
 0d
 01
-8f
+7f
 c0
 12
 81
-bf
+af
 c0
 13
 01
-c4
+b4
 c0
 1c
 81
-d6
+c6
 c0
 1d
 01
-e0
+d0
 c0
 26
 01
-da
+cc
 c0
 26
 81
-de
+ca
 c0
 48
 02
-40
+56
 c0
 4b
 04
-69
+93
 c0
 4d
 00
-e6
+ef
 c0
 4e
 80
-ed
+f6
 c0
 4f
 82
-62
+78
 c1
 7f
 80
@@ -208,6 +224,30 @@
 20
 23
 5a
+20
+40
+6f
+82
+20
+40
+6f
+b0
+1f
+e6
+fc
+0a
+20
+40
+7d
+5f
+67
+e1
+46
+33
+20
+20
+55
+53
 6f
 e0
 c6
@@ -339,7 +379,7 @@
 20
 20
 00
-4b
+55
 70
 89
 00
@@ -447,7 +487,7 @@
 20
 40
 00
-ac
+b5
 20
 40
 70
@@ -479,7 +519,7 @@
 c0
 08
 00
-a1
+aa
 6f
 e0
 c4
@@ -523,7 +563,7 @@
 20
 40
 00
-93
+9c
 70
 80
 43
@@ -547,28 +587,24 @@
 20
 40
 01
-12
+1b
 20
 40
 01
-3d
+46
 20
 40
 00
-8d
+96
 70
 41
 48
 0c
 20
-40
+20
 6f
 4e
 20
-20
-01
-3f
-20
 75
 80
 00
@@ -599,7 +635,7 @@
 c0
 0c
 00
-99
+a2
 6f
 e0
 c4
@@ -691,11 +727,11 @@
 20
 20
 00
-7f
+89
 20
 35
 80
-d4
+dd
 6f
 e2
 02
@@ -867,7 +903,7 @@
 20
 20
 00
-be
+c7
 20
 40
 68
@@ -935,7 +971,7 @@
 20
 40
 00
-ea
+f3
 20
 20
 60
@@ -967,7 +1003,7 @@
 24
 21
 00
-f2
+fb
 20
 20
 36
@@ -991,7 +1027,7 @@
 20
 40
 02
-87
+9d
 20
 20
 36
@@ -1035,15 +1071,15 @@
 c0
 05
 01
-05
+0e
 c0
 4f
 01
-0e
+17
 c0
 55
 01
-0a
+13
 20
 20
 22
@@ -1151,7 +1187,7 @@
 20
 40
 01
-2f
+38
 2a
 2f
 fe
@@ -1183,7 +1219,7 @@
 20
 40
 01
-2f
+38
 d8
 a0
 8a
@@ -1211,7 +1247,7 @@
 20
 21
 01
-24
+2d
 20
 20
 21
@@ -1281,10 +1317,6 @@
 22
 72
 20
-60
-00
-00
-20
 75
 80
 00
@@ -1315,7 +1347,7 @@
 20
 40
 01
-68
+58
 70
 8a
 08
@@ -1348,134 +1380,38 @@
 60
 00
 00
-20
-40
-01
-5e
+70
+80
+cc
+03
 6f
 f0
-8a
-09
-79
-3f
-fe
-07
-67
-f0
-8a
-09
+81
+29
+c3
+02
+81
+59
+68
+59
+01
+64
+60
+49
+44
+0a
+70
+80
+cc
+00
+20
+60
+00
+00
 70
 8a
-07
-77
-70
-8a
-08
-c1
-70
-8a
-0b
-01
-20
-40
-6f
-90
-6f
-e0
-c4
-09
-67
-f0
-80
-cd
-20
-00
-0b
-b8
-20
-40
-01
-68
-70
-80
-cd
-00
-20
-20
-6f
-a1
-6f
-f0
-80
-cc
-79
-20
-7e
-01
-67
-f0
-80
-cc
-6a
-40
-c4
-19
-6f
-e0
-c4
-33
-67
-e0
-c4
-19
-df
-20
-00
-08
-20
-40
-6f
-67
-62
-40
-c4
-19
-20
-60
-00
-00
-70
-80
-cc
-03
-6f
-f0
-81
-29
-c3
-02
-81
-69
-68
-59
-01
-64
-60
-49
-44
-0a
-70
-80
-cc
-00
-20
-60
-00
-00
-70
-8a
-82
-11
+82
+11
 70
 8a
 8d
@@ -1491,7 +1427,7 @@
 c0
 08
 01
-88
+78
 58
 00
 57
@@ -1535,7 +1471,7 @@
 c0
 08
 01
-85
+75
 58
 00
 2b
@@ -1571,7 +1507,7 @@
 20
 20
 01
-81
+71
 58
 00
 83
@@ -1583,11 +1519,11 @@
 20
 20
 01
-76
+66
 6f
 e0
-cc
-02
+cb
+f8
 da
 60
 01
@@ -1603,39 +1539,39 @@
 20
 20
 01
-af
+9f
 20
 40
 01
-92
+82
 20
 20
 25
 63
 6f
 e0
-cc
-03
+cb
+f9
 20
 7a
 00
 00
 6f
 e0
-cc
-04
+cb
+fa
 24
 7a
 00
 00
 68
 48
-cc
-03
+cb
+f9
 6f
 e0
-cc
-02
+cb
+f8
 98
 46
 7c
@@ -1643,7 +1579,7 @@
 24
 41
 01
-8b
+7b
 98
 46
 7e
@@ -1655,11 +1591,11 @@
 20
 21
 01
-a4
+94
 6f
 e0
-cc
-05
+cb
+fb
 1f
 e6
 7c
@@ -1667,18 +1603,18 @@
 24
 41
 01
-a2
+92
 70
-4c
-04
+4b
+fa
 01
 20
 60
 00
 00
 70
-4c
-06
+4b
+fc
 01
 20
 20
@@ -1710,8 +1646,8 @@
 00
 68
 48
-cc
-05
+cb
+fb
 79
 20
 fe
@@ -1722,8 +1658,8 @@
 00
 60
 48
-cc
-05
+cb
+fb
 20
 60
 00
@@ -1743,19 +1679,19 @@
 24
 36
 81
-b6
+a6
 6f
 e0
-cc
-02
+cb
+f8
 1f
 e0
 fe
 01
 67
 e0
-cc
-02
+cb
+f8
 6f
 e0
 81
@@ -1900,6 +1836,14 @@
 20
 28
 e1
+79
+3f
+80
+30
+20
+20
+2a
+f6
 20
 40
 21
@@ -1916,14 +1860,6 @@
 20
 2a
 e3
-79
-3f
-80
-30
-20
-20
-2a
-f6
 ef
 e1
 00
@@ -1931,7 +1867,7 @@
 c0
 02
 01
-e3
+d3
 20
 20
 28
@@ -1947,11 +1883,11 @@
 c0
 05
 01
-e8
+d8
 c0
 09
 01
-f7
+e7
 20
 20
 2b
@@ -1979,7 +1915,7 @@
 c2
 81
 81
-f2
+e2
 6f
 e1
 43
@@ -2007,11 +1943,11 @@
 24
 22
 81
-ee
+de
 24
 34
 01
-ee
+de
 20
 20
 2d
@@ -2091,7 +2027,7 @@
 c0
 7f
 82
-11
+01
 6f
 e0
 c8
@@ -2106,16 +2042,16 @@
 00
 6f
 e0
-cc
-04
+cb
+fa
 20
 7a
 00
 00
 6f
 e0
-cc
-06
+cb
+fc
 24
 7a
 00
@@ -2167,11 +2103,147 @@
 20
 40
 04
-9f
+dc
+20
+20
+5b
+37
+18
+46
+7c
+ff
+20
+62
+80
+00
+d9
+00
+00
+04
+28
+4f
+fe
+07
+20
+20
+ee
+bd
+d9
+00
+00
+03
+20
+20
+6e
+bd
+18
+46
+7c
+ff
+20
+62
+80
+00
+60
+48
+cb
+1d
+20
+40
+6e
+e6
+20
+20
+82
+1e
+68
+48
+cb
+1d
+20
+40
+6f
+0f
+68
+48
+cb
+1d
+20
+20
+02
+25
+70
+4b
+1e
+01
+68
+48
+cb
+1d
+20
+40
+6f
+0f
+68
+48
+cb
+1d
+20
+20
+02
+23
+d9
+00
+00
+06
+20
+20
+6e
+bd
+d9
+00
+00
+03
+20
+20
+6e
+bd
+58
+00
+00
+10
+67
+f0
+81
+41
+37
+d9
+82
+00
+20
+60
+00
+00
+58
+00
+00
+80
+20
+20
+02
+28
+20
+40
+04
+99
+70
+4b
+1e
+00
 20
 20
-5b
-37
+55
+0d
 6f
 e1
 43
@@ -2195,11 +2267,27 @@
 20
 40
 02
-25
+3b
+20
+40
+02
+38
 20
 20
 24
 25
+6f
+e0
+cb
+1e
+20
+3a
+02
+27
+20
+20
+02
+2b
 60
 04
 40
@@ -2267,7 +2355,7 @@
 20
 22
 82
-38
+4e
 e7
 e0
 80
@@ -2287,7 +2375,7 @@
 c2
 00
 02
-32
+48
 1a
 42
 04
@@ -2323,7 +2411,7 @@
 20
 3a
 02
-48
+5e
 6f
 e1
 45
@@ -2367,7 +2455,7 @@
 20
 3a
 02
-57
+6d
 6f
 e2
 45
@@ -2383,7 +2471,7 @@
 20
 22
 82
-54
+6a
 20
 20
 35
@@ -2411,7 +2499,7 @@
 20
 20
 02
-4f
+65
 20
 40
 54
@@ -2419,7 +2507,7 @@
 20
 40
 02
-5d
+73
 20
 20
 54
@@ -2427,7 +2515,7 @@
 58
 00
 4a
-29
+1d
 67
 e1
 43
@@ -2479,7 +2567,7 @@
 c5
 13
 02
-6c
+82
 6f
 e0
 c6
@@ -2491,7 +2579,7 @@
 24
 21
 02
-86
+9c
 6f
 e0
 c6
@@ -2503,7 +2591,7 @@
 24
 21
 02
-74
+8a
 6f
 e0
 c6
@@ -2511,7 +2599,7 @@
 c0
 00
 02
-87
+9d
 20
 60
 00
@@ -2547,7 +2635,7 @@
 c5
 13
 02
-7d
+93
 6f
 e0
 c6
@@ -2579,7 +2667,7 @@
 c0
 01
 02
-8f
+a5
 c0
 00
 b7
@@ -2599,7 +2687,7 @@
 c0
 01
 82
-8d
+a3
 1f
 e0
 fe
@@ -2615,7 +2703,7 @@
 c0
 01
 02
-8f
+a5
 70
 41
 41
@@ -2642,8 +2730,8 @@
 f8
 58
 00
-02
-9b
+62
+2b
 67
 e1
 45
@@ -2651,7 +2739,7 @@
 58
 00
 02
-b0
+b9
 67
 e1
 43
@@ -2660,78 +2748,34 @@
 20
 53
 f3
+24
+35
+a0
+02
+37
+d9
+82
+00
+37
+d9
+82
+00
 20
 80
 00
 00
 20
 55
-e0
-04
+82
+b4
 20
 20
 20
 03
 20
 40
-36
-b4
-24
-74
-00
-00
-70
-47
-7c
-01
-20
-40
-36
-be
-70
-47
-72
-00
-20
-40
-62
-aa
-6f
-e0
-c7
-3f
-24
-5a
-54
-dc
-20
-40
 02
-a6
-6f
-e2
-45
-af
-20
-20
-36
-22
-6f
-e0
-c7
-3f
-24
-7a
-00
-00
-68
-48
-c6
-4a
-20
-40
-6f
-0f
+27
 68
 48
 c6
@@ -2739,15 +2783,7 @@
 20
 40
 6e
-c6
-68
-48
-c6
-4b
-20
-40
-6f
-0f
+dd
 68
 48
 c6
@@ -2755,7 +2791,7 @@
 20
 20
 6e
-c6
+dd
 20
 60
 00
@@ -2763,7 +2799,7 @@
 20
 40
 04
-42
+6c
 6f
 e4
 47
@@ -2779,7 +2815,7 @@
 c2
 8a
 02
-b7
+c0
 20
 60
 00
@@ -2787,7 +2823,7 @@
 20
 40
 02
-c2
+cb
 20
 40
 5e
@@ -2799,19 +2835,19 @@
 20
 40
 02
-d6
+df
 20
 40
 02
-bf
+c8
 20
 40
 02
-c5
+ce
 20
 40
 02
-de
+e7
 20
 20
 5d
@@ -2827,7 +2863,7 @@
 20
 40
 04
-aa
+e7
 6f
 e0
 c6
@@ -2867,7 +2903,7 @@
 20
 22
 83
-4b
+54
 60
 49
 46
@@ -2919,7 +2955,7 @@
 20
 22
 82
-d3
+dc
 1f
 e6
 7c
@@ -2927,7 +2963,7 @@
 20
 22
 82
-dc
+e5
 20
 61
 00
@@ -2967,7 +3003,7 @@
 20
 3a
 02
-ec
+f5
 67
 e1
 49
@@ -2987,7 +3023,7 @@
 24
 21
 02
-ec
+f5
 1a
 62
 24
@@ -2995,7 +3031,7 @@
 20
 20
 02
-e2
+eb
 6f
 e1
 49
@@ -3023,19 +3059,19 @@
 c2
 8a
 02
-f4
+fd
 20
 60
 00
 00
 20
 40
-02
-f7
+03
+00
 20
 40
-02
-fc
+03
+05
 20
 20
 5c
@@ -3051,11 +3087,11 @@
 c0
 00
 83
-23
+2c
 c0
 01
 03
-37
+40
 20
 60
 00
@@ -3079,7 +3115,7 @@
 20
 3a
 03
-08
+11
 67
 e0
 c9
@@ -3106,8 +3142,8 @@
 00
 20
 20
-02
-fe
+03
+07
 6f
 e0
 c9
@@ -3119,7 +3155,7 @@
 20
 3a
 03
-12
+1b
 6f
 e0
 c6
@@ -3127,7 +3163,7 @@
 20
 40
 03
-20
+29
 67
 e0
 c9
@@ -3159,7 +3195,7 @@
 20
 40
 03
-20
+29
 98
 46
 7c
@@ -3195,7 +3231,7 @@
 20
 22
 83
-0e
+17
 1a
 60
 a7
@@ -3203,7 +3239,7 @@
 20
 20
 03
-0e
+17
 c1
 80
 00
@@ -3235,7 +3271,7 @@
 20
 3a
 03
-2f
+38
 67
 e3
 49
@@ -3263,7 +3299,7 @@
 20
 20
 03
-25
+2e
 6f
 e3
 49
@@ -3315,7 +3351,7 @@
 20
 3a
 03
-43
+4c
 67
 e3
 49
@@ -3343,7 +3379,7 @@
 20
 20
 03
-39
+42
 6f
 e3
 49
@@ -3379,15 +3415,15 @@
 20
 40
 03
-84
+8d
 20
 40
 03
-9c
+a5
 20
 40
 03
-4f
+58
 20
 20
 5c
@@ -3411,7 +3447,7 @@
 c0
 03
 03
-55
+5e
 20
 60
 00
@@ -3435,7 +3471,7 @@
 c2
 8a
 03
-5b
+64
 20
 60
 00
@@ -3467,7 +3503,7 @@
 20
 3a
 03
-69
+72
 67
 e0
 c9
@@ -3495,7 +3531,7 @@
 20
 20
 03
-5f
+68
 6f
 e0
 c9
@@ -3507,7 +3543,7 @@
 20
 3a
 03
-73
+7c
 6f
 e0
 c6
@@ -3515,7 +3551,7 @@
 20
 40
 03
-81
+8a
 67
 e0
 c9
@@ -3547,7 +3583,7 @@
 20
 40
 03
-81
+8a
 98
 46
 7c
@@ -3583,7 +3619,7 @@
 20
 22
 83
-6f
+78
 1a
 60
 a7
@@ -3591,7 +3627,7 @@
 20
 20
 03
-6f
+78
 c1
 80
 00
@@ -3611,7 +3647,7 @@
 c2
 9f
 03
-8b
+94
 6f
 e0
 c6
@@ -3623,11 +3659,11 @@
 c0
 00
 83
-8b
+94
 c0
 01
 03
-92
+9b
 20
 60
 00
@@ -3695,7 +3731,7 @@
 20
 40
 03
-9c
+a5
 20
 20
 5a
@@ -3711,7 +3747,7 @@
 c2
 9f
 03
-a4
+ad
 6f
 e0
 c6
@@ -3723,11 +3759,11 @@
 c0
 00
 83
-a4
+ad
 c0
 01
 03
-a9
+b2
 20
 60
 00
@@ -3799,7 +3835,7 @@
 20
 40
 03
-b6
+bf
 20
 20
 5c
@@ -3811,11 +3847,11 @@
 c0
 00
 83
-ba
+c3
 c0
 01
 03
-bf
+c8
 20
 60
 00
@@ -3863,7 +3899,7 @@
 20
 40
 03
-da
+e3
 20
 40
 61
@@ -3935,7 +3971,7 @@
 20
 40
 03
-dd
+e6
 20
 40
 56
@@ -3967,7 +4003,7 @@
 da
 40
 03
-e0
+e9
 20
 20
 42
@@ -4002,32 +4038,32 @@
 00
 c0
 20
-03
-fb
+04
+04
 c0
 0a
 84
-00
+09
 c0
 19
 03
-f2
+fb
 c0
 1e
 04
-1e
+27
 c0
 1c
 84
-2f
+38
 c0
 1d
 04
-32
+3b
 c0
 0a
 03
-ef
+f8
 20
 20
 5a
@@ -4038,8 +4074,8 @@
 00
 67
 e2
-4c
-03
+4b
+f9
 20
 20
 5a
@@ -4051,15 +4087,15 @@
 c0
 00
 83
-f6
+ff
 70
 48
 44
 14
 20
 20
-03
-f8
+04
+01
 20
 40
 5a
@@ -4070,12 +4106,12 @@
 05
 6f
 e0
-cc
-02
+cb
+f8
 67
 e0
-cc
-03
+cb
+f9
 20
 20
 5a
@@ -4135,7 +4171,7 @@
 c2
 8d
 84
-0a
+13
 d8
 40
 00
@@ -4163,7 +4199,7 @@
 20
 20
 04
-10
+19
 20
 40
 5b
@@ -4175,7 +4211,7 @@
 c2
 83
 84
-15
+1e
 c2
 80
 42
@@ -4210,8 +4246,8 @@
 a9
 6f
 e0
-cc
-06
+cb
+fc
 24
 3a
 54
@@ -4283,7 +4319,7 @@
 20
 40
 04
-45
+6f
 20
 20
 60
@@ -4295,7 +4331,7 @@
 20
 40
 04
-45
+6f
 20
 20
 60
@@ -4307,7 +4343,7 @@
 20
 40
 04
-45
+6f
 6f
 e0
 c8
@@ -4331,7 +4367,15 @@
 c0
 02
 04
-3b
+46
+c0
+00
+e0
+5f
+c0
+01
+84
+4d
 20
 20
 60
@@ -4365,6 +4409,130 @@
 54
 a0
 6f
+e4
+47
+13
+c3
+1f
+60
+59
+c2
+89
+e0
+59
+c2
+8a
+60
+59
+c2
+89
+60
+59
+20
+20
+60
+34
+6f
+e4
+47
+13
+c2
+9f
+04
+58
+6f
+e0
+c6
+66
+c0
+00
+04
+5f
+20
+20
+54
+91
+20
+40
+54
+ac
+20
+34
+04
+5b
+20
+20
+60
+2f
+6f
+e0
+c6
+66
+c0
+00
+60
+67
+20
+40
+5a
+a8
+20
+20
+04
+4a
+6f
+e4
+47
+13
+c3
+08
+e0
+2a
+20
+40
+61
+95
+20
+40
+54
+ac
+20
+34
+60
+67
+6f
+e4
+47
+13
+c2
+98
+04
+67
+20
+20
+60
+23
+70
+46
+66
+00
+6f
+e1
+47
+21
+67
+e1
+45
+de
+70
+45
+e2
+01
+20
+20
+35
+34
+6f
 e0
 c1
 41
@@ -4399,7 +4567,7 @@
 20
 40
 04
-4c
+76
 20
 20
 5e
@@ -4427,7 +4595,7 @@
 20
 40
 04
-53
+7d
 20
 20
 56
@@ -4455,7 +4623,7 @@
 c0
 7f
 84
-5a
+84
 20
 20
 56
@@ -4475,7 +4643,7 @@
 20
 20
 04
-5e
+88
 1a
 62
 7e
@@ -4535,7 +4703,7 @@
 20
 40
 04
-6f
+99
 6f
 e1
 c6
@@ -4602,48 +4770,92 @@
 ed
 20
 20
-02
-9b
+62
+2b
+20
+40
+5a
+92
+20
+40
+04
+99
+20
+40
+56
+a9
+68
+48
+c6
+54
+20
+40
+6e
+f7
+68
+48
+c6
+54
+20
+40
+6e
+d3
+6f
+e0
+c6
+4d
+20
+40
+59
+43
+68
+48
+c6
+5a
+20
+40
+55
+ab
+d8
+40
+00
+15
 20
 40
-5a
-92
+55
+b5
 20
 40
-04
-6f
+61
+1a
 20
 40
-56
-a9
+55
+0c
+20
+40
+54
+f9
 68
 48
 c6
-54
+4a
 20
 40
-6e
-f7
+6f
+0f
 68
 48
 c6
-54
+4b
 20
 40
-6e
-d3
 6f
-e0
+0f
+68
+48
 c6
-4d
-20
-40
-59
-43
-d8
-40
-00
-15
+5b
 20
 40
 55
@@ -4651,43 +4863,75 @@
 20
 40
 04
-8b
+c0
 20
 20
 54
+e5
+6f
+e1
+c7
+3c
+67
+e1
+86
+70
 df
+20
+00
+18
+d8
+40
+00
+00
 6f
-e0
-c6
-5a
-c1
-7f
-80
+e1
+86
+70
+2f
+ef
+fe
 00
+20
+40
+84
+cd
 6f
-e0
-c6
-66
-c0
+e1
+86
+70
+1f
+e3
+7e
+00
+67
+e1
+86
+70
+18
+40
+84
+01
+c2
 00
 04
-91
-68
-48
-c6
-5a
+c4
 20
+60
+00
+00
+18
+46
+7c
+ff
 20
-55
-b5
-68
-48
-c6
-5a
+62
+80
+00
 20
 20
 6f
-0f
+0b
 c6
 93
 00
@@ -4711,7 +4955,7 @@
 24
 5a
 04
-a8
+e5
 6f
 e4
 47
@@ -4719,7 +4963,7 @@
 c3
 0b
 04
-9d
+da
 6f
 e0
 c9
@@ -4731,7 +4975,7 @@
 20
 40
 04
-9f
+dc
 20
 20
 60
@@ -4775,11 +5019,11 @@
 20
 40
 04
-6f
+99
 20
 20
 02
-2e
+44
 6f
 e4
 47
@@ -4839,7 +5083,7 @@
 c0
 2c
 04
-ba
+f7
 20
 20
 59
@@ -4855,7 +5099,7 @@
 c0
 2c
 84
-be
+fb
 20
 20
 59
@@ -4886,8 +5130,8 @@
 57
 c0
 05
-84
-c6
+85
+03
 20
 20
 59
@@ -4902,8 +5146,8 @@
 59
 c0
 7f
-84
-cc
+85
+09
 68
 48
 c6
@@ -4947,13 +5191,13 @@
 20
 40
 04
-c1
+fe
 20
 20
 56
 06
-88
-75
+db
+ef
 aa
 55
 40
@@ -4973,8 +5217,8 @@
 00
 00
 00
-33
-08
+73
+98
 84
 f2
 7d
@@ -4986,8 +5230,8 @@
 00
 20
 00
-00
-14
+60
+04
 00
 00
 00
@@ -5232,6 +5476,15 @@
 20
 aa
 55
+03
+00
+3c
+47
+00
+00
+00
+aa
+55
 02
 00
 66
@@ -5392,8 +5645,8 @@
 00
 4a
 47
-f2
-f9
+60
+ea
 00
 00
 77
@@ -5730,9 +5983,9 @@
 49
 fb
 1e
-c2
+ac
 1f
-c4
+ae
 1f
 aa
 55
@@ -5968,7 +6221,7 @@
 ff
 aa
 55
-1e
+1a
 00
 d6
 48
@@ -5984,20 +6237,16 @@
 41
 a1
 12
-a5
-84
 a7
 ff
-b5
-d0
 b6
 00
-ff
-00
-35
+b5
 c8
-25
+a5
 af
+ff
+00
 09
 00
 ff
@@ -6058,6 +6307,39 @@
 55
 01
 00
+07
+44
+01
+aa
+55
+01
+00
+09
+44
+0a
+aa
+55
+01
+00
+08
+44
+09
+aa
+55
+06
+00
+2d
+46
+a4
+01
+18
+01
+2c
+01
+aa
+55
+01
+00
 48
 41
 0c
@@ -6169,44 +6451,6 @@
 55
 01
 00
-07
-44
-01
-aa
-55
-01
-00
-09
-44
-0a
-aa
-55
-01
-00
-08
-44
-00
-aa
-55
-01
-00
-11
-44
-00
-aa
-55
-04
-00
-0d
-44
-00
-07
-ff
-07
-aa
-55
-01
-00
 38
 44
 a0
@@ -6253,254 +6497,10 @@
 aa
 aa
 55
-c3
-5e
-a6
-6e
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
-ff
+9f
+5d
+0c
+50
 ff
 ff
 ff
@@ -8188,5 +8188,5 @@
 ff
 ff
 ff
-2d
-0a
+40
+d6
Index: output/memmap.format
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/memmap.format	(revision 1492)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/memmap.format	(working copy)
@@ -723,6 +723,14 @@
 0x4147 mem_gain_second_agc_en
 0x4148 mem_system_clk
 0x4149 mem_rf_init_data
+0x414e mem_adc_reference3v_ft_data
+0x414e mem_adc_reference3v_gpio1v_ft_data
+0x4150 mem_adc_reference3v_gpio2v_ft_data
+0x4152 mem_adc_reference3v_vdcdc3p6v_ft_data
+0x4154 mem_adc_reference3v_vdcdc4p6v_ft_data
+0x4156 mem_adc_reference3v_inter1v_ft_data
+0x4158 mem_adc_reference3v_inter1v_now_data
+0x415a mem_adc_reference_mode
 0x415b mem_otp_charge_pump_x
 0x415c mem_otp_dpll_ibais_x
 0x415d mem_xtal_freq
@@ -863,10 +871,19 @@
 0x43f8 mem_nv_data_ptr
 0x43fa mem_nv_data_number
 0x43fb mem_queue_ptr
+0x43fd mem_reference_inter1p8v_2v_adc_io_data
+0x43fd mem_inter1v_adc_ft_data
 0x43fd mem_3v_adc_io_data
+0x43ff mem_reference_inter1p8v_2p6v_adc_vdcdc_data
+0x43ff mem_inter1p2v_adc_ft_data
 0x43ff mem_2v_adc_hvin_data
+0x4401 mem_reference_inter1p8v_1v_adc_io_data
+0x4401 mem_io1v_adc_ft_data
 0x4401 mem_1v_adc_io_data
+0x4403 mem_reference_inter1p8v_4p6v_adc_vdcdc_data
+0x4403 mem_io2v_adc_ft_data
 0x4403 mem_3v_adc_hvin_data
+0x4405 mem_adc_ratio
 0x4405 mem_reference_voltage
 0x4407 mem_adc_config_flag
 0x4408 mem_adc_channel
@@ -1948,101 +1965,96 @@
 0x4a07 mem_normal_tx_power
 0x4a08 mem_tx_power_factory_param_new
 0x4a0b mem_sensor_ka8g2_init_new
-0x4a1d mem_device_uart_tx_gpio
-0x4a1e mem_device_uart_rx_gpio
-0x4a1f mem_device_uart_rx_buffer
-0x4a21 mem_device_uart_rx_buffer_end
-0x4a23 mem_device_uart_tx_buffer
-0x4a25 mem_device_uart_tx_buffer_end
-0x4a27 mem_device_uart_baud_rate
-0x4a29 mem_le_tx_buffer0_omemalloc_new
-0x4a69 mem_le_tx_buffer1_omemalloc_new
-0x4aa9 mem_le_tx_buffer2_omemalloc_new
-0x4ae9 mem_le_tx_buffer3_omemalloc_new
-0x4b29 mem_24g_txpayload_buf
-0x4b39 mem_release_data_from_receiver_enable
-0x4b3a mem_release_data_from_transmiter_enable
-0x4b3b mem_flippen_key0_gpio
-0x4b3c mem_flippen_key1_gpio
-0x4b3d mem_flippen_key2_gpio
-0x4b3e mem_flippen_key3_gpio
-0x4b3f mem_flippen_key4_gpio
-0x4b40 mem_flippen_key5_gpio
-0x4b41 mem_flippen_key6_gpio
-0x4b42 mem_flippen_key7_gpio
-0x4b43 mem_flippen_key0_press_status
-0x4b44 mem_flippen_key1_press_status
-0x4b45 mem_flippen_key2_press_status
-0x4b46 mem_flippen_key3_press_status
-0x4b47 mem_flippen_key4_press_status
-0x4b48 mem_flippen_key5_press_status
-0x4b49 mem_flippen_key6_press_status
-0x4b4a mem_flippen_key7_press_status
-0x4b4b mem_key_press_data
-0x4b4b mem_key_pageup_data
-0x4b54 mem_key_pagedown_data
-0x4b5d mem_key_shift_f5_data
-0x4b66 mem_key_esc_data
-0x4b6f mem_key_b_data
-0x4b78 mem_key_tab
-0x4b81 mem_key_enter
-0x4b8a mem_key_alt_tab
-0x4b93 mem_key_alt_f4
-0x4b9c mem_key_play_pause
-0x4ba5 mem_key_vol_up
-0x4bae mem_key_vol_down
-0x4bb7 mem_standard_key_release
-0x4bc0 mem_system_ctrl_key_release
-0x4bc9 mem_media_key_release
-0x4bd2 mem_key0_long_press_flag
-0x4bd3 mem_key1_long_press_flag
-0x4bd4 mem_key2_long_press_flag
-0x4bd5 mem_key3_long_press_flag
-0x4bd6 mem_key4_long_press_flag
-0x4bd7 mem_key0_long_press_event
-0x4bd8 mem_key1_long_press_event
-0x4bd9 mem_key2_long_press_event
-0x4bda mem_key3_long_press_event
-0x4bdb mem_key4_long_press_event
-0x4bdc mem_key0_short_press_flag
-0x4bdd mem_key1_short_press_flag
-0x4bde mem_key2_short_press_flag
-0x4bdf mem_key3_short_press_flag
-0x4be0 mem_key4_short_press_flag
-0x4be1 mem_key0_press_timer_count
-0x4be2 mem_key1_press_timer_count
-0x4be3 mem_key2_press_timer_count
-0x4be4 mem_key3_press_timer_count
-0x4be5 mem_key4_press_timer_count
-0x4be6 mem_combination_key_down_flag
-0x4be7 mem_combination_key_longpress_flag
-0x4be8 mem_key_disable_timer
-0x4be9 mem_24g_calculate_package_id_disable
-0x4bea mem_24g_package_id_abandon_flag
-0x4beb mem_24g_package_id
-0x4bec mem_key_state
-0x4bed mem_key_press_state
-0x4bee mem_poweron_first_blank_data_enable
-0x4bef mem_flippen_no_data_timeout
-0x4bf1 mem_flippen_start_pair_no_data_timeout
-0x4bf3 mem_key_longpress_timer_init
-0x4bf5 mem_key_longpress_timer
-0x4bf7 mem_low_voltage_led_blink_flag
-0x4bf8 mem_low_voltage_led_blink_start_timer
-0x4bf9 mem_poweron_led_blink_flag
-0x4bfa mem_24g_pair_enable_flag
-0x4bfb mem_24g_ch_work
-0x4bfc mem_24g_pair_key_down_flag
-0x4bfd mem_24g_pairing_stop_flag
-0x4bfe mem_longpress_24g_enter_hibernate_flag
-0x4bff mem_g24_connected_state
-0x4c00 mem_g24_pairing_stop_flag
-0x4c01 mem_send_package_before_check
-0x4c02 mem_le_conn_rcv_new
-0x4c03 mem_le_conn_first_rcv
-0x4c04 mem_le_check_retransmit_flag
-0x4c05 mem_le_retransmit_cnt
-0x4c06 mem_le_check_retransmit_discon_flag
+0x4a1d mem_le_tx_buffer0_omemalloc_new
+0x4a5d mem_le_tx_buffer1_omemalloc_new
+0x4a9d mem_le_tx_buffer2_omemalloc_new
+0x4add mem_le_tx_buffer3_omemalloc_new
+0x4b1d mem_mouse_wheel_temp_gpio
+0x4b1e mem_mouse_qdec_set_flag
+0x4b1f mem_24g_txpayload_buf
+0x4b2f mem_release_data_from_receiver_enable
+0x4b30 mem_release_data_from_transmiter_enable
+0x4b31 mem_flippen_key0_gpio
+0x4b32 mem_flippen_key1_gpio
+0x4b33 mem_flippen_key2_gpio
+0x4b34 mem_flippen_key3_gpio
+0x4b35 mem_flippen_key4_gpio
+0x4b36 mem_flippen_key5_gpio
+0x4b37 mem_flippen_key6_gpio
+0x4b38 mem_flippen_key7_gpio
+0x4b39 mem_flippen_key0_press_status
+0x4b3a mem_flippen_key1_press_status
+0x4b3b mem_flippen_key2_press_status
+0x4b3c mem_flippen_key3_press_status
+0x4b3d mem_flippen_key4_press_status
+0x4b3e mem_flippen_key5_press_status
+0x4b3f mem_flippen_key6_press_status
+0x4b40 mem_flippen_key7_press_status
+0x4b41 mem_key_press_data
+0x4b41 mem_key_pageup_data
+0x4b4a mem_key_pagedown_data
+0x4b53 mem_key_shift_f5_data
+0x4b5c mem_key_esc_data
+0x4b65 mem_key_b_data
+0x4b6e mem_key_tab
+0x4b77 mem_key_enter
+0x4b80 mem_key_alt_tab
+0x4b89 mem_key_alt_f4
+0x4b92 mem_key_play_pause
+0x4b9b mem_key_vol_up
+0x4ba4 mem_key_vol_down
+0x4bad mem_standard_key_release
+0x4bb6 mem_system_ctrl_key_release
+0x4bbf mem_media_key_release
+0x4bc8 mem_key0_long_press_flag
+0x4bc9 mem_key1_long_press_flag
+0x4bca mem_key2_long_press_flag
+0x4bcb mem_key3_long_press_flag
+0x4bcc mem_key4_long_press_flag
+0x4bcd mem_key0_long_press_event
+0x4bce mem_key1_long_press_event
+0x4bcf mem_key2_long_press_event
+0x4bd0 mem_key3_long_press_event
+0x4bd1 mem_key4_long_press_event
+0x4bd2 mem_key0_short_press_flag
+0x4bd3 mem_key1_short_press_flag
+0x4bd4 mem_key2_short_press_flag
+0x4bd5 mem_key3_short_press_flag
+0x4bd6 mem_key4_short_press_flag
+0x4bd7 mem_key0_press_timer_count
+0x4bd8 mem_key1_press_timer_count
+0x4bd9 mem_key2_press_timer_count
+0x4bda mem_key3_press_timer_count
+0x4bdb mem_key4_press_timer_count
+0x4bdc mem_combination_key_down_flag
+0x4bdd mem_combination_key_longpress_flag
+0x4bde mem_key_disable_timer
+0x4bdf mem_24g_calculate_package_id_disable
+0x4be0 mem_24g_package_id_abandon_flag
+0x4be1 mem_24g_package_id
+0x4be2 mem_key_state
+0x4be3 mem_key_press_state
+0x4be4 mem_poweron_first_blank_data_enable
+0x4be5 mem_flippen_no_data_timeout
+0x4be7 mem_flippen_start_pair_no_data_timeout
+0x4be9 mem_key_longpress_timer_init
+0x4beb mem_key_longpress_timer
+0x4bed mem_low_voltage_led_blink_flag
+0x4bee mem_low_voltage_led_blink_start_timer
+0x4bef mem_poweron_led_blink_flag
+0x4bf0 mem_24g_pair_enable_flag
+0x4bf1 mem_24g_ch_work
+0x4bf2 mem_24g_pair_key_down_flag
+0x4bf3 mem_24g_pairing_stop_flag
+0x4bf4 mem_longpress_24g_enter_hibernate_flag
+0x4bf5 mem_g24_connected_state
+0x4bf6 mem_g24_pairing_stop_flag
+0x4bf7 mem_send_package_before_check
+0x4bf8 mem_le_conn_rcv_new
+0x4bf9 mem_le_conn_first_rcv
+0x4bfa mem_le_check_retransmit_flag
+0x4bfb mem_le_retransmit_cnt
+0x4bfc mem_le_check_retransmit_discon_flag
 0x462d mem_remote_car_hard_soft_switch
 0x462e mem_remote_car_queue_each_size
 0x462f mem_remote_car_queue_length
Index: output/otp.dat
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/otp.dat	(revision 1492)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/otp.dat	(working copy)
@@ -11,148 +11,164 @@
 00
 aa
 55
-56
-13
+4a
+14
 c2
 84
 00
-24
+28
 c0
 00
 02
-98
+ae
 c0
 01
 00
-4b
+55
 c0
 08
 00
-54
+5e
 c0
 08
 80
-56
+60
 c0
 0a
 01
-6f
+5f
 c0
 0a
 80
-d8
+e1
 c0
 0c
-00
-f8
+01
+01
 c0
 0c
-80
-ff
+81
+08
 c0
 0d
 00
-64
+6e
 c0
 12
 82
-1e
+30
 c0
 34
 02
-91
+a7
 c0
 34
 82
-b1
+ba
 c0
 36
 02
-5a
+70
 c0
 36
 80
-33
+3d
+c0
+37
+04
+53
 c0
 39
 84
-7e
+a8
+c0
+3a
+02
+2d
+c0
+3b
+80
+37
 c0
 3d
-04
-d0
+05
+0d
 c0
 3f
 84
-5e
+88
 c0
 40
 84
-b5
+f2
 c0
 42
 03
-9a
+a3
 c0
 42
 83
-e6
+ef
 c0
 43
-02
-06
+01
+f6
 c0
 43
 83
-c4
+cd
 c0
 44
 03
-e4
+ed
 c0
 45
 03
-ae
+b7
+c0
+45
+82
+d1
 c0
 46
 02
-ef
+f8
 c0
 46
 83
-57
+60
 c0
 47
 04
-48
-c0
-45
-82
-c8
+72
 c0
 48
 04
-aa
+e7
 c0
 4a
 84
-75
+9f
 c0
 4b
 04
-93
+d0
 c0
 62
 82
-3d
+53
 c0
-6d
-01
-40
+6a
+82
+15
 c0
-6e
+6b
+02
+0e
+c0
+6d
 01
-50
+48
 20
 20
 23
@@ -160,55 +176,55 @@
 c0
 0a
 01
-90
+80
 c0
 0d
 01
-8f
+7f
 c0
 12
 81
-bf
+af
 c0
 13
 01
-c4
+b4
 c0
 1c
 81
-d6
+c6
 c0
 1d
 01
-e0
+d0
 c0
 26
 01
-da
+cc
 c0
 26
 81
-de
+ca
 c0
 48
 02
-40
+56
 c0
 4b
 04
-69
+93
 c0
 4d
 00
-e6
+ef
 c0
 4e
 80
-ed
+f6
 c0
 4f
 82
-62
+78
 c1
 7f
 80
@@ -217,6 +233,30 @@
 20
 23
 5a
+20
+40
+6f
+82
+20
+40
+6f
+b0
+1f
+e6
+fc
+0a
+20
+40
+7d
+5f
+67
+e1
+46
+33
+20
+20
+55
+53
 6f
 e0
 c6
@@ -348,7 +388,7 @@
 20
 20
 00
-4b
+55
 70
 89
 00
@@ -456,7 +496,7 @@
 20
 40
 00
-ac
+b5
 20
 40
 70
@@ -488,7 +528,7 @@
 c0
 08
 00
-a1
+aa
 6f
 e0
 c4
@@ -532,7 +572,7 @@
 20
 40
 00
-93
+9c
 70
 80
 43
@@ -556,28 +596,24 @@
 20
 40
 01
-12
+1b
 20
 40
 01
-3d
+46
 20
 40
 00
-8d
+96
 70
 41
 48
 0c
 20
-40
+20
 6f
 4e
 20
-20
-01
-3f
-20
 75
 80
 00
@@ -608,7 +644,7 @@
 c0
 0c
 00
-99
+a2
 6f
 e0
 c4
@@ -700,11 +736,11 @@
 20
 20
 00
-7f
+89
 20
 35
 80
-d4
+dd
 6f
 e2
 02
@@ -876,7 +912,7 @@
 20
 20
 00
-be
+c7
 20
 40
 68
@@ -944,7 +980,7 @@
 20
 40
 00
-ea
+f3
 20
 20
 60
@@ -976,7 +1012,7 @@
 24
 21
 00
-f2
+fb
 20
 20
 36
@@ -1000,7 +1036,7 @@
 20
 40
 02
-87
+9d
 20
 20
 36
@@ -1044,15 +1080,15 @@
 c0
 05
 01
-05
+0e
 c0
 4f
 01
-0e
+17
 c0
 55
 01
-0a
+13
 20
 20
 22
@@ -1160,7 +1196,7 @@
 20
 40
 01
-2f
+38
 2a
 2f
 fe
@@ -1192,7 +1228,7 @@
 20
 40
 01
-2f
+38
 d8
 a0
 8a
@@ -1220,7 +1256,7 @@
 20
 21
 01
-24
+2d
 20
 20
 21
@@ -1290,10 +1326,6 @@
 22
 72
 20
-60
-00
-00
-20
 75
 80
 00
@@ -1324,7 +1356,7 @@
 20
 40
 01
-68
+58
 70
 8a
 08
@@ -1357,134 +1389,38 @@
 60
 00
 00
-20
-40
-01
-5e
+70
+80
+cc
+03
 6f
 f0
-8a
-09
-79
-3f
-fe
-07
-67
-f0
-8a
-09
+81
+29
+c3
+02
+81
+59
+68
+59
+01
+64
+60
+49
+44
+0a
+70
+80
+cc
+00
+20
+60
+00
+00
 70
 8a
-07
-77
-70
-8a
-08
-c1
-70
-8a
-0b
-01
-20
-40
-6f
-90
-6f
-e0
-c4
-09
-67
-f0
-80
-cd
-20
-00
-0b
-b8
-20
-40
-01
-68
-70
-80
-cd
-00
-20
-20
-6f
-a1
-6f
-f0
-80
-cc
-79
-20
-7e
-01
-67
-f0
-80
-cc
-6a
-40
-c4
-19
-6f
-e0
-c4
-33
-67
-e0
-c4
-19
-df
-20
-00
-08
-20
-40
-6f
-67
-62
-40
-c4
-19
-20
-60
-00
-00
-70
-80
-cc
-03
-6f
-f0
-81
-29
-c3
-02
-81
-69
-68
-59
-01
-64
-60
-49
-44
-0a
-70
-80
-cc
-00
-20
-60
-00
-00
-70
-8a
-82
-11
+82
+11
 70
 8a
 8d
@@ -1500,7 +1436,7 @@
 c0
 08
 01
-88
+78
 58
 00
 57
@@ -1544,7 +1480,7 @@
 c0
 08
 01
-85
+75
 58
 00
 2b
@@ -1580,7 +1516,7 @@
 20
 20
 01
-81
+71
 58
 00
 83
@@ -1592,11 +1528,11 @@
 20
 20
 01
-76
+66
 6f
 e0
-cc
-02
+cb
+f8
 da
 60
 01
@@ -1612,39 +1548,39 @@
 20
 20
 01
-af
+9f
 20
 40
 01
-92
+82
 20
 20
 25
 63
 6f
 e0
-cc
-03
+cb
+f9
 20
 7a
 00
 00
 6f
 e0
-cc
-04
+cb
+fa
 24
 7a
 00
 00
 68
 48
-cc
-03
+cb
+f9
 6f
 e0
-cc
-02
+cb
+f8
 98
 46
 7c
@@ -1652,7 +1588,7 @@
 24
 41
 01
-8b
+7b
 98
 46
 7e
@@ -1664,11 +1600,11 @@
 20
 21
 01
-a4
+94
 6f
 e0
-cc
-05
+cb
+fb
 1f
 e6
 7c
@@ -1676,18 +1612,18 @@
 24
 41
 01
-a2
+92
 70
-4c
-04
+4b
+fa
 01
 20
 60
 00
 00
 70
-4c
-06
+4b
+fc
 01
 20
 20
@@ -1719,8 +1655,8 @@
 00
 68
 48
-cc
-05
+cb
+fb
 79
 20
 fe
@@ -1731,8 +1667,8 @@
 00
 60
 48
-cc
-05
+cb
+fb
 20
 60
 00
@@ -1752,19 +1688,19 @@
 24
 36
 81
-b6
+a6
 6f
 e0
-cc
-02
+cb
+f8
 1f
 e0
 fe
 01
 67
 e0
-cc
-02
+cb
+f8
 6f
 e0
 81
@@ -1909,6 +1845,14 @@
 20
 28
 e1
+79
+3f
+80
+30
+20
+20
+2a
+f6
 20
 40
 21
@@ -1925,14 +1869,6 @@
 20
 2a
 e3
-79
-3f
-80
-30
-20
-20
-2a
-f6
 ef
 e1
 00
@@ -1940,7 +1876,7 @@
 c0
 02
 01
-e3
+d3
 20
 20
 28
@@ -1956,11 +1892,11 @@
 c0
 05
 01
-e8
+d8
 c0
 09
 01
-f7
+e7
 20
 20
 2b
@@ -1988,7 +1924,7 @@
 c2
 81
 81
-f2
+e2
 6f
 e1
 43
@@ -2016,11 +1952,11 @@
 24
 22
 81
-ee
+de
 24
 34
 01
-ee
+de
 20
 20
 2d
@@ -2100,7 +2036,7 @@
 c0
 7f
 82
-11
+01
 6f
 e0
 c8
@@ -2115,16 +2051,16 @@
 00
 6f
 e0
-cc
-04
+cb
+fa
 20
 7a
 00
 00
 6f
 e0
-cc
-06
+cb
+fc
 24
 7a
 00
@@ -2176,11 +2112,147 @@
 20
 40
 04
-9f
+dc
+20
+20
+5b
+37
+18
+46
+7c
+ff
+20
+62
+80
+00
+d9
+00
+00
+04
+28
+4f
+fe
+07
+20
+20
+ee
+bd
+d9
+00
+00
+03
+20
+20
+6e
+bd
+18
+46
+7c
+ff
+20
+62
+80
+00
+60
+48
+cb
+1d
+20
+40
+6e
+e6
+20
+20
+82
+1e
+68
+48
+cb
+1d
+20
+40
+6f
+0f
+68
+48
+cb
+1d
+20
+20
+02
+25
+70
+4b
+1e
+01
+68
+48
+cb
+1d
+20
+40
+6f
+0f
+68
+48
+cb
+1d
+20
+20
+02
+23
+d9
+00
+00
+06
+20
+20
+6e
+bd
+d9
+00
+00
+03
+20
+20
+6e
+bd
+58
+00
+00
+10
+67
+f0
+81
+41
+37
+d9
+82
+00
+20
+60
+00
+00
+58
+00
+00
+80
+20
+20
+02
+28
+20
+40
+04
+99
+70
+4b
+1e
+00
 20
 20
-5b
-37
+55
+0d
 6f
 e1
 43
@@ -2204,11 +2276,27 @@
 20
 40
 02
-25
+3b
+20
+40
+02
+38
 20
 20
 24
 25
+6f
+e0
+cb
+1e
+20
+3a
+02
+27
+20
+20
+02
+2b
 60
 04
 40
@@ -2276,7 +2364,7 @@
 20
 22
 82
-38
+4e
 e7
 e0
 80
@@ -2296,7 +2384,7 @@
 c2
 00
 02
-32
+48
 1a
 42
 04
@@ -2332,7 +2420,7 @@
 20
 3a
 02
-48
+5e
 6f
 e1
 45
@@ -2376,7 +2464,7 @@
 20
 3a
 02
-57
+6d
 6f
 e2
 45
@@ -2392,7 +2480,7 @@
 20
 22
 82
-54
+6a
 20
 20
 35
@@ -2420,7 +2508,7 @@
 20
 20
 02
-4f
+65
 20
 40
 54
@@ -2428,7 +2516,7 @@
 20
 40
 02
-5d
+73
 20
 20
 54
@@ -2436,7 +2524,7 @@
 58
 00
 4a
-29
+1d
 67
 e1
 43
@@ -2488,7 +2576,7 @@
 c5
 13
 02
-6c
+82
 6f
 e0
 c6
@@ -2500,7 +2588,7 @@
 24
 21
 02
-86
+9c
 6f
 e0
 c6
@@ -2512,7 +2600,7 @@
 24
 21
 02
-74
+8a
 6f
 e0
 c6
@@ -2520,7 +2608,7 @@
 c0
 00
 02
-87
+9d
 20
 60
 00
@@ -2556,7 +2644,7 @@
 c5
 13
 02
-7d
+93
 6f
 e0
 c6
@@ -2588,7 +2676,7 @@
 c0
 01
 02
-8f
+a5
 c0
 00
 b7
@@ -2608,7 +2696,7 @@
 c0
 01
 82
-8d
+a3
 1f
 e0
 fe
@@ -2624,7 +2712,7 @@
 c0
 01
 02
-8f
+a5
 70
 41
 41
@@ -2651,8 +2739,8 @@
 f8
 58
 00
-02
-9b
+62
+2b
 67
 e1
 45
@@ -2660,7 +2748,7 @@
 58
 00
 02
-b0
+b9
 67
 e1
 43
@@ -2669,78 +2757,34 @@
 20
 53
 f3
+24
+35
+a0
+02
+37
+d9
+82
+00
+37
+d9
+82
+00
 20
 80
 00
 00
 20
 55
-e0
-04
+82
+b4
 20
 20
 20
 03
 20
 40
-36
-b4
-24
-74
-00
-00
-70
-47
-7c
-01
-20
-40
-36
-be
-70
-47
-72
-00
-20
-40
-62
-aa
-6f
-e0
-c7
-3f
-24
-5a
-54
-dc
-20
-40
 02
-a6
-6f
-e2
-45
-af
-20
-20
-36
-22
-6f
-e0
-c7
-3f
-24
-7a
-00
-00
-68
-48
-c6
-4a
-20
-40
-6f
-0f
+27
 68
 48
 c6
@@ -2748,15 +2792,7 @@
 20
 40
 6e
-c6
-68
-48
-c6
-4b
-20
-40
-6f
-0f
+dd
 68
 48
 c6
@@ -2764,7 +2800,7 @@
 20
 20
 6e
-c6
+dd
 20
 60
 00
@@ -2772,7 +2808,7 @@
 20
 40
 04
-42
+6c
 6f
 e4
 47
@@ -2788,7 +2824,7 @@
 c2
 8a
 02
-b7
+c0
 20
 60
 00
@@ -2796,7 +2832,7 @@
 20
 40
 02
-c2
+cb
 20
 40
 5e
@@ -2808,19 +2844,19 @@
 20
 40
 02
-d6
+df
 20
 40
 02
-bf
+c8
 20
 40
 02
-c5
+ce
 20
 40
 02
-de
+e7
 20
 20
 5d
@@ -2836,7 +2872,7 @@
 20
 40
 04
-aa
+e7
 6f
 e0
 c6
@@ -2876,7 +2912,7 @@
 20
 22
 83
-4b
+54
 60
 49
 46
@@ -2928,7 +2964,7 @@
 20
 22
 82
-d3
+dc
 1f
 e6
 7c
@@ -2936,7 +2972,7 @@
 20
 22
 82
-dc
+e5
 20
 61
 00
@@ -2976,7 +3012,7 @@
 20
 3a
 02
-ec
+f5
 67
 e1
 49
@@ -2996,7 +3032,7 @@
 24
 21
 02
-ec
+f5
 1a
 62
 24
@@ -3004,7 +3040,7 @@
 20
 20
 02
-e2
+eb
 6f
 e1
 49
@@ -3032,19 +3068,19 @@
 c2
 8a
 02
-f4
+fd
 20
 60
 00
 00
 20
 40
-02
-f7
+03
+00
 20
 40
-02
-fc
+03
+05
 20
 20
 5c
@@ -3060,11 +3096,11 @@
 c0
 00
 83
-23
+2c
 c0
 01
 03
-37
+40
 20
 60
 00
@@ -3088,7 +3124,7 @@
 20
 3a
 03
-08
+11
 67
 e0
 c9
@@ -3115,8 +3151,8 @@
 00
 20
 20
-02
-fe
+03
+07
 6f
 e0
 c9
@@ -3128,7 +3164,7 @@
 20
 3a
 03
-12
+1b
 6f
 e0
 c6
@@ -3136,7 +3172,7 @@
 20
 40
 03
-20
+29
 67
 e0
 c9
@@ -3168,7 +3204,7 @@
 20
 40
 03
-20
+29
 98
 46
 7c
@@ -3204,7 +3240,7 @@
 20
 22
 83
-0e
+17
 1a
 60
 a7
@@ -3212,7 +3248,7 @@
 20
 20
 03
-0e
+17
 c1
 80
 00
@@ -3244,7 +3280,7 @@
 20
 3a
 03
-2f
+38
 67
 e3
 49
@@ -3272,7 +3308,7 @@
 20
 20
 03
-25
+2e
 6f
 e3
 49
@@ -3324,7 +3360,7 @@
 20
 3a
 03
-43
+4c
 67
 e3
 49
@@ -3352,7 +3388,7 @@
 20
 20
 03
-39
+42
 6f
 e3
 49
@@ -3388,15 +3424,15 @@
 20
 40
 03
-84
+8d
 20
 40
 03
-9c
+a5
 20
 40
 03
-4f
+58
 20
 20
 5c
@@ -3420,7 +3456,7 @@
 c0
 03
 03
-55
+5e
 20
 60
 00
@@ -3444,7 +3480,7 @@
 c2
 8a
 03
-5b
+64
 20
 60
 00
@@ -3476,7 +3512,7 @@
 20
 3a
 03
-69
+72
 67
 e0
 c9
@@ -3504,7 +3540,7 @@
 20
 20
 03
-5f
+68
 6f
 e0
 c9
@@ -3516,7 +3552,7 @@
 20
 3a
 03
-73
+7c
 6f
 e0
 c6
@@ -3524,7 +3560,7 @@
 20
 40
 03
-81
+8a
 67
 e0
 c9
@@ -3556,7 +3592,7 @@
 20
 40
 03
-81
+8a
 98
 46
 7c
@@ -3592,7 +3628,7 @@
 20
 22
 83
-6f
+78
 1a
 60
 a7
@@ -3600,7 +3636,7 @@
 20
 20
 03
-6f
+78
 c1
 80
 00
@@ -3620,7 +3656,7 @@
 c2
 9f
 03
-8b
+94
 6f
 e0
 c6
@@ -3632,11 +3668,11 @@
 c0
 00
 83
-8b
+94
 c0
 01
 03
-92
+9b
 20
 60
 00
@@ -3704,7 +3740,7 @@
 20
 40
 03
-9c
+a5
 20
 20
 5a
@@ -3720,7 +3756,7 @@
 c2
 9f
 03
-a4
+ad
 6f
 e0
 c6
@@ -3732,11 +3768,11 @@
 c0
 00
 83
-a4
+ad
 c0
 01
 03
-a9
+b2
 20
 60
 00
@@ -3808,7 +3844,7 @@
 20
 40
 03
-b6
+bf
 20
 20
 5c
@@ -3820,11 +3856,11 @@
 c0
 00
 83
-ba
+c3
 c0
 01
 03
-bf
+c8
 20
 60
 00
@@ -3872,7 +3908,7 @@
 20
 40
 03
-da
+e3
 20
 40
 61
@@ -3944,7 +3980,7 @@
 20
 40
 03
-dd
+e6
 20
 40
 56
@@ -3976,7 +4012,7 @@
 da
 40
 03
-e0
+e9
 20
 20
 42
@@ -4011,32 +4047,32 @@
 00
 c0
 20
-03
-fb
+04
+04
 c0
 0a
 84
-00
+09
 c0
 19
 03
-f2
+fb
 c0
 1e
 04
-1e
+27
 c0
 1c
 84
-2f
+38
 c0
 1d
 04
-32
+3b
 c0
 0a
 03
-ef
+f8
 20
 20
 5a
@@ -4047,8 +4083,8 @@
 00
 67
 e2
-4c
-03
+4b
+f9
 20
 20
 5a
@@ -4060,15 +4096,15 @@
 c0
 00
 83
-f6
+ff
 70
 48
 44
 14
 20
 20
-03
-f8
+04
+01
 20
 40
 5a
@@ -4079,12 +4115,12 @@
 05
 6f
 e0
-cc
-02
+cb
+f8
 67
 e0
-cc
-03
+cb
+f9
 20
 20
 5a
@@ -4144,7 +4180,7 @@
 c2
 8d
 84
-0a
+13
 d8
 40
 00
@@ -4172,7 +4208,7 @@
 20
 20
 04
-10
+19
 20
 40
 5b
@@ -4184,7 +4220,7 @@
 c2
 83
 84
-15
+1e
 c2
 80
 42
@@ -4219,8 +4255,8 @@
 a9
 6f
 e0
-cc
-06
+cb
+fc
 24
 3a
 54
@@ -4292,7 +4328,7 @@
 20
 40
 04
-45
+6f
 20
 20
 60
@@ -4304,7 +4340,7 @@
 20
 40
 04
-45
+6f
 20
 20
 60
@@ -4316,7 +4352,7 @@
 20
 40
 04
-45
+6f
 6f
 e0
 c8
@@ -4340,7 +4376,15 @@
 c0
 02
 04
-3b
+46
+c0
+00
+e0
+5f
+c0
+01
+84
+4d
 20
 20
 60
@@ -4374,6 +4418,130 @@
 54
 a0
 6f
+e4
+47
+13
+c3
+1f
+60
+59
+c2
+89
+e0
+59
+c2
+8a
+60
+59
+c2
+89
+60
+59
+20
+20
+60
+34
+6f
+e4
+47
+13
+c2
+9f
+04
+58
+6f
+e0
+c6
+66
+c0
+00
+04
+5f
+20
+20
+54
+91
+20
+40
+54
+ac
+20
+34
+04
+5b
+20
+20
+60
+2f
+6f
+e0
+c6
+66
+c0
+00
+60
+67
+20
+40
+5a
+a8
+20
+20
+04
+4a
+6f
+e4
+47
+13
+c3
+08
+e0
+2a
+20
+40
+61
+95
+20
+40
+54
+ac
+20
+34
+60
+67
+6f
+e4
+47
+13
+c2
+98
+04
+67
+20
+20
+60
+23
+70
+46
+66
+00
+6f
+e1
+47
+21
+67
+e1
+45
+de
+70
+45
+e2
+01
+20
+20
+35
+34
+6f
 e0
 c1
 41
@@ -4408,7 +4576,7 @@
 20
 40
 04
-4c
+76
 20
 20
 5e
@@ -4436,7 +4604,7 @@
 20
 40
 04
-53
+7d
 20
 20
 56
@@ -4464,7 +4632,7 @@
 c0
 7f
 84
-5a
+84
 20
 20
 56
@@ -4484,7 +4652,7 @@
 20
 20
 04
-5e
+88
 1a
 62
 7e
@@ -4544,7 +4712,7 @@
 20
 40
 04
-6f
+99
 6f
 e1
 c6
@@ -4611,48 +4779,92 @@
 ed
 20
 20
-02
-9b
+62
+2b
 20
 40
 5a
 92
 20
 40
-04
-6f
+04
+99
+20
+40
+56
+a9
+68
+48
+c6
+54
+20
+40
+6e
+f7
+68
+48
+c6
+54
+20
+40
+6e
+d3
+6f
+e0
+c6
+4d
+20
+40
+59
+43
+68
+48
+c6
+5a
+20
+40
+55
+ab
+d8
+40
+00
+15
+20
+40
+55
+b5
+20
+40
+61
+1a
+20
+40
+55
+0c
 20
 40
-56
-a9
+54
+f9
 68
 48
 c6
-54
+4a
 20
 40
-6e
-f7
+6f
+0f
 68
 48
 c6
-54
+4b
 20
 40
-6e
-d3
 6f
-e0
+0f
+68
+48
 c6
-4d
-20
-40
-59
-43
-d8
-40
-00
-15
+5b
 20
 40
 55
@@ -4660,43 +4872,75 @@
 20
 40
 04
-8b
+c0
 20
 20
 54
+e5
+6f
+e1
+c7
+3c
+67
+e1
+86
+70
 df
+20
+00
+18
+d8
+40
+00
+00
 6f
-e0
-c6
-5a
-c1
-7f
-80
+e1
+86
+70
+2f
+ef
+fe
 00
+20
+40
+84
+cd
 6f
-e0
-c6
-66
-c0
+e1
+86
+70
+1f
+e3
+7e
+00
+67
+e1
+86
+70
+18
+40
+84
+01
+c2
 00
 04
-91
-68
-48
-c6
-5a
+c4
 20
+60
+00
+00
+18
+46
+7c
+ff
 20
-55
-b5
-68
-48
-c6
-5a
+62
+80
+00
 20
 20
 6f
-0f
+0b
 c6
 93
 00
@@ -4720,7 +4964,7 @@
 24
 5a
 04
-a8
+e5
 6f
 e4
 47
@@ -4728,7 +4972,7 @@
 c3
 0b
 04
-9d
+da
 6f
 e0
 c9
@@ -4740,7 +4984,7 @@
 20
 40
 04
-9f
+dc
 20
 20
 60
@@ -4784,11 +5028,11 @@
 20
 40
 04
-6f
+99
 20
 20
 02
-2e
+44
 6f
 e4
 47
@@ -4848,7 +5092,7 @@
 c0
 2c
 04
-ba
+f7
 20
 20
 59
@@ -4864,7 +5108,7 @@
 c0
 2c
 84
-be
+fb
 20
 20
 59
@@ -4895,8 +5139,8 @@
 57
 c0
 05
-84
-c6
+85
+03
 20
 20
 59
@@ -4911,8 +5155,8 @@
 59
 c0
 7f
-84
-cc
+85
+09
 68
 48
 c6
@@ -4956,13 +5200,13 @@
 20
 40
 04
-c1
+fe
 20
 20
 56
 06
-88
-75
+db
+ef
 aa
 55
 40
@@ -4982,8 +5226,8 @@
 00
 00
 00
-33
-08
+73
+98
 84
 f2
 7d
@@ -4995,8 +5239,8 @@
 00
 20
 00
-00
-14
+60
+04
 00
 00
 00
@@ -5241,6 +5485,15 @@
 20
 aa
 55
+03
+00
+3c
+47
+00
+00
+00
+aa
+55
 02
 00
 66
@@ -5401,8 +5654,8 @@
 00
 4a
 47
-f2
-f9
+60
+ea
 00
 00
 77
@@ -5739,9 +5992,9 @@
 49
 fb
 1e
-c2
+ac
 1f
-c4
+ae
 1f
 aa
 55
@@ -5977,7 +6230,7 @@
 ff
 aa
 55
-1e
+1a
 00
 d6
 48
@@ -5993,20 +6246,16 @@
 41
 a1
 12
-a5
-84
 a7
 ff
-b5
-d0
 b6
 00
-ff
-00
-35
+b5
 c8
-25
+a5
 af
+ff
+00
 09
 00
 ff
@@ -6067,6 +6316,39 @@
 55
 01
 00
+07
+44
+01
+aa
+55
+01
+00
+09
+44
+0a
+aa
+55
+01
+00
+08
+44
+09
+aa
+55
+06
+00
+2d
+46
+a4
+01
+18
+01
+2c
+01
+aa
+55
+01
+00
 48
 41
 0c
@@ -6178,44 +6460,6 @@
 55
 01
 00
-07
-44
-01
-aa
-55
-01
-00
-09
-44
-0a
-aa
-55
-01
-00
-08
-44
-00
-aa
-55
-01
-00
-11
-44
-00
-aa
-55
-04
-00
-0d
-44
-00
-07
-ff
-07
-aa
-55
-01
-00
 38
 44
 a0
@@ -6262,8 +6506,8 @@
 aa
 aa
 55
-c3
-5e
-a6
-6e
+9f
+5d
+0c
+50
 20
Index: output/program.lis
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/program.lis	(revision 1492)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/program.lis	(working copy)
@@ -1,1610 +1,1701 @@
               include "bt_format "
               org 0x0000
-0000 c2840024 bbit1 8 ,pf_patch_ext 
-0001 c0000298 beq patch00_0 ,p_soft_reset 
-0002 c001004b beq patch00_2 ,p_main_loop 
-0003 c0080054 beq patch02_0 ,p_shutdown_radio 
-0004 c0088056 beq patch02_1 ,p_set_sync_on 
-0005 c00a016f beq patch02_4 ,p_set_lemode 
-0006 c00a80d8 beq patch02_5 ,p_rf_rx_enable 
-0007 c00c00f8 beq patch03_0 ,p_txon 
-0008 c00c80ff beq patch03_1 ,p_set_tx_power 
-0009 c00d0064 beq patch03_2 ,p_initialize_radio_cont 
-000a c012821e beq patch04_5 ,p_lpm_sleep 
-000b c0340291 beq patch0d_0 ,p_mouse_cb_fuction 
-000c c03482b1 beq patch0d_1 ,p_mouse_load_device_info_check 
-000d c036025a beq patch0d_4 ,p_mouse_param_init 
-000e c0368033 beq patch0d_5 ,p_mouse_sensor_set_angle 
-000f c039847e beq patch0e_3 ,p_mouse_setgpio_hibernate 
-0010 c03d04d0 beq patch0f_2 ,p_mouse_motion 
-0011 c03f845e beq patch0f_7 ,p_mouse_3io6key_check 
-0012 c04084b5 beq patch10_1 ,p_mouse_init_sensor 
-0013 c042039a beq patch10_4 ,p_mouse_buletooth_fast_conn_end 
-0014 c04283e6 beq patch10_5 ,p_mouse_priority_bb_event 
-0015 c0430206 beq patch10_6 ,p_mouse_le 
-0016 c04383c4 beq patch10_7 ,p_mouse_bb_event_timer 
-0017 c04403e4 beq patch11_0 ,p_mouse_start_discovery 
-0018 c04503ae beq patch11_2 ,p_mouse_store_remote_bdaddr 
-0019 c04602ef beq patch11_4 ,p_mouse_store_device_info 
-001a c0468357 beq patch11_5 ,p_mouse_store_dpi_info_check 
-001b c0470448 beq patch11_6 ,p_mouse_idle 
-001c c04582c8 beq patch11_3 ,p_mouse_app_initflag_check 
-001d c04804aa beq patch12_0 ,p_mouse_check_select_device_by_switch 
-001e c04a8475 beq patch12_5 ,p_mouse_24g_hibernate_set 
-001f c04b0493 beq patch12_6 ,p_mouse_24g_package_data 
-0020 c062823d beq patch18_5 ,p_otp_read_data 
-0021 c06d0140 beq patch1b_2 ,p_sadc_calibration 
-0022 c06e0150 beq patch1b_4 ,p_enable_adc 
-0023 2020235a branch assert 
+0000 c2840028 bbit1 8 ,pf_patch_ext 
+0001 c00002ae beq patch00_0 ,p_soft_reset 
+0002 c0010055 beq patch00_2 ,p_main_loop 
+0003 c008005e beq patch02_0 ,p_shutdown_radio 
+0004 c0088060 beq patch02_1 ,p_set_sync_on 
+0005 c00a015f beq patch02_4 ,p_set_lemode 
+0006 c00a80e1 beq patch02_5 ,p_rf_rx_enable 
+0007 c00c0101 beq patch03_0 ,p_txon 
+0008 c00c8108 beq patch03_1 ,p_set_tx_power 
+0009 c00d006e beq patch03_2 ,p_initialize_radio_cont 
+000a c0128230 beq patch04_5 ,p_lpm_sleep 
+000b c03402a7 beq patch0d_0 ,p_mouse_cb_fuction 
+000c c03482ba beq patch0d_1 ,p_mouse_load_device_info_check 
+000d c0360270 beq patch0d_4 ,p_mouse_param_init 
+000e c036803d beq patch0d_5 ,p_mouse_sensor_set_angle 
+000f c0370453 beq patch0d_6 ,p_mouse_start_work 
+0010 c03984a8 beq patch0e_3 ,p_mouse_setgpio_hibernate 
+0011 c03a022d beq patch0e_4 ,p_mouse_lpm_before_common 
+0012 c03b8037 beq patch0e_7 ,p_mouse_adc_read_start 
+0013 c03d050d beq patch0f_2 ,p_mouse_motion 
+0014 c03f8488 beq patch0f_7 ,p_mouse_3io6key_check 
+0015 c04084f2 beq patch10_1 ,p_mouse_init_sensor 
+0016 c04203a3 beq patch10_4 ,p_mouse_buletooth_fast_conn_end 
+0017 c04283ef beq patch10_5 ,p_mouse_priority_bb_event 
+0018 c04301f6 beq patch10_6 ,p_mouse_le 
+0019 c04383cd beq patch10_7 ,p_mouse_bb_event_timer 
+001a c04403ed beq patch11_0 ,p_mouse_start_discovery 
+001b c04503b7 beq patch11_2 ,p_mouse_store_remote_bdaddr 
+001c c04582d1 beq patch11_3 ,p_mouse_app_initflag_check 
+001d c04602f8 beq patch11_4 ,p_mouse_store_device_info 
+001e c0468360 beq patch11_5 ,p_mouse_store_dpi_info_check 
+001f c0470472 beq patch11_6 ,p_mouse_idle 
+0020 c04804e7 beq patch12_0 ,p_mouse_check_select_device_by_switch 
+0021 c04a849f beq patch12_5 ,p_mouse_24g_hibernate_set 
+0022 c04b04d0 beq patch12_6 ,p_mouse_24g_package_data 
+0023 c0628253 beq patch18_5 ,p_otp_read_data 
+0024 c06a8215 beq patch1a_5 ,p_gpio_set_wake_by_current_state 
+0025 c06b020e beq patch1a_6 ,p_gpio_set_wake 
+0026 c06d0148 beq patch1b_2 ,p_sadc_calibration 
+0027 2020235a branch assert 
 
 pf_patch_ext:
-0024 c00a0190 beq patch22_4 ,p_le_slave_match 
-0025 c00d018f beq patch23_2 ,p_le_got_first_packet 
-0026 c01281bf beq patch24_5 ,p_le_rx_dec 
-0027 c01301c4 beq patch24_6 ,p_le_rx_nopayload 
-0028 c01c81d6 beq patch27_1 ,p_le_parse 
-0029 c01d01e0 beq patch27_2 ,p_le_parse_l2cap 
-002a c02601da beq patch29_4 ,p_le_adv_not_match 
-002b c02681de beq patch29_5 ,p_le_init_adv 
-002c c0480240 beq patch32_0 ,p_g24_reconn_dispatch 
-002d c04b0469 beq patch32_6 ,p_g24_short_sleep 
-002e c04d00e6 beq patch33_2 ,p_mouse_g24_retransmit 
-002f c04e80ed beq patch33_5 ,p_g24_transmit_hop_process 
-0030 c04f8262 beq patch33_7 ,p_power_ctrl_start 
-0031 c17f8000 rtneq patch3f_7 
-0032 2020235a branch assert 
+0028 c00a0180 beq patch22_4 ,p_le_slave_match 
+0029 c00d017f beq patch23_2 ,p_le_got_first_packet 
+002a c01281af beq patch24_5 ,p_le_rx_dec 
+002b c01301b4 beq patch24_6 ,p_le_rx_nopayload 
+002c c01c81c6 beq patch27_1 ,p_le_parse 
+002d c01d01d0 beq patch27_2 ,p_le_parse_l2cap 
+002e c02601cc beq patch29_4 ,p_le_adv_not_match 
+002f c02681ca beq patch29_5 ,p_le_init_adv 
+0030 c0480256 beq patch32_0 ,p_g24_reconn_dispatch 
+0031 c04b0493 beq patch32_6 ,p_g24_short_sleep 
+0032 c04d00ef beq patch33_2 ,p_mouse_g24_retransmit 
+0033 c04e80f6 beq patch33_5 ,p_g24_transmit_hop_process 
+0034 c04f8278 beq patch33_7 ,p_power_ctrl_start 
+0035 c17f8000 rtneq patch3f_7 
+0036 2020235a branch assert 
+
+p_mouse_adc_read_start:
+0037 20406f82 call enable_adc 
+0038 20406fb0 call vdd_calculate_by_mode 
+0039 1fe6fc0a div pdata ,10 
+003a 20407d5f call get_div_result 
+003b 67e14633 store 2 ,mem_mouse_vdd_now_vol 
+003c 20205553 branch mouse_adc_data_process 
 
 p_mouse_sensor_set_angle:
-0033 6fe0c64f fetch 1 ,mem_sensor_angle_default 
-0034 67e0c958 store 1 ,mem_config_sensor_angle 
-0035 6fe0c64e fetch 1 ,mem_select_sensor_angle_gpio 
-0036 c17f8000 rtneq gpio_disable 
-0037 204023c3 call lpm_write_ice_disable 
-0038 6fe0c64e fetch 1 ,mem_select_sensor_angle_gpio 
-0039 d840003e arg gpcfg_output_low ,temp 
-003a 20406f21 call gpio_config_function_int 
-003b 6fe0c65b fetch 1 ,mem_mouse_reuse_2ice_gpio 
-003c d840003e arg gpcfg_output_low ,temp 
-003d 20406f21 call gpio_config_function_int 
-003e 6848c64d fetcht 1 ,mem_mouse_sensor_sdio_gpio 
-003f 204055b5 call mouse_gpio_config_input_pu 
-0040 6848c64d fetcht 1 ,mem_mouse_sensor_sdio_gpio 
-0041 20406ee6 call gpio_get_bit 
-0042 2040d473 call mouse_sensor_switch_angle ,true 
-0043 204055b1 call mouse_gpio_config_input_pd 
-0044 6848c64d fetcht 1 ,mem_mouse_sensor_sdio_gpio 
-0045 20406edd call gpio_config_input 
-0046 204023c7 call lpm_write_ice_enable 
+003d 6fe0c64f fetch 1 ,mem_sensor_angle_default 
+003e 67e0c958 store 1 ,mem_config_sensor_angle 
+003f 6fe0c64e fetch 1 ,mem_select_sensor_angle_gpio 
+0040 c17f8000 rtneq gpio_disable 
+0041 204023c3 call lpm_write_ice_disable 
+0042 6fe0c64e fetch 1 ,mem_select_sensor_angle_gpio 
+0043 d840003e arg gpcfg_output_low ,temp 
+0044 20406f21 call gpio_config_function_int 
+0045 6fe0c65b fetch 1 ,mem_mouse_reuse_2ice_gpio 
+0046 d840003e arg gpcfg_output_low ,temp 
+0047 20406f21 call gpio_config_function_int 
+0048 6848c64d fetcht 1 ,mem_mouse_sensor_sdio_gpio 
+0049 204055b5 call mouse_gpio_config_input_pu 
+004a 6848c64d fetcht 1 ,mem_mouse_sensor_sdio_gpio 
+004b 20406ee6 call gpio_get_bit 
+004c 2040d473 call mouse_sensor_switch_angle ,true 
+004d 204055b1 call mouse_gpio_config_input_pd 
+004e 6848c64d fetcht 1 ,mem_mouse_sensor_sdio_gpio 
+004f 20406edd call gpio_config_input 
+0050 204023c7 call lpm_write_ice_enable 
 
 p_ice_gpio_set_float:
-0047 6848c64e fetcht 1 ,mem_select_sensor_angle_gpio 
-0048 20406f0f call gpio_set_high_impedance 
-0049 6848c65b fetcht 1 ,mem_mouse_reuse_2ice_gpio 
-004a 20206f0f branch gpio_set_high_impedance 
+0051 6848c64e fetcht 1 ,mem_select_sensor_angle_gpio 
+0052 20406f0f call gpio_set_high_impedance 
+0053 6848c65b fetcht 1 ,mem_mouse_reuse_2ice_gpio 
+0054 20206f0f branch gpio_set_high_impedance 
 
 p_main_loop:
-004b 20407552 call sp_calc_sequence_256 
-004c 20407448 call sp_calc_sequence_256_check 
-004d 20402a45 call le_advertising_dispatch 
-004e 2040202a call idle_dispatch 
-004f 204042ad call app_process_idle 
-0050 20402018 call connection_dispatch 
-0051 2040310f call g24_dispatch 
-0052 2040248c call lpm_dispatch 
-0053 2020004b branch p_main_loop 
+0055 20407552 call sp_calc_sequence_256 
+0056 20407448 call sp_calc_sequence_256_check 
+0057 20402a45 call le_advertising_dispatch 
+0058 2040202a call idle_dispatch 
+0059 204042ad call app_process_idle 
+005a 20402018 call connection_dispatch 
+005b 2040310f call g24_dispatch 
+005c 2040248c call lpm_dispatch 
+005d 20200055 branch p_main_loop 
 
 p_shutdown_radio:
-0054 70890000 jam 0 ,0x8900 
-0055 20202153 branch shutdown_radio + 1 
+005e 70890000 jam 0 ,0x8900 
+005f 20202153 branch shutdown_radio + 1 
 
 p_set_sync_on:
-0056 708a0f60 jam 0x60 ,0x8a0f 
-0057 708a10aa jam 0xaa ,0x8a10 
-0058 708a127a jam 0x7a ,0x8a12 
-0059 708a2500 jam 0x00 ,0x8a25 
-005a 708a2600 jam 0x00 ,0x8a26 
-005b 2000003c nop 60 
-005c 708a2020 jam 0x20 ,0x8a20 
-005d 708a23f5 jam 0xf5 ,0x8a23 
-005e 708a2412 jam 0x12 ,0x8a24 
-005f 708a2410 jam 0x10 ,0x8a24 
-0060 2000003c nop 60 
-0061 708a1260 jam 0x60 ,0x8a12 
-0062 708a23dd jam 0xdd ,0x8a23 
-0063 20600000 rtn 
+0060 708a0f60 jam 0x60 ,0x8a0f 
+0061 708a10aa jam 0xaa ,0x8a10 
+0062 708a127a jam 0x7a ,0x8a12 
+0063 708a2500 jam 0x00 ,0x8a25 
+0064 708a2600 jam 0x00 ,0x8a26 
+0065 2000003c nop 60 
+0066 708a2020 jam 0x20 ,0x8a20 
+0067 708a23f5 jam 0xf5 ,0x8a23 
+0068 708a2412 jam 0x12 ,0x8a24 
+0069 708a2410 jam 0x10 ,0x8a24 
+006a 2000003c nop 60 
+006b 708a1260 jam 0x60 ,0x8a12 
+006c 708a23dd jam 0xdd ,0x8a23 
+006d 20600000 rtn 
 
 p_initialize_radio_cont:
-0064 7001bb00 jam 0 ,mem_le_testtype 
-0065 7001bc00 jam 0 ,mem_cmd_le_create_conn 
-0066 37d98200 until null ,lpo_edge 
-0067 7089460d jam 0x0d ,0x8946 
-0068 70896f10 jam 0x10 ,0x896f 
-0069 708a13cd jam 0xcd ,0x8a13 
-006a 708a0610 jam 0x10 ,0x8a06 
-006b 708a844a jam 0x4a ,0x8a84 
-006c 708a8540 jam 0x40 ,0x8a85 
-006d 708a16fe jam 0xfe ,0x8a16 
-006e 204000ac call p_set_otp_config 
-006f 204070d7 call wdt_set_disable 
+006e 7001bb00 jam 0 ,mem_le_testtype 
+006f 7001bc00 jam 0 ,mem_cmd_le_create_conn 
 0070 37d98200 until null ,lpo_edge 
-0071 70813b5f jam 0x5f ,0x813b 
-0072 37d98200 until null ,lpo_edge 
-0073 70813c88 jam 0x88 ,0x813c 
-0074 37d98200 until null ,lpo_edge 
-0075 6fe0c099 fetch 1 ,mem_fcomp_div 
-0076 c00800a1 beq xtal_16m ,p_initialize_radio_16m 
-0077 6fe0c438 fetch 1 ,mem_ring_ibias_trim 
-0078 1fe1fe04 or_into 0x04 ,pdata 
-0079 67f08a02 store 1 ,0x8a02 
-007a 70890f01 jam 0x01 ,0x890f 
-007b 708a8024 jam 0x24 ,0x8a80 
-007c 708a8162 jam 0x62 ,0x8a81 
-007d 58e61212 setarg 0xe61212 
-007e 67f18a73 store 3 ,0x8a73 
+0071 7089460d jam 0x0d ,0x8946 
+0072 70896f10 jam 0x10 ,0x896f 
+0073 708a13cd jam 0xcd ,0x8a13 
+0074 708a0610 jam 0x10 ,0x8a06 
+0075 708a844a jam 0x4a ,0x8a84 
+0076 708a8540 jam 0x40 ,0x8a85 
+0077 708a16fe jam 0xfe ,0x8a16 
+0078 204000b5 call p_set_otp_config 
+0079 204070d7 call wdt_set_disable 
+007a 37d98200 until null ,lpo_edge 
+007b 70813b5f jam 0x5f ,0x813b 
+007c 37d98200 until null ,lpo_edge 
+007d 70813c88 jam 0x88 ,0x813c 
+007e 37d98200 until null ,lpo_edge 
+007f 6fe0c099 fetch 1 ,mem_fcomp_div 
+0080 c00800aa beq xtal_16m ,p_initialize_radio_16m 
+0081 6fe0c438 fetch 1 ,mem_ring_ibias_trim 
+0082 1fe1fe04 or_into 0x04 ,pdata 
+0083 67f08a02 store 1 ,0x8a02 
+0084 70890f01 jam 0x01 ,0x890f 
+0085 708a8024 jam 0x24 ,0x8a80 
+0086 708a8162 jam 0x62 ,0x8a81 
+0087 58e61212 setarg 0xe61212 
+0088 67f18a73 store 3 ,0x8a73 
 
 p_initialize_radio2:
-007f 708a8660 jam 0x60 ,0x8a86 
-0080 708a8b3b jam 0x3b ,0x8a8b 
-0081 20400093 call p_dpll_on 
-0082 70804300 jam 0 ,core_config 
-0083 70804205 jam clksel_dpll ,core_clksel 
-0084 58557474 setarg 0x557474 
-0085 67f18968 store 3 ,0x8968 
-0086 7089606e jam 0x6e ,0x8960 
-0087 20400112 call p_rx_dcoc 
-0088 2040013d call p_rfpll_aac_ghpc 
-0089 2040008d call p_set_xtal_cap 
-008a 7041480c jam system_clk_12m ,mem_system_clk 
-008b 20406f4e call sadc_calibration 
-008c 2020013f branch p_dpll_ring_ibias_calc 
+0089 708a8660 jam 0x60 ,0x8a86 
+008a 708a8b3b jam 0x3b ,0x8a8b 
+008b 2040009c call p_dpll_on 
+008c 70804300 jam 0 ,core_config 
+008d 70804205 jam clksel_dpll ,core_clksel 
+008e 58557474 setarg 0x557474 
+008f 67f18968 store 3 ,0x8968 
+0090 7089606e jam 0x6e ,0x8960 
+0091 2040011b call p_rx_dcoc 
+0092 20400146 call p_rfpll_aac_ghpc 
+0093 20400096 call p_set_xtal_cap 
+0094 7041480c jam system_clk_12m ,mem_system_clk 
+0095 20206f4e branch sadc_calibration 
 
 p_set_xtal_cap:
-008d 20758000 rtn wake 
-008e 37d98200 until null ,lpo_edge 
-008f 6fe0c11c fetch 1 ,mem_xtal_c_sel 
-0090 67f0813a store 1 ,core_xtal_cap 
-0091 37d98200 until null ,lpo_edge 
-0092 20600000 rtn 
+0096 20758000 rtn wake 
+0097 37d98200 until null ,lpo_edge 
+0098 6fe0c11c fetch 1 ,mem_xtal_c_sel 
+0099 67f0813a store 1 ,core_xtal_cap 
+009a 37d98200 until null ,lpo_edge 
+009b 20600000 rtn 
 
 p_dpll_on:
-0093 6fe0c099 fetch 1 ,mem_fcomp_div 
-0094 c00c0099 beq xtal_24m ,p_dpll_on_24m 
-0095 6fe0c438 fetch 1 ,mem_ring_ibias_trim 
-0096 1fe1fe06 or_into 0x06 ,pdata 
-0097 67f08a02 store 1 ,0x8a02 
-0098 708a05e0 jam 0xe0 ,0x8a05 
+009c 6fe0c099 fetch 1 ,mem_fcomp_div 
+009d c00c00a2 beq xtal_24m ,p_dpll_on_24m 
+009e 6fe0c438 fetch 1 ,mem_ring_ibias_trim 
+009f 1fe1fe06 or_into 0x06 ,pdata 
+00a0 67f08a02 store 1 ,0x8a02 
+00a1 708a05e0 jam 0xe0 ,0x8a05 
 
 p_dpll_on_24m:
-0099 708a00d8 jam 0xd8 ,0x8a00 
-009a 2000003c nop 60 
-009b 708a01a0 jam 0xa0 ,0x8a01 
-009c 708a00df jam 0xdf ,0x8a00 
-009d 708a01fa jam 0xfa ,0x8a01 
-009e 20000014 nop 20 
-009f 708a009f jam 0x9f ,0x8a00 
-00a0 20600000 rtn 
+00a2 708a00d8 jam 0xd8 ,0x8a00 
+00a3 2000003c nop 60 
+00a4 708a01a0 jam 0xa0 ,0x8a01 
+00a5 708a00df jam 0xdf ,0x8a00 
+00a6 708a01fa jam 0xfa ,0x8a01 
+00a7 20000014 nop 20 
+00a8 708a009f jam 0x9f ,0x8a00 
+00a9 20600000 rtn 
 
 p_initialize_radio_16m:
-00a1 6fe0c438 fetch 1 ,mem_ring_ibias_trim 
-00a2 1fe1fe06 or_into 0x06 ,pdata 
-00a3 67f08a02 store 1 ,0x8a02 
-00a4 70890f00 jam 0x00 ,0x890f 
-00a5 708a8023 jam 0x23 ,0x8a80 
-00a6 708a81b0 jam 0xb0 ,0x8a81 
-00a7 58e40909 setarg 0xe40909 
-00a8 67f18a73 store 3 ,0x8a73 
-00a9 708a762a jam 0x2a ,0x8a76 
-00aa 70890204 jam 0x04 ,0x8902 
-00ab 2020007f branch p_initialize_radio2 
+00aa 6fe0c438 fetch 1 ,mem_ring_ibias_trim 
+00ab 1fe1fe06 or_into 0x06 ,pdata 
+00ac 67f08a02 store 1 ,0x8a02 
+00ad 70890f00 jam 0x00 ,0x890f 
+00ae 708a8023 jam 0x23 ,0x8a80 
+00af 708a81b0 jam 0xb0 ,0x8a81 
+00b0 58e40909 setarg 0xe40909 
+00b1 67f18a73 store 3 ,0x8a73 
+00b2 708a762a jam 0x2a ,0x8a76 
+00b3 70890204 jam 0x04 ,0x8902 
+00b4 20200089 branch p_initialize_radio2 
 
 p_set_otp_config:
-00ac 203580d4 branch p_set_otp_config_wake ,wake 
-00ad 6fe2020d fetch 4 ,mem_otp_core_ldo 
-00ae 207a0000 rtn blank 
-00af 37d98200 until null ,lpo_edge 
-00b0 6ff08136 fetch 1 ,0x8136 
-00b1 1fe17ef0 and pdata ,0xf0 ,pdata 
-00b2 6848820d fetcht 1 ,mem_otp_core_ldo 
-00b3 9841fe00 ior temp ,pdata 
-00b4 1fe0fffd increase -3 ,pdata 
-00b5 67f08136 store 1 ,0x8136 
-00b6 37d98200 until null ,lpo_edge 
-00b7 6ff08138 fetch 1 ,0x8138 
-00b8 1fe17e07 and pdata ,0x7 ,pdata 
-00b9 6848820e fetcht 1 ,mem_otp_verf_bg 
-00ba 18498400 lshift3 temp ,temp 
-00bb 9841fe00 ior temp ,pdata 
-00bc 67f08138 store 1 ,0x8138 
-00bd 37d98200 until null ,lpo_edge 
+00b5 203580dd branch p_set_otp_config_wake ,wake 
+00b6 6fe2020d fetch 4 ,mem_otp_core_ldo 
+00b7 207a0000 rtn blank 
+00b8 37d98200 until null ,lpo_edge 
+00b9 6ff08136 fetch 1 ,0x8136 
+00ba 1fe17ef0 and pdata ,0xf0 ,pdata 
+00bb 6848820d fetcht 1 ,mem_otp_core_ldo 
+00bc 9841fe00 ior temp ,pdata 
+00bd 1fe0fffd increase -3 ,pdata 
+00be 67f08136 store 1 ,0x8136 
+00bf 37d98200 until null ,lpo_edge 
+00c0 6ff08138 fetch 1 ,0x8138 
+00c1 1fe17e07 and pdata ,0x7 ,pdata 
+00c2 6848820e fetcht 1 ,mem_otp_verf_bg 
+00c3 18498400 lshift3 temp ,temp 
+00c4 9841fe00 ior temp ,pdata 
+00c5 67f08138 store 1 ,0x8138 
+00c6 37d98200 until null ,lpo_edge 
 
 p_set_otp_config2:
-00be 6ff08acb fetch 1 ,0x8acb 
-00bf 1fe17ef0 and pdata ,0xf0 ,pdata 
-00c0 6848820f fetcht 1 ,mem_otp_charge_pump 
-00c1 6048c15b storet 1 ,mem_otp_charge_pump_x 
-00c2 9841fe00 ior temp ,pdata 
-00c3 67f08acb store 1 ,0x8acb 
-00c4 6fe08210 fetch 1 ,mem_otp_dpll_ibais 
-00c5 67e0c15c store 1 ,mem_otp_dpll_ibais_x 
-00c6 2feffe03 isolate1 3 ,pdata 
-00c7 6ff08a06 fetch 1 ,0x8a06 
-00c8 7920fe07 setflag true ,7 ,pdata 
-00c9 67f08a06 store 1 ,0x8a06 
-00ca 6fe08210 fetch 1 ,mem_otp_dpll_ibais 
-00cb 1fe10407 and pdata ,7 ,temp 
-00cc 18520400 lshift4 temp ,temp 
-00cd 18438400 lshift temp ,temp 
-00ce 6048c438 storet 1 ,mem_ring_ibias_trim 
-00cf 6ff08a02 fetch 1 ,0x8a02 
-00d0 1fe17e1f and pdata ,0x1f ,pdata 
-00d1 9841fe00 ior temp ,pdata 
-00d2 67f08a02 store 1 ,0x8a02 
-00d3 20600000 rtn 
+00c7 6ff08acb fetch 1 ,0x8acb 
+00c8 1fe17ef0 and pdata ,0xf0 ,pdata 
+00c9 6848820f fetcht 1 ,mem_otp_charge_pump 
+00ca 6048c15b storet 1 ,mem_otp_charge_pump_x 
+00cb 9841fe00 ior temp ,pdata 
+00cc 67f08acb store 1 ,0x8acb 
+00cd 6fe08210 fetch 1 ,mem_otp_dpll_ibais 
+00ce 67e0c15c store 1 ,mem_otp_dpll_ibais_x 
+00cf 2feffe03 isolate1 3 ,pdata 
+00d0 6ff08a06 fetch 1 ,0x8a06 
+00d1 7920fe07 setflag true ,7 ,pdata 
+00d2 67f08a06 store 1 ,0x8a06 
+00d3 6fe08210 fetch 1 ,mem_otp_dpll_ibais 
+00d4 1fe10407 and pdata ,7 ,temp 
+00d5 18520400 lshift4 temp ,temp 
+00d6 18438400 lshift temp ,temp 
+00d7 6048c438 storet 1 ,mem_ring_ibias_trim 
+00d8 6ff08a02 fetch 1 ,0x8a02 
+00d9 1fe17e1f and pdata ,0x1f ,pdata 
+00da 9841fe00 ior temp ,pdata 
+00db 67f08a02 store 1 ,0x8a02 
+00dc 20600000 rtn 
 
 p_set_otp_config_wake:
-00d4 6fe1415b fetch 2 ,mem_otp_charge_pump_x 
-00d5 207a0000 rtn blank 
-00d6 67e1020f store 2 ,mem_otp_charge_pump 
-00d7 202000be branch p_set_otp_config2 
+00dd 6fe1415b fetch 2 ,mem_otp_charge_pump_x 
+00de 207a0000 rtn blank 
+00df 67e1020f store 2 ,mem_otp_charge_pump 
+00e0 202000c7 branch p_set_otp_config2 
 
 p_rf_rx_enable:
-00d8 2040686f call rf_debug_rx_gpio_high 
-00d9 204021ba call rf_rx_agc_set 
-00da 18002a08 force 8 ,radio_ctrl 
-00db 18002a00 force 0 ,radio_ctrl 
-00dc 580aaada setarg 0x0aaada 
-00dd 67f18a0f store 3 ,0x8a0f 
-00de 708a2540 jam 0x40 ,0x8a25 
-00df 708a2610 jam 0x10 ,0x8a26 
-00e0 2000003c nop 60 
-00e1 708a01fb jam 0xfb ,0x8a01 
-00e2 708a25ff jam 0xff ,0x8a25 
-00e3 708a2630 jam 0x30 ,0x8a26 
-00e4 708a16fe jam 0xfe ,0x8a16 
-00e5 202021b4 branch rf_rx_enable + 14 
+00e1 2040686f call rf_debug_rx_gpio_high 
+00e2 204021ba call rf_rx_agc_set 
+00e3 18002a08 force 8 ,radio_ctrl 
+00e4 18002a00 force 0 ,radio_ctrl 
+00e5 580aaada setarg 0x0aaada 
+00e6 67f18a0f store 3 ,0x8a0f 
+00e7 708a2540 jam 0x40 ,0x8a25 
+00e8 708a2610 jam 0x10 ,0x8a26 
+00e9 2000003c nop 60 
+00ea 708a01fb jam 0xfb ,0x8a01 
+00eb 708a25ff jam 0xff ,0x8a25 
+00ec 708a2630 jam 0x30 ,0x8a26 
+00ed 708a16fe jam 0xfe ,0x8a16 
+00ee 202021b4 branch rf_rx_enable + 14 
 
 p_mouse_g24_retransmit:
-00e6 6fe0c793 fetch 1 ,mem_mouse_need_soft_reset 
-00e7 247a0000 nrtn blank 
-00e8 204000ea call p_mouse_retransmit_select_device_by_pb_button 
-00e9 202060fc branch mouse_g24_retransmit + 3 
+00ef 6fe0c793 fetch 1 ,mem_mouse_need_soft_reset 
+00f0 247a0000 nrtn blank 
+00f1 204000f3 call p_mouse_retransmit_select_device_by_pb_button 
+00f2 202060fc branch mouse_g24_retransmit + 3 
 
 p_mouse_retransmit_select_device_by_pb_button:
-00ea 6fe0c655 fetch 1 ,mem_config_select_device_button_gpio 
-00eb c17f8000 rtneq gpio_disable 
-00ec 20205e78 branch mouse_retransmit_select_device_by_pb_button 
+00f3 6fe0c655 fetch 1 ,mem_config_select_device_button_gpio 
+00f4 c17f8000 rtneq gpio_disable 
+00f5 20205e78 branch mouse_retransmit_select_device_by_pb_button 
 
 p_g24_transmit_hop_process:
-00ed 6848c601 fetcht 1 ,mem_24g_retry 
-00ee 6fe0c621 fetch 1 ,mem_24g_fast_hop_count 
-00ef 98467c00 isub temp ,null 
-00f0 242100f2 nbranch p_g24_tx_fast_hop ,positive 
-00f1 20203681 branch g24_transmit_hop_process + 5 
+00f6 6848c601 fetcht 1 ,mem_24g_retry 
+00f7 6fe0c621 fetch 1 ,mem_24g_fast_hop_count 
+00f8 98467c00 isub temp ,null 
+00f9 242100fb nbranch p_g24_tx_fast_hop ,positive 
+00fa 20203681 branch g24_transmit_hop_process + 5 
 
 p_g24_tx_fast_hop:
-00f2 6fe2458f fetch 4 ,mem_24g_addr 
-00f3 684a45e4 fetcht 4 ,mem_24g_fast_conn_addr 
-00f4 98467c00 isub temp ,null 
-00f5 2022b222 branch g24_ch ,zero 
-00f6 20400287 call p_power_ctrl_txpower_incrs 
-00f7 2020369b branch g24_tx_fast_hop + 1 
+00fb 6fe2458f fetch 4 ,mem_24g_addr 
+00fc 684a45e4 fetcht 4 ,mem_24g_fast_conn_addr 
+00fd 98467c00 isub temp ,null 
+00fe 2022b222 branch g24_ch ,zero 
+00ff 2040029d call p_power_ctrl_txpower_incrs 
+0100 2020369b branch g24_tx_fast_hop + 1 
 
 p_txon:
-00f8 580aaa7e setarg 0x0aaa7e 
-00f9 67f18a0f store 3 ,0x8a0f 
-00fa 2000003c nop 60 
-00fb 708a2500 jam 0x00 ,0x8a25 
-00fc 708a260d jam 0x0d ,0x8a26 
-00fd 708a16f6 jam 0xf6 ,0x8a16 
-00fe 20202203 branch txon + 7 
+0101 580aaa7e setarg 0x0aaa7e 
+0102 67f18a0f store 3 ,0x8a0f 
+0103 2000003c nop 60 
+0104 708a2500 jam 0x00 ,0x8a25 
+0105 708a260d jam 0x0d ,0x8a26 
+0106 708a16f6 jam 0xf6 ,0x8a16 
+0107 20202203 branch txon + 7 
 
 p_set_tx_power:
-00ff 6fe0c141 fetch 1 ,mem_tx_power 
-0100 c0032225 beq tx_power_6db ,set_tx_power_7db 
-0101 c0050105 beq tx_power_10db ,p_set_tx_power_10db 
-0102 c04f010e beq tx_power_f30db ,p_set_tx_power_f30db 
-0103 c055010a beq tx_power_factory ,p_set_tx_power_factory 
-0104 2020220e branch set_tx_power + 2 
+0108 6fe0c141 fetch 1 ,mem_tx_power 
+0109 c0032225 beq tx_power_6db ,set_tx_power_7db 
+010a c005010e beq tx_power_10db ,p_set_tx_power_10db 
+010b c04f0117 beq tx_power_f30db ,p_set_tx_power_f30db 
+010c c0550113 beq tx_power_factory ,p_set_tx_power_factory 
+010d 2020220e branch set_tx_power + 2 
 
 p_set_tx_power_10db:
-0105 708a1425 jam 0x25 ,0x8a14 
-0106 58a93f3f setarg 0xa93f3f 
-0107 67f18a60 store 3 ,0x8a60 
-0108 708a631f jam 0x1f ,0x8a63 
-0109 20600000 rtn 
+010e 708a1425 jam 0x25 ,0x8a14 
+010f 58a93f3f setarg 0xa93f3f 
+0110 67f18a60 store 3 ,0x8a60 
+0111 708a631f jam 0x1f ,0x8a63 
+0112 20600000 rtn 
 
 p_set_tx_power_factory:
-010a 708a1417 jam 0x17 ,0x8a14 
-010b 6fe1ca08 fetch 3 ,mem_tx_power_factory_param_new 
-010c 67f18a60 store 3 ,0x8a60 
-010d 2020221a branch set_tx_power_8a63_28 
+0113 708a1417 jam 0x17 ,0x8a14 
+0114 6fe1ca08 fetch 3 ,mem_tx_power_factory_param_new 
+0115 67f18a60 store 3 ,0x8a60 
+0116 2020221a branch set_tx_power_8a63_28 
 
 p_set_tx_power_f30db:
-010e 708a1417 jam 0x17 ,0x8a14 
-010f 58250300 setarg 0x250300 
-0110 67f18a60 store 3 ,0x8a60 
-0111 2020221a branch set_tx_power_8a63_28 
+0117 708a1417 jam 0x17 ,0x8a14 
+0118 58250300 setarg 0x250300 
+0119 67f18a60 store 3 ,0x8a60 
+011a 2020221a branch set_tx_power_8a63_28 
 
 p_rx_dcoc:
-0112 20758000 rtn wake 
-0113 20402160 call set_sync_on 
-0114 d8400027 arg 39 ,temp 
-0115 2040216f call set_freq_rx 
-0116 204021a6 call rf_rx_enable 
-0117 708a257f jam 0x7f ,0x8a25 
-0118 708a301a jam 0x1a ,0x8a30 
-0119 708a3178 jam 0x78 ,0x8a31 
-011a 708a8fb2 jam 0xb2 ,0x8a8f 
-011b 708ac200 jam 0 ,0x8ac2 
-011c 708ac300 jam 0 ,0x8ac3 
-011d d8e00006 arg 6 ,queue 
-011e 2040012f call p_rx_dcoc_avg 
-011f 2a2ffe0d isolate1 13 ,rega 
-0120 2040211d call qset_start 
-0121 2a4ffe0d isolate1 13 ,regb 
-0122 2040211e call qset_p 
-0123 d8e00005 arg 5 ,queue 
+011b 20758000 rtn wake 
+011c 20402160 call set_sync_on 
+011d d8400027 arg 39 ,temp 
+011e 2040216f call set_freq_rx 
+011f 204021a6 call rf_rx_enable 
+0120 708a257f jam 0x7f ,0x8a25 
+0121 708a301a jam 0x1a ,0x8a30 
+0122 708a3178 jam 0x78 ,0x8a31 
+0123 708a8fb2 jam 0xb2 ,0x8a8f 
+0124 708ac200 jam 0 ,0x8ac2 
+0125 708ac300 jam 0 ,0x8ac3 
+0126 d8e00006 arg 6 ,queue 
+0127 20400138 call p_rx_dcoc_avg 
+0128 2a2ffe0d isolate1 13 ,rega 
+0129 2040211d call qset_start 
+012a 2a4ffe0d isolate1 13 ,regb 
+012b 2040211e call qset_p 
+012c d8e00005 arg 5 ,queue 
 
 p_rx_dcoc_loop2:
-0124 2040211c call qset1_p 
-0125 2040211e call qset_p 
-0126 2040012f call p_rx_dcoc_avg 
-0127 d8a08ac2 arg 0x8ac2 ,contw 
-0128 1a31fe00 rshift4 rega ,pdata 
-0129 20402117 call qsetxor 
-012a 1a51fe00 rshift4 regb ,pdata 
-012b 20402117 call qsetxor 
-012c 18e08fff increase -1 ,queue 
-012d 20210124 branch p_rx_dcoc_loop2 ,positive 
-012e 2020214f branch rx_dcoc_loop2 + 10 
+012d 2040211c call qset1_p 
+012e 2040211e call qset_p 
+012f 20400138 call p_rx_dcoc_avg 
+0130 d8a08ac2 arg 0x8ac2 ,contw 
+0131 1a31fe00 rshift4 rega ,pdata 
+0132 20402117 call qsetxor 
+0133 1a51fe00 rshift4 regb ,pdata 
+0134 20402117 call qsetxor 
+0135 18e08fff increase -1 ,queue 
+0136 2021012d branch p_rx_dcoc_loop2 ,positive 
+0137 2020214f branch rx_dcoc_loop2 + 10 
 
 p_rx_dcoc_avg:
-012f 2000003c nop 60 
-0130 58000f00 setarg mem_dcoc_buf 
-0131 67f10982 store 2 ,0x8982 
-0132 58000ff0 setarg mem_dcoc_buf_end 
-0133 67f10984 store 2 ,0x8984 
-0134 70898109 jam 0x9 ,0x8981 
-0135 70898103 jam 0x3 ,0x8981 
-0136 70898006 jam 0x6 ,0x8980 
-0137 2000003c nop 60 
-0138 da200000 arg 0 ,rega 
-0139 da400000 arg 0 ,regb 
-013a df200010 arg 16 ,loopcnt 
-013b d8c00f00 arg mem_dcoc_buf ,contr 
-013c 2020212d branch rx_dcoc_loop 
+0138 2000003c nop 60 
+0139 58000f00 setarg mem_dcoc_buf 
+013a 67f10982 store 2 ,0x8982 
+013b 58000ff0 setarg mem_dcoc_buf_end 
+013c 67f10984 store 2 ,0x8984 
+013d 70898109 jam 0x9 ,0x8981 
+013e 70898103 jam 0x3 ,0x8981 
+013f 70898006 jam 0x6 ,0x8980 
+0140 2000003c nop 60 
+0141 da200000 arg 0 ,rega 
+0142 da400000 arg 0 ,regb 
+0143 df200010 arg 16 ,loopcnt 
+0144 d8c00f00 arg mem_dcoc_buf ,contr 
+0145 2020212d branch rx_dcoc_loop 
 
 p_rfpll_aac_ghpc:
-013d 20758000 rtn wake 
-013e 20202272 branch rfpll_aac_ghpc + 1 
-
-p_dpll_ring_ibias_calc:
-013f 20600000 rtn 
+0146 20758000 rtn wake 
+0147 20202272 branch rfpll_aac_ghpc + 1 
 
 p_sadc_calibration:
-0140 20758000 rtn wake 
-0141 708a0777 jam 0x77 ,core_gpadc_ctrl 
-0142 708a08c9 jam 0xc9 ,core_gpadc_cfg0 
-0143 708a0b01 jam 0x01 ,core_gpadc_cfg3 
-0144 6fe0c409 fetch 1 ,mem_adc_clkdiv 
-0145 67f080cd store 1 ,core_sadc_clkdiv 
-0146 20000bb8 nop 3000 
-0147 20400168 call p_sadc_read 
-0148 708a08c1 jam 0xc1 ,core_gpadc_cfg0 
-0149 6a40c419 fetchr regb ,1 ,mem_spi_write_addr 
-014a df200008 arg 8 ,loopcnt 
-014b 20406f58 call sadc_cal_read + 1 
-014c 6fe0c419 fetch 1 ,mem_spi_write_addr 
-014d 67e0c433 store 1 ,mem_adc_cal_c7 
-014e 6240c419 storer regb ,1 ,mem_spi_write_addr 
-014f 20600000 rtn 
-
-p_enable_adc:
-0150 2040015e call p_sadc_cal_write 
-0151 6ff08a09 fetch 1 ,core_gpadc_cfg1 
-0152 793ffe07 set0 7 ,pdata 
-0153 67f08a09 store 1 ,core_gpadc_cfg1 
-0154 708a0777 jam 0x77 ,core_gpadc_ctrl 
-0155 708a08c1 jam 0xc1 ,core_gpadc_cfg0 
-0156 708a0b01 jam 0x01 ,core_gpadc_cfg3 
-0157 20406f90 call sadc_channel 
-0158 6fe0c409 fetch 1 ,mem_adc_clkdiv 
-0159 67f080cd store 1 ,core_sadc_clkdiv 
-015a 20000bb8 nop 3000 
-015b 20400168 call p_sadc_read 
-015c 7080cd00 jam 0 ,core_sadc_clkdiv 
-015d 20206fa1 branch sadc_dma 
-
-p_sadc_cal_write:
-015e 6ff080cc fetch 1 ,core_sadc_ctrl 
-015f 79207e01 set1 1 ,pdata 
-0160 67f080cc store 1 ,core_sadc_ctrl 
-0161 6a40c419 fetchr regb ,1 ,mem_spi_write_addr 
-0162 6fe0c433 fetch 1 ,mem_adc_cal_c7 
-0163 67e0c419 store 1 ,mem_spi_write_addr 
-0164 df200008 arg 8 ,loopcnt 
-0165 20406f67 call sadc_cal_write + 4 
-0166 6240c419 storer regb ,1 ,mem_spi_write_addr 
-0167 20600000 rtn 
+0148 20758000 rtn wake 
+0149 708a0777 jam 0x77 ,core_gpadc_ctrl 
+014a 708a08c9 jam 0xc9 ,core_gpadc_cfg0 
+014b 708a0b01 jam 0x01 ,core_gpadc_cfg3 
+014c 6fe0c409 fetch 1 ,mem_adc_clkdiv 
+014d 67f080cd store 1 ,core_sadc_clkdiv 
+014e 20000bb8 nop 3000 
+014f 20400158 call p_sadc_read 
+0150 708a08c1 jam 0xc1 ,core_gpadc_cfg0 
+0151 6a40c419 fetchr regb ,1 ,mem_spi_write_addr 
+0152 df200008 arg 8 ,loopcnt 
+0153 20406f58 call sadc_cal_read + 1 
+0154 6fe0c419 fetch 1 ,mem_spi_write_addr 
+0155 67e0c433 store 1 ,mem_adc_cal_c7 
+0156 6240c419 storer regb ,1 ,mem_spi_write_addr 
+0157 20600000 rtn 
 
 p_sadc_read:
-0168 7080cc03 jam 0x03 ,core_sadc_ctrl 
+0158 7080cc03 jam 0x03 ,core_sadc_ctrl 
 
 p_sadc_read_wait:
-0169 6ff08129 fetch 1 ,core_perf_status 
-016a c3028169 bbit0 saradc_done ,p_sadc_read_wait 
-016b 68590164 fetcht 2 ,core_sadc_data 
-016c 6049440a storet 2 ,mem_adc_current_value 
-016d 7080cc00 jam 0x00 ,core_sadc_ctrl 
-016e 20600000 rtn 
+0159 6ff08129 fetch 1 ,core_perf_status 
+015a c3028159 bbit0 saradc_done ,p_sadc_read_wait 
+015b 68590164 fetcht 2 ,core_sadc_data 
+015c 6049440a storet 2 ,mem_adc_current_value 
+015d 7080cc00 jam 0x00 ,core_sadc_ctrl 
+015e 20600000 rtn 
 
 p_set_lemode:
-016f 708a8211 jam 0x11 ,0x8a82 
-0170 708a8d12 jam 0x12 ,0x8a8d 
-0171 708a8e0a jam 0x0a ,0x8a8e 
-0172 6fe0c099 fetch 1 ,mem_fcomp_div 
-0173 c0080188 beq xtal_16m ,p_set_lemode_2m_16m 
-0174 58005762 setarg 0x5762 
-0175 67f10907 store 2 ,0x8907 
+015f 708a8211 jam 0x11 ,0x8a82 
+0160 708a8d12 jam 0x12 ,0x8a8d 
+0161 708a8e0a jam 0x0a ,0x8a8e 
+0162 6fe0c099 fetch 1 ,mem_fcomp_div 
+0163 c0080178 beq xtal_16m ,p_set_lemode_2m_16m 
+0164 58005762 setarg 0x5762 
+0165 67f10907 store 2 ,0x8907 
 
 p_set_lemode_2m:
-0176 70890103 jam 3 ,0x8901 
-0177 70893003 jam 3 ,0x8930 
-0178 c6168000 rtnmark1 mark_ble_2m 
-0179 70890101 jam 1 ,0x8901 
-017a 708a8207 jam 0x07 ,0x8a82 
-017b 708a8d44 jam 0x44 ,0x8a8d 
-017c 708a8e0a jam 0x0a ,0x8a8e 
-017d 6fe0c099 fetch 1 ,mem_fcomp_div 
-017e c0080185 beq xtal_16m ,p_set_lemode_1m_16m 
-017f 58002bb1 setarg 0x2bb1 
-0180 67f10907 store 2 ,0x8907 
+0166 70890103 jam 3 ,0x8901 
+0167 70893003 jam 3 ,0x8930 
+0168 c6168000 rtnmark1 mark_ble_2m 
+0169 70890101 jam 1 ,0x8901 
+016a 708a8207 jam 0x07 ,0x8a82 
+016b 708a8d44 jam 0x44 ,0x8a8d 
+016c 708a8e0a jam 0x0a ,0x8a8e 
+016d 6fe0c099 fetch 1 ,mem_fcomp_div 
+016e c0080175 beq xtal_16m ,p_set_lemode_1m_16m 
+016f 58002bb1 setarg 0x2bb1 
+0170 67f10907 store 2 ,0x8907 
 
 p_set_lemode_1m:
-0181 c6978000 rtnmark0 mark_ble_lr 
-0182 70893024 jam 0x24 ,0x8930 
-0183 70890105 jam 5 ,0x8901 
-0184 20600000 rtn 
+0171 c6978000 rtnmark0 mark_ble_lr 
+0172 70893024 jam 0x24 ,0x8930 
+0173 70890105 jam 5 ,0x8901 
+0174 20600000 rtn 
 
 p_set_lemode_1m_16m:
-0185 58004189 setarg 0x4189 
-0186 67f10907 store 2 ,0x8907 
-0187 20200181 branch p_set_lemode_1m 
+0175 58004189 setarg 0x4189 
+0176 67f10907 store 2 ,0x8907 
+0177 20200171 branch p_set_lemode_1m 
 
 p_set_lemode_2m_16m:
-0188 58008312 setarg 0x8312 
-0189 67f10907 store 2 ,0x8907 
-018a 20200176 branch p_set_lemode_2m 
+0178 58008312 setarg 0x8312 
+0179 67f10907 store 2 ,0x8907 
+017a 20200166 branch p_set_lemode_2m 
 
 p_le_check_retransmit_timesout:
-018b 6fe0cc02 fetch 1 ,mem_le_conn_rcv_new 
-018c da600100 arg 256 ,regc 
-018d 9a60fe00 iadd regc ,pdata 
-018e 20600000 rtn 
+017b 6fe0cbf8 fetch 1 ,mem_le_conn_rcv_new 
+017c da600100 arg 256 ,regc 
+017d 9a60fe00 iadd regc ,pdata 
+017e 20600000 rtn 
 
 p_le_got_first_packet:
-018f 202001af branch p_le_got_first_packet_new 
+017f 2020019f branch p_le_got_first_packet_new 
 
 p_le_slave_match:
-0190 20400192 call p_le_check_retransmit 
-0191 20202563 branch le_slave_match + 1 
+0180 20400182 call p_le_check_retransmit 
+0181 20202563 branch le_slave_match + 1 
 
 p_le_check_retransmit:
-0192 6fe0cc03 fetch 1 ,mem_le_conn_first_rcv 
-0193 207a0000 rtn blank 
-0194 6fe0cc04 fetch 1 ,mem_le_check_retransmit_flag 
-0195 247a0000 nrtn blank 
-0196 6848cc03 fetcht 1 ,mem_le_conn_first_rcv 
-0197 6fe0cc02 fetch 1 ,mem_le_conn_rcv_new 
-0198 98467c00 isub temp ,null 
-0199 2441018b ncall p_le_check_retransmit_timesout ,positive 
-019a 98467e00 isub temp ,pdata 
-019b 1fe67c64 sub pdata ,100 ,null 
-019c 202101a4 branch p_le_check_retransmit_count ,positive 
-019d 6fe0cc05 fetch 1 ,mem_le_retransmit_cnt 
-019e 1fe67c14 sub pdata ,20 ,null 
-019f 244101a2 ncall p_app_ble_disconnect ,positive 
-01a0 704c0401 jam 1 ,mem_le_check_retransmit_flag 
-01a1 20600000 rtn 
+0182 6fe0cbf9 fetch 1 ,mem_le_conn_first_rcv 
+0183 207a0000 rtn blank 
+0184 6fe0cbfa fetch 1 ,mem_le_check_retransmit_flag 
+0185 247a0000 nrtn blank 
+0186 6848cbf9 fetcht 1 ,mem_le_conn_first_rcv 
+0187 6fe0cbf8 fetch 1 ,mem_le_conn_rcv_new 
+0188 98467c00 isub temp ,null 
+0189 2441017b ncall p_le_check_retransmit_timesout ,positive 
+018a 98467e00 isub temp ,pdata 
+018b 1fe67c64 sub pdata ,100 ,null 
+018c 20210194 branch p_le_check_retransmit_count ,positive 
+018d 6fe0cbfb fetch 1 ,mem_le_retransmit_cnt 
+018e 1fe67c14 sub pdata ,20 ,null 
+018f 24410192 ncall p_app_ble_disconnect ,positive 
+0190 704bfa01 jam 1 ,mem_le_check_retransmit_flag 
+0191 20600000 rtn 
 
 p_app_ble_disconnect:
-01a2 704c0601 jam 1 ,mem_le_check_retransmit_discon_flag 
-01a3 2020431f branch app_ble_disconnect 
+0192 704bfc01 jam 1 ,mem_le_check_retransmit_discon_flag 
+0193 2020431f branch app_ble_disconnect 
 
 p_le_check_retransmit_count:
-01a4 6848817f fetcht 1 ,mem_le_arq 
-01a5 6fe0804c fetch 1 ,mem_le_rxbuf_data_header 
-01a6 1fe37e00 rshift pdata ,pdata 
-01a7 9842fe00 ixor temp ,pdata 
-01a8 2feffe02 isolate1 nesn ,pdata 
-01a9 58000000 setarg 0 
-01aa 6848cc05 fetcht 1 ,mem_le_retransmit_cnt 
-01ab 7920fe00 setflag true ,0 ,pdata 
-01ac 98408400 iadd temp ,temp 
-01ad 6048cc05 storet 1 ,mem_le_retransmit_cnt 
-01ae 20600000 rtn 
+0194 6848817f fetcht 1 ,mem_le_arq 
+0195 6fe0804c fetch 1 ,mem_le_rxbuf_data_header 
+0196 1fe37e00 rshift pdata ,pdata 
+0197 9842fe00 ixor temp ,pdata 
+0198 2feffe02 isolate1 nesn ,pdata 
+0199 58000000 setarg 0 
+019a 6848cbfb fetcht 1 ,mem_le_retransmit_cnt 
+019b 7920fe00 setflag true ,0 ,pdata 
+019c 98408400 iadd temp ,temp 
+019d 6048cbfb storet 1 ,mem_le_retransmit_cnt 
+019e 20600000 rtn 
 
 p_le_got_first_packet_new:
-01af 6fe08005 fetch 1 ,mem_le_conn_rcv 
-01b0 1fe0fe01 increase 1 ,pdata 
-01b1 67e08005 store 1 ,mem_le_conn_rcv 
-01b2 243681b6 nbranch p_le_got_first_packet_new + 7 ,match 
-01b3 6fe0cc02 fetch 1 ,mem_le_conn_rcv_new 
-01b4 1fe0fe01 increase 1 ,pdata 
-01b5 67e0cc02 store 1 ,mem_le_conn_rcv_new 
-01b6 6fe08168 fetch 1 ,mem_le_state 
-01b7 c3818000 rtnbit1 lestate_got_first_packet 
-01b8 79207e03 set1 lestate_got_first_packet ,pdata 
-01b9 67e08168 store 1 ,mem_le_state 
-01ba 6fe142f5 fetch 2 ,mem_le_init_superto 
-01bb 67e10196 store 2 ,mem_le_superto 
-01bc 58000000 setarg 0 
-01bd 67e2431d store 4 ,mem_le_transmit_window 
-01be 20600000 rtn 
+019f 6fe08005 fetch 1 ,mem_le_conn_rcv 
+01a0 1fe0fe01 increase 1 ,pdata 
+01a1 67e08005 store 1 ,mem_le_conn_rcv 
+01a2 243681a6 nbranch p_le_got_first_packet_new + 7 ,match 
+01a3 6fe0cbf8 fetch 1 ,mem_le_conn_rcv_new 
+01a4 1fe0fe01 increase 1 ,pdata 
+01a5 67e0cbf8 store 1 ,mem_le_conn_rcv_new 
+01a6 6fe08168 fetch 1 ,mem_le_state 
+01a7 c3818000 rtnbit1 lestate_got_first_packet 
+01a8 79207e03 set1 lestate_got_first_packet ,pdata 
+01a9 67e08168 store 1 ,mem_le_state 
+01aa 6fe142f5 fetch 2 ,mem_le_init_superto 
+01ab 67e10196 store 2 ,mem_le_superto 
+01ac 58000000 setarg 0 
+01ad 67e2431d store 4 ,mem_le_transmit_window 
+01ae 20600000 rtn 
 
 p_le_rx_dec:
-01bf 2040281c call le_check_retransmit 
-01c0 6a20804d fetchr rega ,1 ,mem_le_rxbuf_data_length 
-01c1 1a20a3fc increase -4 ,rega 
-01c2 242126fa nbranch le_crc_fail_consecutive ,positive 
-01c3 2020268e branch le_rx_dec + 6 
+01af 2040281c call le_check_retransmit 
+01b0 6a20804d fetchr rega ,1 ,mem_le_rxbuf_data_length 
+01b1 1a20a3fc increase -4 ,rega 
+01b2 242126fa nbranch le_crc_fail_consecutive ,positive 
+01b3 2020268e branch le_rx_dec + 6 
 
 p_le_rx_nopayload:
-01c4 09800018 parse demod ,bucket ,24 
-01c5 1fef7e00 rshift32 pdata ,pdata 
-01c6 1ff17e00 rshift16 pdata ,pdata 
-01c7 e7e18005 istore 3 ,contw 
-01c8 78287c00 enable swfine 
-01c9 2040270d call le_set_until_tx_timer 
-01ca 202326f6 branch le_crc_fail ,crc_failed 
-01cb c59926af bmark0 mark_ble_encryption ,le_rx_match 
-01cc 6fe0804d fetch 1 ,mem_le_rxbuf_data_length 
-01cd 203a26af branch le_rx_match ,blank 
-01ce 1fe0fffc increase -4 ,pdata 
-01cf 67e0804d store 1 ,mem_le_rxbuf_data_length 
-01d0 204072cb call wait_ccm_done 
-01d1 6ff08108 fetch 1 ,core_misc_status 
-01d2 c303a6fa bbit0 7 ,le_crc_fail_consecutive 
-01d3 1800700c force regidx_result ,regext_index 
-01d4 65e20154 storer regext ,4 ,mem_le_peer_mic 
-01d5 202026af branch le_rx_match 
+01b4 09800018 parse demod ,bucket ,24 
+01b5 1fef7e00 rshift32 pdata ,pdata 
+01b6 1ff17e00 rshift16 pdata ,pdata 
+01b7 e7e18005 istore 3 ,contw 
+01b8 78287c00 enable swfine 
+01b9 2040270d call le_set_until_tx_timer 
+01ba 202326f6 branch le_crc_fail ,crc_failed 
+01bb c59926af bmark0 mark_ble_encryption ,le_rx_match 
+01bc 6fe0804d fetch 1 ,mem_le_rxbuf_data_length 
+01bd 203a26af branch le_rx_match ,blank 
+01be 1fe0fffc increase -4 ,pdata 
+01bf 67e0804d store 1 ,mem_le_rxbuf_data_length 
+01c0 204072cb call wait_ccm_done 
+01c1 6ff08108 fetch 1 ,core_misc_status 
+01c2 c303a6fa bbit0 7 ,le_crc_fail_consecutive 
+01c3 1800700c force regidx_result ,regext_index 
+01c4 65e20154 storer regext ,4 ,mem_le_peer_mic 
+01c5 202026af branch le_rx_match 
 
 p_le_parse:
-01d6 6fe0c334 fetch 1 ,mem_le_packet_llid 
-01d7 c1000000 rtneq llid_reserved 
-01d8 c001b04a beq llid_le_ll ,le_parse_ll 
-01d9 202028e1 branch le_parse_l2cap 
-
-p_le_adv_not_match:
-01da 20402152 call shutdown_radio 
-01db 70890000 jam 0 ,0x8900 
-01dc 793f8030 set0 mark_ble_crc_fail ,mark 
-01dd 20202ae3 branch le_adv_not_match + 1 
+01c6 6fe0c334 fetch 1 ,mem_le_packet_llid 
+01c7 c1000000 rtneq llid_reserved 
+01c8 c001b04a beq llid_le_ll ,le_parse_ll 
+01c9 202028e1 branch le_parse_l2cap 
 
 p_le_init_adv:
-01de 793f8030 set0 mark_ble_crc_fail ,mark 
-01df 20202af6 branch le_init_adv + 1 
+01ca 793f8030 set0 mark_ble_crc_fail ,mark 
+01cb 20202af6 branch le_init_adv + 1 
+
+p_le_adv_not_match:
+01cc 20402152 call shutdown_radio 
+01cd 70890000 jam 0 ,0x8900 
+01ce 793f8030 set0 mark_ble_crc_fail ,mark 
+01cf 20202ae3 branch le_adv_not_match + 1 
 
 p_le_parse_l2cap:
-01e0 efe10006 ifetch 2 ,contr 
-01e1 c00201e3 beq le_l2cap_cid_att ,p_le_parse_att 
-01e2 202028eb branch le_parse_l2cap_next + 2 
+01d0 efe10006 ifetch 2 ,contr 
+01d1 c00201d3 beq le_l2cap_cid_att ,p_le_parse_att 
+01d2 202028eb branch le_parse_l2cap_next + 2 
 
 p_le_parse_att:
-01e3 efe18006 ifetch 3 ,contr 
-01e4 67e1c397 store 3 ,mem_le_att_opcode 
-01e5 c00501e8 beq attop_read_request ,p_le_parse_att_read_request 
-01e6 c00901f7 beq attop_write_request ,p_le_parse_att_write_request 
-01e7 20202b96 branch le_parse_att2 
+01d3 efe18006 ifetch 3 ,contr 
+01d4 67e1c397 store 3 ,mem_le_att_opcode 
+01d5 c00501d8 beq attop_read_request ,p_le_parse_att_read_request 
+01d6 c00901e7 beq attop_write_request ,p_le_parse_att_write_request 
+01d7 20202b96 branch le_parse_att2 
 
 p_le_parse_att_read_request:
-01e8 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-01e9 c31dad19 bbit0 mouse_enable_le_battery_service_cancel ,le_parse_att_read_request 
-01ea 20402dc7 call le_check_encrypt_state 
-01eb 68494398 fetcht 2 ,mem_le_att_handle 
-01ec 6fe0c321 fetch 1 ,mem_le_configuration 
-01ed c28181f2 bbit1 bit_ble_read_auth ,p_le_send_att_read_response_check_auth 
+01d8 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+01d9 c31dad19 bbit0 mouse_enable_le_battery_service_cancel ,le_parse_att_read_request 
+01da 20402dc7 call le_check_encrypt_state 
+01db 68494398 fetcht 2 ,mem_le_att_handle 
+01dc 6fe0c321 fetch 1 ,mem_le_configuration 
+01dd c28181e2 bbit1 bit_ble_read_auth ,p_le_send_att_read_response_check_auth 
 
 p_le_send_att_read_response:
-01ee 6fe14398 fetch 2 ,mem_le_att_handle 
-01ef c0182e03 beq 0x30 ,le_send_att_error_response_notfound 
-01f0 68494398 fetcht 2 ,mem_le_att_handle 
-01f1 20202d1d branch le_send_att_read_response 
+01de 6fe14398 fetch 2 ,mem_le_att_handle 
+01df c0182e03 beq 0x30 ,le_send_att_error_response_notfound 
+01e0 68494398 fetcht 2 ,mem_le_att_handle 
+01e1 20202d1d branch le_send_att_read_response 
 
 p_le_send_att_read_response_check_auth:
-01f2 6fe14332 fetch 2 ,mem_le_pairing_handle 
-01f3 98467c00 isub temp ,null 
-01f4 242281ee nbranch p_le_send_att_read_response ,zero 
-01f5 243401ee nbranch p_le_send_att_read_response ,user 
-01f6 20202d46 branch le_send_att_read_response_error_insufficient_auth 
+01e2 6fe14332 fetch 2 ,mem_le_pairing_handle 
+01e3 98467c00 isub temp ,null 
+01e4 242281de nbranch p_le_send_att_read_response ,zero 
+01e5 243401de nbranch p_le_send_att_read_response ,user 
+01e6 20202d46 branch le_send_att_read_response_error_insufficient_auth 
 
 p_le_parse_att_write_request:
-01f7 18c22200 copy contr ,rega 
-01f8 6fe14335 fetch 2 ,mem_le_l2cap_size 
-01f9 1fe0a5fd add pdata ,-3 ,regb 
-01fa 20402929 call le_writeatt_cb 
-01fb 6fe0c78f fetch 1 ,mem_mouse_bluetooth_fast_conn_flag 
-01fc c07fadac beq 0xff ,le_send_att_write_response_check_auth 
-01fd 6fe0c795 fetch 1 ,mem_mouse_le_reconnect_flag 
-01fe 203a2dac branch le_send_att_write_response_check_auth ,blank 
-01ff 6fe0c843 fetch 1 ,mem_le_connect_status_flag 
-0200 c280adac bbit1 ll_start_enc_flag ,le_send_att_write_response_check_auth 
-0201 5800001a setarg 0x001a 
-0202 68494398 fetcht 2 ,mem_le_att_handle 
-0203 98467c00 isub temp ,null 
-0204 2422adac nbranch le_send_att_write_response_check_auth ,zero 
-0205 20202d46 branch le_send_att_read_response_error_insufficient_auth 
+01e7 18c22200 copy contr ,rega 
+01e8 6fe14335 fetch 2 ,mem_le_l2cap_size 
+01e9 1fe0a5fd add pdata ,-3 ,regb 
+01ea 20402929 call le_writeatt_cb 
+01eb 6fe0c78f fetch 1 ,mem_mouse_bluetooth_fast_conn_flag 
+01ec c07fadac beq 0xff ,le_send_att_write_response_check_auth 
+01ed 6fe0c795 fetch 1 ,mem_mouse_le_reconnect_flag 
+01ee 203a2dac branch le_send_att_write_response_check_auth ,blank 
+01ef 6fe0c843 fetch 1 ,mem_le_connect_status_flag 
+01f0 c280adac bbit1 ll_start_enc_flag ,le_send_att_write_response_check_auth 
+01f1 5800001a setarg 0x001a 
+01f2 68494398 fetcht 2 ,mem_le_att_handle 
+01f3 98467c00 isub temp ,null 
+01f4 2422adac nbranch le_send_att_write_response_check_auth ,zero 
+01f5 20202d46 branch le_send_att_read_response_error_insufficient_auth 
 
 p_mouse_le:
-0206 20402a28 call le_fifo_check_nearly_full 
-0207 247a0000 nrtn blank 
-0208 6fe0c78f fetch 1 ,mem_mouse_bluetooth_fast_conn_flag 
-0209 c07f8211 beq 0xff ,p_mouse_le_next 
-020a 6fe0c843 fetch 1 ,mem_le_connect_status_flag 
-020b 1fe17e03 and pdata ,0x03 ,pdata 
-020c c1818000 rtnne 0x03 
-020d 6fe0cc04 fetch 1 ,mem_le_check_retransmit_flag 
-020e 207a0000 rtn blank 
-020f 6fe0cc06 fetch 1 ,mem_le_check_retransmit_discon_flag 
-0210 247a0000 nrtn blank 
+01f6 20402a28 call le_fifo_check_nearly_full 
+01f7 247a0000 nrtn blank 
+01f8 6fe0c78f fetch 1 ,mem_mouse_bluetooth_fast_conn_flag 
+01f9 c07f8201 beq 0xff ,p_mouse_le_next 
+01fa 6fe0c843 fetch 1 ,mem_le_connect_status_flag 
+01fb 1fe17e03 and pdata ,0x03 ,pdata 
+01fc c1818000 rtnne 0x03 
+01fd 6fe0cbfa fetch 1 ,mem_le_check_retransmit_flag 
+01fe 207a0000 rtn blank 
+01ff 6fe0cbfc fetch 1 ,mem_le_check_retransmit_discon_flag 
+0200 247a0000 nrtn blank 
 
 p_mouse_le_next:
-0211 6fe0c956 fetch 1 ,mem_mouse_clear_sensor_data_flag 
-0212 205a5a71 call mouse_clear_sensor_data_by_reset ,blank 
-0213 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-0214 c280db5b bbit1 mouse_24g_pairing_flag ,mouse_le_send_empty_packet 
-0215 c2805b5b bbit1 mouse_select_device_flag ,mouse_le_send_empty_packet 
-0216 c282db5b bbit1 mouse_bt_discovery_button_down_flag ,mouse_le_send_empty_packet 
-0217 c2835b5b bbit1 mouse_bt_discovery_button_long_down_flag ,mouse_le_send_empty_packet 
-0218 20405601 call mouse_motion 
-0219 20405ab2 call mouse_check_125hz 
-021a 24740000 nrtn user 
-021b 20405abc call mouse_current_mult_update 
-021c 2040049f call p_mouse_data_xy_release 
-021d 20205b37 branch mouse_le_next + 12 
+0201 6fe0c956 fetch 1 ,mem_mouse_clear_sensor_data_flag 
+0202 205a5a71 call mouse_clear_sensor_data_by_reset ,blank 
+0203 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+0204 c280db5b bbit1 mouse_24g_pairing_flag ,mouse_le_send_empty_packet 
+0205 c2805b5b bbit1 mouse_select_device_flag ,mouse_le_send_empty_packet 
+0206 c282db5b bbit1 mouse_bt_discovery_button_down_flag ,mouse_le_send_empty_packet 
+0207 c2835b5b bbit1 mouse_bt_discovery_button_long_down_flag ,mouse_le_send_empty_packet 
+0208 20405601 call mouse_motion 
+0209 20405ab2 call mouse_check_125hz 
+020a 24740000 nrtn user 
+020b 20405abc call mouse_current_mult_update 
+020c 204004dc call p_mouse_data_xy_release 
+020d 20205b37 branch mouse_le_next + 12 
+
+p_gpio_set_wake:
+020e 18467cff sub temp ,ui_button_gpio_disable ,null 
+020f 20628000 rtn zero 
+0210 d9000004 arg 4 ,debug 
+0211 284ffe07 isolate1 gpio_active_bit ,temp 
+0212 2020eebd branch gpio_set_wake_high ,true 
+0213 d9000003 arg 3 ,debug 
+0214 20206ebd branch gpio_set_wake_high 
+
+p_gpio_set_wake_by_current_state:
+0215 18467cff sub temp ,gpio_disable ,null 
+0216 20628000 rtn zero 
+0217 6048cb1d storet 1 ,mem_mouse_wheel_temp_gpio 
+0218 20406ee6 call gpio_get_bit 
+0219 2020821e branch p_gpio_set_qdec_mode ,true 
+
+p_gpio_set_low_wake_disable_qdec:
+021a 6848cb1d fetcht 1 ,mem_mouse_wheel_temp_gpio 
+021b 20406f0f call gpio_set_high_impedance 
+021c 6848cb1d fetcht 1 ,mem_mouse_wheel_temp_gpio 
+021d 20200225 branch p_gpio_set_low_wake 
+
+p_gpio_set_qdec_mode:
+021e 704b1e01 jam 1 ,mem_mouse_qdec_set_flag 
+021f 6848cb1d fetcht 1 ,mem_mouse_wheel_temp_gpio 
+0220 20406f0f call gpio_set_high_impedance 
+0221 6848cb1d fetcht 1 ,mem_mouse_wheel_temp_gpio 
+0222 20200223 branch p_mouse_qdec_lpm_cfg 
+
+p_mouse_qdec_lpm_cfg:
+0223 d9000006 arg 6 ,debug 
+0224 20206ebd branch gpio_set_wake_high 
+
+p_gpio_set_low_wake:
+0225 d9000003 arg 3 ,debug 
+0226 20206ebd branch gpio_set_wake_high 
+
+p_mouse_puchk_disable:
+0227 58000010 setarg 0x10 
+
+p_mouse_puchk_set:
+0228 67f08141 store 1 ,core_puwakeup 
+0229 37d98200 until null ,lpo_edge 
+022a 20600000 rtn 
+
+p_mouse_puchk_enable:
+022b 58000080 setarg 0x80 
+022c 20200228 branch p_mouse_puchk_set 
+
+p_mouse_lpm_before_common:
+022d 20400499 call p_clear_wake 
+022e 704b1e00 jam 0 ,mem_mouse_qdec_set_flag 
+022f 2020550d branch mouse_lpm_before_common + 1 
 
 p_lpm_sleep:
-021e 6fe143e9 fetch 2 ,mem_cb_before_lpm_sleep 
-021f 20407d79 call callback_func 
+0230 6fe143e9 fetch 2 ,mem_cb_before_lpm_sleep 
+0231 20407d79 call callback_func 
 
 p_lpm_sleep_skip_cb_function:
-0220 6fe240ad fetch 4 ,mem_sleep_counter_all 
-0221 9840fe00 iadd temp ,pdata 
-0222 67e240ad store 4 ,mem_sleep_counter_all 
-0223 20400225 call p_lpm_save_context 
-0224 20202425 branch lpm_sleep_skip_cb_function + 4 
+0232 6fe240ad fetch 4 ,mem_sleep_counter_all 
+0233 9840fe00 iadd temp ,pdata 
+0234 67e240ad store 4 ,mem_sleep_counter_all 
+0235 2040023b call p_lpm_save_context 
+0236 20400238 call p_mouse_puchk_set_check 
+0237 20202425 branch lpm_sleep_skip_cb_function + 4 
+
+p_mouse_puchk_set_check:
+0238 6fe0cb1e fetch 1 ,mem_mouse_qdec_set_flag 
+0239 203a0227 branch p_mouse_puchk_disable ,blank 
+023a 2020022b branch p_mouse_puchk_enable 
 
 p_lpm_save_context:
-0225 600440e7 storer mark ,8 ,mem_saved_mark 
-0226 d8c08070 arg core_gpio_conf ,contr 
-0227 d8a040cc arg mem_saved_gpio ,contw 
-0228 20407c8f call memcpy16 
-0229 d8c080d4 arg core_gpio_conf_hi ,contr 
-022a 20407c89 call memcpy8 
-022b 6ff08080 fetch 1 ,core_spid_ctrl 
-022c 67e0c0ef store 1 ,mem_saved_spidctrl 
-022d 18422400 copy temp ,regb 
+023b 600440e7 storer mark ,8 ,mem_saved_mark 
+023c d8c08070 arg core_gpio_conf ,contr 
+023d d8a040cc arg mem_saved_gpio ,contw 
+023e 20407c8f call memcpy16 
+023f d8c080d4 arg core_gpio_conf_hi ,contr 
+0240 20407c89 call memcpy8 
+0241 6ff08080 fetch 1 ,core_spid_ctrl 
+0242 67e0c0ef store 1 ,mem_saved_spidctrl 
+0243 18422400 copy temp ,regb 
 
 p_lpm_write_gpio_wakeup:
-022e df20000c arg 12 ,loopcnt 
-022f da200016 arg mem_gpio_wakeup_cfg ,rega 
-0230 da60814d arg core_gpio_wakeup_cfg ,regc 
-0231 37d98200 until null ,lpo_edge 
+0244 df20000c arg 12 ,loopcnt 
+0245 da200016 arg mem_gpio_wakeup_cfg ,rega 
+0246 da60814d arg core_gpio_wakeup_cfg ,regc 
+0247 37d98200 until null ,lpo_edge 
 
 p_lpm_write_gpio_loop:
-0232 efe08011 ifetch 1 ,rega 
-0233 e8408013 ifetcht 1 ,regc 
-0234 98467c00 isub temp ,null 
-0235 20228238 branch p_lpm_write_gpio_loop_next ,zero 
-0236 e7e08013 istore 1 ,regc 
-0237 37d98200 until null ,lpo_edge 
+0248 efe08011 ifetch 1 ,rega 
+0249 e8408013 ifetcht 1 ,regc 
+024a 98467c00 isub temp ,null 
+024b 2022824e branch p_lpm_write_gpio_loop_next ,zero 
+024c e7e08013 istore 1 ,regc 
+024d 37d98200 until null ,lpo_edge 
 
 p_lpm_write_gpio_loop_next:
-0238 1a20a201 increase 1 ,rega 
-0239 1a60a601 increase 1 ,regc 
-023a c2000232 loop p_lpm_write_gpio_loop 
-023b 1a420400 copy regb ,temp 
-023c 20600000 rtn 
+024e 1a20a201 increase 1 ,rega 
+024f 1a60a601 increase 1 ,regc 
+0250 c2000248 loop p_lpm_write_gpio_loop 
+0251 1a420400 copy regb ,temp 
+0252 20600000 rtn 
 
 p_otp_read_data:
-023d 20406b3a call enable_otp_read 
-023e 20406b75 call otp_read_data + 1 
-023f 20206b38 branch otp_disable_chgpump 
+0253 20406b3a call enable_otp_read 
+0254 20406b75 call otp_read_data + 1 
+0255 20206b38 branch otp_disable_chgpump 
 
 p_g24_reconn_dispatch:
-0240 6fe145e0 fetch 2 ,mem_24g_reconn_count 
-0241 d84001f8 arg 0x01f8 ,temp 
-0242 98417e00 iand temp ,pdata 
-0243 203a0248 branch p_g24_reconn_dispatch_next ,blank 
-0244 6fe145e0 fetch 2 ,mem_24g_reconn_count 
-0245 1fe0fe01 increase 1 ,pdata 
-0246 67e145e0 store 2 ,mem_24g_reconn_count 
-0247 20600000 rtn 
+0256 6fe145e0 fetch 2 ,mem_24g_reconn_count 
+0257 d84001f8 arg 0x01f8 ,temp 
+0258 98417e00 iand temp ,pdata 
+0259 203a025e branch p_g24_reconn_dispatch_next ,blank 
+025a 6fe145e0 fetch 2 ,mem_24g_reconn_count 
+025b 1fe0fe01 increase 1 ,pdata 
+025c 67e145e0 store 2 ,mem_24g_reconn_count 
+025d 20600000 rtn 
 
 p_g24_reconn_dispatch_next:
-0248 2040357f call g24_reconn_data_prep 
-0249 20403651 call g24_transmit_receive_ack 
-024a 242c3586 nbranch g24_reconn_device_fail ,sync 
-024b 2437b586 nbranch g24_reconn_device_fail ,user3 
-024c 2040366e call g24_ackpayload_parse 
-024d 6fe0c57d fetch 1 ,mem_24g_rxdata_length 
-024e 203a0257 branch p_recv_addr_zero_skip ,blank 
+025e 2040357f call g24_reconn_data_prep 
+025f 20403651 call g24_transmit_receive_ack 
+0260 242c3586 nbranch g24_reconn_device_fail ,sync 
+0261 2437b586 nbranch g24_reconn_device_fail ,user3 
+0262 2040366e call g24_ackpayload_parse 
+0263 6fe0c57d fetch 1 ,mem_24g_rxdata_length 
+0264 203a026d branch p_recv_addr_zero_skip ,blank 
 
 p_g24_reconn_dispatch_next_2:
-024f 6fe245cc fetch 4 ,mem_24g_pair_addr 
-0250 684a458f fetcht 4 ,mem_24g_addr 
-0251 98467c00 isub temp ,null 
-0252 20228254 branch p_g24_reconn_mode_judge ,zero 
-0253 2020356e branch g24_reconn_dispatch_next + 9 
+0265 6fe245cc fetch 4 ,mem_24g_pair_addr 
+0266 684a458f fetcht 4 ,mem_24g_addr 
+0267 98467c00 isub temp ,null 
+0268 2022826a branch p_g24_reconn_mode_judge ,zero 
+0269 2020356e branch g24_reconn_dispatch_next + 9 
 
 p_g24_reconn_mode_judge:
-0254 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-0255 c2983291 bbit1 mouse_enable_auto_24g_paring ,g24_pair_start 
-0256 20203549 branch g24_reconn_receiver_addr 
+026a 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+026b c2983291 bbit1 mouse_enable_auto_24g_paring ,g24_pair_start 
+026c 20203549 branch g24_reconn_receiver_addr 
 
 p_recv_addr_zero_skip:
-0257 6fe2455f fetch 4 ,mem_24g_rxpayload + 2 
-0258 207a0000 rtn blank 
-0259 2020024f branch p_g24_reconn_dispatch_next_2 
+026d 6fe2455f fetch 4 ,mem_24g_rxpayload + 2 
+026e 207a0000 rtn blank 
+026f 20200265 branch p_g24_reconn_dispatch_next_2 
 
 p_mouse_param_init:
-025a 2040543b call mouse_param_common_init 
-025b 2040025d call p_mouse_le_buff_modify 
-025c 2020544c branch mouse_param_init + 2 
+0270 2040543b call mouse_param_common_init 
+0271 20400273 call p_mouse_le_buff_modify 
+0272 2020544c branch mouse_param_init + 2 
 
 p_mouse_le_buff_modify:
-025d 58004a29 setarg mem_le_tx_buffer0_omemalloc_new 
-025e 67e1433f store 2 ,mem_ble_l2cap_tx_buff0_ptr 
-025f 58000020 setarg mouse_ble_l2cap_txbuff_size_new 
-0260 67e14341 store 2 ,mem_ble_l2cap_tx_buff_size_ptr 
-0261 20600000 rtn 
+0273 58004a1d setarg mem_le_tx_buffer0_omemalloc_new 
+0274 67e1433f store 2 ,mem_ble_l2cap_tx_buff0_ptr 
+0275 58000020 setarg mouse_ble_l2cap_txbuff_size_new 
+0276 67e14341 store 2 ,mem_ble_l2cap_tx_buff_size_ptr 
+0277 20600000 rtn 
 
 p_power_ctrl_start:
-0262 6fe0c437 fetch 1 ,mem_power_ctrl_disable 
-0263 247a0000 nrtn blank 
-0264 6fe144e9 fetch 2 ,mem_ui_state_map 
-0265 c3858000 rtnbit1 ui_state_ble_adv 
-0266 6a2145f0 fetchr rega ,2 ,mem_rssi_signal_buf_ptr 
-0267 204035b4 call rssi_average 
-0268 6048c624 storet 1 ,mem_rssi_avg_received 
-0269 6fe0c629 fetch 1 ,mem_rssi_dis_max_24g 
-026a c513026c bmark1 mark_24g ,p_power_ctrl_start_next 
-026b 6fe0c62c fetch 1 ,mem_rssi_dis_max_ble 
+0278 6fe0c437 fetch 1 ,mem_power_ctrl_disable 
+0279 247a0000 nrtn blank 
+027a 6fe144e9 fetch 2 ,mem_ui_state_map 
+027b c3858000 rtnbit1 ui_state_ble_adv 
+027c 6a2145f0 fetchr rega ,2 ,mem_rssi_signal_buf_ptr 
+027d 204035b4 call rssi_average 
+027e 6048c624 storet 1 ,mem_rssi_avg_received 
+027f 6fe0c629 fetch 1 ,mem_rssi_dis_max_24g 
+0280 c5130282 bmark1 mark_24g ,p_power_ctrl_start_next 
+0281 6fe0c62c fetch 1 ,mem_rssi_dis_max_ble 
 
 p_power_ctrl_start_next:
-026c 98467c00 isub temp ,null 
-026d 24210286 nbranch p_power_ctrl_txpower_incrs_force ,positive 
-026e 6fe0c626 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
-026f 1fe67c02 sub pdata ,2 ,null 
-0270 24210274 nbranch p_power_ctrl_txpower_decrs_check ,positive 
-0271 6fe0c626 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
-0272 c0000287 beq 0 ,p_power_ctrl_txpower_incrs 
-0273 20600000 rtn 
+0282 98467c00 isub temp ,null 
+0283 2421029c nbranch p_power_ctrl_txpower_incrs_force ,positive 
+0284 6fe0c626 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0285 1fe67c02 sub pdata ,2 ,null 
+0286 2421028a nbranch p_power_ctrl_txpower_decrs_check ,positive 
+0287 6fe0c626 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+0288 c000029d beq 0 ,p_power_ctrl_txpower_incrs 
+0289 20600000 rtn 
 
 p_power_ctrl_txpower_decrs_check:
-0274 6fe0c626 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
-0275 6848c627 fetcht 1 ,mem_power_ctrl_pac_succ_cnt_init 
-0276 98467c00 isub temp ,null 
-0277 24628000 nrtn zero 
-0278 70462600 jam 0 ,mem_power_ctrl_pac_succ_cnt 
+028a 6fe0c626 fetch 1 ,mem_power_ctrl_pac_succ_cnt 
+028b 6848c627 fetcht 1 ,mem_power_ctrl_pac_succ_cnt_init 
+028c 98467c00 isub temp ,null 
+028d 24628000 nrtn zero 
+028e 70462600 jam 0 ,mem_power_ctrl_pac_succ_cnt 
 
 p_power_ctrl_txpower_decrs:
-0279 6848c624 fetcht 1 ,mem_rssi_avg_received 
-027a 6fe0c628 fetch 1 ,mem_rssi_dis_min_24g 
-027b c513027d bmark1 mark_24g ,p_power_ctrl_txpower_decrs_next 
-027c 6fe0c62b fetch 1 ,mem_rssi_dis_min_ble 
+028f 6848c624 fetcht 1 ,mem_rssi_avg_received 
+0290 6fe0c628 fetch 1 ,mem_rssi_dis_min_24g 
+0291 c5130293 bmark1 mark_24g ,p_power_ctrl_txpower_decrs_next 
+0292 6fe0c62b fetch 1 ,mem_rssi_dis_min_ble 
 
 p_power_ctrl_txpower_decrs_next:
-027d 98467c00 isub temp ,null 
-027e 24610000 nrtn positive 
-027f 6fe0c625 fetch 1 ,mem_power_ctrl_level 
-0280 c0003715 beq 0 ,power_ctrl_decrs_level0 
-0281 1fe0ffff increase -1 ,pdata 
-0282 67e0c625 store 1 ,mem_power_ctrl_level 
-0283 c001028f beq 2 ,p_power_ctrl_decrs_level2 
-0284 c000b70b beq 1 ,power_ctrl_decrs_level1 
-0285 20203715 branch power_ctrl_decrs_level0 
+0293 98467c00 isub temp ,null 
+0294 24610000 nrtn positive 
+0295 6fe0c625 fetch 1 ,mem_power_ctrl_level 
+0296 c0003715 beq 0 ,power_ctrl_decrs_level0 
+0297 1fe0ffff increase -1 ,pdata 
+0298 67e0c625 store 1 ,mem_power_ctrl_level 
+0299 c00102a5 beq 2 ,p_power_ctrl_decrs_level2 
+029a c000b70b beq 1 ,power_ctrl_decrs_level1 
+029b 20203715 branch power_ctrl_decrs_level0 
 
 p_power_ctrl_txpower_incrs_force:
-0286 70462600 jam 0 ,mem_power_ctrl_pac_succ_cnt 
+029c 70462600 jam 0 ,mem_power_ctrl_pac_succ_cnt 
 
 p_power_ctrl_txpower_incrs:
-0287 6fe0c625 fetch 1 ,mem_power_ctrl_level 
-0288 c001828d beq 3 ,p_power_ctrl_incrs_level3 
-0289 1fe0fe01 increase 1 ,pdata 
-028a 67e0c625 store 1 ,mem_power_ctrl_level 
-028b c000b70b beq 1 ,power_ctrl_incrs_level1 
-028c c001028f beq 2 ,p_power_ctrl_incrs_level2 
+029d 6fe0c625 fetch 1 ,mem_power_ctrl_level 
+029e c00182a3 beq 3 ,p_power_ctrl_incrs_level3 
+029f 1fe0fe01 increase 1 ,pdata 
+02a0 67e0c625 store 1 ,mem_power_ctrl_level 
+02a1 c000b70b beq 1 ,power_ctrl_incrs_level1 
+02a2 c00102a5 beq 2 ,p_power_ctrl_incrs_level2 
 
 p_power_ctrl_incrs_level3:
-028d 70414105 jam tx_power_5db ,mem_tx_power 
-028e 20600000 rtn 
+02a3 70414105 jam tx_power_5db ,mem_tx_power 
+02a4 20600000 rtn 
 
 p_power_ctrl_decrs_level2:
 
 p_power_ctrl_incrs_level2:
-028f 70414103 jam tx_power_3db ,mem_tx_power 
-0290 20600000 rtn 
+02a5 70414103 jam tx_power_3db ,mem_tx_power 
+02a6 20600000 rtn 
 
 p_mouse_cb_fuction:
-0291 58006235 setarg mouse_24g_short_sleep 
-0292 67e145f8 store 2 ,mem_cb_24g_transmit_short_sleep 
-0293 5800029b setarg p_mouse_24g_long_sleep 
-0294 67e145fa store 2 ,mem_cb_24g_transmit_long_sleep 
-0295 580002b0 setarg p_mouse_24g_before_lpm_sleep 
-0296 67e143e9 store 2 ,mem_cb_before_lpm_sleep 
-0297 202053f3 branch mouse_cb_fuction + 7 
+02a7 58006235 setarg mouse_24g_short_sleep 
+02a8 67e145f8 store 2 ,mem_cb_24g_transmit_short_sleep 
+02a9 5800622b setarg mouse_24g_long_sleep 
+02aa 67e145fa store 2 ,mem_cb_24g_transmit_long_sleep 
+02ab 580002b9 setarg p_mouse_24g_before_lpm_sleep 
+02ac 67e143e9 store 2 ,mem_cb_before_lpm_sleep 
+02ad 202053f3 branch mouse_cb_fuction + 7 
 
 p_soft_reset:
-0298 20800000 clear_stack 
-0299 2055e004 call mouse_wheel_gpio_init ,wake 
-029a 20202003 branch soft_reset + 2 
-
-p_mouse_24g_long_sleep:
-029b 204036b4 call g24_lpm_wait 
-029c 24740000 nrtn user 
-029d 70477c01 jam 1 ,mem_mouse_24g_long_sleep_flag 
-029e 204036be call g24_setgpio_lpm_before 
-029f 70477200 jam 0 ,mem_mouse_24g_sleep_miss 
-02a0 204062aa call mouse_24g_send_time_long_wake 
-02a1 6fe0c73f fetch 1 ,mem_sensor_shutdown_flag 
-02a2 245a54dc ncall mouse_setgpio_hibernate ,blank 
-02a3 204002a6 call p_mouse_wheel_set_low_pullup 
-02a4 6fe245af fetch 4 ,mem_24g_enter_hibernate 
-02a5 20203622 branch g24_long_seep2 
-
-p_mouse_wheel_set_low_pullup:
-02a6 6fe0c73f fetch 1 ,mem_sensor_shutdown_flag 
-02a7 247a0000 nrtn blank 
-02a8 6848c64a fetcht 1 ,mem_whee_a_data_gpio 
-02a9 20406f0f call gpio_set_high_impedance 
-02aa 6848c64a fetcht 1 ,mem_whee_a_data_gpio 
-02ab 20406ec6 call gpio_set_low_pullup 
-02ac 6848c64b fetcht 1 ,mem_whee_b_data_gpio 
-02ad 20406f0f call gpio_set_high_impedance 
-02ae 6848c64b fetcht 1 ,mem_whee_b_data_gpio 
-02af 20206ec6 branch gpio_set_low_pullup 
+02ae 2435a002 nbranch soft_reset + 1 ,wake 
+02af 37d98200 until null ,lpo_edge 
+02b0 37d98200 until null ,lpo_edge 
+02b1 20800000 clear_stack 
+02b2 205582b4 call p_mouse_wheel_init_set ,wake 
+02b3 20202003 branch soft_reset + 2 
+
+p_mouse_wheel_init_set:
+02b4 20400227 call p_mouse_puchk_disable 
+02b5 6848c64a fetcht 1 ,mem_whee_a_data_gpio 
+02b6 20406edd call gpio_config_input 
+02b7 6848c64b fetcht 1 ,mem_whee_b_data_gpio 
+02b8 20206edd branch gpio_config_input 
 
 p_mouse_24g_before_lpm_sleep:
-02b0 20600000 rtn 
+02b9 20600000 rtn 
 
 p_mouse_load_device_info_check:
-02b1 20400442 call p_mouse_store_normal_tx_power 
-02b2 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-02b3 c289dd60 bbit1 mouse_enable_eeprom ,mouse_load_eeprom_info_check 
-02b4 c2895d6e bbit1 mouse_enable_flash ,mouse_load_flash_info_check 
-02b5 c28a02b7 bbit1 mouse_enable_otp ,p_mouse_load_otp_info_check 
-02b6 20600000 rtn 
+02ba 2040046c call p_mouse_store_normal_tx_power 
+02bb 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+02bc c289dd60 bbit1 mouse_enable_eeprom ,mouse_load_eeprom_info_check 
+02bd c2895d6e bbit1 mouse_enable_flash ,mouse_load_flash_info_check 
+02be c28a02c0 bbit1 mouse_enable_otp ,p_mouse_load_otp_info_check 
+02bf 20600000 rtn 
 
 p_mouse_load_otp_info_check:
-02b7 204002c2 call p_mouse_device_flag_temp_store 
-02b8 20405e43 call mouse_read_otp_dpi 
-02b9 20405db4 call mouse_read_otp_device_flag 
-02ba 204002d6 call p_mouse_device_flag_check 
-02bb 204002bf call p_mouse_select_device_by_switch_check 
-02bc 204002c5 call p_mouse_read_otp_device_info 
-02bd 204002de call p_mouse_read_otp_le_addr_increase_count_info 
-02be 20205daa branch mouse_otp_load_app_initflag 
+02c0 204002cb call p_mouse_device_flag_temp_store 
+02c1 20405e43 call mouse_read_otp_dpi 
+02c2 20405db4 call mouse_read_otp_device_flag 
+02c3 204002df call p_mouse_device_flag_check 
+02c4 204002c8 call p_mouse_select_device_by_switch_check 
+02c5 204002ce call p_mouse_read_otp_device_info 
+02c6 204002e7 call p_mouse_read_otp_le_addr_increase_count_info 
+02c7 20205daa branch mouse_otp_load_app_initflag 
 
 p_mouse_select_device_by_switch_check:
-02bf 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-02c0 c4150000 rtnbit0 mouse_enable_select_device_by_switch_gpio 
-02c1 204004aa call p_mouse_check_select_device_by_switch 
+02c8 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+02c9 c4150000 rtnbit0 mouse_enable_select_device_by_switch_gpio 
+02ca 204004e7 call p_mouse_check_select_device_by_switch 
 
 p_mouse_device_flag_temp_store:
-02c2 6fe0c666 fetch 1 ,mem_device_flag 
-02c3 67e0ca06 store 1 ,mem_mouse_device_flag_temp 
-02c4 20600000 rtn 
+02cb 6fe0c666 fetch 1 ,mem_device_flag 
+02cc 67e0ca06 store 1 ,mem_mouse_device_flag_temp 
+02cd 20600000 rtn 
 
 p_mouse_read_otp_device_info:
-02c5 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-02c6 c29f5dd1 bbit1 mouse_enable_24g_first_auto_pairing ,mouse_read_otp_le_device1 
-02c7 20205dcc branch mouse_read_otp_device_info 
+02ce 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+02cf c29f5dd1 bbit1 mouse_enable_24g_first_auto_pairing ,mouse_read_otp_le_device1 
+02d0 20205dcc branch mouse_read_otp_device_info 
 
 p_mouse_app_initflag_check:
-02c8 6fe1468e fetch 2 ,mem_store_flag 
-02c9 d840aa55 arg eeprom_init_flag ,temp 
-02ca 98467c00 isub temp ,null 
-02cb 2022834b branch p_mouse_load_device_info ,zero 
-02cc 6049468e storet 2 ,mem_store_flag 
-02cd 20405c9c call mouse_ble_init_address 
-02ce 6fe0c9a1 fetch 1 ,mem_device_flag_temp 
-02cf 67e0c666 store 1 ,mem_device_flag 
-02d0 20405c8c call mouse_load_default_dpi 
-02d1 58001122 setarg 0x1122 
-02d2 67e14695 store 2 ,mem_random_addr_increase_count 
+02d1 6fe1468e fetch 2 ,mem_store_flag 
+02d2 d840aa55 arg eeprom_init_flag ,temp 
+02d3 98467c00 isub temp ,null 
+02d4 20228354 branch p_mouse_load_device_info ,zero 
+02d5 6049468e storet 2 ,mem_store_flag 
+02d6 20405c9c call mouse_ble_init_address 
+02d7 6fe0c9a1 fetch 1 ,mem_device_flag_temp 
+02d8 67e0c666 store 1 ,mem_device_flag 
+02d9 20405c8c call mouse_load_default_dpi 
+02da 58001122 setarg 0x1122 
+02db 67e14695 store 2 ,mem_random_addr_increase_count 
 
 p_mouse_device_flag_temp_load:
-02d3 6fe0ca06 fetch 1 ,mem_mouse_device_flag_temp 
-02d4 67e0c666 store 1 ,mem_device_flag 
-02d5 20600000 rtn 
+02dc 6fe0ca06 fetch 1 ,mem_mouse_device_flag_temp 
+02dd 67e0c666 store 1 ,mem_device_flag 
+02de 20600000 rtn 
 
 p_mouse_device_flag_check:
-02d6 6fe0c666 fetch 1 ,mem_device_flag 
-02d7 1fe67c00 sub pdata ,0 ,null 
-02d8 202282d3 branch p_mouse_device_flag_temp_load ,zero 
-02d9 1fe67c04 sub pdata ,4 ,null 
-02da 202282dc branch p_mouse_24g_init ,zero 
-02db 20610000 rtn positive 
+02df 6fe0c666 fetch 1 ,mem_device_flag 
+02e0 1fe67c00 sub pdata ,0 ,null 
+02e1 202282dc branch p_mouse_device_flag_temp_load ,zero 
+02e2 1fe67c04 sub pdata ,4 ,null 
+02e3 202282e5 branch p_mouse_24g_init ,zero 
+02e4 20610000 rtn positive 
 
 p_mouse_24g_init:
-02dc 70466600 jam mode_24g_device ,mem_device_flag 
-02dd 20600000 rtn 
+02e5 70466600 jam mode_24g_device ,mem_device_flag 
+02e6 20600000 rtn 
 
 p_mouse_read_otp_le_addr_increase_count_info:
-02de 6fe0c666 fetch 1 ,mem_device_flag 
-02df c1000000 rtneq mode_24g_device 
-02e0 6a4149fe fetchr regb ,2 ,mem_otp_offset_le_addr_increase_count 
-02e1 1a422600 copy regb ,regc 
+02e7 6fe0c666 fetch 1 ,mem_device_flag 
+02e8 c1000000 rtneq mode_24g_device 
+02e9 6a4149fe fetchr regb ,2 ,mem_otp_offset_le_addr_increase_count 
+02ea 1a422600 copy regb ,regc 
 
 p_mouse_read_otp_le_addr_increase_count_loop:
-02e2 20405e3d call mouse_read_otp_le_addr_increase_count_common 
-02e3 6fe149e0 fetch 2 ,mem_random_addr_increase_count_temp 
-02e4 203a02ec branch p_mouse_le_addr_increase_count_load ,blank 
-02e5 67e149de store 2 ,mem_random_addr_increase_count_last 
-02e6 1a60a602 increase 2 ,regc 
-02e7 6fe14a00 fetch 2 ,mem_otp_offset_le_addr_increase_count_end 
-02e8 9a667c00 isub regc ,null 
-02e9 242102ec nbranch p_mouse_le_addr_increase_count_load ,positive 
-02ea 1a622400 copy regc ,regb 
-02eb 202002e2 branch p_mouse_read_otp_le_addr_increase_count_loop 
+02eb 20405e3d call mouse_read_otp_le_addr_increase_count_common 
+02ec 6fe149e0 fetch 2 ,mem_random_addr_increase_count_temp 
+02ed 203a02f5 branch p_mouse_le_addr_increase_count_load ,blank 
+02ee 67e149de store 2 ,mem_random_addr_increase_count_last 
+02ef 1a60a602 increase 2 ,regc 
+02f0 6fe14a00 fetch 2 ,mem_otp_offset_le_addr_increase_count_end 
+02f1 9a667c00 isub regc ,null 
+02f2 242102f5 nbranch p_mouse_le_addr_increase_count_load ,positive 
+02f3 1a622400 copy regc ,regb 
+02f4 202002eb branch p_mouse_read_otp_le_addr_increase_count_loop 
 
 p_mouse_le_addr_increase_count_load:
-02ec 6fe149de fetch 2 ,mem_random_addr_increase_count_last 
-02ed 67e14695 store 2 ,mem_random_addr_increase_count 
-02ee 20600000 rtn 
+02f5 6fe149de fetch 2 ,mem_random_addr_increase_count_last 
+02f6 67e14695 store 2 ,mem_random_addr_increase_count 
+02f7 20600000 rtn 
 
 p_mouse_store_device_info:
-02ef 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-02f0 c289dcb1 bbit1 mouse_enable_eeprom ,mouse_store_eeprom_device_info 
-02f1 c2895cb9 bbit1 mouse_enable_flash ,mouse_store_flash_device_info 
-02f2 c28a02f4 bbit1 mouse_enable_otp ,p_mouse_store_otp_device_info 
-02f3 20600000 rtn 
+02f8 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+02f9 c289dcb1 bbit1 mouse_enable_eeprom ,mouse_store_eeprom_device_info 
+02fa c2895cb9 bbit1 mouse_enable_flash ,mouse_store_flash_device_info 
+02fb c28a02fd bbit1 mouse_enable_otp ,p_mouse_store_otp_device_info 
+02fc 20600000 rtn 
 
 p_mouse_store_otp_device_info:
-02f4 204002f7 call p_mouse_write_otp_locall_addr 
-02f5 204002fc call p_mouse_write_otp_device_flag 
-02f6 20205cc1 branch mouse_store_otp_device_info + 1 
+02fd 20400300 call p_mouse_write_otp_locall_addr 
+02fe 20400305 call p_mouse_write_otp_device_flag 
+02ff 20205cc1 branch mouse_store_otp_device_info + 1 
 
 p_mouse_write_otp_locall_addr:
-02f7 6fe0c666 fetch 1 ,mem_device_flag 
-02f8 c1000000 rtneq mode_24g_device 
-02f9 c0008323 beq mode_bt_device1 ,p_mouse_write_otp_le_locall_addr1 
-02fa c0010337 beq mode_bt_device2 ,p_mouse_write_otp_le_locall_addr2 
-02fb 20600000 rtn 
+0300 6fe0c666 fetch 1 ,mem_device_flag 
+0301 c1000000 rtneq mode_24g_device 
+0302 c000832c beq mode_bt_device1 ,p_mouse_write_otp_le_locall_addr1 
+0303 c0010340 beq mode_bt_device2 ,p_mouse_write_otp_le_locall_addr2 
+0304 20600000 rtn 
 
 p_mouse_write_otp_device_flag:
-02fc 6a4149e2 fetchr regb ,2 ,mem_otp_offset_device_flag 
-02fd 1a422600 copy regb ,regc 
+0305 6a4149e2 fetchr regb ,2 ,mem_otp_offset_device_flag 
+0306 1a422600 copy regb ,regc 
 
 p_mouse_write_otp_device_flag_loop:
-02fe 20405dc0 call mouse_read_otp_device_flag_common 
-02ff 6fe0c9a1 fetch 1 ,mem_device_flag_temp 
-0300 203a0308 branch p_mouse_device_flag_store ,blank 
-0301 67e0c9a0 store 1 ,mem_device_flag_last 
-0302 1a60a601 increase 1 ,regc 
-0303 6fe149e4 fetch 2 ,mem_otp_offset_device_flag_end 
-0304 9a667c00 isub regc ,null 
-0305 24610000 nrtn positive 
-0306 1a622400 copy regc ,regb 
-0307 202002fe branch p_mouse_write_otp_device_flag_loop 
+0307 20405dc0 call mouse_read_otp_device_flag_common 
+0308 6fe0c9a1 fetch 1 ,mem_device_flag_temp 
+0309 203a0311 branch p_mouse_device_flag_store ,blank 
+030a 67e0c9a0 store 1 ,mem_device_flag_last 
+030b 1a60a601 increase 1 ,regc 
+030c 6fe149e4 fetch 2 ,mem_otp_offset_device_flag_end 
+030d 9a667c00 isub regc ,null 
+030e 24610000 nrtn positive 
+030f 1a622400 copy regc ,regb 
+0310 20200307 branch p_mouse_write_otp_device_flag_loop 
 
 p_mouse_device_flag_store:
-0308 6fe0c9a0 fetch 1 ,mem_device_flag_last 
-0309 1fe17ef0 and pdata ,0xf0 ,pdata 
-030a 203a0312 branch p_mouse_device_flag_store_check ,blank 
-030b 6fe0c666 fetch 1 ,mem_device_flag 
-030c 20400320 call p_mouse_device_flag_otp_store_judge 
-030d 67e0c9a2 store 1 ,mem_device_flag_value 
-
-p_mouse_devoce_flag_store_end:
-030e df200001 arg 1 ,loopcnt 
-030f 1a622400 copy regc ,regb 
-0310 da2049a2 arg mem_device_flag_value ,rega 
-0311 20206b45 branch otp_write 
+0311 6fe0c9a0 fetch 1 ,mem_device_flag_last 
+0312 1fe17ef0 and pdata ,0xf0 ,pdata 
+0313 203a031b branch p_mouse_device_flag_store_check ,blank 
+0314 6fe0c666 fetch 1 ,mem_device_flag 
+0315 20400329 call p_mouse_device_flag_otp_store_judge 
+0316 67e0c9a2 store 1 ,mem_device_flag_value 
+
+p_mouse_device_flag_store_end:
+0317 df200001 arg 1 ,loopcnt 
+0318 1a622400 copy regc ,regb 
+0319 da2049a2 arg mem_device_flag_value ,rega 
+031a 20206b45 branch otp_write 
 
 p_mouse_device_flag_store_check:
-0312 6848c9a0 fetcht 1 ,mem_device_flag_last 
-0313 6fe0c666 fetch 1 ,mem_device_flag 
-0314 20400320 call p_mouse_device_flag_otp_store_judge 
-0315 98467c00 isub temp ,null 
-0316 20628000 rtn zero 
-0317 1ff27e00 lshift4 pdata ,pdata 
-0318 9840fe00 iadd temp ,pdata 
-0319 67e0c9a2 store 1 ,mem_device_flag_value 
-031a 1a627e00 copy regc ,pdata 
-031b 684949e2 fetcht 2 ,mem_otp_offset_device_flag 
-031c 98467c00 isub temp ,null 
-031d 2022830e branch p_mouse_devoce_flag_store_end ,zero 
-031e 1a60a7ff increase -1 ,regc 
-031f 2020030e branch p_mouse_devoce_flag_store_end 
+031b 6848c9a0 fetcht 1 ,mem_device_flag_last 
+031c 6fe0c666 fetch 1 ,mem_device_flag 
+031d 20400329 call p_mouse_device_flag_otp_store_judge 
+031e 98467c00 isub temp ,null 
+031f 20628000 rtn zero 
+0320 1ff27e00 lshift4 pdata ,pdata 
+0321 9840fe00 iadd temp ,pdata 
+0322 67e0c9a2 store 1 ,mem_device_flag_value 
+0323 1a627e00 copy regc ,pdata 
+0324 684949e2 fetcht 2 ,mem_otp_offset_device_flag 
+0325 98467c00 isub temp ,null 
+0326 20228317 branch p_mouse_device_flag_store_end ,zero 
+0327 1a60a7ff increase -1 ,regc 
+0328 20200317 branch p_mouse_device_flag_store_end 
 
 p_mouse_device_flag_otp_store_judge:
-0320 c1800000 rtnne mode_24g_device 
-0321 1fe0fe04 increase 4 ,pdata 
-0322 20600000 rtn 
+0329 c1800000 rtnne mode_24g_device 
+032a 1fe0fe04 increase 4 ,pdata 
+032b 20600000 rtn 
 
 p_mouse_write_otp_le_locall_addr1:
-0323 6a4149ee fetchr regb ,2 ,mem_otp_offset_le_locall_addr1 
-0324 1a422600 copy regb ,regc 
+032c 6a4149ee fetchr regb ,2 ,mem_otp_offset_le_locall_addr1 
+032d 1a422600 copy regb ,regc 
 
 p_mouse_write_otp_le_locall_addr1_loop:
-0325 20405df3 call mouse_read_otp_le_locall_addr1_common 
-0326 6fe349b5 fetch 6 ,mem_mouse_le_locall_addr1_temp 
-0327 203a032f branch p_mouse_le_local_addr1_store ,blank 
-0328 67e349af store 6 ,mem_mouse_le_locall_addr1_last 
-0329 1a60a606 increase 6 ,regc 
-032a 6fe149f0 fetch 2 ,mem_otp_offset_le_locall_addr1_end 
-032b 9a667c00 isub regc ,null 
-032c 24610000 nrtn positive 
-032d 1a622400 copy regc ,regb 
-032e 20200325 branch p_mouse_write_otp_le_locall_addr1_loop 
+032e 20405df3 call mouse_read_otp_le_locall_addr1_common 
+032f 6fe349b5 fetch 6 ,mem_mouse_le_locall_addr1_temp 
+0330 203a0338 branch p_mouse_le_local_addr1_store ,blank 
+0331 67e349af store 6 ,mem_mouse_le_locall_addr1_last 
+0332 1a60a606 increase 6 ,regc 
+0333 6fe149f0 fetch 2 ,mem_otp_offset_le_locall_addr1_end 
+0334 9a667c00 isub regc ,null 
+0335 24610000 nrtn positive 
+0336 1a622400 copy regc ,regb 
+0337 2020032e branch p_mouse_write_otp_le_locall_addr1_loop 
 
 p_mouse_le_local_addr1_store:
-032f 6fe349af fetch 6 ,mem_mouse_le_locall_addr1_last 
-0330 684b466e fetcht 6 ,mem_device1_locall_addr 
-0331 98467c00 isub temp ,null 
-0332 20628000 rtn zero 
-0333 df200006 arg 6 ,loopcnt 
-0334 da20466e arg mem_device1_locall_addr ,rega 
-0335 1a622400 copy regc ,regb 
-0336 20206b45 branch otp_write 
+0338 6fe349af fetch 6 ,mem_mouse_le_locall_addr1_last 
+0339 684b466e fetcht 6 ,mem_device1_locall_addr 
+033a 98467c00 isub temp ,null 
+033b 20628000 rtn zero 
+033c df200006 arg 6 ,loopcnt 
+033d da20466e arg mem_device1_locall_addr ,rega 
+033e 1a622400 copy regc ,regb 
+033f 20206b45 branch otp_write 
 
 p_mouse_write_otp_le_locall_addr2:
-0337 6a4149f6 fetchr regb ,2 ,mem_otp_offset_le_locall_addr2 
-0338 1a422600 copy regb ,regc 
+0340 6a4149f6 fetchr regb ,2 ,mem_otp_offset_le_locall_addr2 
+0341 1a422600 copy regb ,regc 
 
 p_mouse_write_otp_le_locall_addr2_loop:
-0339 20405e17 call mouse_read_otp_le_locall_addr2_common 
-033a 6fe349cd fetch 6 ,mem_mouse_le_locall_addr2_temp 
-033b 203a0343 branch p_mouse_le_local_addr2_store ,blank 
-033c 67e349c7 store 6 ,mem_mouse_le_locall_addr2_last 
-033d 1a60a606 increase 6 ,regc 
-033e 6fe149f8 fetch 2 ,mem_otp_offset_le_locall_addr2_end 
-033f 9a667c00 isub regc ,null 
-0340 24610000 nrtn positive 
-0341 1a622400 copy regc ,regb 
-0342 20200339 branch p_mouse_write_otp_le_locall_addr2_loop 
+0342 20405e17 call mouse_read_otp_le_locall_addr2_common 
+0343 6fe349cd fetch 6 ,mem_mouse_le_locall_addr2_temp 
+0344 203a034c branch p_mouse_le_local_addr2_store ,blank 
+0345 67e349c7 store 6 ,mem_mouse_le_locall_addr2_last 
+0346 1a60a606 increase 6 ,regc 
+0347 6fe149f8 fetch 2 ,mem_otp_offset_le_locall_addr2_end 
+0348 9a667c00 isub regc ,null 
+0349 24610000 nrtn positive 
+034a 1a622400 copy regc ,regb 
+034b 20200342 branch p_mouse_write_otp_le_locall_addr2_loop 
 
 p_mouse_le_local_addr2_store:
-0343 6fe349c7 fetch 6 ,mem_mouse_le_locall_addr2_last 
-0344 684b467b fetcht 6 ,mem_device2_locall_addr 
-0345 98467c00 isub temp ,null 
-0346 20628000 rtn zero 
-0347 df200006 arg 6 ,loopcnt 
-0348 da20467b arg mem_device2_locall_addr ,rega 
-0349 1a622400 copy regc ,regb 
-034a 20206b45 branch otp_write 
+034c 6fe349c7 fetch 6 ,mem_mouse_le_locall_addr2_last 
+034d 684b467b fetcht 6 ,mem_device2_locall_addr 
+034e 98467c00 isub temp ,null 
+034f 20628000 rtn zero 
+0350 df200006 arg 6 ,loopcnt 
+0351 da20467b arg mem_device2_locall_addr ,rega 
+0352 1a622400 copy regc ,regb 
+0353 20206b45 branch otp_write 
 
 p_mouse_load_device_info:
-034b 20400384 call p_mouse_le_locall_addr_init_check 
-034c 2040039c call p_mouse_select_reconn_device 
-034d 2040034f call p_mouse_otp_load_dpi 
-034e 20205c90 branch mouse_load_device_info + 1 
+0354 2040038d call p_mouse_le_locall_addr_init_check 
+0355 204003a5 call p_mouse_select_reconn_device 
+0356 20400358 call p_mouse_otp_load_dpi 
+0357 20205c90 branch mouse_load_device_info + 1 
 
 p_mouse_otp_load_dpi:
-034f 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-0350 c4078000 rtnbit0 mouse_enable_load_and_store_dpi 
-0351 6fe0c690 fetch 1 ,mem_mouse_dpi 
-0352 c0005c94 beq 0 ,mouse_otp_load_dpi 
-0353 c0030355 beq 6 ,p_mouse_dpi_reinit 
-0354 20600000 rtn 
+0358 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+0359 c4078000 rtnbit0 mouse_enable_load_and_store_dpi 
+035a 6fe0c690 fetch 1 ,mem_mouse_dpi 
+035b c0005c94 beq 0 ,mouse_otp_load_dpi 
+035c c003035e beq 6 ,p_mouse_dpi_reinit 
+035d 20600000 rtn 
 
 p_mouse_dpi_reinit:
-0355 70469000 jam mouse_dpi_level1 ,mem_mouse_dpi 
-0356 20600000 rtn 
+035e 70469000 jam mouse_dpi_level1 ,mem_mouse_dpi 
+035f 20600000 rtn 
 
 p_mouse_store_dpi_info_check:
-0357 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-0358 c289dcb5 bbit1 mouse_enable_eeprom ,mouse_store_eerpom_dpi 
-0359 c28a035b bbit1 mouse_enable_otp ,p_mouse_store_otp_dpi 
-035a 20600000 rtn 
+0360 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+0361 c289dcb5 bbit1 mouse_enable_eeprom ,mouse_store_eerpom_dpi 
+0362 c28a0364 bbit1 mouse_enable_otp ,p_mouse_store_otp_dpi 
+0363 20600000 rtn 
 
 p_mouse_store_otp_dpi:
-035b 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-035c c4078000 rtnbit0 mouse_enable_load_and_store_dpi 
-035d 6a4149fa fetchr regb ,2 ,mem_otp_offset_dpi 
-035e 1a422600 copy regb ,regc 
+0364 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+0365 c4078000 rtnbit0 mouse_enable_load_and_store_dpi 
+0366 6a4149fa fetchr regb ,2 ,mem_otp_offset_dpi 
+0367 1a422600 copy regb ,regc 
 
 p_mouse_otp_store_dpi_loop:
-035f 20405e51 call mouse_read_otp_dpi_common 
-0360 6fe0c9d4 fetch 1 ,mem_mouse_dpi_temp 
-0361 203a0369 branch p_mouse_otp_dpi_store ,blank 
-0362 67e0c9d3 store 1 ,mem_mouse_dpi_last 
-0363 1a60a601 increase 1 ,regc 
-0364 6fe149fc fetch 2 ,mem_otp_offset_dpi_end 
-0365 9a667c00 isub regc ,null 
-0366 24610000 nrtn positive 
-0367 1a622400 copy regc ,regb 
-0368 2020035f branch p_mouse_otp_store_dpi_loop 
+0368 20405e51 call mouse_read_otp_dpi_common 
+0369 6fe0c9d4 fetch 1 ,mem_mouse_dpi_temp 
+036a 203a0372 branch p_mouse_otp_dpi_store ,blank 
+036b 67e0c9d3 store 1 ,mem_mouse_dpi_last 
+036c 1a60a601 increase 1 ,regc 
+036d 6fe149fc fetch 2 ,mem_otp_offset_dpi_end 
+036e 9a667c00 isub regc ,null 
+036f 24610000 nrtn positive 
+0370 1a622400 copy regc ,regb 
+0371 20200368 branch p_mouse_otp_store_dpi_loop 
 
 p_mouse_otp_dpi_store:
-0369 6fe0c9d3 fetch 1 ,mem_mouse_dpi_last 
-036a 1fe17ef0 and pdata ,0xf0 ,pdata 
-036b 203a0373 branch p_mouse_dpi_store_last_check ,blank 
-036c 6fe0c690 fetch 1 ,mem_mouse_dpi 
-036d 20400381 call p_mouse_dpi_otp_store_judge 
-036e 67e0c9d5 store 1 ,mem_mouse_otp_dpi_value 
+0372 6fe0c9d3 fetch 1 ,mem_mouse_dpi_last 
+0373 1fe17ef0 and pdata ,0xf0 ,pdata 
+0374 203a037c branch p_mouse_dpi_store_last_check ,blank 
+0375 6fe0c690 fetch 1 ,mem_mouse_dpi 
+0376 2040038a call p_mouse_dpi_otp_store_judge 
+0377 67e0c9d5 store 1 ,mem_mouse_otp_dpi_value 
 
 p_mouse_dpi_store_end:
-036f df200001 arg 1 ,loopcnt 
-0370 1a622400 copy regc ,regb 
-0371 da2049d5 arg mem_mouse_otp_dpi_value ,rega 
-0372 20206b45 branch otp_write 
+0378 df200001 arg 1 ,loopcnt 
+0379 1a622400 copy regc ,regb 
+037a da2049d5 arg mem_mouse_otp_dpi_value ,rega 
+037b 20206b45 branch otp_write 
 
 p_mouse_dpi_store_last_check:
-0373 6848c9d3 fetcht 1 ,mem_mouse_dpi_last 
-0374 6fe0c690 fetch 1 ,mem_mouse_dpi 
-0375 20400381 call p_mouse_dpi_otp_store_judge 
-0376 98467c00 isub temp ,null 
-0377 20628000 rtn zero 
-0378 1ff27e00 lshift4 pdata ,pdata 
-0379 9840fe00 iadd temp ,pdata 
-037a 67e0c9d5 store 1 ,mem_mouse_otp_dpi_value 
-037b 1a627e00 copy regc ,pdata 
-037c 684949fa fetcht 2 ,mem_otp_offset_dpi 
-037d 98467c00 isub temp ,null 
-037e 2022836f branch p_mouse_dpi_store_end ,zero 
-037f 1a60a7ff increase -1 ,regc 
-0380 2020036f branch p_mouse_dpi_store_end 
+037c 6848c9d3 fetcht 1 ,mem_mouse_dpi_last 
+037d 6fe0c690 fetch 1 ,mem_mouse_dpi 
+037e 2040038a call p_mouse_dpi_otp_store_judge 
+037f 98467c00 isub temp ,null 
+0380 20628000 rtn zero 
+0381 1ff27e00 lshift4 pdata ,pdata 
+0382 9840fe00 iadd temp ,pdata 
+0383 67e0c9d5 store 1 ,mem_mouse_otp_dpi_value 
+0384 1a627e00 copy regc ,pdata 
+0385 684949fa fetcht 2 ,mem_otp_offset_dpi 
+0386 98467c00 isub temp ,null 
+0387 20228378 branch p_mouse_dpi_store_end ,zero 
+0388 1a60a7ff increase -1 ,regc 
+0389 20200378 branch p_mouse_dpi_store_end 
 
 p_mouse_dpi_otp_store_judge:
-0381 c1800000 rtnne mouse_dpi_level1 
-0382 1fe0fe06 increase 6 ,pdata 
-0383 20600000 rtn 
+038a c1800000 rtnne mouse_dpi_level1 
+038b 1fe0fe06 increase 6 ,pdata 
+038c 20600000 rtn 
 
 p_mouse_le_locall_addr_init_check:
-0384 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-0385 c29f038b bbit1 mouse_enable_24g_first_auto_pairing ,p_mouse_le_addr1_init_check 
-0386 6fe0c666 fetch 1 ,mem_device_flag 
-0387 c1000000 rtneq mode_24g_device 
-0388 c000838b beq mode_bt_device1 ,p_mouse_le_addr1_init_check 
-0389 c0010392 beq mode_bt_device2 ,p_mouse_le_addr2_init_check 
-038a 20600000 rtn 
+038d 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+038e c29f0394 bbit1 mouse_enable_24g_first_auto_pairing ,p_mouse_le_addr1_init_check 
+038f 6fe0c666 fetch 1 ,mem_device_flag 
+0390 c1000000 rtneq mode_24g_device 
+0391 c0008394 beq mode_bt_device1 ,p_mouse_le_addr1_init_check 
+0392 c001039b beq mode_bt_device2 ,p_mouse_le_addr2_init_check 
+0393 20600000 rtn 
 
 p_mouse_le_addr1_init_check:
-038b 6fe3466e fetch 6 ,mem_device1_locall_addr 
-038c 684b46e6 fetcht 6 ,mem_mouse_compare_addr 
-038d 98467c00 isub temp ,null 
-038e 24628000 nrtn zero 
-038f 6fe342db fetch 6 ,mem_le_lap 
-0390 67e3466e store 6 ,mem_device1_locall_addr 
-0391 20600000 rtn 
+0394 6fe3466e fetch 6 ,mem_device1_locall_addr 
+0395 684b46e6 fetcht 6 ,mem_mouse_compare_addr 
+0396 98467c00 isub temp ,null 
+0397 24628000 nrtn zero 
+0398 6fe342db fetch 6 ,mem_le_lap 
+0399 67e3466e store 6 ,mem_device1_locall_addr 
+039a 20600000 rtn 
 
 p_mouse_le_addr2_init_check:
-0392 6fe3466e fetch 6 ,mem_device1_locall_addr 
-0393 684b46e6 fetcht 6 ,mem_mouse_compare_addr 
-0394 98467c00 isub temp ,null 
-0395 24628000 nrtn zero 
-0396 6fe342db fetch 6 ,mem_le_lap 
-0397 1fe0ff00 add pdata ,0x0100 ,pdata 
-0398 67e3466e store 6 ,mem_device1_locall_addr 
-0399 20600000 rtn 
+039b 6fe3466e fetch 6 ,mem_device1_locall_addr 
+039c 684b46e6 fetcht 6 ,mem_mouse_compare_addr 
+039d 98467c00 isub temp ,null 
+039e 24628000 nrtn zero 
+039f 6fe342db fetch 6 ,mem_le_lap 
+03a0 1fe0ff00 add pdata ,0x0100 ,pdata 
+03a1 67e3466e store 6 ,mem_device1_locall_addr 
+03a2 20600000 rtn 
 
 p_mouse_buletooth_fast_conn_end:
-039a 2040039c call p_mouse_select_reconn_device 
-039b 20205a9c branch mouse_buletooth_fast_conn_end + 2 
+03a3 204003a5 call p_mouse_select_reconn_device 
+03a4 20205a9c branch mouse_buletooth_fast_conn_end + 2 
 
 p_mouse_select_reconn_device:
-039c 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-039d c30a5c6f bbit0 mouse_enable_otp ,mouse_select_reconn_device 
-039e c29f03a4 bbit1 mouse_enable_24g_first_auto_pairing ,p_mouse_load_le_device1 
+03a5 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+03a6 c30a5c6f bbit0 mouse_enable_otp ,mouse_select_reconn_device 
+03a7 c29f03ad bbit1 mouse_enable_24g_first_auto_pairing ,p_mouse_load_le_device1 
 
 p_mouse_select_reconn_device_start:
-039f 6fe0c666 fetch 1 ,mem_device_flag 
-03a0 c1000000 rtneq mode_24g_device 
-03a1 c00083a4 beq mode_bt_device1 ,p_mouse_load_le_device1 
-03a2 c00103a9 beq mode_bt_device2 ,p_mouse_load_le_device2 
-03a3 20600000 rtn 
+03a8 6fe0c666 fetch 1 ,mem_device_flag 
+03a9 c1000000 rtneq mode_24g_device 
+03aa c00083ad beq mode_bt_device1 ,p_mouse_load_le_device1 
+03ab c00103b2 beq mode_bt_device2 ,p_mouse_load_le_device2 
+03ac 20600000 rtn 
 
 p_mouse_load_le_device1:
-03a4 6fe34668 fetch 6 ,mem_device1_addr 
-03a5 67e34116 store 6 ,mem_hci_plap 
-03a6 6fe3466e fetch 6 ,mem_device1_locall_addr 
-03a7 67e342db store 6 ,mem_le_lap 
-03a8 20600000 rtn 
+03ad 6fe34668 fetch 6 ,mem_device1_addr 
+03ae 67e34116 store 6 ,mem_hci_plap 
+03af 6fe3466e fetch 6 ,mem_device1_locall_addr 
+03b0 67e342db store 6 ,mem_le_lap 
+03b1 20600000 rtn 
 
 p_mouse_load_le_device2:
-03a9 6fe34675 fetch 6 ,mem_device2_addr 
-03aa 67e34116 store 6 ,mem_hci_plap 
-03ab 6fe3467b fetch 6 ,mem_device2_locall_addr 
-03ac 67e342db store 6 ,mem_le_lap 
-03ad 20600000 rtn 
+03b2 6fe34675 fetch 6 ,mem_device2_addr 
+03b3 67e34116 store 6 ,mem_hci_plap 
+03b4 6fe3467b fetch 6 ,mem_device2_locall_addr 
+03b5 67e342db store 6 ,mem_le_lap 
+03b6 20600000 rtn 
 
 p_mouse_store_remote_bdaddr:
-03ae 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-03af c4010000 rtnbit0 mouse_store_eeprom_flag 
-03b0 c30a5c43 bbit0 mouse_enable_otp ,mouse_store_remote_bdaddr + 1 
-03b1 d8e00002 arg mouse_store_eeprom_flag ,queue 
-03b2 20405f04 call mouse_disable_function_flag 
-03b3 20405c4a call mouse_check_device_addr 
-03b4 204003b6 call p_mouse_before_store_reconn_info 
-03b5 20205ca3 branch mouse_store_device_info_delay 
+03b7 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+03b8 c4010000 rtnbit0 mouse_store_eeprom_flag 
+03b9 c30a5c43 bbit0 mouse_enable_otp ,mouse_store_remote_bdaddr + 1 
+03ba d8e00002 arg mouse_store_eeprom_flag ,queue 
+03bb 20405f04 call mouse_disable_function_flag 
+03bc 20405c4a call mouse_check_device_addr 
+03bd 204003bf call p_mouse_before_store_reconn_info 
+03be 20205ca3 branch mouse_store_device_info_delay 
 
 p_mouse_before_store_reconn_info:
-03b6 6fe0c666 fetch 1 ,mem_device_flag 
-03b7 c00083ba beq mode_bt_device1 ,p_mouse_store_le_device1 
-03b8 c00103bf beq mode_bt_device2 ,p_mouse_store_le_device2 
-03b9 20600000 rtn 
+03bf 6fe0c666 fetch 1 ,mem_device_flag 
+03c0 c00083c3 beq mode_bt_device1 ,p_mouse_store_le_device1 
+03c1 c00103c8 beq mode_bt_device2 ,p_mouse_store_le_device2 
+03c2 20600000 rtn 
 
 p_mouse_store_le_device1:
-03ba 6fe30178 fetch 6 ,mem_le_plap 
-03bb 67e34668 store 6 ,mem_device1_addr 
-03bc 6fe342db fetch 6 ,mem_le_lap 
-03bd 67e3466e store 6 ,mem_device1_locall_addr 
-03be 20600000 rtn 
+03c3 6fe30178 fetch 6 ,mem_le_plap 
+03c4 67e34668 store 6 ,mem_device1_addr 
+03c5 6fe342db fetch 6 ,mem_le_lap 
+03c6 67e3466e store 6 ,mem_device1_locall_addr 
+03c7 20600000 rtn 
 
 p_mouse_store_le_device2:
-03bf 6fe30178 fetch 6 ,mem_le_plap 
-03c0 67e34675 store 6 ,mem_device2_addr 
-03c1 6fe342db fetch 6 ,mem_le_lap 
-03c2 67e3467b store 6 ,mem_device2_locall_addr 
-03c3 20600000 rtn 
+03c8 6fe30178 fetch 6 ,mem_le_plap 
+03c9 67e34675 store 6 ,mem_device2_addr 
+03ca 6fe342db fetch 6 ,mem_le_lap 
+03cb 67e3467b store 6 ,mem_device2_locall_addr 
+03cc 20600000 rtn 
 
 p_mouse_bb_event_timer:
-03c4 204003da call p_mouse_le_send_conn_param_update_timer 
-03c5 2040614d call mouse_low_voltage_led_timer 
-03c6 2040553d call mouse_adc_read 
-03c7 20406110 call mouse_logo_led_on_timer 
-03c8 204061b1 call mouse_led_multi_timer 
-03c9 2040611e call mouse_dpi_led_blink_delay_timer 
-03ca 2040328e call g24_pair_timeout_timer 
-03cb 20403531 call g24_reconn_timeout_timer 
-03cc 20405fdd call mouse_24g_long_sleep_param_update_timer 
-03cd 2040572c call mouse_dpi_key_check_long_press 
-03ce 20405b9b call mouse_bt_discovery_check 
-03cf 20405bab call mouse_commbination_key_process 
-03d0 20405bce call mouse_check_discovery_timeout_timer 
-03d1 20405bd3 call mouse_check_direct_timeout_timer 
-03d2 20405be1 call mouse_le_enable_att_list_timer 
-03d3 20405bee call mouse_le_battery_updata_timer 
-03d4 20405be4 call mouse_le_send_smp_security_request_timer 
-03d5 20405bfb call mouse_check_reconnect_delay_long_sleep 
-03d6 204003dd call p_mouse_current_mult_update_timer 
-03d7 204056b6 call mouse_wheel_trigger_timer 
-03d8 20405c0e call mouse_store_information_delay_timer 
-03d9 20205c05 branch mouse_check_no_data_timeout_timer 
+03cd 204003e3 call p_mouse_le_send_conn_param_update_timer 
+03ce 2040614d call mouse_low_voltage_led_timer 
+03cf 2040553d call mouse_adc_read 
+03d0 20406110 call mouse_logo_led_on_timer 
+03d1 204061b1 call mouse_led_multi_timer 
+03d2 2040611e call mouse_dpi_led_blink_delay_timer 
+03d3 2040328e call g24_pair_timeout_timer 
+03d4 20403531 call g24_reconn_timeout_timer 
+03d5 20405fdd call mouse_24g_long_sleep_param_update_timer 
+03d6 2040572c call mouse_dpi_key_check_long_press 
+03d7 20405b9b call mouse_bt_discovery_check 
+03d8 20405bab call mouse_commbination_key_process 
+03d9 20405bce call mouse_check_discovery_timeout_timer 
+03da 20405bd3 call mouse_check_direct_timeout_timer 
+03db 20405be1 call mouse_le_enable_att_list_timer 
+03dc 20405bee call mouse_le_battery_updata_timer 
+03dd 20405be4 call mouse_le_send_smp_security_request_timer 
+03de 20405bfb call mouse_check_reconnect_delay_long_sleep 
+03df 204003e6 call p_mouse_current_mult_update_timer 
+03e0 204056b6 call mouse_wheel_trigger_timer 
+03e1 20405c0e call mouse_store_information_delay_timer 
+03e2 20205c05 branch mouse_check_no_data_timeout_timer 
 
 p_mouse_le_send_conn_param_update_timer:
-03da da604a05 arg mem_mouse_le_send_conn_param_update_timer ,regc 
-03db da405aef arg mouse_updata_le_param ,regb 
-03dc 202042e0 branch timer_single_step 
+03e3 da604a05 arg mem_mouse_le_send_conn_param_update_timer ,regc 
+03e4 da405aef arg mouse_updata_le_param ,regb 
+03e5 202042e0 branch timer_single_step 
 
 p_mouse_current_mult_update_timer:
-03dd da60477e arg mem_mouse_current_mult_timer ,regc 
-03de da4003e0 arg p_mouse_current_mult_reinit ,regb 
-03df 202042e0 branch timer_single_step 
+03e6 da60477e arg mem_mouse_current_mult_timer ,regc 
+03e7 da4003e9 arg p_mouse_current_mult_reinit ,regb 
+03e8 202042e0 branch timer_single_step 
 
 p_mouse_current_mult_reinit:
-03e0 6fe0c96b fetch 1 ,mem_lpm_mult_init 
-03e1 67e0c0c0 store 1 ,mem_lpm_mult 
-03e2 70477d03 jam 3 ,mem_mouse_long_mult_flag 
-03e3 20600000 rtn 
+03e9 6fe0c96b fetch 1 ,mem_lpm_mult_init 
+03ea 67e0c0c0 store 1 ,mem_lpm_mult 
+03eb 70477d03 jam 3 ,mem_mouse_long_mult_flag 
+03ec 20600000 rtn 
 
 p_mouse_start_discovery:
-03e4 204059ed call mouse_sensor_powerdown 
-03e5 20205c1b branch mouse_start_discovery + 1 
+03ed 204059ed call mouse_sensor_powerdown 
+03ee 20205c1b branch mouse_start_discovery + 1 
 
 p_mouse_priority_bb_event:
-03e6 1a627e00 copy regc ,pdata 
-03e7 c02003fb beq bt_evt_le_parse_conn_papa_update_rsp ,p_mouse_le_conn_param_update_rsp_recieved 
-03e8 c00a8400 beq bt_evt_le_disconnected ,p_mouse_le_bb_disconnected 
-03e9 c01903f2 beq bt_evt_le_start_enc ,p_mouse_le_ll_start_encryt 
-03ea c01e041e beq bt_evt_24g_attempt_success ,p_mouse_24g_attempt_success 
-03eb c01c842f beq bt_evt_24g_pairing_complete ,p_mouse_24g_pairing_complete 
-03ec c01d0432 beq bt_evt_24g_attempt_fail ,p_mouse_24g_attempt_fail 
-03ed c00a03ef beq bt_evt_le_connected ,p_mouse_le_bb_event_connected 
-03ee 20205ac3 branch mouse_priority_bb_event + 2 
+03ef 1a627e00 copy regc ,pdata 
+03f0 c0200404 beq bt_evt_le_parse_conn_papa_update_rsp ,p_mouse_le_conn_param_update_rsp_recieved 
+03f1 c00a8409 beq bt_evt_le_disconnected ,p_mouse_le_bb_disconnected 
+03f2 c01903fb beq bt_evt_le_start_enc ,p_mouse_le_ll_start_encryt 
+03f3 c01e0427 beq bt_evt_24g_attempt_success ,p_mouse_24g_attempt_success 
+03f4 c01c8438 beq bt_evt_24g_pairing_complete ,p_mouse_24g_pairing_complete 
+03f5 c01d043b beq bt_evt_24g_attempt_fail ,p_mouse_24g_attempt_fail 
+03f6 c00a03f8 beq bt_evt_le_connected ,p_mouse_le_bb_event_connected 
+03f7 20205ac3 branch mouse_priority_bb_event + 2 
 
 p_mouse_le_bb_event_connected:
-03ef 58000000 setarg 0 
-03f0 67e24c03 store 4 ,mem_le_conn_first_rcv 
-03f1 20205ad0 branch mouse_le_bb_event_connected 
+03f8 58000000 setarg 0 
+03f9 67e24bf9 store 4 ,mem_le_conn_first_rcv 
+03fa 20205ad0 branch mouse_le_bb_event_connected 
 
 p_mouse_le_ll_start_encryt:
-03f2 6fe0c795 fetch 1 ,mem_mouse_le_reconnect_flag 
-03f3 c00083f6 beq 1 ,p_mouse_le_ll_reconn_start_encryt 
-03f4 70484414 jam 20 ,mem_le_start_encrypt_timer 
-03f5 202003f8 branch p_mouse_le_ll_reconn_start_encryt_new 
+03fb 6fe0c795 fetch 1 ,mem_mouse_le_reconnect_flag 
+03fc c00083ff beq 1 ,p_mouse_le_ll_reconn_start_encryt 
+03fd 70484414 jam 20 ,mem_le_start_encrypt_timer 
+03fe 20200401 branch p_mouse_le_ll_reconn_start_encryt_new 
 
 p_mouse_le_ll_reconn_start_encryt:
-03f6 20405aef call mouse_updata_le_param 
-03f7 70484405 jam 5 ,mem_le_start_encrypt_timer 
+03ff 20405aef call mouse_updata_le_param 
+0400 70484405 jam 5 ,mem_le_start_encrypt_timer 
 
 p_mouse_le_ll_reconn_start_encryt_new:
-03f8 6fe0cc02 fetch 1 ,mem_le_conn_rcv_new 
-03f9 67e0cc03 store 1 ,mem_le_conn_first_rcv 
-03fa 20205af6 branch mouse_le_ll_enable_start_enc_flag 
+0401 6fe0cbf8 fetch 1 ,mem_le_conn_rcv_new 
+0402 67e0cbf9 store 1 ,mem_le_conn_first_rcv 
+0403 20205af6 branch mouse_le_ll_enable_start_enc_flag 
 
 p_mouse_le_conn_param_update_rsp_recieved:
-03fb 6fe0ca04 fetch 1 ,mem_mouse_le_send_conn_param_update 
-03fc 247a0000 nrtn blank 
-03fd 704a0401 jam 1 ,mem_mouse_le_send_conn_param_update 
-03fe 704a051e jam 30 ,mem_mouse_le_send_conn_param_update_timer 
-03ff 20600000 rtn 
+0404 6fe0ca04 fetch 1 ,mem_mouse_le_send_conn_param_update 
+0405 247a0000 nrtn blank 
+0406 704a0401 jam 1 ,mem_mouse_le_send_conn_param_update 
+0407 704a051e jam 30 ,mem_mouse_le_send_conn_param_update_timer 
+0408 20600000 rtn 
 
 p_mouse_le_bb_disconnected:
-0400 58000000 setarg 0 
-0401 67e0ca04 store 1 ,mem_mouse_le_send_conn_param_update 
-0402 67e0ca05 store 1 ,mem_mouse_le_send_conn_param_update_timer 
-0403 58000000 setarg 0 
-0404 67e147c0 store 2 ,mem_le_battery_level_updata_timer 
-0405 70479400 jam 0 ,mem_mouse_le_bb_connected_flag 
-0406 d8400006 arg le_interval_7_5ms ,temp 
-0407 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-0408 c28d840a bbit1 mouse_enable_bt_125hz ,p_mouse_le_bb_disconnected_next 
-0409 d8400007 arg le_interval_8_75ms ,temp 
+0409 58000000 setarg 0 
+040a 67e0ca04 store 1 ,mem_mouse_le_send_conn_param_update 
+040b 67e0ca05 store 1 ,mem_mouse_le_send_conn_param_update_timer 
+040c 58000000 setarg 0 
+040d 67e147c0 store 2 ,mem_le_battery_level_updata_timer 
+040e 70479400 jam 0 ,mem_mouse_le_bb_connected_flag 
+040f d8400006 arg le_interval_7_5ms ,temp 
+0410 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+0411 c28d8413 bbit1 mouse_enable_bt_125hz ,p_mouse_le_bb_disconnected_next 
+0412 d8400007 arg le_interval_8_75ms ,temp 
 
 p_mouse_le_bb_disconnected_next:
-040a 604942d3 storet 2 ,mem_le_interval_min 
-040b 604942d5 storet 2 ,mem_le_interval_min + 2 
-040c 7047c200 jam le_lpm_enable ,mem_mouse_le_conn_param_reject 
-040d 70495600 jam 0 ,mem_mouse_clear_sensor_data_flag 
-040e 204029cb call le_clr_config_more_data 
-040f 20200410 branch p_mouse_bb_disconnected 
+0413 604942d3 storet 2 ,mem_le_interval_min 
+0414 604942d5 storet 2 ,mem_le_interval_min + 2 
+0415 7047c200 jam le_lpm_enable ,mem_mouse_le_conn_param_reject 
+0416 70495600 jam 0 ,mem_mouse_clear_sensor_data_flag 
+0417 204029cb call le_clr_config_more_data 
+0418 20200419 branch p_mouse_bb_disconnected 
 
 p_mouse_bb_disconnected:
-0410 20405b7b call mouse_bb_discon_clear_stack 
-0411 6fe143ef fetch app_disc_rsn_size ,mem_app_disconn_reason 
-0412 c2838415 bbit1 app_disc_ble ,p_mouse4_0_event_bb_disconn 
-0413 c28042fc bbit1 app_disc_by_button ,app_disconn_reason_clear 
-0414 20205c1a branch mouse_start_discovery 
+0419 20405b7b call mouse_bb_discon_clear_stack 
+041a 6fe143ef fetch app_disc_rsn_size ,mem_app_disconn_reason 
+041b c283841e bbit1 app_disc_ble ,p_mouse4_0_event_bb_disconn 
+041c c28042fc bbit1 app_disc_by_button ,app_disconn_reason_clear 
+041d 20205c1a branch mouse_start_discovery 
 
 p_mouse4_0_event_bb_disconn:
-0415 6fe143ef fetch app_disc_rsn_size ,mem_app_disconn_reason 
-0416 c28042fc bbit1 app_disc_by_button ,app_disconn_reason_clear 
-0417 6fe0c843 fetch 1 ,mem_le_connect_status_flag 
-0418 1fe17e03 and pdata ,0x03 ,pdata 
-0419 20405b21 call mouse_le_clean_connect_flag 
-041a c081d4a9 bne 0x03 ,mouse_start_reconnect 
-041b 6fe0cc06 fetch 1 ,mem_le_check_retransmit_discon_flag 
-041c 243a54a9 nbranch mouse_start_reconnect ,blank 
-041d 202054cd branch mouse_app_enter_hibernate 
+041e 6fe143ef fetch app_disc_rsn_size ,mem_app_disconn_reason 
+041f c28042fc bbit1 app_disc_by_button ,app_disconn_reason_clear 
+0420 6fe0c843 fetch 1 ,mem_le_connect_status_flag 
+0421 1fe17e03 and pdata ,0x03 ,pdata 
+0422 20405b21 call mouse_le_clean_connect_flag 
+0423 c081d4a9 bne 0x03 ,mouse_start_reconnect 
+0424 6fe0cbfc fetch 1 ,mem_le_check_retransmit_discon_flag 
+0425 243a54a9 nbranch mouse_start_reconnect ,blank 
+0426 202054cd branch mouse_app_enter_hibernate 
 
 p_mouse_24g_attempt_success:
-041e 6fe2458f fetch 4 ,mem_24g_addr 
-041f 67e245e8 store 4 ,mem_24g_receiver_addr 
-0420 67e24691 store 4 ,mem_mouse_24g_addr 
-0421 2040355a call g24_ch_syncword_crc8_init 
-0422 20405c0b call mouse_no_data_timer_init 
-0423 2040618e call mouse_device_poweron_led_config 
-0424 20405a73 call mouse_init_sensor_reset 
-0425 70477d00 jam 0 ,mem_mouse_long_mult_flag 
-0426 7045fc00 jam 0 ,mem_24g_conn_sm 
-0427 7045e200 jam 0 ,mem_24g_reconn_type 
-0428 6fe245e8 fetch 4 ,mem_24g_receiver_addr 
-0429 684a45e4 fetcht 4 ,mem_24g_fast_conn_addr 
-042a 98467c00 isub temp ,null 
-042b 20628000 rtn zero 
-042c 20406016 call mouse_soft_agc_disable 
-042d 20400445 call p_mouse_fetch_normal_tx_power 
-042e 20206042 branch mouse_24g_first_store_reconn_info 
+0427 6fe2458f fetch 4 ,mem_24g_addr 
+0428 67e245e8 store 4 ,mem_24g_receiver_addr 
+0429 67e24691 store 4 ,mem_mouse_24g_addr 
+042a 2040355a call g24_ch_syncword_crc8_init 
+042b 20405c0b call mouse_no_data_timer_init 
+042c 2040618e call mouse_device_poweron_led_config 
+042d 20405a73 call mouse_init_sensor_reset 
+042e 70477d00 jam 0 ,mem_mouse_long_mult_flag 
+042f 7045fc00 jam 0 ,mem_24g_conn_sm 
+0430 7045e200 jam 0 ,mem_24g_reconn_type 
+0431 6fe245e8 fetch 4 ,mem_24g_receiver_addr 
+0432 684a45e4 fetcht 4 ,mem_24g_fast_conn_addr 
+0433 98467c00 isub temp ,null 
+0434 20628000 rtn zero 
+0435 20406016 call mouse_soft_agc_disable 
+0436 2040046f call p_mouse_fetch_normal_tx_power 
+0437 20206042 branch mouse_24g_first_store_reconn_info 
 
 p_mouse_24g_pairing_complete:
-042f 20406016 call mouse_soft_agc_disable 
-0430 20400445 call p_mouse_fetch_normal_tx_power 
-0431 20206084 branch mouse_24g_pairing_complete 
+0438 20406016 call mouse_soft_agc_disable 
+0439 2040046f call p_mouse_fetch_normal_tx_power 
+043a 20206084 branch mouse_24g_pairing_complete 
 
 p_mouse_24g_attempt_fail:
-0432 20406016 call mouse_soft_agc_disable 
-0433 20400445 call p_mouse_fetch_normal_tx_power 
-0434 6fe0c87a fetch 1 ,mem_mouse_dpi_button_state 
-0435 c1008000 rtneq dpi_button_state_down 
-0436 6fe0c600 fetch 1 ,mem_24g_attempt_fail_flag 
-0437 243a5ff2 nbranch mouse_24g_hibernate_set ,blank 
-0438 6fe0c5e2 fetch 1 ,mem_24g_reconn_type 
-0439 c002043b beq pair_and_3_0_addr ,p_mouse_24g_auto_pair_attempt_fail 
-043a 20206055 branch mouse_24g_attempt_fail + 2 
+043b 20406016 call mouse_soft_agc_disable 
+043c 2040046f call p_mouse_fetch_normal_tx_power 
+043d 6fe0c87a fetch 1 ,mem_mouse_dpi_button_state 
+043e c1008000 rtneq dpi_button_state_down 
+043f 6fe0c600 fetch 1 ,mem_24g_attempt_fail_flag 
+0440 243a5ff2 nbranch mouse_24g_hibernate_set ,blank 
+0441 6fe0c5e2 fetch 1 ,mem_24g_reconn_type 
+0442 c0020446 beq pair_and_3_0_addr ,p_mouse_24g_auto_pair_attempt_fail 
+0443 c000e05f beq fast_conn_and_receiver ,mouse_24g_fast_conn_attempt_fail 
+0444 c001844d beq receiver_and_3_0_addr ,p_mouse_reconn_dongle_attempt_fail 
+0445 20206055 branch mouse_24g_attempt_fail + 2 
 
 p_mouse_24g_auto_pair_attempt_fail:
-043b 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-043c c31f6059 bbit0 mouse_enable_24g_first_auto_pairing ,mouse_24g_attempt_fail_enter_hibernate 
-043d 6fe0c71b fetch 1 ,mem_device_number 
-043e c000e059 beq 1 ,mouse_24g_attempt_fail_enter_hibernate 
+0446 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+0447 c31f6059 bbit0 mouse_enable_24g_first_auto_pairing ,mouse_24g_attempt_fail_enter_hibernate 
+0448 6fe0c71b fetch 1 ,mem_device_number 
+0449 c000e059 beq 1 ,mouse_24g_attempt_fail_enter_hibernate 
 
 p_mouse_24g_first_bluetooth_reconnect:
-043f 20406018 call mouse_24g_stop 
-0440 70466601 jam mode_bt_device1 ,mem_device_flag 
-0441 202054a0 branch mouse_start_reconnect_device 
+044a 20406018 call mouse_24g_stop 
+044b 70466601 jam mode_bt_device1 ,mem_device_flag 
+044c 202054a0 branch mouse_start_reconnect_device 
+
+p_mouse_reconn_dongle_attempt_fail:
+044d 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+044e c31f6059 bbit0 mouse_enable_24g_first_auto_pairing ,mouse_24g_attempt_fail_enter_hibernate 
+044f c289e059 bbit1 mouse_enable_eeprom ,mouse_24g_attempt_fail_enter_hibernate 
+0450 c28a6059 bbit1 mouse_enable_otp ,mouse_24g_attempt_fail_enter_hibernate 
+0451 c2896059 bbit1 mouse_enable_flash ,mouse_24g_attempt_fail_enter_hibernate 
+0452 20206034 branch mouse_24g_start_auto_pair 
+
+p_mouse_start_work:
+0453 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+0454 c29f0458 bbit1 mouse_enable_24g_first_auto_pairing ,p_mouse_24g_first_start_auto_pair_mode 
+0455 6fe0c666 fetch 1 ,mem_device_flag 
+0456 c000045f beq mode_24g_device ,p_mouse_24g_start_mode 
+0457 20205491 branch mouse_le_fast_conn_judge 
+
+p_mouse_24g_first_start_auto_pair_mode:
+0458 204054ac call mouse_wakeup_from_power_check 
+0459 2034045b branch p_mouse_24g_first_start_reconn ,user 
+045a 2020602f branch mouse_24g_reconn_general_dongle 
+
+p_mouse_24g_first_start_reconn:
+045b 6fe0c666 fetch 1 ,mem_device_flag 
+045c c0006067 beq mode_24g_device ,mouse_24g_reconn_dongle_start 
+045d 20405aa8 call mouse_bluetooth_fast_conn_disable 
+045e 2020044a branch p_mouse_24g_first_bluetooth_reconnect 
+
+p_mouse_24g_start_mode:
+045f 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+0460 c308e02a bbit0 mouse_enable_24g ,mouse_24g_mode_setup_error 
+0461 20406195 call mouse_device_24g_pair_led_config 
+0462 204054ac call mouse_wakeup_from_power_check 
+0463 20346067 branch mouse_24g_reconn_dongle_start ,user 
+0464 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+0465 c2980467 bbit1 mouse_enable_auto_24g_paring ,p_mouse_24g_reconn_general_dongle 
+0466 20206023 branch mouse_24g_start_mode + 7 
+
+p_mouse_24g_reconn_general_dongle:
+0467 70466600 jam mode_24g_device ,mem_device_flag 
+0468 6fe14721 fetch 2 ,mem_mouse_24g_power_on_fast_conn_timer 
+0469 67e145de store 2 ,mem_24g_reconn_timeout 
+046a 7045e201 jam fast_conn_and_receiver ,mem_24g_reconn_type 
+046b 20203534 branch g24_reconn_start 
 
 p_mouse_store_normal_tx_power:
-0442 6fe0c141 fetch 1 ,mem_tx_power 
-0443 67e0ca07 store 1 ,mem_normal_tx_power 
-0444 20600000 rtn 
+046c 6fe0c141 fetch 1 ,mem_tx_power 
+046d 67e0ca07 store 1 ,mem_normal_tx_power 
+046e 20600000 rtn 
 
 p_mouse_fetch_normal_tx_power:
-0445 6fe0ca07 fetch 1 ,mem_normal_tx_power 
-0446 67e0c141 store 1 ,mem_tx_power 
-0447 20600000 rtn 
+046f 6fe0ca07 fetch 1 ,mem_normal_tx_power 
+0470 67e0c141 store 1 ,mem_tx_power 
+0471 20600000 rtn 
 
 p_mouse_idle:
-0448 2040620e call mouse_low_voltage_led_no_enter_lpm 
-0449 204078aa call ui_check_paring_button 
-044a 2040044c call p_mouse_dpi_check 
-044b 20205e61 branch mouse_idle + 4 
+0472 2040620e call mouse_low_voltage_led_no_enter_lpm 
+0473 204078aa call ui_check_paring_button 
+0474 20400476 call p_mouse_dpi_check 
+0475 20205e61 branch mouse_idle + 4 
 
 p_mouse_dpi_check:
-044c 6fe0c649 fetch 1 ,mem_dpi_button_gpio 
-044d c17f8000 rtneq gpio_disable 
-044e da200000 arg 0 ,rega 
-044f 70497705 jam mouse_dpi_key ,mem_mouse_key_temp 
-0450 6848c649 fetcht 1 ,mem_dpi_button_gpio 
-0451 20400453 call p_mouse_dpi_key_check 
-0452 202056c1 branch mouse_dpi_check_next 
+0476 6fe0c649 fetch 1 ,mem_dpi_button_gpio 
+0477 c17f8000 rtneq gpio_disable 
+0478 da200000 arg 0 ,rega 
+0479 70497705 jam mouse_dpi_key ,mem_mouse_key_temp 
+047a 6848c649 fetcht 1 ,mem_dpi_button_gpio 
+047b 2040047d call p_mouse_dpi_key_check 
+047c 202056c1 branch mouse_dpi_check_next 
 
 p_mouse_dpi_key_check:
-0453 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-0454 c295d6de bbit1 mouse_enable_dpi_key_connect_gnd ,mouse_dpi_key_connect_gnd 
-0455 6fe0c974 fetch 1 ,mem_mouse_dpikey_press_status 
-0456 1fe22600 copy pdata ,regc 
-0457 6fe0c654 fetch 1 ,mem_matrix_public_gpio 
-0458 c07f845a beq gpio_disable ,p_mouse_3io6key_dpi_check 
-0459 202056ce branch mouse_dpi_key_check_next 
+047d 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+047e c295d6de bbit1 mouse_enable_dpi_key_connect_gnd ,mouse_dpi_key_connect_gnd 
+047f 6fe0c974 fetch 1 ,mem_mouse_dpikey_press_status 
+0480 1fe22600 copy pdata ,regc 
+0481 6fe0c654 fetch 1 ,mem_matrix_public_gpio 
+0482 c07f8484 beq gpio_disable ,p_mouse_3io6key_dpi_check 
+0483 202056ce branch mouse_dpi_key_check_next 
 
 p_mouse_3io6key_dpi_check:
-045a 6fe0c649 fetch 1 ,mem_dpi_button_gpio 
-045b 20405946 call mouse_gpio_config_output_low 
-045c 6848c649 fetcht 1 ,mem_dpi_button_gpio 
-045d 2020045e branch p_mouse_3io6key_check 
+0484 6fe0c649 fetch 1 ,mem_dpi_button_gpio 
+0485 20405946 call mouse_gpio_config_output_low 
+0486 6848c649 fetcht 1 ,mem_dpi_button_gpio 
+0487 20200488 branch p_mouse_3io6key_check 
 
 p_mouse_3io6key_check:
-045e 1a627e00 copy regc ,pdata 
-045f 67e0c978 store 1 ,mem_mouse_key_status 
-0460 1fe3fe00 lshift pdata ,pdata 
-0461 1fe22400 copy pdata ,regb 
-0462 18422600 copy temp ,regc 
-0463 204055b1 call mouse_gpio_config_input_pd 
-0464 1a620400 copy regc ,temp 
-0465 20406ee6 call gpio_get_bit 
-0466 7d20a400 nsetflag true ,0 ,regb 
-0467 2040593d call mouse_check_press 
-0468 20205929 branch mouse_check_key_connect_gnd_1 
+0488 1a627e00 copy regc ,pdata 
+0489 67e0c978 store 1 ,mem_mouse_key_status 
+048a 1fe3fe00 lshift pdata ,pdata 
+048b 1fe22400 copy pdata ,regb 
+048c 18422600 copy temp ,regc 
+048d 204055b1 call mouse_gpio_config_input_pd 
+048e 1a620400 copy regc ,temp 
+048f 20406ee6 call gpio_get_bit 
+0490 7d20a400 nsetflag true ,0 ,regb 
+0491 2040593d call mouse_check_press 
+0492 20205929 branch mouse_check_key_connect_gnd_1 
 
 p_g24_short_sleep:
-0469 204036b4 call g24_lpm_wait 
-046a 24740000 nrtn user 
-046b 204036be call g24_setgpio_lpm_before 
-046c 2040046f call p_clear_wake 
-046d 6fe1c608 fetch 3 ,mem_24g_short_sleep_set 
-046e 20203622 branch g24_long_seep2 
+0493 204036b4 call g24_lpm_wait 
+0494 24740000 nrtn user 
+0495 204036be call g24_setgpio_lpm_before 
+0496 20400499 call p_clear_wake 
+0497 6fe1c608 fetch 3 ,mem_24g_short_sleep_set 
+0498 20203622 branch g24_long_seep2 
 
 p_clear_wake:
-046f 58000000 setarg 0 
-0470 79207e15 set1 21 ,pdata 
-0471 67e40016 store 8 ,mem_gpio_wakeup_cfg 
-0472 58000000 setarg 0 
-0473 67e2001e store 4 ,mem_gpio_wakeup_cfg + 8 
-0474 20600000 rtn 
+0499 58000000 setarg 0 
+049a 79207e15 set1 21 ,pdata 
+049b 67e40016 store 8 ,mem_gpio_wakeup_cfg 
+049c 58000000 setarg 0 
+049d 67e2001e store 4 ,mem_gpio_wakeup_cfg + 8 
+049e 20600000 rtn 
 
 p_mouse_24g_hibernate_set:
-0475 70460000 jam 0 ,mem_24g_attempt_fail_flag 
-0476 20403647 call g24_transmit_next_packet 
-0477 5fffffff setarg -1 
-0478 67e245af store 4 ,mem_24g_enter_hibernate 
-0479 58000000 setarg 0 
-047a 67e3c846 store 7 ,mem_mouse_key 
-047b 70473f01 jam 1 ,mem_sensor_shutdown_flag 
-047c 204059ed call mouse_sensor_powerdown 
-047d 2020029b branch p_mouse_24g_long_sleep 
+049f 70460000 jam 0 ,mem_24g_attempt_fail_flag 
+04a0 20403647 call g24_transmit_next_packet 
+04a1 5fffffff setarg -1 
+04a2 67e245af store 4 ,mem_24g_enter_hibernate 
+04a3 58000000 setarg 0 
+04a4 67e3c846 store 7 ,mem_mouse_key 
+04a5 70473f01 jam 1 ,mem_sensor_shutdown_flag 
+04a6 204059ed call mouse_sensor_powerdown 
+04a7 2020622b branch mouse_24g_long_sleep 
 
 p_mouse_setgpio_hibernate:
-047e 20405a92 call mouse_set_sdio_high 
-047f 2040046f call p_clear_wake 
-0480 204056a9 call mouse_before_hibernate_wheel_gpio_set 
-0481 6848c654 fetcht 1 ,mem_matrix_public_gpio 
-0482 20406ef7 call gpio_out_active 
-0483 6848c654 fetcht 1 ,mem_matrix_public_gpio 
-0484 20406ed3 call gpio_clr_wake 
-0485 6fe0c64d fetch 1 ,mem_mouse_sensor_sdio_gpio 
-0486 20405943 call mouse_gpio_config_output_high 
-0487 d8400015 arg 21 ,temp 
-0488 204055b5 call mouse_gpio_config_input_pu 
-0489 2040048b call p_mouse_device_switch_gpio_high_impedance 
-048a 202054df branch mouse_setgpio_hibernate + 3 
-
-p_mouse_device_switch_gpio_high_impedance:
-048b 6fe0c65a fetch 1 ,mem_device_switch_gpio 
-048c c17f8000 rtneq 0xff 
-048d 6fe0c666 fetch 1 ,mem_device_flag 
-048e c0000491 beq mode_24g_device ,p_mouse_device_switch_gpio_set_impedance 
-048f 6848c65a fetcht 1 ,mem_device_switch_gpio 
-0490 202055b5 branch mouse_gpio_config_input_pu 
-
-p_mouse_device_switch_gpio_set_impedance:
-0491 6848c65a fetcht 1 ,mem_device_switch_gpio 
-0492 20206f0f branch gpio_set_high_impedance 
+04a8 20405a92 call mouse_set_sdio_high 
+04a9 20400499 call p_clear_wake 
+04aa 204056a9 call mouse_before_hibernate_wheel_gpio_set 
+04ab 6848c654 fetcht 1 ,mem_matrix_public_gpio 
+04ac 20406ef7 call gpio_out_active 
+04ad 6848c654 fetcht 1 ,mem_matrix_public_gpio 
+04ae 20406ed3 call gpio_clr_wake 
+04af 6fe0c64d fetch 1 ,mem_mouse_sensor_sdio_gpio 
+04b0 20405943 call mouse_gpio_config_output_high 
+04b1 6848c65a fetcht 1 ,mem_device_switch_gpio 
+04b2 204055ab call mouse_gpio_set_pupd_by_input 
+04b3 d8400015 arg 21 ,temp 
+04b4 204055b5 call mouse_gpio_config_input_pu 
+04b5 2040611a call mouse_logo_led_off 
+04b6 2040550c call mouse_lpm_before_common 
+04b7 204054f9 call mouse_gpio_pd_idle 
+04b8 6848c64a fetcht 1 ,mem_whee_a_data_gpio 
+04b9 20406f0f call gpio_set_high_impedance 
+04ba 6848c64b fetcht 1 ,mem_whee_b_data_gpio 
+04bb 20406f0f call gpio_set_high_impedance 
+04bc 6848c65b fetcht 1 ,mem_mouse_reuse_2ice_gpio 
+04bd 204055b5 call mouse_gpio_config_input_pu 
+04be 204004c0 call p_mouse_gpio_set_high_impedance 
+04bf 202054e5 branch mouse_setgpio_hibernate_next 
+
+p_mouse_gpio_set_high_impedance:
+04c0 6fe1c73c fetch 3 ,mem_mouse_set_high_impedance_bit_set 
+04c1 67e18670 store 3 ,mem_pdatatemp 
+04c2 df200018 arg 24 ,loopcnt 
+04c3 d8400000 arg 0 ,temp 
+
+p_mouse_gpio_set_high_impedance_bit_loop:
+04c4 6fe18670 fetch 3 ,mem_pdatatemp 
+04c5 2feffe00 isolate1 0 ,pdata 
+04c6 204084cd call p_gpio_set_analog ,true 
+04c7 6fe18670 fetch 3 ,mem_pdatatemp 
+04c8 1fe37e00 rshift pdata ,pdata 
+04c9 67e18670 store 3 ,mem_pdatatemp 
+04ca 18408401 increase 1 ,temp 
+04cb c20004c4 loop p_mouse_gpio_set_high_impedance_bit_loop 
+04cc 20600000 rtn 
+
+p_gpio_set_analog:
+04cd 18467cff sub temp ,ui_button_gpio_disable ,null 
+04ce 20628000 rtn zero 
+04cf 20206f0b branch gpio_set_analog 
 
 p_mouse_24g_package_data:
-0493 c6930000 rtnmark0 mark_24g 
-0494 20405601 call mouse_motion 
-0495 24740000 nrtn user 
-0496 6fe0c77c fetch 1 ,mem_mouse_24g_long_sleep_flag 
-0497 70477c00 jam 0 ,mem_mouse_24g_long_sleep_flag 
-0498 245a04a8 ncall p_mouse_24g_short_sleep_clear_wake ,blank 
-0499 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-049a c30b049d bbit0 mouse_enable_keyboard ,p_mouse_24g_mouse_package_data 
-049b 6fe0c96c fetch 1 ,mem_customer_key 
-049c 243a60b6 nbranch mouse_24g_keyboard_package_data ,blank 
+04d0 c6930000 rtnmark0 mark_24g 
+04d1 20405601 call mouse_motion 
+04d2 24740000 nrtn user 
+04d3 6fe0c77c fetch 1 ,mem_mouse_24g_long_sleep_flag 
+04d4 70477c00 jam 0 ,mem_mouse_24g_long_sleep_flag 
+04d5 245a04e5 ncall p_mouse_24g_short_sleep_clear_wake ,blank 
+04d6 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+04d7 c30b04da bbit0 mouse_enable_keyboard ,p_mouse_24g_mouse_package_data 
+04d8 6fe0c96c fetch 1 ,mem_customer_key 
+04d9 243a60b6 nbranch mouse_24g_keyboard_package_data ,blank 
 
 p_mouse_24g_mouse_package_data:
-049d 2040049f call p_mouse_data_xy_release 
-049e 202060a2 branch mouse_24g_mouse_package_data + 1 
+04da 204004dc call p_mouse_data_xy_release 
+04db 202060a2 branch mouse_24g_mouse_package_data + 1 
 
 p_mouse_data_xy_release:
-049f 6fe0c659 fetch 1 ,mem_sensor_motion_gpio 
-04a0 c1ff8000 rtnne gpio_disable 
-04a1 6fe0c77d fetch 1 ,mem_mouse_long_mult_flag 
-04a2 207a0000 rtn blank 
-04a3 1fe0ffff increase -1 ,pdata 
-04a4 67e0c77d store 1 ,mem_mouse_long_mult_flag 
-04a5 58000000 setarg 0 
-04a6 67e24847 store 4 ,mem_mouse_x 
-04a7 20205a73 branch mouse_init_sensor_reset 
+04dc 6fe0c659 fetch 1 ,mem_sensor_motion_gpio 
+04dd c1ff8000 rtnne gpio_disable 
+04de 6fe0c77d fetch 1 ,mem_mouse_long_mult_flag 
+04df 207a0000 rtn blank 
+04e0 1fe0ffff increase -1 ,pdata 
+04e1 67e0c77d store 1 ,mem_mouse_long_mult_flag 
+04e2 58000000 setarg 0 
+04e3 67e24847 store 4 ,mem_mouse_x 
+04e4 20205a73 branch mouse_init_sensor_reset 
 
 p_mouse_24g_short_sleep_clear_wake:
-04a8 2040046f call p_clear_wake 
-04a9 2020022e branch p_lpm_write_gpio_wakeup 
+04e5 20400499 call p_clear_wake 
+04e6 20200244 branch p_lpm_write_gpio_wakeup 
 
 p_mouse_check_select_device_by_switch:
-04aa 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
-04ab c4150000 rtnbit0 mouse_enable_select_device_by_switch_gpio 
-04ac c31fdeb9 bbit0 mouse_enable_switch_gpio_connect_vin ,mouse_switch_gpio_connect_gnd 
+04e7 6fe44713 fetch mouse_flag_len ,mem_mouse_flag 
+04e8 c4150000 rtnbit0 mouse_enable_select_device_by_switch_gpio 
+04e9 c31fdeb9 bbit0 mouse_enable_switch_gpio_connect_vin ,mouse_switch_gpio_connect_gnd 
 
 p_mouse_switch_gpio_connect_vin:
-04ad 6848c65a fetcht 1 ,mem_device_switch_gpio 
-04ae 20406ef7 call gpio_out_active 
-04af 6848c65a fetcht 1 ,mem_device_switch_gpio 
-04b0 204055b1 call mouse_gpio_config_input_pd 
-04b1 6848c65a fetcht 1 ,mem_device_switch_gpio 
-04b2 20406ee6 call gpio_get_bit 
-04b3 2420dec2 nbranch mouse_check_select_24g_device ,true 
-04b4 20205ebe branch mouse_select_btdevice 
+04ea 6848c65a fetcht 1 ,mem_device_switch_gpio 
+04eb 20406ef7 call gpio_out_active 
+04ec 6848c65a fetcht 1 ,mem_device_switch_gpio 
+04ed 204055b1 call mouse_gpio_config_input_pd 
+04ee 6848c65a fetcht 1 ,mem_device_switch_gpio 
+04ef 20406ee6 call gpio_get_bit 
+04f0 2420dec2 nbranch mouse_check_select_24g_device ,true 
+04f1 20205ebe branch mouse_select_btdevice 
 
 p_mouse_init_sensor:
-04b5 20405958 call mouse_read_sensor_id 
-04b6 c018595f beq p32xx_id1 ,mouse_init_p32xx_id2_judge 
-04b7 c018d9c6 beq p3065_id1 ,mouse_init_p3065 
-04b8 c02c04ba beq pka8g2_id1 ,p_mouse_ka8g2_id2_judge 
-04b9 20205952 branch mouse_init_sensor + 5 
+04f2 20405958 call mouse_read_sensor_id 
+04f3 c018595f beq p32xx_id1 ,mouse_init_p32xx_id2_judge 
+04f4 c018d9c6 beq p3065_id1 ,mouse_init_p3065 
+04f5 c02c04f7 beq pka8g2_id1 ,p_mouse_ka8g2_id2_judge 
+04f6 20205952 branch mouse_init_sensor + 5 
 
 p_mouse_ka8g2_id2_judge:
-04ba 204059e7 call mouse_sensor_poweron 
-04bb 6fe0c85a fetch 1 ,mem_sensor_id2 
-04bc c02c84be beq pka8g2_id2 ,p_mouse_ka8g2_init_param 
-04bd 2020595f branch mouse_init_p32xx_id2_judge 
+04f7 204059e7 call mouse_sensor_poweron 
+04f8 6fe0c85a fetch 1 ,mem_sensor_id2 
+04f9 c02c84fb beq pka8g2_id2 ,p_mouse_ka8g2_init_param 
+04fa 2020595f branch mouse_init_p32xx_id2_judge 
 
 p_mouse_ka8g2_init_param:
-04be 7049570b jam ka8g2 ,mem_config_sensor_type 
-04bf da604a0b arg mem_sensor_ka8g2_init_new ,regc 
-04c0 20205995 branch mouse_sensor_wr_seq 
+04fb 7049570b jam ka8g2 ,mem_config_sensor_type 
+04fc da604a0b arg mem_sensor_ka8g2_init_new ,regc 
+04fd 20205995 branch mouse_sensor_wr_seq 
 
 p_mouse_check_sensor_data:
-04c1 6fe0c420 fetch 1 ,mem_spi_write_flash_sm 
-04c2 c1800000 rtnne flash_sm_no_buys 
-04c3 6fe0c957 fetch 1 ,mem_config_sensor_type 
-04c4 c00584c6 beq ka8g2 ,p_mouse_pka8g2_sensor_motion 
-04c5 202059f8 branch mouse_check_sensor_data + 2 
+04fe 6fe0c420 fetch 1 ,mem_spi_write_flash_sm 
+04ff c1800000 rtnne flash_sm_no_buys 
+0500 6fe0c957 fetch 1 ,mem_config_sensor_type 
+0501 c0058503 beq ka8g2 ,p_mouse_pka8g2_sensor_motion 
+0502 202059f8 branch mouse_check_sensor_data + 2 
 
 p_mouse_pka8g2_sensor_motion:
-04c6 20405a6d call mouse_clear_sensor_data 
-04c7 6fe0c659 fetch 1 ,mem_sensor_motion_gpio 
-04c8 c07f84cc beq gpio_disable ,p_mouse_pka8g2_sensor_motion_1 
-04c9 6848c659 fetcht 1 ,mem_sensor_motion_gpio 
-04ca 20406ee6 call gpio_get_bit 
-04cb 24608000 nrtn true 
+0503 20405a6d call mouse_clear_sensor_data 
+0504 6fe0c659 fetch 1 ,mem_sensor_motion_gpio 
+0505 c07f8509 beq gpio_disable ,p_mouse_pka8g2_sensor_motion_1 
+0506 6848c659 fetcht 1 ,mem_sensor_motion_gpio 
+0507 20406ee6 call gpio_get_bit 
+0508 24608000 nrtn true 
 
 p_mouse_pka8g2_sensor_motion_1:
-04cc 58000000 setarg pan_reg_pid_l 
-04cd 204069e5 call twspi_read 
-04ce c0ac5955 bne pka8g2_id1 ,mouse_twspi_reset 
-04cf 20205a2f branch mouse_p3212_sensor_motion_2 
+0509 58000000 setarg pan_reg_pid_l 
+050a 204069e5 call twspi_read 
+050b c0ac5955 bne pka8g2_id1 ,mouse_twspi_reset 
+050c 20205a2f branch mouse_p3212_sensor_motion_2 
 
 p_mouse_motion:
-04d0 78547c00 disable user 
-04d1 58000000 setarg 0 
-04d2 67e34847 store 6 ,mem_mouse_x 
-04d3 204004c1 call p_mouse_check_sensor_data 
-04d4 20205606 branch mouse_motion + 5 
+050d 78547c00 disable user 
+050e 58000000 setarg 0 
+050f 67e34847 store 6 ,mem_mouse_x 
+0510 204004fe call p_mouse_check_sensor_data 
+0511 20205606 branch mouse_motion + 5 
               org 0x2000
 
 start:
@@ -19571,6 +19662,8 @@
 54e2 6848c65b fetcht 1 ,mem_mouse_reuse_2ice_gpio 
 54e3 204055b5 call mouse_gpio_config_input_pu 
 54e4 204055b9 call mouse_gpio_set_high_impedance 
+
+mouse_setgpio_hibernate_next:
 54e5 204061fd call mouse_device_multi_led_all_off 
 54e6 204054f2 call mouse_adc_gpio_set_before_hibernate 
 54e7 202054e8 branch mouse_wheel_gpio_set_before_hibernate 
Index: output/ramcode.rom
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/ramcode.rom	(revision 1492)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/ramcode.rom	(working copy)
@@ -1,54 +1,64 @@
-c2840024
-c0000298
-c001004b
-c0080054
-c0088056
-c00a016f
-c00a80d8
-c00c00f8
-c00c80ff
-c00d0064
-c012821e
-c0340291
-c03482b1
-c036025a
-c0368033
-c039847e
-c03d04d0
-c03f845e
-c04084b5
-c042039a
-c04283e6
-c0430206
-c04383c4
-c04403e4
-c04503ae
-c04602ef
-c0468357
-c0470448
-c04582c8
-c04804aa
-c04a8475
-c04b0493
-c062823d
-c06d0140
-c06e0150
+c2840028
+c00002ae
+c0010055
+c008005e
+c0088060
+c00a015f
+c00a80e1
+c00c0101
+c00c8108
+c00d006e
+c0128230
+c03402a7
+c03482ba
+c0360270
+c036803d
+c0370453
+c03984a8
+c03a022d
+c03b8037
+c03d050d
+c03f8488
+c04084f2
+c04203a3
+c04283ef
+c04301f6
+c04383cd
+c04403ed
+c04503b7
+c04582d1
+c04602f8
+c0468360
+c0470472
+c04804e7
+c04a849f
+c04b04d0
+c0628253
+c06a8215
+c06b020e
+c06d0148
 2020235a
-c00a0190
-c00d018f
-c01281bf
-c01301c4
-c01c81d6
-c01d01e0
-c02601da
-c02681de
-c0480240
-c04b0469
-c04d00e6
-c04e80ed
-c04f8262
+c00a0180
+c00d017f
+c01281af
+c01301b4
+c01c81c6
+c01d01d0
+c02601cc
+c02681ca
+c0480256
+c04b0493
+c04d00ef
+c04e80f6
+c04f8278
 c17f8000
 2020235a
+20406f82
+20406fb0
+1fe6fc0a
+20407d5f
+67e14633
+20205553
 6fe0c64f
 67e0c958
 6fe0c64e
@@ -81,7 +91,7 @@
 20402018
 2040310f
 2040248c
-2020004b
+20200055
 70890000
 20202153
 708a0f60
@@ -108,7 +118,7 @@
 708a844a
 708a8540
 708a16fe
-204000ac
+204000b5
 204070d7
 37d98200
 70813b5f
@@ -116,7 +126,7 @@
 70813c88
 37d98200
 6fe0c099
-c00800a1
+c00800aa
 6fe0c438
 1fe1fe04
 67f08a02
@@ -127,18 +137,17 @@
 67f18a73
 708a8660
 708a8b3b
-20400093
+2040009c
 70804300
 70804205
 58557474
 67f18968
 7089606e
-20400112
-2040013d
-2040008d
+2040011b
+20400146
+20400096
 7041480c
-20406f4e
-2020013f
+20206f4e
 20758000
 37d98200
 6fe0c11c
@@ -146,7 +155,7 @@
 37d98200
 20600000
 6fe0c099
-c00c0099
+c00c00a2
 6fe0c438
 1fe1fe06
 67f08a02
@@ -169,8 +178,8 @@
 67f18a73
 708a762a
 70890204
-2020007f
-203580d4
+20200089
+203580dd
 6fe2020d
 207a0000
 37d98200
@@ -213,7 +222,7 @@
 6fe1415b
 207a0000
 67e1020f
-202000be
+202000c7
 2040686f
 204021ba
 18002a08
@@ -230,7 +239,7 @@
 202021b4
 6fe0c793
 247a0000
-204000ea
+204000f3
 202060fc
 6fe0c655
 c17f8000
@@ -238,13 +247,13 @@
 6848c601
 6fe0c621
 98467c00
-242100f2
+242100fb
 20203681
 6fe2458f
 684a45e4
 98467c00
 2022b222
-20400287
+2040029d
 2020369b
 580aaa7e
 67f18a0f
@@ -255,9 +264,9 @@
 20202203
 6fe0c141
 c0032225
-c0050105
-c04f010e
-c055010a
+c005010e
+c04f0117
+c0550113
 2020220e
 708a1425
 58a93f3f
@@ -284,7 +293,7 @@
 708ac200
 708ac300
 d8e00006
-2040012f
+20400138
 2a2ffe0d
 2040211d
 2a4ffe0d
@@ -292,14 +301,14 @@
 d8e00005
 2040211c
 2040211e
-2040012f
+20400138
 d8a08ac2
 1a31fe00
 20402117
 1a51fe00
 20402117
 18e08fff
-20210124
+2021012d
 2020214f
 2000003c
 58000f00
@@ -317,7 +326,6 @@
 2020212d
 20758000
 20202272
-20600000
 20758000
 708a0777
 708a08c9
@@ -325,7 +333,7 @@
 6fe0c409
 67f080cd
 20000bb8
-20400168
+20400158
 708a08c1
 6a40c419
 df200008
@@ -334,33 +342,9 @@
 67e0c433
 6240c419
 20600000
-2040015e
-6ff08a09
-793ffe07
-67f08a09
-708a0777
-708a08c1
-708a0b01
-20406f90
-6fe0c409
-67f080cd
-20000bb8
-20400168
-7080cd00
-20206fa1
-6ff080cc
-79207e01
-67f080cc
-6a40c419
-6fe0c433
-67e0c419
-df200008
-20406f67
-6240c419
-20600000
 7080cc03
 6ff08129
-c3028169
+c3028159
 68590164
 6049440a
 7080cc00
@@ -369,7 +353,7 @@
 708a8d12
 708a8e0a
 6fe0c099
-c0080188
+c0080178
 58005762
 67f10907
 70890103
@@ -380,7 +364,7 @@
 708a8d44
 708a8e0a
 6fe0c099
-c0080185
+c0080175
 58002bb1
 67f10907
 c6978000
@@ -389,34 +373,34 @@
 20600000
 58004189
 67f10907
-20200181
+20200171
 58008312
 67f10907
-20200176
-6fe0cc02
+20200166
+6fe0cbf8
 da600100
 9a60fe00
 20600000
-202001af
-20400192
+2020019f
+20400182
 20202563
-6fe0cc03
+6fe0cbf9
 207a0000
-6fe0cc04
+6fe0cbfa
 247a0000
-6848cc03
-6fe0cc02
+6848cbf9
+6fe0cbf8
 98467c00
-2441018b
+2441017b
 98467e00
 1fe67c64
-202101a4
-6fe0cc05
+20210194
+6fe0cbfb
 1fe67c14
-244101a2
-704c0401
+24410192
+704bfa01
 20600000
-704c0601
+704bfc01
 2020431f
 6848817f
 6fe0804c
@@ -424,18 +408,18 @@
 9842fe00
 2feffe02
 58000000
-6848cc05
+6848cbfb
 7920fe00
 98408400
-6048cc05
+6048cbfb
 20600000
 6fe08005
 1fe0fe01
 67e08005
-243681b6
-6fe0cc02
+243681a6
+6fe0cbf8
 1fe0fe01
-67e0cc02
+67e0cbf8
 6fe08168
 c3818000
 79207e03
@@ -472,34 +456,34 @@
 c1000000
 c001b04a
 202028e1
+793f8030
+20202af6
 20402152
 70890000
 793f8030
 20202ae3
-793f8030
-20202af6
 efe10006
-c00201e3
+c00201d3
 202028eb
 efe18006
 67e1c397
-c00501e8
-c00901f7
+c00501d8
+c00901e7
 20202b96
 6fe44713
 c31dad19
 20402dc7
 68494398
 6fe0c321
-c28181f2
+c28181e2
 6fe14398
 c0182e03
 68494398
 20202d1d
 6fe14332
 98467c00
-242281ee
-243401ee
+242281de
+243401de
 20202d46
 18c22200
 6fe14335
@@ -519,13 +503,13 @@
 20402a28
 247a0000
 6fe0c78f
-c07f8211
+c07f8201
 6fe0c843
 1fe17e03
 c1818000
-6fe0cc04
+6fe0cbfa
 207a0000
-6fe0cc06
+6fe0cbfc
 247a0000
 6fe0c956
 205a5a71
@@ -538,15 +522,53 @@
 20405ab2
 24740000
 20405abc
-2040049f
+204004dc
 20205b37
+18467cff
+20628000
+d9000004
+284ffe07
+2020eebd
+d9000003
+20206ebd
+18467cff
+20628000
+6048cb1d
+20406ee6
+2020821e
+6848cb1d
+20406f0f
+6848cb1d
+20200225
+704b1e01
+6848cb1d
+20406f0f
+6848cb1d
+20200223
+d9000006
+20206ebd
+d9000003
+20206ebd
+58000010
+67f08141
+37d98200
+20600000
+58000080
+20200228
+20400499
+704b1e00
+2020550d
 6fe143e9
 20407d79
 6fe240ad
 9840fe00
 67e240ad
-20400225
+2040023b
+20400238
 20202425
+6fe0cb1e
+203a0227
+2020022b
 600440e7
 d8c08070
 d8a040cc
@@ -563,12 +585,12 @@
 efe08011
 e8408013
 98467c00
-20228238
+2022824e
 e7e08013
 37d98200
 1a20a201
 1a60a601
-c2000232
+c2000248
 1a420400
 20600000
 20406b3a
@@ -577,7 +599,7 @@
 6fe145e0
 d84001f8
 98417e00
-203a0248
+203a025e
 6fe145e0
 1fe0fe01
 67e145e0
@@ -588,22 +610,22 @@
 2437b586
 2040366e
 6fe0c57d
-203a0257
+203a026d
 6fe245cc
 684a458f
 98467c00
-20228254
+2022826a
 2020356e
 6fe44713
 c2983291
 20203549
 6fe2455f
 207a0000
-2020024f
+20200265
 2040543b
-2040025d
+20400273
 2020544c
-58004a29
+58004a1d
 67e1433f
 58000020
 67e14341
@@ -616,15 +638,15 @@
 204035b4
 6048c624
 6fe0c629
-c513026c
+c5130282
 6fe0c62c
 98467c00
-24210286
+2421029c
 6fe0c626
 1fe67c02
-24210274
+2421028a
 6fe0c626
-c0000287
+c000029d
 20600000
 6fe0c626
 6848c627
@@ -633,7 +655,7 @@
 70462600
 6848c624
 6fe0c628
-c513027d
+c5130293
 6fe0c62b
 98467c00
 24610000
@@ -641,69 +663,56 @@
 c0003715
 1fe0ffff
 67e0c625
-c001028f
+c00102a5
 c000b70b
 20203715
 70462600
 6fe0c625
-c001828d
+c00182a3
 1fe0fe01
 67e0c625
 c000b70b
-c001028f
+c00102a5
 70414105
 20600000
 70414103
 20600000
 58006235
 67e145f8
-5800029b
+5800622b
 67e145fa
-580002b0
+580002b9
 67e143e9
 202053f3
+2435a002
+37d98200
+37d98200
 20800000
-2055e004
+205582b4
 20202003
-204036b4
-24740000
-70477c01
-204036be
-70477200
-204062aa
-6fe0c73f
-245a54dc
-204002a6
-6fe245af
-20203622
-6fe0c73f
-247a0000
-6848c64a
-20406f0f
+20400227
 6848c64a
-20406ec6
-6848c64b
-20406f0f
+20406edd
 6848c64b
-20206ec6
+20206edd
 20600000
-20400442
+2040046c
 6fe44713
 c289dd60
 c2895d6e
-c28a02b7
+c28a02c0
 20600000
-204002c2
+204002cb
 20405e43
 20405db4
-204002d6
-204002bf
-204002c5
-204002de
+204002df
+204002c8
+204002ce
+204002e7
 20205daa
 6fe44713
 c4150000
-204004aa
+204004e7
 6fe0c666
 67e0ca06
 20600000
@@ -713,7 +722,7 @@
 6fe1468e
 d840aa55
 98467c00
-2022834b
+20228354
 6049468e
 20405c9c
 6fe0c9a1
@@ -726,9 +735,9 @@
 20600000
 6fe0c666
 1fe67c00
-202282d3
-1fe67c04
 202282dc
+1fe67c04
+202282e5
 20610000
 70466600
 20600000
@@ -738,47 +747,47 @@
 1a422600
 20405e3d
 6fe149e0
-203a02ec
+203a02f5
 67e149de
 1a60a602
 6fe14a00
 9a667c00
-242102ec
+242102f5
 1a622400
-202002e2
+202002eb
 6fe149de
 67e14695
 20600000
 6fe44713
 c289dcb1
 c2895cb9
-c28a02f4
+c28a02fd
 20600000
-204002f7
-204002fc
+20400300
+20400305
 20205cc1
 6fe0c666
 c1000000
-c0008323
-c0010337
+c000832c
+c0010340
 20600000
 6a4149e2
 1a422600
 20405dc0
 6fe0c9a1
-203a0308
+203a0311
 67e0c9a0
 1a60a601
 6fe149e4
 9a667c00
 24610000
 1a622400
-202002fe
+20200307
 6fe0c9a0
 1fe17ef0
-203a0312
+203a031b
 6fe0c666
-20400320
+20400329
 67e0c9a2
 df200001
 1a622400
@@ -786,7 +795,7 @@
 20206b45
 6848c9a0
 6fe0c666
-20400320
+20400329
 98467c00
 20628000
 1ff27e00
@@ -795,9 +804,9 @@
 1a627e00
 684949e2
 98467c00
-2022830e
+20228317
 1a60a7ff
-2020030e
+20200317
 c1800000
 1fe0fe04
 20600000
@@ -805,14 +814,14 @@
 1a422600
 20405df3
 6fe349b5
-203a032f
+203a0338
 67e349af
 1a60a606
 6fe149f0
 9a667c00
 24610000
 1a622400
-20200325
+2020032e
 6fe349af
 684b466e
 98467c00
@@ -825,14 +834,14 @@
 1a422600
 20405e17
 6fe349cd
-203a0343
+203a034c
 67e349c7
 1a60a606
 6fe149f8
 9a667c00
 24610000
 1a622400
-20200339
+20200342
 6fe349c7
 684b467b
 98467c00
@@ -841,21 +850,21 @@
 da20467b
 1a622400
 20206b45
-20400384
-2040039c
-2040034f
+2040038d
+204003a5
+20400358
 20205c90
 6fe44713
 c4078000
 6fe0c690
 c0005c94
-c0030355
+c003035e
 20600000
 70469000
 20600000
 6fe44713
 c289dcb5
-c28a035b
+c28a0364
 20600000
 6fe44713
 c4078000
@@ -863,19 +872,19 @@
 1a422600
 20405e51
 6fe0c9d4
-203a0369
+203a0372
 67e0c9d3
 1a60a601
 6fe149fc
 9a667c00
 24610000
 1a622400
-2020035f
+20200368
 6fe0c9d3
 1fe17ef0
-203a0373
+203a037c
 6fe0c690
-20400381
+2040038a
 67e0c9d5
 df200001
 1a622400
@@ -883,7 +892,7 @@
 20206b45
 6848c9d3
 6fe0c690
-20400381
+2040038a
 98467c00
 20628000
 1ff27e00
@@ -892,18 +901,18 @@
 1a627e00
 684949fa
 98467c00
-2022836f
+20228378
 1a60a7ff
-2020036f
+20200378
 c1800000
 1fe0fe06
 20600000
 6fe44713
-c29f038b
+c29f0394
 6fe0c666
 c1000000
-c000838b
-c0010392
+c0008394
+c001039b
 20600000
 6fe3466e
 684b46e6
@@ -920,15 +929,15 @@
 1fe0ff00
 67e3466e
 20600000
-2040039c
+204003a5
 20205a9c
 6fe44713
 c30a5c6f
-c29f03a4
+c29f03ad
 6fe0c666
 c1000000
-c00083a4
-c00103a9
+c00083ad
+c00103b2
 20600000
 6fe34668
 67e34116
@@ -946,11 +955,11 @@
 d8e00002
 20405f04
 20405c4a
-204003b6
+204003bf
 20205ca3
 6fe0c666
-c00083ba
-c00103bf
+c00083c3
+c00103c8
 20600000
 6fe30178
 67e34668
@@ -962,7 +971,7 @@
 6fe342db
 67e3467b
 20600000
-204003da
+204003e3
 2040614d
 2040553d
 20406110
@@ -980,7 +989,7 @@
 20405bee
 20405be4
 20405bfb
-204003dd
+204003e6
 204056b6
 20405c0e
 20205c05
@@ -988,7 +997,7 @@
 da405aef
 202042e0
 da60477e
-da4003e0
+da4003e9
 202042e0
 6fe0c96b
 67e0c0c0
@@ -997,25 +1006,25 @@
 204059ed
 20205c1b
 1a627e00
-c02003fb
-c00a8400
-c01903f2
-c01e041e
-c01c842f
-c01d0432
-c00a03ef
+c0200404
+c00a8409
+c01903fb
+c01e0427
+c01c8438
+c01d043b
+c00a03f8
 20205ac3
 58000000
-67e24c03
+67e24bf9
 20205ad0
 6fe0c795
-c00083f6
+c00083ff
 70484414
-202003f8
+20200401
 20405aef
 70484405
-6fe0cc02
-67e0cc03
+6fe0cbf8
+67e0cbf9
 20205af6
 6fe0ca04
 247a0000
@@ -1030,17 +1039,17 @@
 70479400
 d8400006
 6fe44713
-c28d840a
+c28d8413
 d8400007
 604942d3
 604942d5
 7047c200
 70495600
 204029cb
-20200410
+20200419
 20405b7b
 6fe143ef
-c2838415
+c283841e
 c28042fc
 20205c1a
 6fe143ef
@@ -1049,7 +1058,7 @@
 1fe17e03
 20405b21
 c081d4a9
-6fe0cc06
+6fe0cbfc
 243a54a9
 202054cd
 6fe2458f
@@ -1067,19 +1076,21 @@
 98467c00
 20628000
 20406016
-20400445
+2040046f
 20206042
 20406016
-20400445
+2040046f
 20206084
 20406016
-20400445
+2040046f
 6fe0c87a
 c1008000
 6fe0c600
 243a5ff2
 6fe0c5e2
-c002043b
+c0020446
+c000e05f
+c001844d
 20206055
 6fe44713
 c31f6059
@@ -1088,6 +1099,37 @@
 20406018
 70466601
 202054a0
+6fe44713
+c31f6059
+c289e059
+c28a6059
+c2896059
+20206034
+6fe44713
+c29f0458
+6fe0c666
+c000045f
+20205491
+204054ac
+2034045b
+2020602f
+6fe0c666
+c0006067
+20405aa8
+2020044a
+6fe44713
+c308e02a
+20406195
+204054ac
+20346067
+6fe44713
+c2980467
+20206023
+70466600
+6fe14721
+67e145de
+7045e201
+20203534
 6fe0c141
 67e0ca07
 20600000
@@ -1096,26 +1138,26 @@
 20600000
 2040620e
 204078aa
-2040044c
+20400476
 20205e61
 6fe0c649
 c17f8000
 da200000
 70497705
 6848c649
-20400453
+2040047d
 202056c1
 6fe44713
 c295d6de
 6fe0c974
 1fe22600
 6fe0c654
-c07f845a
+c07f8484
 202056ce
 6fe0c649
 20405946
 6848c649
-2020045e
+20200488
 1a627e00
 67e0c978
 1fe3fe00
@@ -1130,7 +1172,7 @@
 204036b4
 24740000
 204036be
-2040046f
+20400499
 6fe1c608
 20203622
 58000000
@@ -1147,9 +1189,9 @@
 67e3c846
 70473f01
 204059ed
-2020029b
+2020622b
 20405a92
-2040046f
+20400499
 204056a9
 6848c654
 20406ef7
@@ -1157,29 +1199,48 @@
 20406ed3
 6fe0c64d
 20405943
+6848c65a
+204055ab
 d8400015
 204055b5
-2040048b
-202054df
-6fe0c65a
-c17f8000
-6fe0c666
-c0000491
-6848c65a
-202055b5
-6848c65a
-20206f0f
+2040611a
+2040550c
+204054f9
+6848c64a
+20406f0f
+6848c64b
+20406f0f
+6848c65b
+204055b5
+204004c0
+202054e5
+6fe1c73c
+67e18670
+df200018
+d8400000
+6fe18670
+2feffe00
+204084cd
+6fe18670
+1fe37e00
+67e18670
+18408401
+c20004c4
+20600000
+18467cff
+20628000
+20206f0b
 c6930000
 20405601
 24740000
 6fe0c77c
 70477c00
-245a04a8
+245a04e5
 6fe44713
-c30b049d
+c30b04da
 6fe0c96c
 243a60b6
-2040049f
+204004dc
 202060a2
 6fe0c659
 c1ff8000
@@ -1190,8 +1251,8 @@
 58000000
 67e24847
 20205a73
-2040046f
-2020022e
+20400499
+20200244
 6fe44713
 c4150000
 c31fdeb9
@@ -1206,11 +1267,11 @@
 20405958
 c018595f
 c018d9c6
-c02c04ba
+c02c04f7
 20205952
 204059e7
 6fe0c85a
-c02c84be
+c02c84fb
 2020595f
 7049570b
 da604a0b
@@ -1218,11 +1279,11 @@
 6fe0c420
 c1800000
 6fe0c957
-c00584c6
+c0058503
 202059f8
 20405a6d
 6fe0c659
-c07f84cc
+c07f8509
 6848c659
 20406ee6
 24608000
@@ -1233,5 +1294,5 @@
 78547c00
 58000000
 67e34847
-204004c1
+204004fe
 20205606
Index: output/sched.rom
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/sched.rom	(revision 1492)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/output/sched.rom	(working copy)
@@ -12,8 +12,8 @@
 00   #mem_patch0a
 00   #mem_patch0b
 00   #mem_patch0c
-33   #mem_patch0d
-08   #mem_patch0e
+73   #mem_patch0d
+98   #mem_patch0e
 84   #mem_patch0f
 f2   #mem_patch10
 7d   #mem_patch11
@@ -25,8 +25,8 @@
 00   #mem_patch17
 20   #mem_patch18
 00   #mem_patch19
-00   #mem_patch1a
-14   #mem_patch1b
+60   #mem_patch1a
+04   #mem_patch1b
 00   #mem_patch1c
 00   #mem_patch1d
 00   #mem_patch1e
@@ -220,11 +220,12 @@
 
 #device parm
 mem_device_option:08
-mem_device_number:01   	#01--only 2.4g   02--2.4g+ble
+mem_device_number:01   #01--only 2.4g   02--2.4g+ble
 
 mem_lpm_mode:01
 mem_lpm_mult:20
 mem_lpm_mult_init:20
+mem_mouse_set_high_impedance_bit_set:00 00 00
 
 mem_device_flag:
 00		#00--24g 01--bt
@@ -277,7 +278,7 @@
 mem_mouse_24g_fast_hop_count_4ms:05
 mem_mouse_24g_tsniff_4ms:80 bb 00 00
 
-mem_mouse_24g_short_sleep_set_8ms:f2 f9 00#ac 07 01	#5625us	40 19 01:72000:6ms
+mem_mouse_24g_short_sleep_set_8ms:60 ea 00
 mem_mouse_24g_long_sleep_set_8ms:00 77 01
 mem_mouse_24g_fast_hop_count_8ms:0b
 mem_mouse_24g_tsniff_8ms:00 77 01 00
@@ -365,9 +366,9 @@
 mem_otp_offset_le_locall_addr2_end:fa 1e					#7930  end
 
 mem_otp_offset_le_addr_increase_count:fb 1e			#7931 begin		100 count
-mem_otp_offset_le_addr_increase_count_end:c2 1f		#8130 end					----------info over	
+mem_otp_offset_le_addr_increase_count_end:ac 1f		#8108 end					----------info over	
 
-mem_otp_offset_app_initflag:c4 1f		#8132 end
+mem_otp_offset_app_initflag:ae 1f		#8110 end
 
 #ui
 mem_ui_button_gpio:ff
@@ -469,13 +470,11 @@
 be d1
 a0 41
 a1 12
-a5 84
 a7 ff
-b5 d0
 b6 00
+b5 c8
+a5 af
 ff 00
-35 c8
-25 af
 09 00
 ff ff
 
@@ -506,6 +505,29 @@
 09 00
 ff ff
 
+
+#adc config
+mem_adc_config_flag:01
+#01 ADC_CONFIG_HVIN
+#02 ADC_CONFIG_GPIO
+mem_adc_clkdiv:0a
+mem_adc_channel:09
+#00 ADC_CH_VBAT
+#01 ADC_CH_VDCDC5V
+#06 ADC_CH_GPIO18
+#07 ADC_CH_GPIO10
+#08 ADC_CH_GPIO9
+#09 ADC_CH_GPIO12
+#0a ADC_CH_GPIO6
+#0b ADC_CH_GPIO20
+#0c ADC_CH_GPIO21
+#0d ADC_CH_GPIO22
+#0e ADC_CH_GPIO13
+
+mem_mouse_vdd_full_vol:a4 01		#4.2V
+18 01#mem_mouse_vdd_empty_vol  :2.8V
+2c 01#mem_mouse_vdd_low_vol   :3.0V
+
 # rf debug
 #bit7:0 means disable rf debug function
 #mem_rf_debug_rx_gpio:87
@@ -535,28 +557,6 @@
 mem_gain_second_agc_en:08	#hw agc: 0:second agc disable
 mem_otp_load_check_sum:5a
 
-#adc config
-mem_adc_config_flag:01
-#01 ADC_CONFIG_HVIN
-#02 ADC_CONFIG_GPIO
-mem_adc_clkdiv:0a
-mem_adc_channel:00
-#00 ADC_CH_VBAT
-#01 ADC_CH_VDCDC5V
-#06 ADC_CH_GPIO18
-#07 ADC_CH_GPIO10
-#08 ADC_CH_GPIO9
-#09 ADC_CH_GPIO12
-#0a ADC_CH_GPIO6
-#0b ADC_CH_GPIO20
-#0c ADC_CH_GPIO21
-#0d ADC_CH_GPIO22
-#0e ADC_CH_GPIO13
-
-mem_adc_dma_enable:00
-mem_adc_saddr_ptr:00 07
-mem_adc_eaddr_ptr:ff 07
-
 mem_ring_ibias_trim:a0
 mem_ring_ibias_vtune_high:bc 02 #700mv
 mem_ring_ibias_vtune_low:90 01 #400mv
Index: program/app_mouse.prog
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/program/app_mouse.prog	(revision 1492)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/program/app_mouse.prog	(working copy)
@@ -345,6 +345,7 @@
 	fetcht 1,mem_mouse_reuse_2ice_gpio
 	call mouse_gpio_config_input_pu
 	call mouse_gpio_set_high_impedance
+mouse_setgpio_hibernate_next:
 	call mouse_device_multi_led_all_off
 	call mouse_adc_gpio_set_before_hibernate
 	branch mouse_wheel_gpio_set_before_hibernate
@@ -641,7 +642,7 @@
 	isolate1 0,pdata
 	call gpio_set_high_impedance,true
 	fetch 3,mem_pdatatemp
-	lshift pdata,pdata
+	lshift pdata,pdata		//-->rshift
 	store 3,mem_pdatatemp
 	increase 1,temp
 	loop mouse_gpio_set_high_impedance_bit_loop
Index: program/patch.prog
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/program/patch.prog	(revision 1492)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/program/patch.prog	(working copy)
@@ -2,9 +2,10 @@
 //define AUTO_TEST
 //define PWM_SET
 //define SELECT_ANGLE
-//define UART_LOG
 define POWER_CTRL
 //define MORE_POWER_CTRL
+//define ADC_1121SB
+//define ADC_1121SB_1V8_MODE
 define SENSOR_ANGLE_ICE_SDIO
 
 	bbit1 8,pf_patch_ext
@@ -27,7 +28,10 @@
 ifdef SENSOR_ANGLE_ICE_SDIO	
 	beq patch0d_5,p_mouse_sensor_set_angle
 endif	
+	beq patch0d_6,p_mouse_start_work
 	beq patch0e_3,p_mouse_setgpio_hibernate
+	beq patch0e_4,p_mouse_lpm_before_common
+	beq patch0e_7,p_mouse_adc_read_start
 	beq patch0f_2,p_mouse_motion
 	beq patch0f_7,p_mouse_3io6key_check
 	beq patch10_1,p_mouse_init_sensor
@@ -37,16 +41,22 @@
 	beq patch10_7,p_mouse_bb_event_timer
 	beq patch11_0,p_mouse_start_discovery
 	beq patch11_2,p_mouse_store_remote_bdaddr
+	beq patch11_3,p_mouse_app_initflag_check
 	beq patch11_4,p_mouse_store_device_info
 	beq patch11_5,p_mouse_store_dpi_info_check
 	beq patch11_6,p_mouse_idle
-	beq patch11_3,p_mouse_app_initflag_check
 	beq patch12_0,p_mouse_check_select_device_by_switch
 	beq patch12_5,p_mouse_24g_hibernate_set
 	beq patch12_6,p_mouse_24g_package_data
 	beq patch18_5,p_otp_read_data
+	beq patch1a_5,p_gpio_set_wake_by_current_state	
+	beq patch1a_6,p_gpio_set_wake
 	beq patch1b_2,p_sadc_calibration
+ifdef ADC_1121SB
+	beq patch1b_3,p_adc_init_data
 	beq patch1b_4,p_enable_adc
+	beq patch1b_5,p_vdd_calculate_by_mode
+endif
 	branch assert
 
 pf_patch_ext:
@@ -70,19 +80,22 @@
 
 /****************************************COMMON PATCH*****************************************/
 
-//p_g24_ackpayload_parse:
-//	call g24_read_len_pid_crc
-//	fetch 1,mem_24g_rxdata_length	//ack payload length 
-//	rtn blank
-//	iforce loopcnt
-//	arg mem_24g_rxbuf+2,contr
-//	arg mem_24g_rxpayload,contw	//ack payload buffer 
-//	call memcpy
-//ifdef UART_LOG
-//	call p_buffer_print_rx
-//endif	
-//	rtn
-
+p_mouse_adc_read_start:
+	call enable_adc
+	call vdd_calculate_by_mode
+	div pdata,10
+	call get_div_result
+	store 2,mem_mouse_vdd_now_vol
+
+//	fetch 1,mem_adc_config_flag
+//	beq ADC_CONFIG_GPIO, mouse_adc_data_process
+//	fetcht 2,mem_mouse_vdd_now_vol	// BAT= 1.5V, R = 200k, a = a*1.8
+//	mul32 temp,8,pdata
+//	div pdata,10
+//	call get_div_result
+//	iadd temp,pdata
+//	store 2,mem_mouse_vdd_now_vol
+	branch mouse_adc_data_process
 
 ifdef SENSOR_ANGLE_ICE_SDIO
 p_mouse_sensor_set_angle:
@@ -114,7 +127,7 @@
 endif
 
 p_main_loop:
-	ifdef SECURE_CONNECTION
+ifdef SECURE_CONNECTION
 	call sp_calc_sequence_256
 	call sp_calc_sequence_256_check
 endif
@@ -190,8 +203,8 @@
 	call p_rfpll_aac_ghpc
 	call p_set_xtal_cap
 	jam SYSTEM_CLK_12M,mem_system_clk
-	call sadc_calibration
-	branch p_dpll_ring_ibias_calc
+	branch sadc_calibration
+//	branch p_dpll_ring_ibias_calc
 	
 p_set_xtal_cap:
 	rtn wake
@@ -380,8 +393,7 @@
 	setarg 0x250000
 	store 3,0x8a60
 	branch set_tx_power_8a63_28	
-	*/
-/*
+
 p_set_tx_power_f45db:
 	jam 0x17,0x8a14
 	setarg 0x000000
@@ -470,8 +482,8 @@
 	rtn wake
 	branch rfpll_aac_ghpc+1
 	
-p_dpll_ring_ibias_calc:
-	rtn
+//p_dpll_ring_ibias_calc:
+//	rtn
 
 p_sadc_calibration:
 	rtn wake
@@ -491,33 +503,6 @@
 	storer regb,1,mem_spi_write_addr
 	rtn
 
-p_enable_adc:
-	call p_sadc_cal_write
-	fetch 1,core_gpadc_cfg1
-	set0 7,pdata
-	store 1,core_gpadc_cfg1
-	jam 0x77,core_gpadc_ctrl
-	jam 0xc1,core_gpadc_cfg0
-	jam 0x01,core_gpadc_cfg3
-	call sadc_channel
-	fetch 1,mem_adc_clkdiv
-	store 1,core_sadc_clkdiv
-	nop 3000
-	call p_sadc_read
-	jam 0,core_sadc_clkdiv
-	branch sadc_dma
-
-p_sadc_cal_write:
-	fetch 1,core_sadc_ctrl
-	set1 1,pdata
-	store 1,core_sadc_ctrl
-	fetchr regb,1,mem_spi_write_addr
-	fetch 1,mem_adc_cal_c7
-	store 1,mem_spi_write_addr
-	arg 8,loopcnt	//rg_gpadc_sar_dat_sel c0-c7
-	call sadc_cal_write+4
-	storer regb,1,mem_spi_write_addr
-	rtn
 
 p_sadc_read:
 	jam 0x03,core_sadc_ctrl
@@ -662,15 +647,15 @@
 	beq LLID_LE_LL,le_parse_ll
 	branch le_parse_l2cap
 	
+p_le_init_adv:
+	set0 mark_ble_crc_fail,mark	
+	branch le_init_adv+1
+
 p_le_adv_not_match:
 	call shutdown_radio
 	jam 0,0x8900
 	set0 mark_ble_crc_fail,mark
-	branch le_adv_not_match+1	
-	
-p_le_init_adv:
-	set0 mark_ble_crc_fail,mark	
-	branch le_init_adv+1
+	branch le_adv_not_match+1
 
 p_le_parse_l2cap:
 	ifetch 2,contr
@@ -749,6 +734,58 @@
 	call p_mouse_data_xy_release
 	branch mouse_le_next+12
 
+p_gpio_set_wake:
+	sub temp,UI_BUTTON_GPIO_DISABLE,null
+	rtn zero
+	arg 4,debug
+	isolate1 GPIO_ACTIVE_BIT,temp
+	branch gpio_set_wake_high,true
+	arg 3,debug
+	branch gpio_set_wake_high
+
+p_gpio_set_wake_by_current_state:
+	sub temp,GPIO_DISABLE,null
+	rtn zero
+	storet 1,mem_mouse_wheel_temp_gpio
+	call gpio_get_bit
+	branch p_gpio_set_qdec_mode,true
+p_gpio_set_low_wake_disable_qdec:
+	fetcht 1,mem_mouse_wheel_temp_gpio
+	call gpio_set_high_impedance
+	fetcht 1,mem_mouse_wheel_temp_gpio
+	branch p_gpio_set_low_wake
+	
+p_gpio_set_qdec_mode:
+	jam 1,mem_mouse_qdec_set_flag
+	fetcht 1,mem_mouse_wheel_temp_gpio
+	call gpio_set_high_impedance
+	fetcht 1,mem_mouse_wheel_temp_gpio
+	branch p_mouse_qdec_lpm_cfg
+
+p_mouse_qdec_lpm_cfg:
+	arg 6,debug
+	branch gpio_set_wake_high
+
+p_gpio_set_low_wake:
+	arg 3,debug
+	branch gpio_set_wake_high
+
+p_mouse_puchk_disable:
+	setarg 0x10			//bit0-1:key_delay	bit2-3:pu_delay		bit4-6:interval	bit7:enable 
+p_mouse_puchk_set:
+	store 1,core_puwakeup
+	until null,lpo_edge
+	rtn
+
+p_mouse_puchk_enable:
+	setarg 0x80			//bit0-1:key_delay	bit2-3:pu_delay		bit4-6:interval	bit7:enable 
+	branch p_mouse_puchk_set
+
+p_mouse_lpm_before_common:
+	call p_clear_wake
+	jam 0,mem_mouse_qdec_set_flag
+	branch mouse_lpm_before_common+1
+	
 p_lpm_sleep:
 	//call xtal_fast_wake
 	fetch 2,mem_cb_before_lpm_sleep
@@ -758,8 +795,14 @@
 	iadd temp,pdata
 	store 4,mem_sleep_counter_all
 	call p_lpm_save_context
+	call p_mouse_puchk_set_check
 	branch lpm_sleep_skip_cb_function+4
 
+p_mouse_puchk_set_check:
+	fetch 1,mem_mouse_qdec_set_flag
+	branch p_mouse_puchk_disable,blank
+	branch p_mouse_puchk_enable
+
 p_lpm_save_context:
 	storer mark,8,mem_saved_mark
 	arg core_gpio_conf,contr
@@ -925,51 +968,34 @@
 p_mouse_cb_fuction:
 	setarg mouse_24g_short_sleep
 	store 2,mem_cb_24g_transmit_short_sleep
-	setarg p_mouse_24g_long_sleep
+	setarg mouse_24g_long_sleep
 	store 2,mem_cb_24g_transmit_long_sleep
 	setarg p_mouse_24g_before_lpm_sleep
 	store 2,mem_cb_before_lpm_sleep
 	branch mouse_cb_fuction+7
 
 p_soft_reset:
+	nbranch soft_reset+1,wake
+	until null,lpo_edge
+	until null,lpo_edge
 	clear_stack
-	call mouse_wheel_gpio_init,wake
+	call p_mouse_wheel_init_set,wake
 	branch soft_reset+2
 
-p_mouse_24g_long_sleep:
-	call g24_lpm_wait
-	nrtn user
-	jam 1,mem_mouse_24g_long_sleep_flag
-	call g24_setgpio_lpm_before
-	jam 0,mem_mouse_24g_sleep_miss
-	call mouse_24g_send_time_long_wake
-	fetch 1,mem_sensor_shutdown_flag
-	ncall mouse_setgpio_hibernate,blank
-
-	call p_mouse_wheel_set_low_pullup
-
-	fetch 4,mem_24g_enter_hibernate
-	branch g24_long_seep2
-
-p_mouse_wheel_set_low_pullup:
-	fetch 1,mem_sensor_shutdown_flag
-	nrtn blank
-	fetcht 1,mem_whee_a_data_gpio
-	call gpio_set_high_impedance
-	fetcht 1,mem_whee_a_data_gpio
-	call gpio_set_low_pullup
-
-	fetcht 1,mem_whee_b_data_gpio
-	call gpio_set_high_impedance
+p_mouse_wheel_init_set:
+	call p_mouse_puchk_disable
+	fetcht 1,mem_whee_a_data_gpio		//reinit gpio pu after disable wheel wakeup
+	call gpio_config_input
 	fetcht 1,mem_whee_b_data_gpio
-	branch gpio_set_low_pullup
-
+	branch gpio_config_input
+	
 p_mouse_24g_before_lpm_sleep:
 	rtn
 //	fetch 1,mem_device_flag
 //	rtnne MODE_24G_DEVICE
 //	branch mouse_24g_before_lpm_sleep+2	
 
+
 ifdef SELECT_ANGLE	
 p_mouse_select_angle:
 	fetch 1,mem_select_sensor_angle_gpio
@@ -1025,9 +1051,6 @@
 	call p_mouse_set_sensor_gpio_sleep
 endif
 	call p_mouse_store_normal_tx_power
-ifdef UART_LOG
-	call p_app_uarta_init	
-endif
 	fetch MOUSE_FLAG_LEN,mem_mouse_flag
 	bbit1 MOUSE_ENABLE_EEPROM,mouse_load_eeprom_info_check
 	bbit1 MOUSE_ENABLE_FLASH,mouse_load_flash_info_check
@@ -1037,10 +1060,11 @@
 	call p_mouse_device_flag_temp_store
 	call mouse_read_otp_dpi
 	call mouse_read_otp_device_flag
-
+	
 	call p_mouse_device_flag_check		//reinit to load info
+
 	call p_mouse_select_device_by_switch_check
-	
+
 	call p_mouse_read_otp_device_info
 	call p_mouse_read_otp_le_addr_increase_count_info
 	branch mouse_otp_load_app_initflag
@@ -1155,7 +1179,7 @@
 	call p_mouse_device_flag_otp_store_judge			// add device_flag check
 	
 	store 1,mem_device_flag_value
-p_mouse_devoce_flag_store_end:	
+p_mouse_device_flag_store_end:	
 	arg 1,loopcnt
 	copy regc,regb
 	arg mem_device_flag_value,rega
@@ -1174,10 +1198,10 @@
 	copy regc,pdata
 	fetcht 2,mem_otp_offset_device_flag
 	isub temp,null
-	branch p_mouse_devoce_flag_store_end,zero
+	branch p_mouse_device_flag_store_end,zero
 	
 	increase -1,regc
-	branch p_mouse_devoce_flag_store_end
+	branch p_mouse_device_flag_store_end
 
 p_mouse_device_flag_otp_store_judge:
 	rtnne MODE_24G_DEVICE
@@ -1437,7 +1461,7 @@
 	call mouse_wheel_trigger_timer
 	call mouse_store_information_delay_timer
 	branch mouse_check_no_data_timeout_timer
-
+	
 p_mouse_le_send_conn_param_update_timer:
 	arg mem_mouse_le_send_conn_param_update_timer,regc
 	arg mouse_updata_le_param,regb
@@ -1563,6 +1587,8 @@
 	nbranch mouse_24g_hibernate_set,blank
 	fetch 1,mem_24g_reconn_type
 	beq PAIR_AND_3_0_ADDR,p_mouse_24g_auto_pair_attempt_fail
+	beq FAST_CONN_AND_RECEIVER,mouse_24g_fast_conn_attempt_fail
+	beq RECEIVER_AND_3_0_ADDR,p_mouse_reconn_dongle_attempt_fail
 	branch mouse_24g_attempt_fail+2
 
 p_mouse_24g_auto_pair_attempt_fail:
@@ -1575,6 +1601,49 @@
 	jam MODE_BT_DEVICE1,mem_device_flag
 	branch mouse_start_reconnect_device
 
+p_mouse_reconn_dongle_attempt_fail:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit0 MOUSE_ENABLE_24G_FIRST_AUTO_PAIRING,mouse_24g_attempt_fail_enter_hibernate
+	bbit1 MOUSE_ENABLE_EEPROM,mouse_24g_attempt_fail_enter_hibernate
+	bbit1 MOUSE_ENABLE_OTP,mouse_24g_attempt_fail_enter_hibernate
+	bbit1 MOUSE_ENABLE_FLASH,mouse_24g_attempt_fail_enter_hibernate
+	branch mouse_24g_start_auto_pair
+
+p_mouse_start_work:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit1 MOUSE_ENABLE_24G_FIRST_AUTO_PAIRING,p_mouse_24g_first_start_auto_pair_mode
+	fetch 1,mem_device_flag
+	beq MODE_24G_DEVICE,p_mouse_24g_start_mode
+	branch mouse_le_fast_conn_judge
+
+p_mouse_24g_first_start_auto_pair_mode:	
+	call mouse_wakeup_from_power_check
+	branch p_mouse_24g_first_start_reconn,user 
+	branch mouse_24g_reconn_general_dongle
+
+p_mouse_24g_first_start_reconn:
+	fetch 1,mem_device_flag
+	beq MODE_24G_DEVICE,mouse_24g_reconn_dongle_start
+	call mouse_bluetooth_fast_conn_disable
+	branch p_mouse_24g_first_bluetooth_reconnect
+
+p_mouse_24g_start_mode:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit0 MOUSE_ENABLE_24G,mouse_24g_mode_setup_error
+	call mouse_device_24g_pair_led_config
+	call mouse_wakeup_from_power_check	// wake from hibernate :enble user
+	branch mouse_24g_reconn_dongle_start,user
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit1 MOUSE_ENABLE_AUTO_24G_PARING,p_mouse_24g_reconn_general_dongle
+	branch mouse_24g_start_mode+7
+
+p_mouse_24g_reconn_general_dongle:
+	jam MODE_24G_DEVICE,mem_device_flag
+	fetch 2,mem_mouse_24g_power_on_fast_conn_timer
+	store 2,mem_24g_reconn_timeout
+	jam FAST_CONN_AND_RECEIVER,mem_24g_reconn_type
+	branch g24_reconn_start
+	
 p_mouse_store_normal_tx_power:
 	fetch 1,mem_tx_power
 	store 1,mem_normal_tx_power
@@ -1655,7 +1724,7 @@
 	jam 1,mem_sensor_shutdown_flag
 	call mouse_sensor_powerdown
 //	call mouse_setgpio_hibernate
-	branch p_mouse_24g_long_sleep
+	branch mouse_24g_long_sleep
 
 p_mouse_setgpio_hibernate:
 	call mouse_set_sdio_high
@@ -1667,22 +1736,44 @@
 	call gpio_clr_wake
 	fetch 1,mem_mouse_sensor_sdio_gpio
 	call mouse_gpio_config_output_high
+	
+	fetcht 1,mem_device_switch_gpio
+	call mouse_gpio_set_pupd_by_input
 	arg 21,temp	//ice band gpio			
 	call mouse_gpio_config_input_pu
-	call p_mouse_device_switch_gpio_high_impedance
-	branch mouse_setgpio_hibernate+3
+	
+	call mouse_logo_led_off
+	call mouse_lpm_before_common
+	call mouse_gpio_pd_idle
+	fetcht 1,mem_whee_a_data_gpio
+	call gpio_set_high_impedance
+	fetcht 1,mem_whee_b_data_gpio
+	call gpio_set_high_impedance
+	fetcht 1,mem_mouse_reuse_2ice_gpio
+	call mouse_gpio_config_input_pu
+	call p_mouse_gpio_set_high_impedance
+	branch mouse_setgpio_hibernate_next
 
-p_mouse_device_switch_gpio_high_impedance:
-	fetch 1,mem_device_switch_gpio
-	rtneq 0xff
-	fetch 1,mem_device_flag
-	beq MODE_24G_DEVICE,p_mouse_device_switch_gpio_set_impedance
-	fetcht 1,mem_device_switch_gpio
-	branch mouse_gpio_config_input_pu
+p_mouse_gpio_set_high_impedance:
+	fetch 3,mem_mouse_set_high_impedance_bit_set
+	store 3,mem_pdatatemp
+	arg 24,loopcnt
+	arg 0,temp
+p_mouse_gpio_set_high_impedance_bit_loop:	
+	fetch 3,mem_pdatatemp
+	isolate1 0,pdata
+	call p_gpio_set_analog,true
+	fetch 3,mem_pdatatemp
+	rshift pdata,pdata
+	store 3,mem_pdatatemp
+	increase 1,temp
+	loop p_mouse_gpio_set_high_impedance_bit_loop
+	rtn
 
-p_mouse_device_switch_gpio_set_impedance:
-	fetcht 1,mem_device_switch_gpio
-	branch gpio_set_high_impedance
+p_gpio_set_analog:
+	sub temp,UI_BUTTON_GPIO_DISABLE,null
+	rtn zero
+	branch gpio_set_analog
 
 p_mouse_24g_package_data:
 	rtnmark0 mark_24g
@@ -1774,6 +1865,7 @@
 	branch mouse_sensor_wr_seq
 
 
+
 p_mouse_check_sensor_data:
 	fetch 1,mem_spi_write_flash_sm
 	rtnne FLASH_SM_NO_BUYS
@@ -1840,6 +1932,7 @@
 p_mem_usb_data_square_cnt_set0:
 	jam 0,0X4FF0
 	branch p_ms_y_down+2
+
 else
 p_mouse_motion:
 	disable user
@@ -1849,116 +1942,223 @@
 	branch mouse_motion+5
 endif
 
+ifdef ADC_1121SB
+p_adc_init_data:
+	fetch 8,mem_otp_adc
+	branch adc_init_cal_data_default,blank
+	store 8,mem_reference_inter1p8v_2v_adc_io_data
+	call enable_otp_read
+	call loadcode_check_otp_lock
+	arg OTP_OFFSET_ADC_PARAM_L_C0,pdata
+	iadd regb,regb
+	arg 10,loopcnt
+	arg mem_otp_temp,rega
+	call otp_read_data
+	call disable_otp
+	fetch 8, mem_otp_temp
+	rtn blank
+	store 8,mem_adc_reference3v_gpio1v_ft_data
+	ifetch 2,contr
+	istore 2,contw	
+	//call  eut_test_data_init	
+	rtn
 
-ifdef UART_LOG
-p_app_uarta_init:
-	fetch 1,core_uart_ctrl
-	set0 BIT_UART_CONTROL_ENABLE,pdata
-	store 1,core_uart_ctrl
-	fetch 8,mem_device_uart_rx_buffer
-	call uarta_init_dma_mem
-	fetch uart_baud_len,mem_device_uart_baud_rate
-	call uarta_init_baud_rate
-	call uart_clock_select_main_freq_crystal
-	fetch 1,mem_device_uart_tx_gpio
-	arg gpcfg_uart_txd,temp
-	call gpio_config_function_int
-	fetch 1,mem_device_uart_rx_gpio
-	arg gpcfg_uart_rxd|gpcfg_pullup,temp
-	call gpio_config_function_int
-	arg FUN_UART_CONTROL_ENABLE|FUN_UART_CONTROL_SETTING_RATE_BAUD,temp
-	storet 1,core_uart_ctrl
+p_sadc_cal_write:
+	fetch 1,core_sadc_ctrl
+	set1 1,pdata
+	store 1,core_sadc_ctrl
+	fetchr regb,1,mem_spi_write_addr
+	fetch 1,mem_adc_cal_c7
+	store 1,mem_spi_write_addr
+	arg 8,loopcnt	//rg_gpadc_sar_dat_sel c0-c7
+	call sadc_cal_write+4
+	storer regb,1,mem_spi_write_addr
+	fetch 1,core_gpadc_cfg2	
+	set0 4,pdata//caliberation write disable	
+	store 1,core_gpadc_cfg2	
 	rtn
 
-//input: loopcnt data len,  regc points to buff
-p_buffer_print_rx:
-	arg 16,loopcnt
-	arg mem_24g_rxbuf,regc
-	call log_bytes
-	branch log_end
+p_vdd_calculate_by_mode:
+ifdef ADC_1121SB_1V8_MODE
+	fetch 1,mem_adc_reference_mode
+	beq SADC_REFERENCE_INTER3V,p_vdd_reference_inter3V_calculate
+	beq SADC_REFERENCE_INTER1P8V_DIV2,p_vdd_reference_inter1p8V_calculate
+	branch p_vdd_reference_inter3V_calculate
+endif
 
-p_buffer_print_tx:
-	arg 16,loopcnt
-	arg mem_24g_txbuf,regc
-	call log_bytes
-	branch log_end
-
-//input: 1 byte hex @pdata  
-//output: 4 byte  '0','x', ASCII,ASCII, @pdata
-hex2ascii:
-	rshift4 pdata,rega  //high 4bit in rega
-	and_into 0x0f,pdata
-	call hex2ascii_half_byte
-	copy pdata,regb
-	copy rega,pdata
-	call hex2ascii_half_byte
-	lshift8 regb,regb
-	iadd regb,pdata
-//	lshift16 pdata,pdata
-//	arg 0x7830,regb   //0x
-//	iadd regb,pdata
+p_vdd_reference_inter3V_calculate:
+	fetch 1,mem_adc_config_flag
+	beq ADC_CONFIG_HVIN,p_vdd_reference_inter3V_calculate_by_mode_vdcdc
+	beq ADC_CONFIG_GPIO,p_vdd_reference_inter3V_calculate_by_mode_gpio
+	rtn
+	
+p_vdd_reference_inter3V_calculate_by_mode_vdcdc:
+	setarg 1000
+	store 2,mem_reference_voltage
+	fetcht 2,mem_adc_reference3v_vdcdc3p6v_ft_data
+	fetch 2,mem_adc_reference3v_vdcdc4p6v_ft_data
+	arg 3600,regc
+	call vdd_calculate
+	branch p_mul1V_div1V_to_cal
+	
+p_vdd_reference_inter3V_calculate_by_mode_gpio:
+	setarg 1000
+	store 2,mem_reference_voltage
+	fetcht 2,mem_adc_reference3v_gpio1v_ft_data
+	fetch 2,mem_adc_reference3v_gpio2v_ft_data
+	arg 1000,regc
+	call vdd_calculate
+p_mul1V_div1V_to_cal:
+	fetcht 2,mem_adc_reference3v_inter1v_ft_data
+	imul32 temp,pdata
+	fetcht 2,mem_adc_reference3v_inter1v_now_data
+	idiv temp
+	branch get_div_result
+	
+p_enable_adc_init_config:
+	call p_sadc_cal_write
+	fetch 1,core_gpadc_cfg1
+	set0 7,pdata
+	store 1,core_gpadc_cfg1
+	jam 0x77,core_gpadc_ctrl
+	jam 0xc1,core_gpadc_cfg0
+	jam 0x61,core_vtest_ctrl0
+	jam 0x00,core_gpadc_cfg3
 	rtn
 
-//input: 1 byte hex @pdata  
-//output: 4 byte  '0','x', ASCII,ASCII, @pdata
-hex2ascii_half_byte:
-	arg 0xa,temp
-	isub temp,temp
-	nbranch hex2ascii_half_byte_numberic,positive
-	setarg 0x41  // A
-	iadd temp,pdata
-	rtn
-hex2ascii_half_byte_numberic:
-	arg 0x30,temp
-	iadd temp,pdata
+p_enable_adc:
+ifdef ADC_1121SB_1V8_MODE
+	fetch 1,mem_adc_reference_mode
+	beq SADC_REFERENCE_INTER3V,p_enable_adc_reference_source_inter3V
+	beq SADC_REFERENCE_INTER1P8V_DIV2,p_enable_adc_reference_source_inter1p8V
+	branch p_enable_adc_reference_source_inter3V
+endif		
+p_enable_adc_reference_source_inter3V:
+	call p_enable_adc_init_config
+	call sadc_channel
+	fetch 1,mem_adc_clkdiv
+	store 1,core_sadc_clkdiv
+	call sadc_read
+	jam 0x60,core_vtest_ctrl0
+	jam 0x00,core_sadc_clkdiv	
+//	rtn
+	
+p_read_adc_inter1V:
+	call p_enable_adc_init_config
+	fetch 1,mem_adc_clkdiv
+	store 1,core_sadc_clkdiv
+	jam 0x50,core_gpadc_cfg3
+	jam 0xc0,core_vtest_ctrl1//select vref1v
+
+	arg 0xb,regext_index
+	fetchr regext, 2,mem_adc_current_value
+	
+	jam 0x03,core_sadc_ctrl	
+	call p_sar_adc_read_wait
+	fetcht 2,core_sadc_data
+	storet 2,mem_adc_reference3v_inter1v_now_data 
+	call sadc_read_wait+4
+	
+	arg 0xb,regext_index
+	storer regext,2,mem_adc_current_value
+
+	jam 0x60,core_vtest_ctrl0
+	jam 0x00,core_sadc_clkdiv
+	jam 0x00,core_sadc_ctrl
 	rtn
 
-//input: loopcnt--length,regc--data ptr	
-log_bytes:
-	copy loopcnt,pdata
-	branch log_len0,blank
-log_bytes_loop:
-	ifetch 1,regc
-	increase 1,regc
-	call log_byte
-	call log_space
-	loop log_bytes_loop
-uart_wait:
-	fetch 1,core_uart_status
-	bbit1 uart_status_tx_busy,uart_wait
-//	nop 12000
-	rtn
-
-//input 1byte @pdata
-log_byte:
-	call uarta_prepare_tx
-	call hex2ascii
-//	istore 4,contu	//0x
-	istore 2,contwu
-	branch uarta_send
-
-log_len0:
-	call uarta_prepare_tx
-	setarg 0x656c
-	istore 2,contwu
-	setarg 0x306e
-	istore 2,contwu
-	call uarta_send
-	branch log_end
-
-log_space:
-	call uarta_prepare_tx
-	setarg 0x20
-	istore 1,contwu
-	branch uarta_send
-
-log_end:
-	call uarta_prepare_tx
-	setarg 0x0a0d
-	istore 2,contwu
-	branch uarta_send
 
-endif
+p_sar_adc_read_wait:
+	fetch 1,core_perf_status
+	bbit0 SARADC_DONE,p_sar_adc_read_wait
+	rtn
+
+ifdef ADC_1121SB_1V8_MODE
+p_vdd_reference_inter1p8V_calculate:
+	fetch 1,mem_adc_config_flag
+	beq ADC_CONFIG_HVIN,p_vdd_reference_inter1p8V_calculate_by_mode_vdcdc
+	beq ADC_CONFIG_GPIO,p_vdd_reference_inter1p8V_div2_calculate_by_mode_gpio
+	rtn
+	
+p_vdd_reference_inter1p8V_calculate_by_mode_vdcdc:
+	setarg 2000
+	store 2,mem_reference_voltage
+	fetcht 2,mem_reference_inter1p8v_2p6v_adc_vdcdc_data
+	fetch 2,mem_reference_inter1p8v_4p6v_adc_vdcdc_data
+	arg 2600,regc
+	branch vdd_calculate
+
+p_vdd_reference_inter1p8V_div2_calculate_by_mode_gpio:
+	setarg 1000
+	store 2,mem_reference_voltage
+	fetcht 2,mem_reference_inter1p8v_2v_adc_io_data
+	fetch 2,mem_reference_inter1p8v_1v_adc_io_data
+	arg 2000,regc
+	branch p_vdd_calculate00
+	
+p_vdd_calculate00:
+	isub temp,rega
+	fetch 2,mem_adc_current_value
+	isub temp,pdata
+	nbranch p_vdd_calculate11,positive
+	fetcht 2,mem_reference_voltage
+	imul32 temp,regb
+	copy regc,pdata
+	imul32 rega,pdata
+	isub regb,pdata
+	nbranch set_pdata_0,positive
+	branch vdd_calculate2
+	
+p_vdd_calculate11:
+	copy temp,pdata
+	fetcht 2,mem_adc_current_value
+	isub temp,pdata
+	fetcht 2,mem_reference_voltage
+	imul32 temp,regb
+	copy regc,pdata
+	imul32 rega,pdata
+	iadd regb,pdata
+	branch vdd_calculate2
 
+p_enable_adc_reference_source_inter1p8V:	
+	fetch 1,mem_adc_config_flag
+	beq ADC_CONFIG_HVIN,p_enable_adc_reference_source_inter1p8V_vdcdc
+p_enable_adc_reference_source_inter1p8V_div2_gpio:	
+	call p_sadc_cal_write
+	fetch 1,core_gpadc_cfg1
+	set0 7,pdata
+	store 1,core_gpadc_cfg1
+	jam 0x77,core_gpadc_ctrl
+	jam 0x41,core_gpadc_cfg0
+	jam 0x14,0x8ac6			//div2
+	jam 0x00,core_gpadc_cfg3
+	call sadc_channel
+	fetch 1,mem_adc_clkdiv
+	store 1,core_sadc_clkdiv
+	call sadc_read
 
+	jam 0x00,core_sadc_clkdiv
+	jam 0x00,0x8ac6
+	rtn
+	
+p_enable_adc_reference_source_inter1p8V_vdcdc:
+	call p_sadc_cal_write
+	fetch 1,core_gpadc_cfg1
+	set0 7,pdata
+	store 1,core_gpadc_cfg1
+	jam 0x77,core_gpadc_ctrl
+	jam 0x41,core_gpadc_cfg0
+	jam 0x10,0x8ac6			//not div2
+	jam 0x00,core_gpadc_cfg3
+	call sadc_channel
+	fetch 1,mem_adc_clkdiv
+	store 1,core_sadc_clkdiv
+	call  sadc_read
 	
+	jam 0x00,core_sadc_clkdiv
+	jam 0x00,0x8ac6
+	rtn
+
+
+endif
+
Index: sched/1305.dat
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/sched/1305.dat	(revision 1492)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/sched/1305.dat	(working copy)
@@ -22,28 +22,6 @@
 mem_gain_second_agc_en:08	#hw agc: 0:second agc disable
 mem_otp_load_check_sum:5a
 
-#adc config
-mem_adc_config_flag:01
-#01 ADC_CONFIG_HVIN
-#02 ADC_CONFIG_GPIO
-mem_adc_clkdiv:0a
-mem_adc_channel:00
-#00 ADC_CH_VBAT
-#01 ADC_CH_VDCDC5V
-#06 ADC_CH_GPIO18
-#07 ADC_CH_GPIO10
-#08 ADC_CH_GPIO9
-#09 ADC_CH_GPIO12
-#0a ADC_CH_GPIO6
-#0b ADC_CH_GPIO20
-#0c ADC_CH_GPIO21
-#0d ADC_CH_GPIO22
-#0e ADC_CH_GPIO13
-
-mem_adc_dma_enable:00
-mem_adc_saddr_ptr:00 07
-mem_adc_eaddr_ptr:ff 07
-
 mem_ring_ibias_trim:a0
 mem_ring_ibias_vtune_high:bc 02 #700mv
 mem_ring_ibias_vtune_low:90 01 #400mv
Index: sched/mouse.dat
===================================================================
--- /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/sched/mouse.dat	(revision 1492)
+++ /1121s/branch/mouse/ZXS_Project/1m/mouse_public_only_24g/sched/mouse.dat	(working copy)
@@ -153,11 +153,12 @@
 
 #device parm
 mem_device_option:08
-mem_device_number:01   	#01--only 2.4g   02--2.4g+ble
+mem_device_number:01   #01--only 2.4g   02--2.4g+ble
 
 mem_lpm_mode:01
 mem_lpm_mult:20
 mem_lpm_mult_init:20
+mem_mouse_set_high_impedance_bit_set:00 00 00
 
 mem_device_flag:
 00		#00--24g 01--bt
@@ -210,7 +211,7 @@
 mem_mouse_24g_fast_hop_count_4ms:05
 mem_mouse_24g_tsniff_4ms:80 bb 00 00
 
-mem_mouse_24g_short_sleep_set_8ms:f2 f9 00#ac 07 01	#5625us	40 19 01:72000:6ms
+mem_mouse_24g_short_sleep_set_8ms:60 ea 00
 mem_mouse_24g_long_sleep_set_8ms:00 77 01
 mem_mouse_24g_fast_hop_count_8ms:0b
 mem_mouse_24g_tsniff_8ms:00 77 01 00
@@ -402,13 +403,11 @@
 be d1
 a0 41
 a1 12
-a5 84
 a7 ff
-b5 d0
 b6 00
+b5 c8
+a5 af
 ff 00
-35 c8
-25 af
 09 00
 ff ff
 
@@ -439,6 +438,29 @@
 09 00
 ff ff
 
+
+#adc config
+mem_adc_config_flag:01
+#01 ADC_CONFIG_HVIN
+#02 ADC_CONFIG_GPIO
+mem_adc_clkdiv:0a
+mem_adc_channel:09
+#00 ADC_CH_VBAT
+#01 ADC_CH_VDCDC5V
+#06 ADC_CH_GPIO18
+#07 ADC_CH_GPIO10
+#08 ADC_CH_GPIO9
+#09 ADC_CH_GPIO12
+#0a ADC_CH_GPIO6
+#0b ADC_CH_GPIO20
+#0c ADC_CH_GPIO21
+#0d ADC_CH_GPIO22
+#0e ADC_CH_GPIO13
+
+mem_mouse_vdd_full_vol:a4 01		#4.2V
+18 01#mem_mouse_vdd_empty_vol  :2.8V
+2c 01#mem_mouse_vdd_low_vol   :3.0V
+
 # rf debug
 #bit7:0 means disable rf debug function
 #mem_rf_debug_rx_gpio:87
Index: util/geneep.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: util/geneep.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
