Index: do_sdk.bat
===================================================================
--- /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/do_sdk.bat	(nonexistent)
+++ /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/do_sdk.bat	(working copy)
@@ -0,0 +1,57 @@
+@set FPGA_PATH=fpgajic\fpga
+@set ROM_PATH=.
+@set MV_PATCH=mv\src\yichip
+@set YC_PATCH_FILE=yc_patch_yc1021.h
+@set eeprom_fill=0
+@set code_encrypt=0
+@set device_option=mouse
+@echo off
+
+set now_path=%~dp0
+set util_path=%now_path%util
+
+setlocal enabledelayedexpansion
+copy program\patch_sdk.prog + program\patch.prog +program\z.prog  output\bt_program23.meta
+
+
+
+
+copy format\rom.format + format\labels.format + format\command.format  output\bt_format.meta > nul
+
+copy sched\mouse.dat output\sched.rom
+
+perl util/mergepatch.pl 
+
+cd output
+osiuasm bt_program23 -O-W
+
+if "%code_encrypt%" equ "1" (
+echo ***********code encrypt enable***********
+geneep -n -k key.dat
+) else (
+%util_path%/geneep -n -z3
+echo flash.dat Generated......
+)
+
+cd ..\output
+copy eeprom.dat flash.dat
+cd ..
+
+if "%eeprom_fill%" equ "1" (
+echo ***********filling eeprom begin***********
+cd ..\output
+copy eeprom.dat ..\util\eeprom.dat
+cd ..\util
+eeprom2fulleeprom.exe eeprom.dat 64>compare2.dat
+crc16.exe compare2.dat 2 >..\output\eeprom.dat
+del eeprom.dat
+del compare2.dat
+cd ..\output
+copy eeprom.dat ..\output\flash.dat 
+)
+
+
+:end
+
+
+
Index: f.bat
===================================================================
--- /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/f.bat	(nonexistent)
+++ /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/f.bat	(working copy)
@@ -0,0 +1,16 @@
+call do_sdk.bat
+e pu
+e 8043 00
+e 8070 0000000000000000
+e 8078 0000000000000000
+e 8080 00000000
+e 8078 20
+e 8080 1f2122
+e 8085 00
+e fa
+e fr 0 100
+e fc
+e fr 0 100
+e fp output/eeprom.dat
+e fr 0 100
+e ku
Index: format/command.format
===================================================================
--- /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/format/command.format	(nonexistent)
+++ /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/format/command.format	(working copy)
@@ -0,0 +1,1379 @@
+
+/* Parse Command:
+TX: take bits from tx fifo, jam it into shift and a destination (rf,bucket)
+RX: take bits from demod,  jam it into shift and a destination (acl,sco,bucket) */
+
+/* Inject Command:
+TX: 0 into shift, send tail of shift into a destination (rf,bucket)
+RX: 0 into shift, send tail of shift into a destination (acl,sco,bucket) */
+
+format
+  ! 15 romdat
+  % d0
+  % d1
+  % d2
+  % d3
+  [8] d0
+  [8] d1
+  [8] d2
+  [8] d3
+end
+
+format
+  ! 15 enable   /* set flag to 1 */
+  % flag
+  [5] opcode
+  [6] 1
+  [6] flag
+  [6] null
+  [9] 0
+end
+ /* High 5 bytes of channel map */
+format
+  ! 15 pulse   /* set flag to 1 */
+  % flag
+  [5] opcode
+  [6] 1
+  [6] flag
+  [6] null
+  [9] 0
+end
+
+format
+  ! 15 disable   /* set flag to 0 */
+  % flag
+  [5] opcode
+  [6] 2
+  [6] flag
+  [6] null
+  [9] 0
+end
+
+format
+  ! 15 set0  /* set selected bit of reg to 0 */
+  % immediate
+  % reg
+  [5] opcode
+  [6] 9
+  [6] never
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 set1  /* set selected bit of reg to 1 */
+  % immediate
+  % reg
+  [5] opcode
+  [6] 9          /* alu op demux */
+  [6] always
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 setflag  /* set selected bit of the reg to the polarity of the flag */
+  % flag
+  % immediate
+  % reg
+  [5] opcode
+  [6] 9
+  [6] flag
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 nsetflag  /* set the selected bit of the reg to the opposite polarity of the flag */
+  % flag
+  % immediate
+  % reg
+  [5] opcode
+  [6] 0x29
+  [6] flag
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 setflip    /* invert the selected bit of the reg */
+  % immediate
+  % reg
+  [5] opcode
+  [6] 10            /* this is alu op */
+  [6] always
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 0x1f qset1      /* demux the lowest 4 bit of queue and OR it with regr into regw */
+  % reg             /* in short, set the bit in reg indexed by queue to 1 */
+  [5] opcode
+  [6] 9
+  [6] always
+  [6] reg
+  [9] 0
+end
+  
+format
+  ! 0x1f qset0      /* demux the lowest 4 bit of queue and AND it with regr into regw */
+  % reg             /* in short, set the bit in reg indexed by queue to 0 */
+  [5] opcode
+  [6] 9
+  [6] never
+  [6] reg
+  [9] 0
+end
+
+format 
+  ! 0x1f qsetflag   /* set the bit in reg index by queue to same as flag */
+  % flag
+  % reg
+  [5] opcode
+  [6] 9
+  [6] flag
+  [6] reg
+  [9] 0
+end
+
+format 
+  ! 0x1f nqsetflag   /* set the bit in the reg index by queue to opposite of flag */
+  % flag
+  % reg
+  [5] opcode
+  [6] 0x29
+  [6] flag
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 0x1f qsetflip      /* flip the bit in reg index by queue */
+  % reg
+  [5] opcode
+  [6] 10
+  [6] always
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 1 parse       /* take bits out of source (sco_tx,tx_buffer,rx-elas) into pdata and dest (sco_rx,rx_fifo,tx-elas) */
+  % source
+  % dest
+  % immediate
+  [5] opcode
+  [4] source      /* voice, data, demod */
+  [2] 0
+  [6] 0    
+  [2] 0           /* parse or inject */ 
+  [4] dest        /* acl, sco, mod, bucket */
+  [9] immediate   /* number of bits to parse off */
+end
+
+format
+  ! 1 inject      /* shift data from pdata into destination (tx-elas,rx_fifo,sco_rx) */
+  % destination
+  % immediate
+  [5] opcode
+  [4] 0
+  [2] 0
+  [6] 1
+  [2] 0
+  [4] destination /* acl,sco,mod,bucket */
+  [9] immediate   /* number of bits to be injected */
+end
+
+format
+  ! 1 iinject
+  % destination
+  % regr
+  [5] opcode
+  [6] regr       /* contain the number of bits to inject */
+  [6] 3
+  [2] 0
+  [4] destination /* acl,sco,mod,bucket */
+  [9] 0 
+end
+
+format
+  ! 1 stuff  /* automatic parse, stuff_counter decrement on every bit until hits zero */
+  % source
+  % destination
+  [5] opcode
+  [4] source
+  [2] 0
+  [6] 2
+  [2] 0
+  [4] destination
+  [9] 0
+end
+
+format    /* force immediate value into registers */
+  ! 3 force
+  % immediate
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 0    /* alu operation force */
+  [6] regw  /* destination register */
+  [9] immediate
+end
+
+format    /* force whatever is on shift_reg to regsiters */
+  ! 0x13 iforce
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 0    /* alu operation force */
+  [6] regw  /* destination register */
+  [9] 0
+end
+
+format    /* force immediate value into registers */
+  ! 3 increase
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 1    /* alu operation add */
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 3 pincrease
+  % immediate
+  [5] opcode
+  [6] -1  /* pdata */
+  [6] 1   /* alu add */
+  [6] -1  /* back to pdata */
+  [9] immediate
+end
+
+format    /* force immediate value into registers */
+  ! 3 and_into
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 2    /* alu operation and into */
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 3 and
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 2    /* alu operation and into */
+  [6] regw
+  [9] immediate
+end
+  
+format
+  ! 0x13 iand    /* pdata & regr -> regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 2    /* alu operation and into */
+  [6] regw
+  [9] 0
+end
+  
+
+format    /* and whatever is in shiftreg with reg */
+  ! 0x13 iand_into
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 2    /* alu operation and into */
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 3 or_into
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 3    /* alu operation or into */
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 3 or
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 3    /* alu operation or into */
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 ior
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 3    /* alu operation or into */
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 0x13 ior_into
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 3    /* alu operation or into */
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 3 skip_to   /* jump to location stored in reg */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 4   /* alu operation copy */
+  [6] rom_addr
+  [9] 0
+end
+
+format
+  ! 3 copy
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 4   /* alu operation copy */
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 deposit   /* copy the register content thru alu to shift register, not prealigned like preload */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 4   /* alu operation copy */
+  [6] -1  /* pdata */
+  [9] 0
+end
+
+format
+  ! 3 icopy     /* copy the shift register lsb content directly to register, not aligned */
+  % regw
+  [5] opcode
+  [6] -1  /* pdata */
+  [6]  4  /* alu copy */
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 add
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 1
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 iadd       /* regr + pdata -> regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 1
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 sub          /* immediate - regr -> regw */
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 12
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 isub       /* pdata - regr -> regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 12
+  [6] regw
+  [9] 0
+end
+
+
+format
+  ! 3 flip
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 5
+  [6] reg
+  [9] immediate
+end
+  
+format
+  ! 0x13 iflip  /* use shift register as immediate to do xor */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 5
+  [6] regw
+  [9] 0
+end
+  
+format
+  ! 3 xor
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 5
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 3 xor_into
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 5
+  [6] reg
+  [9] immediate
+end
+  
+format
+  ! 0x13 ixor  /* pdata xor regr and store result in regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 5
+  [6] regw
+  [9] 0
+end
+  
+format
+  ! 3 invert
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 8
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 pinvert    /* invert pdata into itself */
+  [5] opcode
+  [6] -1
+  [6] 8
+  [6] -1
+  [9] 0
+end
+
+format
+  ! 3 div                 /* regr div immediate div */
+  % reg
+  % immediate
+  [5] opcode
+  [6] reg
+  [6] 13                   /* generate diven pulse to div */
+  [6] null
+  [9] immediate
+end
+
+format
+  ! 0x13 idiv           /* pdata div regr data ready at most after 41 nops */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 13                   /* generate diven pulse to div */
+  [6] null
+  [9] 0
+end
+
+format
+  ! 0x13 idiv48           /* pdata div regr data 48bit */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 17                   /* generate diven pulse to div */
+  [6] null
+  [9] 0
+end
+
+format
+  ! 3 remainder            /* harvest div remainder */
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 14
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 quotient             /* harvest div quotient */
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 15
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 6
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift2
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 22
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift3
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 18
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift4
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 35
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift8
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 25
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift16
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 34
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift32
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 30
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 7
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift2
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 23
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift8
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 26
+  [6] regw
+  [9] 0
+end
+
+  
+format
+  ! 3 lshift3
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 19
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift4
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 36
+  [6] regw
+  [9] 0
+end
+  
+
+format
+  ! 3 lshift16
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 32
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 random               /* random number into regw */
+  % reg
+  [5] opcode
+  [6] 0
+  [6] 20
+  [6] reg
+  [9] 0
+end
+
+format                     /* bit reverse within a byte */
+  ! 3 reverse
+  % reg
+  % regw
+  [5] opcode
+  [6] reg
+  [6] 27
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 priority    /* priority encode reg into regw, lsb is the top priority, ie, priority(8'b00010000) = 4 */
+  % reg
+  % regw
+  [5] opcode
+  [6] reg
+  [6] 21
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 7 setsect   /* set a section of pdata */
+  % section    /* 0 sets 17:0 of pdata with set_data, 1 sets 35:18, 2 sets 53:36, 3 sets 71:54 */
+  % set_data
+  [5] opcode
+  [7] 0
+  [2] section
+  [18] set_data
+end
+
+format
+  ! 10 preload   /* load stuff into pdata according to fhs format, check us.v */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 0
+  [6] -1
+  [9] 0
+end
+
+format  /* load register with pdata content, according to fhs format, check us.v */
+  ! 10 ialigned   /* all bits are in position */
+  % regw
+  [5] opcode
+  [6] -1
+  [6] 0
+  [6] regw
+  [9] 0
+end
+
+format  /* load register to another according to fhs format */
+  ! 10 aligned
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 0
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 4 branch
+  % addr
+  % flag
+  [5] opcode
+  [6] 1
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 call
+  % addr
+  % flag
+  [5] opcode
+  [6] 2
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 rtn
+  % flag
+  [5] opcode
+  [6] 3
+  [6] flag
+  [15] 0
+end
+
+format
+  ! 0x0d fetch          /* read from memory, data into pdata, address from immediate then mem_ptr */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 63
+  [1] addr
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0d fetcht          /* read from memory, data into temp, address from immediate won't increment */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 2
+  [1] addr
+  [1] 1
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x1d ifetch         /* read from memory, data into pdata, address from regr then mem_ptr */
+  % num_bytes
+  % reg
+  [5] opcode
+  [6] 63
+  [2] 0
+  [4] num_bytes
+  [9] 0
+  [6] reg
+end
+
+format
+  ! 0x1d ifetcht         /* read from memory, data into temp, address from regr won't increment */
+  % num_bytes
+  % reg
+  [5] opcode
+  [6] 2
+  [2] 0
+  [4] num_bytes
+  [9] 0
+  [6] reg
+end
+
+format
+  ! 0x0c store          /* write to memory, data from pdata, address from immediate then mem_ptr */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 63
+  [1] addr
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0c storet          /* write to memory, data from temp, address from immediate won't increment */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 2
+  [1] addr
+  [1] 1
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x1c istore        /* write pdata to memory, address from regaddr */
+  % num_bytes
+  % regaddr
+  [5] opcode
+  [6] 63            
+  [2] 0
+  [4] num_bytes
+  [9] 0
+  [6] regaddr
+end
+
+format
+  ! 0x1c istoret        /* write temp to memory, address from regaddr */
+  % num_bytes
+  % regaddr
+  [5] opcode
+  [6] 2            
+  [2] 0
+  [4] num_bytes
+  [9] 0
+  [6] regaddr
+end
+
+format
+  ! 0x0d crc         // read from memory, count from loopcnt, put crc result into pdata 
+  % addr
+  [5] opcode
+  [6] 63
+  [6] 0
+  [15] addr
+end
+
+format
+  ! 0x1d icrc         /* read from memory, address from reg, count from loopcnt, put crc result into pdata */
+  % reg
+  [5] opcode
+  [6] 63
+  [15] 0
+  [6] reg
+end
+
+
+format
+  ! 0x0c storer          /* write reg to memory, address from immediate then mem_ptr */
+  % reg
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] reg               
+  [1] addr
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+
+format
+  ! 0x1c istorer        /* write regr to memory, address from regaddr */
+  % regr
+  % num_bytes
+  % regaddr
+  [5] opcode
+  [6] regr            
+  [2] 0
+  [4] num_bytes
+  [9] 0
+  [6] regaddr
+end
+
+
+format
+  ! 0x0d fetchr          /* read reg from memory, address from immediate then mem_ptr */
+  % reg
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] reg               
+  [1] addr
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x1d ifetchr        /* read regr from memory, address from regaddr */
+  % regr
+  % num_bytes
+  % regaddr
+  [5] opcode
+  [6] regr
+  [2] 0
+  [4] num_bytes
+  [9] 0
+  [6] regaddr
+end
+
+
+
+
+format
+  ! 0x0e jam
+  % immediate
+  % addr
+  [5] opcode
+  [3] 0
+  [16] addr
+  [8] immediate
+end
+
+format			/* 0x242... */
+  ! 4 nbranch
+  % addr
+  % flag
+  [5] opcode
+  [1] 1
+  [5] 1
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 ncall
+  % addr
+  % flag
+  [5] opcode
+  [1] 1
+  [5] 2
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 nrtn
+  % flag
+  [5] opcode
+  [1] 1
+  [5] 3
+  [6] flag
+  [15] 0
+end
+
+format
+  ! 4 nop
+  % addr  /* no-op for addr+2 clocks */
+  [5] opcode
+  [6] 0     
+  [6] 0     /* always */ 
+  [15] addr
+end
+
+format
+  ! 4 clear_stack
+  [5] opcode
+  [6] 4
+  [6] 0    /* always */
+  [15] 0
+end
+
+format
+  ! 6 until
+  % reg
+  % flag
+  [5] opcode
+  [6] reg
+  [6] flag
+  [6] 1
+  [9] 0
+end
+  
+format
+  ! 6 correlate   /* quit if 1. flag is true 2, regr time up 3, found sync,(cond_true) */
+  % reg          /* expire counter to check against */
+  % flag
+  [5] opcode
+  [6] reg
+  [6] flag
+  [6] 2           /* correlate */
+  [9] 0           
+end
+
+format
+  ! 5 compare   /* sets cond flag,  if reg equals immediate */
+  % immediate
+  % reg
+  % mask
+  [5] opcode
+  [6] reg
+  [3] 0
+  [9] mask
+  [9] immediate
+end
+
+format
+  ! 0x15 icompare   /* sets cond flag,  if reg equals pdata */
+  % mask
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 0
+  [9] mask
+  [9] 0
+end
+
+format   /* sets cond. flag, if reg equals LS half of shift reg with MS half of reg being mask */
+  ! 5 iverify
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 2
+  [18] 0
+end
+
+format
+  ! 0x15 qisolate1
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [18] -1
+end
+
+format
+  ! 0x15 qisolate0
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [18] 0
+end
+
+	/* REVAB bug: cannot access bit above 35 */
+format
+  ! 5 isolate1
+  % addr
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [9] -1
+  [9] addr
+end
+
+format
+  ! 5 isolate0
+  % addr
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [9] 0
+  [9] addr
+end
+
+format
+  ! 11 setarg
+  % immediate
+  [5] opcode
+  [27] immediate
+end
+
+format
+  ! 0x1b arg
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [21] immediate
+end
+
+  
+format
+  ! 0 sleep
+  [5] opcode
+  [27] 0
+end
+
+format
+  ! 0 snooze
+  [5] opcode
+  [6] -1
+  [21] 0
+end
+
+format
+  ! 0 revision
+  % rev_num
+  [5] opcode
+  [27] rev_num
+end
+
+format
+  ! 0x18 loop   /* branch when loopcnt is NOT zero, and decrease loopcnt */
+  % addr
+  [5] opcode
+  [4] 4
+  [8] 0
+  [15] addr
+end
+
+format
+  ! 0x18 beq   /* branch when pdata is equal to immediate */
+  % imme
+  % addr
+  [5] opcode
+  [4] 0
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bne   /* branch when pdata is NOT equal to immediate */
+  % imme
+  % addr
+  [5] opcode
+  [4] 1
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 rtneq   /* return when pdata is equal to immediate */
+  % imme
+  [5] opcode
+  [4] 2
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 rtnne   /* return when pdata is NOT equal to immediate */
+  % imme
+  [5] opcode
+  [4] 3
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 bbit1   /* branch when pdata's imme bit is 1 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 5
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bbit0   /* branch when pdata's imme bit is 0 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 6
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 rtnbit1   /* return when pdata's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 7
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 rtnbit0   /* return when pdata's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 8
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 8	bpatch
+  % imme
+  % addr
+  [5] opcode
+  [4] 9
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 8	bpatchx
+  % imme
+  % addr
+  [5] opcode
+  [4] 14
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bmark1   /* branch when mark's imme bit is 1 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 10
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bmark0   /* branch when mark's imme bit is 0 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 11
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 rtnmark1   /* return when mark's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 12
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 rtnmark0   /* return when mark's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 13
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 3 mul32                  /* immediate mult regr */ 
+  % regr
+  % immediate                                  
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 31           
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 imul32           /* pdata mult regr 32x32=64bit */  
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 31                   
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 0x13 imults           /* pdata mult regr 32x32=64bit, signed */  
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 16
+  [6] regw
+  [9] 0
+end
+
+
+format
+  ! 3 byteswap
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 33
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 shasx          /* SHA256 Sx operation, immediate is Sx */
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 28
+  [6] regw
+  [9] immediate
+end
+
+
+format
+  ! 0x13 regexrot 	/* regext[0] <- regext[7], regext[1] <- regext[0], regext[2] <- regext[1] ... */
+  [5] opcode
+  [6] 0
+  [6] 29
+  [6] null
+  [9] 0
+end
+
Index: format/labels.format
===================================================================
--- /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/format/labels.format	(nonexistent)
+++ /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/format/labels.format	(working copy)
@@ -0,0 +1,4935 @@
+0x0800 start
+0x0801 soft_reset
+0x0812 main_loop
+0x0821 connection_dispatch
+0x0826 connection_incontext
+0x082f connection_nosniff
+0x0838 idle_dispatch
+0x0843 idle_exit
+0x0845 idle_le_create_conn
+0x0848 idle_inquiry
+0x084d idle_inquiry_cancel
+0x0850 idle_remote_name_req
+0x0855 idle_create_conn
+0x0856 idle_create_conn_device
+0x085b idle_create_conn_cont
+0x085c idle_start_page
+0x0862 idle_page_mode_r0
+0x0884 idle_page_fail
+0x088a idle_name_fail
+0x0890 inquiry_dispatch
+0x0896 inquiry_start
+0x089d inquiry_restart
+0x08a0 inquiry_rx_restart
+0x08a5 inquiry_transmit
+0x08b2 inquiry_check_train
+0x08bf inquiry_receive
+0x08c9 inquiry_sync
+0x08cf inquiry_receive_rtn
+0x08cf inquiry_receive_eir_rtn
+0x08d3 master_page
+0x08db master_page_no_interval
+0x08e6 master_npage_timeout
+0x08e9 master_page_timeout
+0x08f0 page_start
+0x08fc page_restart
+0x0901 page_rx_restart
+0x0914 page_exit
+0x091a page_check_train
+0x0928 page_receive
+0x0930 page_sync
+0x0936 page_send_fhs
+0x093a page_send_fhs_continue
+0x0946 page_wait_fhs_reply
+0x0955 page_wait_fhs_reply_ok
+0x095a master_newconn_loop
+0x0961 newconn_poll_responded
+0x0969 master_dispatch
+0x0979 master_loop
+0x0982 master_notmatch
+0x0988 master_exit
+0x098a master_attempt
+0x098d check_master_disconnect
+0x0990 check_master_match
+0x099e master_disconnect
+0x09a4 master_name_disconnect
+0x09a6 master_name_error
+0x09a9 check_disconnect_timeout
+0x09b0 conn_timer_expired
+0x09b4 linkkey_ready
+0x09bd linkkey_set
+0x09c5 linkkey_set_continue
+0x09c6 generate_linkkey_continue
+0x09c7 clear_linkstate
+0x09cb role_switch_check
+0x09d5 role_switch_clkn
+0x09d6 role_switch_clke
+0x09db role_switch_prepare
+0x09dd role_switch_prepare0
+0x09e3 role_switch_master
+0x09ea roles_waitfhs_loop
+0x09f0 role_switch_fail_master
+0x09f8 roles_replyto_fhs
+0x0a02 roles_replyto_fhs_rcvd
+0x0a09 roles_newconns_loop
+0x0a0f roles_newconns_responded
+0x0a17 context_load
+0x0a29 context_load_master
+0x0a30 context_save
+0x0a38 context_get_next
+0x0a3a context_get_next_loop
+0x0a3e context_get_next_cont
+0x0a46 context_get_next_sniff
+0x0a48 context_new
+0x0a50 context_check_all_wack
+0x0a58 context_check_esco_wack
+0x0a5d context_esco_wack
+0x0a5f context_check_idle
+0x0a61 context_traverse_linkkey
+0x0a64 context_search_conn_handle
+0x0a65 context_search_conn_handle2
+0x0a67 context_search_plap
+0x0a69 context_search_plap2
+0x0a6b context_search_insniff
+0x0a6d context_search_sniff_window
+0x0a6e context_search
+0x0a71 context_search_loop
+0x0a73 context_search_next
+0x0a77 context_search_empty
+0x0a7b context_search_lap
+0x0a7d context_search_lap_cont
+0x0a82 context_search_handle
+0x0a88 context_search_sniff
+0x0a89 context_search_sniff_loop
+0x0a96 context_search_sniff_sc
+0x0a99 context_search_meet1
+0x0a9a context_search_meet
+0x0a9e context_search_sniff_miss
+0x0aa4 sign_pdata_temp
+0x0aae sign_pdata_temp_p0
+0x0ab4 context_check_inconn
+0x0ab7 context_check_a_wack
+0x0ac0 context_get_anchor
+0x0acc context_next_anchor
+0x0ad3 context_search_window
+0x0adc context_traverse_clearkey
+0x0ae7 master_conn_send_packet
+0x0ae9 master_send_packet
+0x0af1 master_conn_recv_packet
+0x0af3 master_recv_packet
+0x0afb master_rx_conn_finish_packet
+0x0aff master_newconn_once
+0x0b05 inquiry_scan_dispatch
+0x0b15 inquiry_scan_start
+0x0b3f send_eir
+0x0b61 get_all_uuid
+0x0b65 lshift_loop
+0x0b77 page_scan_dispatch
+0x0b87 page_scan_start
+0x0ba8 page_scan_wait_fhs_restart
+0x0bb1 page_scan_wait_fhs_again
+0x0bb8 page_scan_reply_to_fhs
+0x0bc5 slave_apply_clke_bt
+0x0bc9 slave_apply_clke_bt_now
+0x0bcc start_slave_connection
+0x0bd0 slave_newconn_loop
+0x0bd5 sconn_successful
+0x0bdc slave_dispatch
+0x0be0 slave_loop
+0x0bf0 slave_notmatch
+0x0bf9 slave_disconnect
+0x0c01 role_switch_slave
+0x0c08 roles_sendfhs_loop
+0x0c1a roles_got_fhs_reply
+0x0c1d roles_newconn_loop
+0x0c26 roles_newconn_responded
+0x0c2c roles_newconn_nolmp
+0x0c37 init_rx_packet_flags
+0x0c42 prepare_newconn
+0x0c4d newconn_init
+0x0c5c clear_linkkey
+0x0c62 new_conn_timeout
+0x0c66 new_conn_handle
+0x0c6a quit_connection
+0x0c6f quit_connection_name
+0x0c73 quit_connection_cont
+0x0c83 quit_connection_not_clear_mark
+0x0c85 quit_connection_not_clear_tx
+0x0c89 slave_newconn_once
+0x0c96 prepare_tx
+0x0ca2 prepare_tx_not_esco
+0x0ca3 prepare_tx_not_sco
+0x0ca8 prepare_tx_retransmit
+0x0cb2 prepare_tx_nomore_retransmit
+0x0cb4 prepare_tx_no_retransmit
+0x0cbd prepare_tx_pollnull
+0x0cc1 prepare_tx_loopback
+0x0cc7 prepare_tx_txpat
+0x0ccb prepare_tx_sendlmp
+0x0ccd prepare_tx_ccm_edr_lmp
+0x0cd7 prepare_tx_sendl2cap
+0x0cd9 prepare_tx_ccm_edr
+0x0ce4 set_wait_ack
+0x0ced tx_l2cap_type
+0x0d03 tx_l2cap_type_edr
+0x0d13 slave_receive_master_slot
+0x0d18 slave_receive_notsniff
+0x0d19 slave_receive_access
+0x0d1a slave_receive_sniff
+0x0d38 slave_conn_recv_packet
+0x0d40 receive_packet
+0x0d43 receive_packet_whitened
+0x0d58 receive_packet_noedr
+0x0d61 receive_packet_amchk
+0x0d6d am_addr_match
+0x0d6f am_addr_ok
+0x0d7e arqn_bypass
+0x0d8b failed_seqn
+0x0d8c rx_type_dispatch
+0x0d9a process_poll
+0x0d9b process_dm3
+0x0d9b process_dm5
+0x0d9c process_dm1
+0x0d9e process_dh3
+0x0d9e process_dh5
+0x0d9f process_3dh1
+0x0da0 process_dh1
+0x0da1 process_dmh
+0x0dae process_dmh_noedr
+0x0db9 process_dmh_long
+0x0dbc process_dmh_common
+0x0dc2 process_dmh_common2_ccm
+0x0dc4 process_dmh_common2
+0x0dd2 process_dmh_common2_testmode
+0x0dd4 process_dmh_data_0
+0x0ddd check_enc_ccm
+0x0de2 process_lmp
+0x0de7 process_dmh_data_l2cap_start_pkt
+0x0df1 process_dmh_data_into_buff1
+0x0df6 process_dmh_data_into_buff2
+0x0dfb process_dmh_data_l2cap_continue_pkt
+0x0e05 process_dmh_data_l2cap_continue_pkt1
+0x0e09 process_dmh_data_l2cap_continue_pkt2
+0x0e0c process_dmh_data
+0x0e10 process_dmh_data_end
+0x0e26 process_l2cap_pass_crc_buff1
+0x0e30 process_l2cap_pass_crc_buff2
+0x0e39 process_dmh_cont
+0x0e42 process_dmh_cont_rxbuf_not_use
+0x0e4c ack_payload
+0x0e5f error_header
+0x0e65 error_payload_crc
+0x0e6b error_payload
+0x0e6c flow_ctrl
+0x0e6c error_mic_error
+0x0e6d discard_pkt
+0x0e71 discard_pkt_lmp
+0x0e75 discard_pkt_l2cap
+0x0e79 redundant_payload
+0x0e7c end_of_packet
+0x0e88 process_fhs
+0x0e9d fhs_parity_ok
+0x0eb7 clear_got_tx
+0x0ece clear_got_txlmp
+0x0ed9 clear_lmp_escape
+0x0edc clear_send_setup_complete
+0x0ee1 start_encryption
+0x0eeb stop_encryption
+0x0ef1 sniff_init
+0x0ef5 sniff_init_master
+0x0eff sniff_init_nowrap
+0x0f12 sniff_exit
+0x0f1c check_attempt
+0x0f27 check_attempt_nomore
+0x0f29 check_attempt_sniff
+0x0f2f check_attempt_sniff_restore_sco
+0x0f32 check_attempt_sco_master
+0x0f33 check_attempt_not_sco
+0x0f3c check_attempt_notimeout
+0x0f40 sniff_check_window
+0x0f49 check_esco_amaddr
+0x0f4c parse_l2cap
+0x0f4e parse_l2cap_cont
+0x0f5f parse_l2cap_release_buff1
+0x0f65 parse_l2cap_release_buff2
+0x0f6b l2cap_buff1_inuse
+0x0f6f l2cap_buff2_inuse
+0x0f73 slave_send_access
+0x0f7b slave_conn_send_packet
+0x0f85 slave_conn_send_access
+0x0f86 transmit_packet
+0x0f8a transmit_packet_whitened
+0x0faf transmit_fhs
+0x0fcc transmit_lmp_ccm
+0x0fce transmit_lmp
+0x0fd2 transmit_lmp_common
+0x0fd9 transmit_lmp_loop
+0x0fdd transmit_dm1
+0x0fdf transmit_dm3
+0x0fdf transmit_dm5
+0x0fe2 transmit_3dh1
+0x0fe3 transmit_dh1
+0x0fe5 transmit_dh3
+0x0fe5 transmit_dh5
+0x0fe8 transmit_dmh
+0x0ff7 transmit_edr3m
+0x0ffb transmit_edr_sync_end
+0x0ffd transmit_noedr
+0x1007 transmit_long
+0x1008 transmit_stuff
+0x100c transmit_stuff_loop
+0x100f transmit_end
+0x1014 transmit_end2
+0x101d transmit_loopback
+0x101f transmit_loopback_short
+0x1025 transmit_loopback_long
+0x102a transmit_loopback_cont
+0x102b transmit_loopback_loop
+0x1031 transmit_loopback_end
+0x1035 apply_switch_clke
+0x103b apply_switch_nozero
+0x103e apply_switch_loop
+0x1042 apply_switch_bt
+0x1043 apply_switch_wait_loop
+0x104a calc_slot_offset
+0x1054 calc_bt_portion
+0x1056 calc_slot_offset_loop
+0x1058 calc_skip_bt
+0x105d calc_clke_offset
+0x106b calc_clke_pos
+0x106f calc_clke
+0x1073 calc_clke2
+0x107d calc_clke_pos2
+0x107f calc_clke_pos_adj
+0x1081 calc_mod_value_scale
+0x1087 calc_mod_value_scale_do
+0x1089 calc_mod_vs_loop
+0x108e calc_mod_vs01
+0x1099 calc_mod_vs_loop2
+0x10a9 calc_mod_value_scale_le2
+0x10ac calc_mod_value_scale_le
+0x10b2 calc_radio_freq
+0x10bb freq_not_connection
+0x10bc do_hop_mod_now
+0x10c4 odd_half
+0x10c6 freq_result
+0x10c9 afh_process_0
+0x10d7 afh_process_con
+0x10e4 afh_process_1
+0x10f0 afh_process_end
+0x10f3 afh_same_channel
+0x10f6 afh_clear
+0x10fb afh_process_freq_map
+0x1102 process_freq_3
+0x1107 process_freq_1
+0x110b process_freq_0
+0x1114 process_freq_2
+0x111e rx_radio_freq
+0x1123 rx_radio_freq_now
+0x1124 tx_radio_freq
+0x1129 tx_radio_freq_now
+0x112a fetch_giac
+0x112e fetch_page_bt_adr
+0x1134 fetch_self_bt_adr
+0x113c fetch_extm_bt_adr
+0x1144 fetch_diac
+0x1147 fetch_diac_do
+0x114b shutdown_radio
+0x115d set_sync_on
+0x1164 set_sync_on_24m
+0x1174 set_sync_on_next
+0x1179 set_sync_on_16m
+0x118b set_freq_rx
+0x1194 set_rxfreq_2m_offset
+0x1196 rf_rx_write_freq_24m
+0x119c rf_rx_write_freq_16m
+0x11a2 rf_rx_enable
+0x11ab rf_rx_enable_no_soft_agc
+0x11af rf_rx_enable_no_soft_agc_next
+0x11c1 rf_rx_write_freq
+0x11c6 rf_tx_write_freq
+0x11d0 rf_write_freq_calc
+0x11e7 rf_write_freq_calc_24m
+0x11ed rf_write_freq_calc_16m
+0x11f3 rf_tx_write_freq_24m
+0x11fa rf_tx_write_freq_16m
+0x1201 set_freq_tx
+0x1207 txon
+0x1219 txon_next
+0x1224 set_tx_power_0db
+0x1226 set_rf_ldo_cfg89
+0x1229 set_tx_power_3db
+0x122b set_rf_ldo_cfg89_2
+0x122e set_tx_power_5db
+0x1231 set_tx_power_6db
+0x1234 set_tx_power_7db
+0x1237 set_tx_power_10db
+0x123a set_tx_power_f3db
+0x123d set_tx_power_f5db
+0x1240 set_tx_power_f20db
+0x1243 set_tx_power_f30db
+0x1246 initialize_radio
+0x1247 initialize_radio_wait
+0x124b initialize_radio_loop
+0x1251 initialize_radio_cont
+0x1260 initialize_radio_cont_next
+0x126c initialize_syn_afc_cfg1
+0x1271 initialize_syn_afc_cfg1_default
+0x1273 initialize_rf_ldo_cfg1
+0x1277 initialize_rf_ldo_cfg1_default
+0x1279 initialize_rc_cal
+0x127d initialize_rc_cal_default
+0x127f save_rssi
+0x1293 rssi_hex2dec
+0x1297 bcd
+0x129e gain_control
+0x12bc add_negative
+0x12c4 gain_increase
+0x12c8 gain_descend
+0x12cb set_rx_gain2
+0x12cd set_rx_gain0
+0x12cf set_rx_gain1
+0x12d1 xtal_fast_wake
+0x12d3 init_lpm_ctrl
+0x12d5 start_receiver
+0x12da prep_crypt
+0x12ea prep_crypt_ccm
+0x12ec wait_access_end
+0x12f5 wait_access_mhalfbnd
+0x12f6 wait_access_mhalfbnd_correlate
+0x12fb wait_access_clkn_rt
+0x1302 wait_access_forever
+0x130b reserve_slot
+0x1313 ahead_window
+0x1322 setup_clk
+0x1325 skip_setup_clke
+0x1327 setup_clkn
+0x1329 skip_setup_clkn
+0x132a setup_clknbt
+0x132d setup_complete
+0x1336 setup_clk11
+0x1339 rf_setup_time
+0x133c rf_setup_time_slave_slot
+0x133e rf_setup_time_master_slot
+0x1340 start_transmitter
+0x1345 start_tx_native
+0x134a start_rx_native
+0x134e start_tx_external
+0x1353 send_access_word
+0x135b scan_mode_whiten
+0x135f get_free_amaddr
+0x1364 get_free_amaddr_cont
+0x1367 get_clk
+0x136b get_clkbt
+0x136f supervision_update
+0x1378 supervision_flush
+0x137c assert
+0x137e loop
+0x137f sleep
+0x1382 sleep_loop
+0x1386 init_param
+0x13b8 init_param_next
+0x13db clk24m_init
+0x13e1 lpmstate
+0x13f2 lpmwake
+0x140c lpm_save_mpu_lock
+0x1410 lpm_ctrl3_cfg_dig_vsel
+0x1414 lpm_ctrl3_cfg_vsel_120
+0x1416 lpm_ctrl3_cfg_vsel_store
+0x1418 lpm_ctrl3_cfg_vsel_108
+0x141c lpm_ctrl3_cfg_vsel_096
+0x1420 lpm_ctrl3_cfg_vsel_084
+0x1424 lpm_load_context
+0x142e lpm_save_context
+0x1436 lpo_calibration
+0x143f lpo_cal_inited
+0x1444 lpm_adjust_clk
+0x1453 lpm_adjust_positive
+0x1456 lpm_clear_counter
+0x1459 lpm_hibernate
+0x145d lpm_hibernate_normal
+0x1464 lpm_sleep
+0x1468 lpm_sleep_skip_cb_function
+0x146d lpm_sleep_next
+0x147f lpm_enter_sleep
+0x1484 lpm_recover_clk
+0x148d lpm_recover_xtal
+0x148f lpm_recover_timeout
+0x14ac lpm_dispatch
+0x14b6 lpm_dispatch_next
+0x14c4 lpm_dispatch_next2
+0x14d8 lpm_dispatch_sleep
+0x14d9 lpm_dispatch_lpo
+0x14e2 lpm_dispatch_unconn
+0x14ea lpm_unconn_nossp
+0x14ee lpm_unconn_cont
+0x14f0 lpm_sleep_btclk
+0x14f5 lpm_set_mult
+0x1504 lpm_mult_wait_timeout
+0x150e classic_bt_set_mult_short_flag
+0x1510 classic_bt_clr_mult_short_flag
+0x1512 lpm_match
+0x1517 lpm_not_match
+0x151d lpm_lost
+0x1525 lpm_mult_short
+0x1529 lpm_mult_long
+0x152c lpm_cal_xtal_startup
+0x1543 lpm_write_config
+0x154c lpm_write_ctrl
+0x154e lpm_write_ctrl2
+0x154f lpm_write
+0x1554 lpm_write_sel_vdd
+0x155b lpm_write_ctrl3
+0x155d lpm_write_gpio_wakeup
+0x1566 lpm_get_wake_lock
+0x156a lpm_put_wake_lock
+0x156e lpm_check_wake_lock
+0x158d lpm_uart_wake_lock
+0x1592 lpm_shut_down
+0x1597 lpm_disable_exen_output
+0x159b le_init_conn
+0x15ae le_init_master
+0x15ba le_init_slave
+0x15cb le_conn_dispatch
+0x15d4 le_master_dispatch
+0x15e3 le_master_disconn
+0x15e6 le_slave_dispatch
+0x15f7 le_slave_crc_fail
+0x15f7 le_slave_match
+0x1606 le_slave_cont
+0x160c le_slave_unsync
+0x160f le_check_md
+0x1614 le_slave_more_data
+0x161a le_slave_disconn
+0x161a le_disconnect
+0x1621 le_clear_connection_info
+0x1626 le_clear_pairing_state
+0x162a le_got_first_packet
+0x1637 le_enable_phy_by_pdata
+0x1640 le_enable_2m
+0x1646 le_enable_coded_s2
+0x1646 le_enable_coded
+0x164e le_enable_coded_s8
+0x1651 le_enable
+0x165e le_disable
+0x166a le_prep
+0x1673 le_rx_setfreq
+0x1674 le_rf_rx_enable
+0x1678 le_tx_setfreq
+0x167a le_tx_setfreq0
+0x167c le_setfreq
+0x1689 le_ctf_normal
+0x168c le_ctf_low
+0x168f le_ctf_test
+0x1692 le_sca_map
+0x16a2 le_setup
+0x16ac le_setup_master
+0x16b1 le_context_nextevent
+0x16c2 le_context_nexthop
+0x16ca le_nexthop_nowrap
+0x16cc le_calc_channel_map
+0x16d0 le_count_channels_loop
+0x16d2 le_count_channels_notused
+0x16d8 le_map_channel
+0x16de le_map_channel_next
+0x16e3 le_map_channel_cont
+0x16e5 le_map_channel_loop
+0x16e8 le_map_channel_skip
+0x16ed le_map_channel_end
+0x16f0 le_wait_tx
+0x16f3 le_wait_master
+0x16f6 le_receive_adv
+0x16fa le_receive_slave
+0x1700 le_receive_packet
+0x1701 le_receive_rxon
+0x1708 le_receive_nolr
+0x1711 le_receive_on_attempt
+0x171e le_receive_skip
+0x172a le_rx_loop
+0x172f le_rx_dec
+0x173a le_rx_dec_loop
+0x1741 le_rx_dec_loop_end
+0x1743 le_rx_nopayload
+0x1755 le_rx_match
+0x1758 le_crc_fail_tx
+0x175c le_match_set_txfreq
+0x1761 le_match_set_txfreq_offset
+0x1764 le_dec_init
+0x1769 le_dec_start
+0x177c le_pcnt_rx_sub1
+0x1781 le_pcnt_rx_sub1_0
+0x1786 le_dec
+0x178e le_dec_end
+0x1797 le_mic_error
+0x1798 le_retransmit_end_of_packet
+0x179b le_crc_fail
+0x179f le_unsync_end
+0x179f le_crc_fail_consecutive
+0x17a1 le_end_of_packet
+0x17a3 calc_clke_all_modem
+0x17a9 calc_clke_modem_coded
+0x17ad calc_clke_modem_2m
+0x17b1 le_set_until_tx_timer
+0x17b8 le_set_until_tx_timer_rx_lr
+0x17ba le_set_until_tx_timer_rx_1m
+0x17bb le_set_until_tx_timer_rx_2m
+0x17bd le_set_until_tx_timer_rx_coded_s2
+0x17c0 le_set_until_tx_timer_rx_coded_s8
+0x17c2 le_set_until_tx_timer_rx_coded
+0x17c5 le_calc_stop_watch
+0x17cd le_transmit_receive_sifs_without_change_mode
+0x17d4 le_transmit_receive_sifs
+0x17d8 le_transmit_receive_sifs_notx
+0x17e2 le_transmit_norx
+0x17e4 le_transmit
+0x17f4 le_transmit_packet
+0x1801 le_transmit_packet_not_enc
+0x1802 le_tr_loop
+0x1805 le_tr_nopayload
+0x180c le_transmit_skip
+0x1812 le_check_start_pause_enc
+0x181b le_transmit_packet_enc
+0x181f le_transmit_packet_enc_loop
+0x1826 le_transmit_lr
+0x1827 le_transmit_lr_preamble_loop
+0x1831 le_transmit_lr_s2
+0x1835 le_transmit_lr_s8
+0x1838 le_transmit_2m
+0x183a le_transmit_2m_dealy
+0x1844 le_update_param
+0x1848 le_update_param_ahead1_cb
+0x185c le_update_param_cb
+0x1869 le_update_channel_map
+0x186d le_update_channel_map_cb
+0x1872 le_update_phy
+0x1876 le_update_phy_cb
+0x1883 le_update_phy_cb_m2s
+0x188b le_update_phy_cb_m2s_no_change
+0x1891 le_update_phy_cb_s2m
+0x189a le_update_phy_cb_s2m_no_change
+0x18a0 le_check_update_flag
+0x18ad le_update_ahead1
+0x18af le_update
+0x18b4 le_check_update_small
+0x18c0 le_check_retransmit
+0x18c7 le_acknowledge
+0x18e0 le_ack_unenc
+0x18ee le_check_wak
+0x18fc le_set_enc
+0x1901 le_clear_enc
+0x190d le_scan_check_sender_addr_type
+0x1912 le_get_master_rx_max
+0x1916 le_prepare_tx
+0x1937 le_check_tx_md
+0x193e le_check_continue
+0x1947 le_set_md
+0x1949 le_clear_md
+0x194b le_update_tx_type
+0x194f le_att_check_notification_enable
+0x195b le_send_empty
+0x195d le_send_packet
+0x196d le_send_no_txlen
+0x1973 le_send_packet_enc
+0x1975 get_lpm_wake_ble_rx_lock
+0x1977 put_lpm_wake_ble_rx_lock
+0x1979 le_parse
+0x1986 le_parse_l2cap
+0x1993 le_check_l2cap_complete
+0x1997 le_check_l2cap_cid_legal
+0x19a2 le_check_l2cap_llid_start
+0x19b5 le_check_l2cap_continue_legal
+0x19b9 le_check_l2cap_llid_continue
+0x19ce le_get_search_att_uuid
+0x19d1 le_writeatt_cb
+0x19d3 le_supervision_update
+0x19dc le_supervision_flush
+0x19df le_receive_window_size
+0x19f9 le_init_attlist_search
+0x1a02 le_att_handle_inrange
+0x1a0c le_att_handle_blank
+0x1a0e le_att_get_handle_ptr
+0x1a11 le_att_get_handle_ptr2
+0x1a14 le_att_get_handle_loop1
+0x1a1e le_att_get_handle_ptr_found
+0x1a21 le_att_get_short_uuid_ptr
+0x1a24 le_att_get_short_uuid_loop
+0x1a30 le_att_get_last_handle
+0x1a32 le_att_get_last_handle_loop
+0x1a3c le_att_get_handle_info_from_ptr
+0x1a3e le_att_get_handle_info
+0x1a40 le_att_get_handle_info_fast
+0x1a41 le_att_get_handle_loop
+0x1a4b le_att_unfind_handle
+0x1a4c le_att_finded_handle
+0x1a55 le_modified_name
+0x1a58 le_modified_name_att_list
+0x1a67 le_name_length_longer_than_att
+0x1a6a le_modified_name_adv
+0x1a77 le_modified_name_adv_and_scan
+0x1a89 le_modified_name_adv_and_scan_store_data
+0x1a8f le_modified_name_adv_and_scan_name_overflow
+0x1a91 le_modified_name_adv_loop
+0x1a9c le_modified_name_adv_loop2
+0x1aa0 le_modified_name_adv_found_name
+0x1aa2 memcpy_empty
+0x1aa6 le_lpm_set_mult
+0x1aaa le_lpm_set_mult_attempt
+0x1aad le_lpm_set_mult_attempt_match
+0x1ab8 le_lpm_lost
+0x1abe le_set_config_fixed_tk
+0x1ac0 le_clr_config_fixed_tk
+0x1ac2 le_set_config_fixed_ltk
+0x1ac4 le_clr_config_fixed_ltk
+0x1ac6 le_set_config_more_data
+0x1ac8 le_clr_config_more_data
+0x1aca le_set_config_read_authentication
+0x1acc le_clr_config_read_authentication
+0x1ace le_set_config_write_authentication
+0x1ad0 le_clr_config_write_authentication
+0x1ad2 le_set_config_short_mult
+0x1ad4 le_clr_config_short_mult
+0x1ad6 le_set_config
+0x1ada le_clr_config
+0x1ade le_set_fixed_ltk
+0x1aeb le_set_justwork
+0x1af1 le_fifo_malloc_tx_empty
+0x1af4 le_fifo_malloc_tx_ll
+0x1af9 le_fifo_malloc_tx_l2cap
+0x1b02 le_fifo_malloc_tx
+0x1b0d le_fifo_get_first_tx_ptr
+0x1b10 le_fifo_get_second_tx_ptr
+0x1b12 le_fifo_get_last_tx_ptr
+0x1b15 le_fifo_get_last_tx_ptr0
+0x1b17 le_fifo_get_first_l2cap_ptr
+0x1b1a le_fifo_get_first_att_ptr
+0x1b1d le_fifo_get_last_att_ptr
+0x1b20 le_fifo_get_last_l2cap_ptr
+0x1b23 le_fifo_check_full
+0x1b24 le_fifo_check_nearly_full
+0x1b25 le_fifo_check_empty
+0x1b26 le_fifo_release_first_node
+0x1b27 le_set_dle
+0x1b29 le_set_phys
+0x1b2d le_set_tx_phy
+0x1b33 le_set_rx_phy
+0x1b35 le_set_feature_2m_phy
+0x1b37 le_set_feature_coded_phy
+0x1b39 le_set_feature_data_packet_length_extension
+0x1b3b le_set_feature
+0x1b3f le_advertising_dispatch
+0x1b45 le_scan
+0x1b64 le_wait_adv
+0x1b6b le_create_conn
+0x1b7b le_connect_request
+0x1b86 le_con_req_hop_retry
+0x1bc3 le_adv
+0x1bc5 le_adv_loop
+0x1bcb le_adv_loop_tx
+0x1bd7 le_adv_not_match
+0x1be4 le_init_adv
+0x1be6 le_adv_access
+0x1bed le_send_adv_ind
+0x1bfe le_send_adv_direct_ind
+0x1c04 le_send_adv_transmit
+0x1c0b le_send_scan_request
+0x1c1c le_send_scan_response
+0x1c2e le_parse_connect_req
+0x1c56 le_next_adv_channel
+0x1c5c le_next_adv_channel_curr_channel_37
+0x1c62 le_next_adv_channel_curr_channel_38
+0x1c68 le_next_adv_channel_curr_channel_39
+0x1c6e set_le_next_adv_channel_37
+0x1c73 set_le_next_adv_channel_38
+0x1c78 set_le_next_adv_channel_39
+0x1c7d le_parse_att
+0x1c8d le_send_att_exchange_mtu_requset
+0x1c94 le_parse_att_exchange_mtu_request
+0x1c95 le_send_att_exchange_mtu_response
+0x1c9c le_parse_att_exchange_mtu_response
+0x1c9f le_parse_att_find_information_request
+0x1ca2 le_send_att_find_information_response
+0x1ca4 le_send_att_find_information_res_loop
+0x1cb6 le_send_att_find_information_res_store_info
+0x1cc0 le_send_att_find_information_res_cont
+0x1cc3 le_send_att_find_information_res_next
+0x1cc6 le_send_att_find_information_res_end
+0x1cc8 le_parse_att_find_by_type_value_request
+0x1cd1 le_start_end_handle_check_1
+0x1cd8 le_start_end_handle_check_1_fail
+0x1cdb le_send_att_find_by_type_value_response
+0x1ce2 le_send_att_find_by_type_value_res_primary
+0x1ce7 le_send_att_find_primary_search_loop
+0x1cf7 le_send_att_find_primary_search_loop1
+0x1cfb le_send_att_error_response_notfound2
+0x1cfe le_send_att_find_primary_search_end_start_handle_found
+0x1d06 le_send_att_find_primary_search_end_ending_handle_found
+0x1d0c le_send_att_find_primary_search_end
+0x1d15 le_parse_att_read_by_type_request
+0x1d18 le_send_att_read_by_type_response
+0x1d27 le_send_att_read_by_type_response_loop
+0x1d46 le_send_att_read_by_type_response_next_handle
+0x1d48 le_send_att_read_by_type_response_end
+0x1d4a le_send_att_read_by_type_res_found_next
+0x1d58 le_send_att_read_by_type_write_properties
+0x1d5f le_send_att_read_by_type_write_uuid
+0x1d6b le_send_att_read_by_type_res_not_characteristic
+0x1d7f le_send_att_read_by_type_res_device_name
+0x1d93 le_parse_att_read_request
+0x1d97 le_send_att_read_response
+0x1da5 le_send_att_read_response_less
+0x1dae le_send_device_name
+0x1db8 le_send_att_read_response_check_auth
+0x1dbc le_send_att_read_response_error_insufficient_auth
+0x1dbe le_send_att_read_response_check_handle
+0x1dc2 le_parse_att_read_blob_request
+0x1dc4 le_send_att_read_blob_response
+0x1dd3 le_send_att_read_blob_response_less
+0x1dd8 le_parse_att_read_by_group_type_request
+0x1ddb le_send_att_read_by_group_type_response
+0x1de2 le_send_att_read_by_group_type_response_loop
+0x1dfd le_send_att_read_by_group_type_store_write_record
+0x1e03 le_send_att_read_by_group_type_store_record
+0x1e07 le_send_att_read_by_group_type_next_handle
+0x1e09 le_send_att_read_by_type_res_check_pair_length_type
+0x1e0b le_send_att_read_by_group_type_check_pair_length_type
+0x1e0f le_send_att_read_by_group_type_check_pair_length_type_16byte
+0x1e11 le_send_att_read_by_group_type_end0
+0x1e14 le_send_att_read_by_group_type_end1
+0x1e18 le_send_att_read_by_group_type_end_common
+0x1e1b le_parse_att_write_request
+0x1e1f le_send_att_write_response_check_auth
+0x1e2e le_send_att_write_response
+0x1e33 le_send_att_write_response_check_handle
+0x1e37 le_send_att_write_response_error_invalid_handle
+0x1e39 le_check_encrypt_state
+0x1e3f le_parse_att_prepare_write_request
+0x1e44 le_send_att_prepare_write_response
+0x1e52 le_parse_att_execute_write_request
+0x1e52 le_send_att_execute_write_response
+0x1e57 le_parse_handle_value_confirmation
+0x1e5b le_parse_att_write_command
+0x1e5f le_att_malloc_tx_notify
+0x1e68 le_att_malloc_tx_indication
+0x1e74 le_send_att_error_response_notfound
+0x1e75 le_send_att_error_response
+0x1e80 le_fifo_malloc_tx_l2cap_gatt
+0x1e82 le_att_next_handle
+0x1e86 le_att_check_handle_end
+0x1e8a le_att_same_type
+0x1e8c le_att_check_same_common
+0x1e92 le_att_same_uuid
+0x1e95 le_store_att_record
+0x1e9a le_write_att_record
+0x1e9f le_write_att_record_common
+0x1ea3 le_send_auto_len_by_mem
+0x1eb0 le_get_search_handle_start_end_common
+0x1eb5 le_get_search_max_mtu_data
+0x1ebd le_get_search_att_type
+0x1ebf le_get_search_common
+0x1ec1 le_get_search_common2
+0x1ec5 le_parse_writing_attribute_start
+0x1ed3 le_clear_l2cap_att_states_deal_with_contiune_packet
+0x1ed7 le_parse_writing_attribute_continue
+0x1ee0 le_parse_attribute_write_request
+0x1ee2 le_send_attribute_write_response_check_auth
+0x1ee5 le_parse_attribute_write_command
+0x1ee8 le_parse_attribute_check_complete_packet_init
+0x1eef le_parse_l2cap_continue_common
+0x1ef5 le_parse_attribute_check_complete_packet
+0x1efb le_parse_signaling
+0x1f00 le_l2cap_parse_conn_parameter_update_rsp
+0x1f04 le_l2cap_tx_update_req
+0x1f0c le_fifo_malloc_tx_l2cap_signaling
+0x1f14 le_l2cap_update_signaling_identifier
+0x1f18 le_l2cap_reset_signaling_identifier
+0x1f1a le_pairing_mode_init
+0x1f22 le_set_pairing_mode_secure_justwork
+0x1f24 le_set_pairing_mode_secure_numeric
+0x1f27 le_set_pairing_mode_secure_passkey
+0x1f29 le_set_no_pairing
+0x1f2a le_set_noinputnooutput
+0x1f2c le_set_pairing_mode_lagacy_just_work
+0x1f2e le_set_pairing_mode_lagacy_passkey
+0x1f2f le_set_displayonly
+0x1f31 le_secure_connection_enable
+0x1f35 le_secure_connection_disable
+0x1f39 le_parse_smp
+0x1f46 le_send_smp_security_request
+0x1f4d le_parse_smp_pairing_request
+0x1f59 le_parse_smp_pairing_request2
+0x1f61 le_set_tk_0
+0x1f64 le_parse_smp_pairing_req_passkey
+0x1f66 le_genernate_tk
+0x1f6d le_parse_smp_pairing_req_fixed_passkey
+0x1f6f le_send_smp_pairing_response
+0x1f74 le_parse_smp_pairing_confirm
+0x1f7c le_parse_smp_pairing_confirm_secure_passkey
+0x1f7f le_parse_smp_pairing_confirm_passkey_res_input
+0x1f81 le_parse_smp_pairing_confirm_sc_passkey_res_input
+0x1f84 le_send_smp_pairing_confirm
+0x1f8d le_send_smp_pairing_confirm_sc
+0x1f95 le_parse_smp_pairing_random
+0x1f9b le_send_pairing_confirm_value_failed
+0x1f9c le_send_pairing_failed
+0x1fa2 le_parse_smp_pairing_failed
+0x1fa7 le_smp_pairing_fail_reason_not_support_pairing
+0x1fa9 le_parse_smp_pairing_random_sc
+0x1fb5 le_parse_smp_pairing_random_sc_passkey
+0x1fbe le_parse_smp_pairing_random_success
+0x1fc3 le_send_smp_pairing_random
+0x1fc9 le_send_smp_encryption_information
+0x1fd1 le_send_fixed_ltk
+0x1fd3 le_send_smp_master_identification
+0x1fdf le_send_smp_identity_information
+0x1fe7 le_send_smp_identity_address_information
+0x1ff0 le_send_pairing_fail_unspecified_reason
+0x1ff2 le_check_init_key_distribution
+0x1ff6 le_parse_smp_identity_information
+0x2000 le_check_master_addr_type
+0x2006 le_parse_smp_identity_address_information
+0x200a le_parse_smp_signing_information
+0x200a le_parse_smp_security_request
+0x200b le_parse_smp_public_key
+0x2010 le_parse_smp_dhkey_check
+0x2015 le_send_smp_pairing_public_key
+0x201b le_send_smp_pairing_dhkey_check
+0x2021 le_check_paring_time
+0x202a le_pairing_sm
+0x2037 le_pairing_sm_null
+0x2037 le_pairing_sm_send_sec_req
+0x203d le_pairing_sm_start
+0x203f le_pairing_sm_rcv_pairing_req
+0x2043 le_pairing_sm_after_auth
+0x2046 le_pairing_sm_after_auth_start_enc
+0x204a le_pairing_sm_after_auth_start_enc_common
+0x2051 le_pairing_sm_after_auth_start_enc_sc
+0x2053 le_pairng_sm_send_enc_information
+0x2055 le_pairng_sm_send_master_indentification
+0x205c le_pairng_sm_send_indentity_information
+0x205e le_parse_start_enc_rsp_after_auth_end
+0x2064 le_secure_connect_sm
+0x2072 le_sc_state_clear
+0x2076 le_sc_sm_passkey_wait_confirm
+0x2080 le_sc_sm_wait_confirm_gkey
+0x2085 le_sc_confirm_gkey_ok
+0x2089 le_sc_sm_receive_dhkey
+0x208d le_dhkey_ready
+0x2092 le_dhkey_ready_common
+0x2098 le_dhkey_check_fail
+0x209a le_dhkey_check_ok
+0x20a4 le_sc_sm_send_public_key
+0x20a8 le_sc_sm_ready_send_pairing_confirm
+0x20a9 le_sc_sm_send_public_key_passkey
+0x20ac le_sc_sm_receive_public_key
+0x20b0 le_public_key_ready
+0x20b3 le_sc_sm_wait_send_public_key
+0x20b6 le_fifo_malloc_tx_l2cap_smp
+0x20b8 le_parse_ll
+0x20cf le_parse_connection_update_ind
+0x20d7 le_parse_channel_map_ind
+0x20db le_update_map_enable
+0x20df le_parse_terminate_ind
+0x20e3 le_parse_enc_req
+0x20f5 le_parse_enc_req_after_auth
+0x20f8 le_parse_enc_req_fixed_ltk
+0x20fd le_ltk_lost
+0x2102 le_parse_enc_rsp
+0x2107 le_parse_start_enc_req
+0x210b le_parse_start_enc_rsp
+0x2110 le_parse_unknown_rsp
+0x2111 le_parse_feature_req
+0x2112 le_parse_feature_rsp
+0x2113 le_parse_pause_enc_req
+0x2117 le_parse_pause_enc_rsp
+0x2118 le_parse_version_ind
+0x211a le_parse_reject_ind
+0x211b le_parse_ping_req
+0x211c le_parse_ping_rsp
+0x211d le_parse_length_req
+0x211f le_parse_length_rsp
+0x212a le_parse_phy_req
+0x212b le_parse_phy_update_ind
+0x2134 le_send_terminate_ind_user_terminated
+0x2135 le_send_terminate_ind
+0x213b le_send_enc_rsp
+0x2149 le_send_start_enc_req
+0x214c le_send_start_enc_rsp
+0x214e le_send_unknown_rsp
+0x2153 le_send_feature_rsp
+0x215a le_send_pause_enc_rsp
+0x215c le_send_version_ind
+0x2162 le_send_reject_ind
+0x2168 le_send_ping_rsp
+0x216a le_send_data_length_req
+0x216c le_send_data_length_res
+0x216d le_send_data_length
+0x2172 le_send_phy_rsp
+0x217c le_send_ll_one_lenth
+0x217e g24_dispatch
+0x2181 g24_prep
+0x2187 g24_receive_packet
+0x2190 g24_receive_rxon
+0x2195 g24_receive_nolr
+0x21a4 g24_receive_skip_fec1
+0x21b7 g24_receive_skip
+0x21c0 g24rx_loop
+0x21c3 g24rx_nopayload
+0x21c8 g24_receive_skip_rssi
+0x21cf g24_receive_skip_next
+0x21dc g24_receive_skip_disable_fec1
+0x21de g24_lr_receive_pdu_len
+0x21e5 g24_lr_receive_pdu_norssi
+0x21e7 g24_lr_receive_payload_len
+0x21ec g24_receive_byte
+0x21ef g24_sync_timeout
+0x21f1 g24_end_of_packet
+0x21f5 g24_set_freq_tx
+0x21f8 g24_transmit
+0x220b g24_transmit_packet
+0x2210 g24_transmit_nolr
+0x2215 g24tr_loop
+0x221f g24_transmit_skip
+0x2226 g24_transmit_skip_disable_fec1
+0x2229 g24_transmit_lr
+0x222a g24_transmit_lr_preamble_loop
+0x2234 g24_transmit_lr_s2
+0x2238 g24_transmit_lr_s8
+0x223b g24_transmit_2m
+0x223d g24_transmit_2m_dealy
+0x2247 g24_transmit_prep
+0x2251 g24_transmit_prep_pdu
+0x225d g24_transmit_prep_rssi
+0x2266 g24_lr_transmit_prep
+0x226a g24_lr_transmit_prep_skip
+0x2274 g24_read_len_pid_crc
+0x2281 g24_ch
+0x2285 g24_ch_map_size
+0x2289 g24_ch_calc
+0x2292 g24_update_addr_and_synccrc8
+0x2293 g24_syncword_crc8
+0x2296 g24_syncword_crc8_loop
+0x22a0 g24_timer_check
+0x22af g24_timer_timeout
+0x22b2 g24_timer_init
+0x22b5 g24_chmap_param_init
+0x22c4 g24_chamap_param_update
+0x22d0 g24_rx_window_init
+0x22d6 g24_rx_window_store
+0x22d8 g24_enable_1m
+0x22db g24_pair_param_init
+0x22e1 g24_pair_timeout_timer
+0x22e4 g24_pair_start
+0x22ef g24_pair_init_param
+0x22f6 g24_pair_dispatch
+0x22fe g24_pair_sm_1
+0x2300 g24_pair_sm_2
+0x2304 g24_pair_sm_2_skip
+0x2306 g24_pair_sm_3
+0x230c g24_pair_sm_4
+0x230d g24_pair_sm_prep
+0x230f g24_pair_sm_common
+0x231b g24_pair_sm_common_next
+0x2322 g24_pair_sm_reinit
+0x2327 g24_pair_sm_1_waiting_ack
+0x2329 g24_pair_sm_2_waiting_ack
+0x232d g24_pair_sm_2_waiting_ack_skip
+0x232f g24_pair_sm_3_waiting_ack
+0x2335 g24_pair_sm_3_waiting_ack_skip
+0x2337 g24_pair_sm_4_waiting_ack
+0x233d g24_pair_sm_4_waiting_ack_skip
+0x2344 g24_pair_exit
+0x2348 g24_bind_mode_enable
+0x234b g24_bind_init
+0x2354 g24_bind_ackpayload_prep
+0x2359 g24_bind_data_process
+0x2365 g24_bind_data_error
+0x2367 g24_bind_data_parse
+0x2372 g24_bind_first_step
+0x2376 g24_bind_first_step_device1
+0x2377 g24_bind_dvc1_payload_cfg
+0x2378 g24_bind_payload_cfg
+0x237c g24_bind_first_step_device2
+0x237d g24_bind_dvc2_payload_cfg
+0x237f g24_bind_second_step
+0x2385 g24_bind_second_step_skip
+0x2389 g24_bind_second_step_device1
+0x238c g24_bind_dvc1_step_set2
+0x238f g24_bind_dvc1_payload_cfg_transmitter_addr
+0x2390 g24_bind_payload_cfg_transmitter_addr
+0x2394 g24_bind_second_step_device2
+0x2397 g24_bind_dvc2_step_set2
+0x239c g24_bind_third_step
+0x23a2 g24_bind_third_step_skip
+0x23a6 g24_bind_third_step_device1
+0x23a9 g24_bind_dvc1_step_success
+0x23ae g24_bind_exit
+0x23b1 g24_bind_third_step_device2
+0x23b4 g24_bind_dvc2_step_success
+0x23bb g24_binding_device_check
+0x23c3 g24_binding_dvc1_status
+0x23c5 disable_user3
+0x23c7 g24_binding_dvc2_status
+0x23ca g24_binding_dvc1_living
+0x23d0 g24_binding_dvc2_living
+0x23d6 g24_bind_device_status_check
+0x23d8 g24_bind_device_status
+0x23dc g24_receive_init
+0x23e1 g24_receive_dispatch
+0x23e3 g24_ackpayload_prep
+0x23e8 g24_receive_packet_start
+0x23ea g24_receive_packet_parse
+0x23fa g24_rx_interrupt_clear
+0x23fd g24_data_receive_attemp
+0x23ff g24_data_device1
+0x240e g24_data_device2
+0x2414 g24_data_attemp_device1_abort
+0x2419 g24_data_attemp_device2_abort
+0x241b g24_receive_packet_parse_pid_crc
+0x2429 g24_receive_transmit_ack
+0x242c g24_transmit_ack
+0x2432 g24tx_with_ack
+0x2435 g24tx_no_ack
+0x2436 g24_enable_nodata_timer
+0x2437 g24_enable_nodata_timer_init
+0x243a g24_mode_switch_init
+0x243e g24_mode_switch_bind_work
+0x244b g24_bind_mode_continue
+0x2450 g24_work_mode_switch
+0x2453 g24_bind_mode_switch
+0x2456 g24_mode_b_s_switch_init
+0x2464 g24_mode_switch_bind_search
+0x247c g24_mode_switch_search
+0x247f g24_mode_b_s_switch_exit
+0x2481 g24_mode_b_s_switch_stop
+0x2483 g24_mode_b_s_switch_start
+0x2485 g24_work_init
+0x2493 g24_switch_work_mode
+0x2494 g24_work_mode_enable
+0x2497 g24_work_mode_start
+0x249c g24_bind_mode_auto
+0x24a9 g24_search_mode_init
+0x24b9 g24_search_mode_auto
+0x24d8 g24_self_ch_num_reinit
+0x24d9 g24_current_ch_num_reinit
+0x24db g24_device2_ch_num_reinit
+0x24dd g24_device1_ch_num_reinit
+0x24df g24_auto_addr_ch_search
+0x24e8 g24_auto_bind_config_device1
+0x24fd g24_device1_config_ch_once
+0x2502 g24_auto_bind_config_device2
+0x2517 g24_device2_config_ch_once
+0x251c g24_auto_bind_config_self
+0x2530 g24_self_config_ch_once
+0x2534 g24_ackpayload_disable
+0x2536 g24_receiver_addr_check
+0x253a g24_nodata_process
+0x2544 g24_search_mode_enable
+0x2547 g24_ch_process
+0x255a g24_ch_receive_hop_pac
+0x255c g24_ch_timer_reinit
+0x255f g24_reconn_timeout_timer
+0x2562 g24_reconn_start
+0x256f g24_reconn_fast_conn
+0x2577 g24_reconn_receiver_addr
+0x257e g24_reconn_device_3_0_addr
+0x2585 g24_store_receiver_addr
+0x2587 g24_ch_syncword_crc8_init
+0x2589 g24_reconn_dispatch
+0x258f g24_reconn_receiver_succ
+0x259e g24_reconn_attempt_success
+0x25a0 g24_txbuf_clear
+0x25a3 g24_reconn_data_prep
+0x25aa g24_reconn_device_fail
+0x25b6 g24_reconn_fast_conn_and_receiver
+0x25b8 g24_reconn_fast_conn_and_3_0
+0x25ba g24_reconn_receiver_and_3_0
+0x25bc g24_reconn_pair_and_3_0
+0x25be g24_data_attemp
+0x25c2 g24_data_attemp_device1
+0x25c4 g24_store_device1_addr
+0x25c6 g24_data_attemp_device2
+0x25c8 g24_store_device2_addr
+0x25ca rssi_store
+0x25d2 rssi_average
+0x25d8 rssi_average_loop
+0x25e5 save_rssi_dec
+0x25e7 rssi_transmitter_buff_init
+0x25e9 rssi_signal
+0x25f4 rssi_receiver_buff_init
+0x25fb rssi_buff_clear
+0x2601 rssi_noise
+0x2608 rssi_noise_monitor
+0x260e g24_transmit_init
+0x2612 g24_interval_param_4ms
+0x261a g24_interval_param_8ms
+0x2622 g24_transmit_dispatch
+0x2628 g24_transmit_no_interrupt
+0x262b g24_transmit_start
+0x262f g24_transmit_start_next
+0x2633 g24_short_sleep
+0x2638 g24_txdata_prep
+0x263b g24_package_data
+0x2641 g24_accumulate_data
+0x2649 g24_transmit_rf_ctrl_clear
+0x264d g24_transmit_process
+0x264e g24_transmit_loop
+0x2658 g24_transmit_no_ack
+0x2659 g24_transmit_next_packet
+0x265e g24_transmit_abandon
+0x2662 g24_transmit_receive_ack
+0x2670 g24_retransmit
+0x2679 g24_ackpayload_parse
+0x2680 g24_tx_attempt_fail
+0x2683 g24_stop_24g_mode
+0x2685 g24_transmit_hop_process
+0x2692 g24_transmit_hop_process_4ms
+0x2696 g24_hop_ch_enable
+0x2696 g24_txpayload_type_update
+0x2699 g24_lr_type_update
+0x269b g24_hop_enable_packet
+0x269d g24_hop_ch_disable
+0x26a3 g24_tx_fast_hop
+0x26a6 g24_search_receiver
+0x26a8 g24_nodata_transmit
+0x26ae g24_send_abort_packet
+0x26bc g24_long_sleep
+0x26bf g24_long_seep2
+0x26c2 g24_lpm_wait
+0x26cb g24_setgpio_lpm_before
+0x26cd g24_transmit_by_interrupt
+0x26d7 g24_transmit_by_interrupt_exit
+0x26dc g24_interval_min
+0x26de g24_interval_store
+0x26e0 g24_interval_max
+0x26e2 g24_interval_calibrate
+0x26e8 g24_transmit_by_interrupt_enable
+0x26ec g24_factory_check
+0x26ee pdata_0xff_check
+0x26f0 pdata_0xff_check_loop
+0x26f5 power_ctrl_start
+0x26fd power_ctrl_rssi_avg_compare
+0x2700 power_ctrl_start_next
+0x2708 power_ctrl_txpower_decrs_check
+0x270d power_ctrl_txpower_decrs
+0x2711 power_ctrl_txpower_decrs_next
+0x2718 power_ctrl_decrs_level1
+0x2718 power_ctrl_incrs_level1
+0x271a power_ctrl_txpower_incrs_force
+0x271b power_ctrl_txpower_incrs
+0x2720 power_ctrl_incrs_level2
+0x2722 power_ctrl_decrs_level0
+0x2724 power_ctrl_pac_succ_cnt_init
+0x2727 power_ctrl_pac_succ_incrs
+0x272b power_ctrl_pac_succ_decrs
+0x2733 power_ctrl_pac_succ_cnt_reinit
+0x2735 ali_mesh_access_layer_resolve_message
+0x273c ali_mesh_access_layer_check_access_message_opcode
+0x2744 ali_mesh_access_layer_message_opcode_config_appkey_add
+0x2750 ali_mesh_accesss_layer_check_message_type
+0x2755 ali_mesh_access_layer_send_config_appkey_status
+0x275f ali_mesh_access_layer_finish_pairing_init_subscription_list
+0x2762 ali_mesh_access_layer_finish_pairing_init_subscription_list_loop
+0x276d ali_mesh_access_layer_send_generic_onoff_status
+0x2775 ali_mesh_access_layer_send_light_lightness_status
+0x277d ali_mesh_access_layer_send_light_ctl_stauts
+0x2785 ali_mesh_access_layer_send_scene_status
+0x278d logging_tx_info_receive_access_message
+0x2791 ali_mesh_ali_vendor_message_attribute_set
+0x27ab ali_mesh_ali_vendor_message_opcode_attr_get
+0x27ab ali_mesh_ali_vendor_message_opcode_attr_confrimation
+0x27ac ali_mesh_ali_vendor_message_attrbute_check_company_id_and_tid
+0x27b7 ali_mesh_ali_vendor_message_attribute_set_main_light
+0x27ba ali_mesh_ali_vendor_message_attribute_set_background_light
+0x27bd ali_mesh_ali_vendor_message_attribute_set_color
+0x27c0 ali_mesh_ali_vendor_message_opcode_timer_set_curr_time
+0x27c4 ali_mesh_ali_vendor_message_opcode_timer_set_timing
+0x27cb ali_mesh_ali_vendor_message_cb_timing_changed
+0x27cd ali_mesh_ali_vendor_message_opcode_timer_set_timing_cyclically
+0x27d6 ali_mesh_ali_vendor_message_opcode_timer_delete_timing
+0x27e2 ali_mesh_ali_vendor_message_opcode_timer_delete_timing_delete_second
+0x27e8 ali_mesh_ali_vendor_message_opcode_timer_delete_timing_ack
+0x27eb ali_mesh_vendor_timer_buffer_offset_cal
+0x27ef ali_mesh_ali_vendor_message_calc_timing_address
+0x27f7 ali_mesh_ali_vendor_message_status_add_head
+0x27ff ali_mesh_ali_vendor_message_opcode_device_power_on
+0x2803 ali_mesh_ali_vendor_message_opcode_generic_onoff
+0x2805 ali_mesh_ali_vendor_message_opcode_scene_server_first_element
+0x2806 ali_mesh_ali_vendor_message_opcode_scene_server
+0x2808 ali_mesh_ali_vendor_message_opcode_main_light_onoff_first_element
+0x2809 ali_mesh_ali_vendor_message_opcode_main_light_onoff
+0x280b ali_mesh_ali_vendor_message_opcode_background_light_onoff_first_element
+0x280c ali_mesh_ali_vendor_message_opcode_background_light_onoff
+0x280e ali_mesh_ali_vendor_message_opcode_brightness_first_element
+0x280f ali_mesh_ali_vendor_message_opcode_brightness
+0x2812 ali_mesh_ali_vendor_message_opcode_color_temperature_first_element
+0x2813 ali_mesh_ali_vendor_message_opcode_color_temperature
+0x2816 ali_mesh_ali_vendor_message_opcode_timing_finish
+0x281a ali_mesh_ali_vendor_message_indication_info_add_head_event_trigger
+0x281e ali_mesh_ali_vendor_message_ack_attr_status_uint64
+0x2820 ali_mesh_ali_vendor_message_ack_attr_status_uint56
+0x2822 ali_mesh_ali_vendor_message_ack_attr_status_uint48
+0x2824 ali_mesh_ali_vendor_message_ack_attr_status_uint32
+0x2826 ali_mesh_ali_vendor_message_ack_attr_status_uint16
+0x2828 ali_mesh_ali_vendor_message_ack_attr_status_uint8
+0x282a ali_mesh_ali_vendor_message_ack_attr_status
+0x2830 ali_mesh_ali_vendor_message_opcode_para_uint8
+0x2835 ali_mesh_ali_vendor_message_opcode_para_uint16
+0x283a ali_mesh_ali_vendor_message_send_message
+0x283c ali_mesh_ali_vendor_message_indication_info_add_head
+0x284b ali_mesh_ali_vendor_message_indication_info_reset_tid
+0x284d ali_mesh_time_function
+0x2859 ali_mesh_time_init_system_time
+0x285a ali_mesh_time_init_system_time_without_clk
+0x285f ali_mesh_timer_timeout
+0x2866 ali_mesh_clkn_bt_add_1s
+0x2867 ali_mesh_time_loop
+0x286a ali_mesh_ali_vendor_check_time
+0x286d ali_mesh_ali_vendor_check_time_loop
+0x2872 ali_mesh_ali_vendor_check_time_next_element
+0x287c ali_mesh_ali_vendor_check_time_one_element
+0x287d ali_mesh_ali_vendor_check_time_one_element_loop
+0x2886 ali_mesh_ali_vendor_had_timing
+0x2890 ali_mesh_ali_vendor_time_timeout
+0x28a0 ali_mesh_ali_vendor_had_timing_cyclically
+0x28c3 ali_mesh_bearer_layer_send_packet_by_network_layer
+0x28d7 ali_mesh_advertising_bearer_layer_init_queue_param
+0x28dc ali_mesh_advertising_bearer_layer_load_packet_from_advertising_queue
+0x28de ali_mesh_advertising_bearer_layer_load_packet_from_advertising_queue_deal
+0x28e5 ali_mesh_advertising_bearer_layer_send_packet_by_app_bearer
+0x28f3 ali_mesh_advertising_bearer_layer_generate_header
+0x2901 ali_mesh_advertising_bearer_layer_send_packet_by_app_bearer_calc_param
+0x290a ali_mesh_advertising_add_adtype_flags
+0x2912 ali_mesh_advertising_add_adtype_16bit_complete
+0x2919 mesh_receive_advertising
+0x291a mesh_le_scan_adv
+0x2924 mesh_le_wait_adv
+0x2926 mesh_le_wait_adv_cb
+0x2928 mesh_le_calc_next_scan_channel
+0x2930 mesh_check_ble_rx_packet
+0x2935 ali_mesh_match_advertising_packet
+0x293c ali_mesh_find_adv_ind_packet
+0x2951 mesh_le_send_adv
+0x295d mesh_le_send_adv_loop
+0x296d mesh_le_send_adv_nonconn_ind
+0x2978 ali_mesh_base_adt_cache
+0x2986 ali_mesh_base_adt_cache_loop
+0x2993 ali_mesh_base_adt_cache_empty_space
+0x2995 ali_mesh_chip_peripherals_load_data_from_eep
+0x299c ali_mesh_chip_peripherals_load_three_tuple_from_eep
+0x29a0 ali_mesh_chip_peripherals_load_network_key_from_eep
+0x29a7 ali_mesh_chip_peripherals_load_application_key_from_eep
+0x29ab ali_mesh_chip_peripherals_load_device_key_from_eep
+0x29af ali_mesh_chip_peripherals_load_reset_count_from_eep
+0x29b0 ali_mesh_chip_peripherals_load_seq_from_eep
+0x29b4 ali_mesh_chip_peripherals_load_subscription_from_eep
+0x29bd ali_mesh_chip_peripherals_load_subscription_from_eep_loop
+0x29c3 mesh_receive_config_appkey_add_cb
+0x29c6 ali_mesh_chip_peripherals_save_network_key_from_eep
+0x29ca ali_mesh_chip_peripherals_save_application_key_from_eep
+0x29ce ali_mesh_chip_peripherals_save_device_key_from_eep
+0x29d2 mesh_store_new_seq_data
+0x29d2 ali_mesh_chip_peripherals_save_seq_from_eep
+0x29d6 mesh_store_new_subscriptuion_list_data
+0x29db ali_mesh_chip_peripherals_save_subscriptuion_list_from_eep
+0x29de ali_mesh_chip_peripherals_save_subscriptuion_list_from_eep_loop
+0x29e4 logging_tx_debug
+0x29e6 logging_tx_info
+0x29e8 logging_tx_warning
+0x29ea logging_tx_error
+0x29ec logging_tx_critical
+0x29ee logging_tx_common
+0x2a01 mesh_uart_init
+0x2a0c mesh_uart_init_buffer
+0x2a16 ali_mesh_control_ble_adv_process
+0x2a18 ali_mesh_control_ble_adv_timer_process
+0x2a1a ali_mesh_control_ble_advertising_on_advertising
+0x2a1c ali_mesh_control_ble_advertising_off_advertising
+0x2a1e ali_mesh_control_ble_adv_app_packet
+0x2a22 ali_mesh_control_ble_adv_app_packet_paired
+0x2a26 ali_mesh_control_ble_adv_tmall_packet
+0x2a2a ali_mesh_control_ble_adv_app_packet_paired_deal
+0x2a37 ali_mesh_control_ble_adv_tmall_packet_send_package
+0x2a3b ali_mesh_control_ble_advertising_send_paired_packet
+0x2a3d ali_mesh_control_ble_advertising_send_paired_packet_deal
+0x2a4f ali_mesh_control_ble_advertising_send_paired_packet_end_duration_proxy
+0x2a58 ali_mesh_control_ble_advertising_send_paired_packet_adv_in_off
+0x2a5f ali_mesh_control_ble_advertising_send_paired_packet_end_duration
+0x2a65 ali_mesh_control_ble_advertising_send_device_beacon_packet
+0x2a6e ali_mesh_control_ble_advertising_device_beacon_check_duration
+0x2a72 ali_mesh_end_advertising_silence_device_beacon_packet
+0x2a74 ali_mesh_end_advertising_unprovisioned_device_beacon_packet
+0x2a76 ali_mesh_control_ble_advertising_send_pairing_packet
+0x2a78 ali_mesh_chip_timer_check_with_random_timer
+0x2a7b ali_mesh_chip_timer_check
+0x2a83 ali_mesh_advertising_unprovisioned_timer
+0x2a86 ali_mesh_advertising_unprovisioned_timeout
+0x2a8d ali_mesh_advertising_unprovisioned_timer_interval_timer
+0x2a90 ali_mesh_advertising_unprovisioned_timer_interval_timeout
+0x2a94 ali_mesh_send_unprovisioned_device_beacon_init_advertising
+0x2a96 ali_mesh_send_silence_device_beacon_init_advertising
+0x2a98 ali_mesh_encrypt_calc_random_data
+0x2a9e ali_mesh_encrypt_calc_random_data_calc_confirmationkey
+0x2aa6 ali_mesh_encrypt_calc_random_data_calc_authvalueprov
+0x2aab ali_mesh_encrypt_calc_random_data_calc_authvaluedevice
+0x2ab0 ali_mesh_encrypt_calc_random_data_calc_confirmationcloud
+0x2ab8 ali_mesh_encrypt_calc_random_data_calc_confirmationdevice
+0x2abc ali_mesh_encrypt_calc_random_data_calc_devicekey
+0x2ac6 ali_mesh_encrypt_load_randomba_to_sha256
+0x2ac7 ali_mesh_encrypt_load_randoma_to_sha256
+0x2ac9 ali_mesh_encrypt_load_randomab_to_sha256
+0x2aca ali_mesh_encrypt_load_randomb_to_sha256
+0x2acc ali_mesh_encrypt_load_three_tuple_to_sha256
+0x2ad5 ali_mesh_encrypt_calc_provisioning_data
+0x2ad6 ali_mesh_encrypt_calc_provisioning_data_xor_prov_data
+0x2ad9 ali_mesh_encrypt_calc_provisioning_data_xor_prov_data_loop
+0x2ae1 ali_mesh_encrypt_calc_provisioning_data_calc_sessionkey
+0x2ae8 ali_mesh_encrypt_calc_network_key_by_k2
+0x2aeb ali_mesh_encrypt_base_function_k2
+0x2b00 ali_mesh_encrypt_base_function_k4
+0x2b0e ali_mesh_encrypt_base_function_k3
+0x2b1c ali_mesh_encrypt_obfuscation_deceypt_send_message
+0x2b1f ali_mesh_encrypt_obfuscation_deceypt_recevie_message
+0x2b21 ali_mesh_encrypt_obfuscation_deceypt
+0x2b2a ali_mesh_encrypt_generate_pecb
+0x2b2a ali_mesh_encrypt_generate_privacy_random
+0x2b2c ali_mesh_encrypt_base_function_generate_pecb
+0x2b33 ali_mesh_encrypt_base_function_sha256_load_data_64bit
+0x2b34 ali_mesh_encrypt_base_function_sha256_load_data_with_hex2ascii
+0x2b37 ali_mesh_encrypt_base_function_sha256_load_data_without_hex2ascii
+0x2b3a ali_mesh_encrypt_base_function_sha256_load_data_with_hex2ascii_add_comma
+0x2b3e ali_mesh_encrypt_base_function_sha256_store_dataptr
+0x2b41 ali_mesh_encrypt_base_function_sha256_check_first_load_data
+0x2b4a ali_mesh_encrypt_base_function_sha256_first_load_data
+0x2b4e ali_mesh_encrypt_base_function_sha256_clear_data_chunk
+0x2b51 ali_mesh_encrypt_base_function_sha256_calc
+0x2b5a ali_mesh_encrypt_base_function_sha256_calc_loop
+0x2b6e ali_mesh_encrypt_base_function_sha256_load_data_end
+0x2b87 ali_mesh_encrypt_base_function_sha256_add_chunk
+0x2b89 ali_mesh_encrypt_base_function_sha256_input_data_init_inverse
+0x2b8a ali_mesh_encrypt_base_function_sha256_data_inverse_4byte
+0x2b90 ali_mesh_encrypt_base_function_hex2ascii
+0x2b99 ali_mesh_encrypt_base_function_dialog2uchar
+0x2b9d ali_mesh_encrypt_base_function_dialog2uchar_num
+0x2b9f ali_mesh_encrypt_base_function_aes_cmac_32byte
+0x2ba1 ali_mesh_encrypt_base_function_aes_cmac_16byte
+0x2ba3 ali_mesh_encrypt_base_function_k2_aes_cmac_t
+0x2bb1 ali_mesh_encrypt_base_function_aes_cmac
+0x2bc6 ali_b0_block_generate
+0x2bc8 ali_a_block_generate
+0x2bc9 ali_block_generate
+0x2bdb ali_generate_mic
+0x2be6 ali_ccm_encrypt_64bit
+0x2be8 ali_ccm_encrypt
+0x2bea ali_ccm_encrypt_function
+0x2c07 ali_ccm_decrypt_64bit
+0x2c09 ali_ccm_decrypt
+0x2c0b ali_ccm_decrypt_function
+0x2c26 ali_ccm_decrypt_function_check_mic64
+0x2c29 ali_fetcht_ccm_mic
+0x2c31 ali_aes_crypt_data
+0x2c3b mesh_send_unprovisioned_beacons
+0x2c41 ali_mesh_config_device_uuid_by_three_tuple
+0x2c4d ali_mesh_send_unprovisioned_beacons_tmall
+0x2c4f ali_mesh_init_adv_data_tmall_unprovisioned_beacons_package
+0x2c56 ali_mesh_advertising_send_unprovisioned_beacons_store_device_uuid
+0x2c5b ali_mesh_advertising_send_unprovisioned_beacons_gatt
+0x2c5f ali_mesh_init_adv_data_gatt_unprovisioned_beacons_package
+0x2c64 ali_mesh_advertising_add_adtype_service_data
+0x2c6a ali_mesh_receive_adtype_manufacturer_specific
+0x2c72 ali_mesh_advertising_receive_privisioning_random
+0x2c74 ali_mesh_advertising_calc_encrypt_random_data
+0x2c77 ali_mesh_advertising_send_provisioning_confirmation
+0x2c7f ali_mesh_advertising_receive_privisioning_random_check_states
+0x2c8d ali_mesh_advertising_receive_privisioning_data
+0x2c9c ali_mesh_resolve_privisioning_data_package
+0x2ca5 ali_mesh_advertising_send_provisioning_complete
+0x2cac ali_mesh_advertising_receive_privisioning_ios_data
+0x2cae ali_mesh_advertising_send_packet_common
+0x2cc0 ali_mesh_advertising_timer
+0x2cc3 ali_mesh_advertising_check_adv_timer
+0x2cc9 ali_mesh_advertising_adv_timer_timeout
+0x2ccc ali_mesh_advertising_reset_adv_timer
+0x2ccf logging_tx_debug_receive_provisioning_packet
+0x2cd2 loggint_tx_info_receive_random_packet
+0x2cd6 loggint_tx_info_send_confirmation_packet
+0x2cda loggint_tx_info_receive_data_packet
+0x2cde loggint_tx_info_send_complete_packet
+0x2ce2 ali_mesh_receive_adtype_128bit_uuid_complete
+0x2ce6 ali_mesh_ios_gatt_packet_pairing_type
+0x2cf7 ali_mesh_ios_gatt_packet_parse_provisioning_random
+0x2cfb ali_mesh_ios_gatt_packet_parse_provisioning_data
+0x2d0a ali_mesh_ios_gatt_packet_parse_provisioning_config
+0x2d0d ali_mesh_ios_gatt_packet_send_provisioning_config_ack
+0x2d16 ali_mesh_ios_gatt_packet_parse_provisioning_app_control
+0x2d18 ali_mesh_resolve_app_control_msg_package
+0x2d26 ali_mesh_receive_adtype_128bit_uuid_complete_store_uuid
+0x2d2e ali_mesh_receive_provisioning_package_check_header
+0x2d38 ali_mesh_app_control_package_check_integrity
+0x2d3b ali_mesh_app_control_package_check_rev_complete
+0x2d3f ali_mesh_gatt_package_check_integrity_segment
+0x2d58 ali_mesh_gatt_package_check_integrity_segment_complete
+0x2d5a ali_mesh_gatt_package_check_integrity_segment_calc_total_length
+0x2d61 ali_mesh_gatt_package_check_integrity_segment_expect_package_num
+0x2d62 ali_mesh_gatt_package_check_integrity_segment_expect_package_num_loop
+0x2d66 ali_mesh_gatt_package_store_receive_msg_buffer
+0x2d6b ali_mesh_gatt_package_check_integrity_unsegment
+0x2d71 ali_mesh_app_control_package_check_msgid_legal
+0x2d80 ali_mesh_gatt_package_get_msgid
+0x2d84 ali_mesh_gatt_package_load_receive_msg_buffer1
+0x2d87 ali_mesh_gatt_package_load_receive_msg_buffer2
+0x2d8a ali_mesh_gatt_package_load_receive_msg_buffer
+0x2d8f ali_mesh_gatt_package_receive_timer
+0x2d92 ali_mesh_gatt_package_clear_receive_msg_buffer
+0x2d95 ali_mesh_access_layer_config_or_health_message_opcode
+0x2d9a ali_mesh_access_layer_config_or_health_message_opcode_node_reset
+0x2d9d ali_mesh_access_layer_send_config_node_reset_status
+0x2da3 ali_mesh_message_config_modle_subscription_add
+0x2daa ali_mesh_message_config_modle_subscription_delete
+0x2db8 ali_mesh_message_config_modle_subscription_delete_group_addr
+0x2dbd ali_mesh_message_config_modle_subscription_check_value_address
+0x2dbe ali_mesh_message_config_modle_subscription_check_value_address_loop
+0x2dc4 ali_mesh_message_config_modle_subscription_check_value_address_loop_empty
+0x2dc8 ali_mesh_message_config_modle_subscription_status
+0x2dd2 ali_mesh_message_config_modle_subscription_check_element
+0x2ddb ali_mesh_message_config_modle_subscription_add_value_address
+0x2ddd ali_mesh_message_config_modle_subscription_add_value_address_loop
+0x2de5 ali_mesh_message_config_modle_subscription_add_value_address_in
+0x2de8 ali_mesh_init
+0x2e10 mesh_inverse_three_tuple_mac
+0x2e14 mesh_get_element_info_config
+0x2e18 mesh_idle_process
+0x2e1d mesh_cb_event_timer
+0x2e1f ali_mesh_check_all_element_info
+0x2e20 ali_mesh_check_all_element_info_loop
+0x2e28 mesh_iic_init
+0x2e2c ali_mesh_lower_transport_layer_receive_lower_transport_pdu
+0x2e31 ali_mesh_lower_transport_layer_receive_lower_transport_pdu_segmented_message
+0x2e37 ali_mesh_lower_transport_layer_receive_segaccmess_resolve_szmic_seqzero_segon
+0x2e54 ali_mesh_lower_transport_layer_receive_segmented_access_message_recover_seqzero
+0x2e58 ali_mesh_lower_transport_layer_receive_segmented_access_message_check_blockack
+0x2e62 ali_mesh_lower_transport_layer_receive_segmented_access_message_check_blockack_loop
+0x2e68 ali_mesh_lower_transport_layer_receive_segmented_access_message_store_segment
+0x2e75 ali_mesh_lower_transport_layer_receive_segmented_access_message_decrypt_segment
+0x2e82 ali_mesh_lower_transport_layer_send_unsegmented_access_message
+0x2e8c ali_mesh_lower_transport_layer_send_segmented_access_message
+0x2e95 ali_mesh_model_layer_check_model_message_opcode
+0x2e96 ali_mesh_model_layer_check_generic_onoff_message_opcde
+0x2e9c ali_mesh_model_layer_message_opcode_generic_onoff_get
+0x2e9e ali_mesh_model_layer_message_opcode_generic_onoff_get_cb
+0x2ea2 ali_mesh_model_layer_message_opcde_generic_onoff_set
+0x2ea4 ali_mesh_model_layer_message_opcde_generic_onoff_set_cb
+0x2ea7 ali_mesh_model_layer_message_opcde_scene_recall
+0x2eaa ali_mesh_model_layer_message_opcde_light_lightness_set
+0x2eb0 ali_mesh_model_layer_message_opcde_light_ctl_set
+0x2ebf ali_mesh_model_layer_message_calc_lightness
+0x2ecb ali_mesh_model_layer_message_calc_actual_lightness
+0x2ed1 ali_mesh_model_layer_message_calc_temperature
+0x2ed9 ali_mesh_model_layer_message_calc_actual_temperature
+0x2ee0 ali_mesh_model_layer_message_calc_temperature_k
+0x2ee7 ali_mesh_more_element_check_unicast_address
+0x2eeb ali_mesh_more_element_check_unicast_address_loop
+0x2ef3 ali_mesh_more_element_found_unicast_address_element
+0x2ef7 ali_mesh_more_element_check_group_address
+0x2efb ali_mesh_more_element_check_group_address_loop
+0x2f00 ali_mesh_more_element_check_address_common
+0x2f08 ali_mesh_more_element_found_group_address_element
+0x2f0a ali_mesh_more_element_check_subscription_address
+0x2f0c ali_mesh_more_element_check_subscription_address_loop
+0x2f12 ali_mesh_more_element_found_subscription_address_element
+0x2f14 ali_mesh_more_element_check_element_address
+0x2f19 ali_mesh_more_element_check_element_address_loop
+0x2f20 ali_mesh_more_element_check_element_address_no_group_address
+0x2f25 ali_mesh_more_element_push_stack
+0x2f2a ali_mesh_more_element_pop_stack
+0x2f2f ali_mesh_more_element_calc_queue_address
+0x2f3d ali_mesh_receive_adtype_mesh_message
+0x2f3e ali_mesh_network_layer_recevice_network_pdu
+0x2f44 ali_mesh_network_layer_recevice_network_pdu_check_nid
+0x2f46 ali_mesh_network_layer_recevice_network_pdu_deceypt_obfuscation
+0x2f47 ali_mesh_network_layer_recevice_network_pdu_decrypt_netmic32
+0x2f4c ali_mesh_network_layer_recevice_network_pdu_check_dst
+0x2f5b ali_mesh_network_layer_recevice_network_pdu_check_dst_group_address
+0x2f65 ali_mesh_network_layer_check_nid_ivi
+0x2f72 ali_mesh_network_layer_recevice_network_pdu_check_src_and_seq
+0x2f74 ali_mesh_network_layer_raverse_src_seq_cache
+0x2f7c ali_mesh_network_layer_find_empty_space
+0x2f7d ali_mesh_network_layer_find_src_space
+0x2f82 ali_mesh_network_layer_recevice_network_pdu_check_seq_legal
+0x2f8b ali_mesh_inverse_seq
+0x2f8e ali_mesh_network_load_network_nonce_and_encryptionkey
+0x2f8f ali_mesh_upper_transport_layer_load_encryptionkey
+0x2f91 ali_mesh_network_layer_load_network_nonce
+0x2f97 ali_mesh_network_store_in_mem
+0x2f9f ali_mesh_network_layer_relay_access_message
+0x2fb3 ali_mesh_send_ble_data_relay_package
+0x2fb6 ali_mesh_network_layer_check_relay_states
+0x2fcb ali_mesh_network_layer_encrypt_relay_package
+0x2fd0 ali_mesh_network_layer_check_network_mic_cache
+0x2fd3 ali_mesh_network_layer_logging_tx_relay_info
+0x2fdb ali_mesh_network_layer_send_access_message
+0x2fdf ali_mesh_network_layer_send_access_message_encrypt_netmic
+0x2fe5 ali_mesh_network_layer_encrypt_by_network_nonce
+0x2fe8 ali_mesh_network_layer_send_access_message_encrypt_obfuscation
+0x2fe9 mesh_generate_nonce
+0x2fee logging_tx_debug_network_receive_packet
+0x2ff3 ali_mesh_proxy_init_adv
+0x300b mesh_le_receive_data
+0x300e ali_mesh_receive_ble_data_proxy_data_in
+0x3012 ali_mesh_network_layer_recevice_network_pdu_proxy_control
+0x3014 ali_mesh_proxy_process_bb_event
+0x3017 ali_mesh_send_ble_data
+0x3021 ali_mesh_upper_transport_layer_receive_unsegmented_access_message
+0x3022 ali_mesh_uuper_transport_layer_decrypt_unsegment_access_by_application_key
+0x3024 ali_mesh_uuper_transport_layer_decrypt_unsegment_access_by_device_key
+0x3026 ali_mesh_upper_transport_layer_decrypt_unsegmented_message
+0x302b ali_mesh_upper_transport_layer_receive_segmented_access_message
+0x302d ali_mesh_uuper_transport_layer_decrypt_segment_access_by_application_key
+0x302f ali_mesh_uuper_transport_layer_decrypt_segment_access_by_device_key
+0x3031 ali_mesh_upper_transport_layer_decrypt_segmented_message
+0x3038 ali_mesh_upper_transport_layer_decrypt_message
+0x3044 ali_mesh_upper_transport_layer_decrypt_message_decrypt_transmic
+0x3047 ali_mesh_upper_transport_layer_check_transport_mic_cache
+0x304a ali_mesh_upper_transport_layer_load_application_nonce_and_application_key
+0x304b ali_mesh_upper_transport_layer_load_application_key
+0x304d ali_mesh_upper_transport_layer_load_application_nonce
+0x3057 ali_mesh_upper_transport_layer_load_device_nonce_and_device_key
+0x3058 ali_mesh_upper_transport_layer_load_device_key
+0x305a ali_mesh_upper_transport_layer_load_device_nonce
+0x305d ali_mesh_upper_transport_layer_send_access_message
+0x305d ali_mesh_upper_transport_layer_send_access_message_without_cleat_tx_buffer
+0x3066 ali_mesh_upper_transport_layer_store_packet_header
+0x307e ali_mesh_upper_transport_layer_store_unsegment_msg_original_access_pdu
+0x3086 ali_mesh_upper_transport_layer_control_packet
+0x3088 ali_mesh_upper_transport_layer_control_packet_deal
+0x30b0 ali_mesh_upper_transport_layer_control_packet_unsegment_msg
+0x30b1 ali_mesh_upper_transport_layer_control_packet_segment_msg
+0x30b4 ali_mesh_upper_transport_layer_control_packet_load_header
+0x30ba ali_mesh_upper_transport_layer_control_packet_load_app_control
+0x30c7 ali_mesh_store_tran_package_type
+0x30ca ali_mesh_upper_transport_layer_queue_pop
+0x30cf ali_mesh_upper_transport_layer_control_packet_encrypt_access
+0x30df ali_mesh_upper_transport_layer_control_packet_encrypt_access_unsegment_msg
+0x30e2 ali_mesh_upper_transport_layer_control_packet_encrypt_access_segment_msg
+0x30e8 ali_mesh_upper_transport_layer_control_packet_encrypt_access_load_payload
+0x30f0 ali_mesh_upper_transport_layer_split_segmented_msg_to_lower_tran_layer
+0x30f3 ali_mesh_upper_transport_layer_send_segmented_access_message_loop
+0x3109 ali_mesh_upper_transport_layer_calc_transport_mic
+0x310b ali_mesh_upper_transport_layer_calc_transport_mic_by_appkey
+0x310d ali_mesh_upper_transport_layer_calc_transport_mic_by_devicekey
+0x310e ali_mesh_upper_transport_layer_calc_transport_mic_encrypt_aesccm
+0x3113 ali_mesh_upper_transport_layer_send_access_message_calc_seq
+0x311b ali_mesh_upper_transport_layer_send_access_message_add_nid_src_ttl_seq_dst
+0x3127 ali_mesh_upper_transport_layer_send_access_message_add_seq
+0x312f ali_mesh_upper_transport_layer_send_segmented_access_message_get_seqzero_segon
+0x313c ali_mesh_upper_transport_layer_send_segmented_access_message_calc_header
+0x3149 ali_mesh_upper_transport_layer_send_segmented_access_message_sub_segn_one
+0x314b ali_mesh_upper_transport_layer_clear_tx_buffer
+0x314c ali_mesh_loggint_tx_info_upper_send_packet
+0x3150 app_init
+0x315d app_lpm_init
+0x3165 app_lpm_init0
+0x3166 app_param_init
+0x3174 app_sys_param_init
+0x317b app_process_idle
+0x3180 app_process_bt
+0x3182 app_process_ble
+0x3184 app_process_bb_event
+0x318b app_discard_event
+0x318d app_event_normal_process
+0x319f app_evt_bt_conn
+0x31a6 app_event_switch_success
+0x31a8 app_event_switch_fail_master
+0x31b2 app_process_bb_event_priority
+0x31b4 app_check_wake_lock
+0x31b6 app_will_enter_lpm
+0x31b8 app_event_linkkey_generate
+0x31bc app_event_reconn_start
+0x31c3 app_evt_setup_complete
+0x31ca app_evt_hid_handshake
+0x31ce app_event_enter_sniff
+0x31d5 app_event_exit_sniff
+0x31d9 app_le_event_bb_connected
+0x31dd app_le_event_bb_disconn
+0x31e2 app_bb_event_hid_connected
+0x31e6 app_evt_button_long_pressed
+0x31ea app_event_ml2cap_conn_refused
+0x31ee app_evt_timer
+0x31ef app_evt_100ms_loop
+0x31fc timer_single_step
+0x3203 timer_single_step_2b
+0x320a app_power_timer
+0x320e app_power_timer_timeout
+0x3210 app_enter_power_off_state
+0x3211 app_enter_power_stanby_state
+0x3214 app_power_cb_common
+0x3216 app_unsniff_delay_timer
+0x3219 app_unsniff_delay_timeout
+0x321c app_discovery_timer
+0x321f app_discovery_timeout
+0x3223 app_bb_event_reconn_failed
+0x3224 app_clear_reconnect_flag
+0x3228 app_bb_event_bb_disconn
+0x322d app_bb_event_bb_reconn_disconn
+0x3236 app_bb_hibernate
+0x3238 app_disconn_reason_clear
+0x323b app_disconn_reason_flag_clear
+0x323e app_disconn_reason_collect_bt
+0x3243 app_disconn_reason_collect_ble
+0x3249 app_check_sniff
+0x324c app_start_auto_sniff
+0x324f app_get_lpm_wake_lock
+0x3251 app_put_lpm_wake_lock
+0x3253 app_lpm_wake_auto_lock
+0x3255 app_lpm_wake_auto_lock_timer
+0x3258 app_l2cap_flow_control_enable
+0x325a app_l2cap_flow_control_disable
+0x325c app_bt_set_pincode
+0x325e app_bt_role_switch
+0x3260 app_bt_start_reconnect
+0x3266 app_bt_reconnect_cancel
+0x3268 app_bt_disconnect
+0x326a app_bt_start_discovery_short
+0x326c app_bt_start_discovery_led_blink
+0x326d app_bt_start_discovery
+0x326f app_bt_stop_discovery
+0x3273 app_ble_start_direct_adv
+0x3275 app_ble_stop_direct_adv
+0x3277 app_ble_stop_adv
+0x3279 app_ble_start_adv
+0x327b app_ble_start_scan
+0x327d app_ble_stop_scan
+0x327f app_ble_start_conn
+0x3281 app_ble_disconnect
+0x3283 app_led_start_blink
+0x3285 app_led_on
+0x3287 app_led_stop_blink
+0x3287 app_led_off
+0x3289 app_enter_hibernate
+0x328b app_bt_sniff_exit
+0x328d app_bt_enter_sniff
+0x328f app_ble_store_reconn_info
+0x3291 app_bt_store_reconn_info
+0x3293 app_store_reconn_info
+0x3295 app_lpm_mult_enable
+0x3297 app_lpm_mult_disable
+0x3299 app_button_long_pressed
+0x329b app_power_starting
+0x329f app_power_common
+0x32a3 app_power_shutting_down
+0x32a9 app_power_off_end
+0x32ad app_got_power_state_common
+0x32b1 app_event_button_up
+0x32b4 app_power_release
+0x32b6 app_hid_connected
+0x32b9 antilost_init
+0x32e6 antilost_set_ble_version
+0x32e8 antilost_le_before_hibernate
+0x32ea antilost_le_notification
+0x32f1 antilost_power_standby_cb
+0x32f5 antilost_lpm_lock_process
+0x32fe antilost_lpm_ctrl_for_led_buzzer
+0x3303 antilost_bb_event_process
+0x330b antilost_le_conn_param_update_rsp_recieved
+0x330e antilost_le_conn_param_updata_procedure_sucsess
+0x3311 antilost_le_conn_param_updata_judge
+0x3315 antilost_le_conn_param_accepted
+0x331b antilost_le_conn_param_rejected
+0x331d antilost_conn_param_retransimiting
+0x332e antilost_conn_param_updata_procedure_faild
+0x3330 antilost_master_nonsupport_latency
+0x3340 antilost_le_bb_event_timer
+0x3349 antilost_disconn_buzzer_on_timer
+0x334c antilost_disconn_buzzer_off
+0x3350 antilost_conn_battery_send_timer
+0x3353 antilost_conn_battery_send
+0x3357 antilost_double_click_timer
+0x335a antilost_double_click_timeout
+0x335c antilost_le_fast_adv_timer
+0x335f antilost_le_fast_adv_timeout
+0x3362 antilost_conn_update_timer
+0x3365 antilost_conn_update_timer_time_out
+0x3368 antilost_app_updata_le_param_timer
+0x336b antilost_app_updata_le_param_timeout
+0x3371 antilost_wait_for_updata_param_instant_expire
+0x3373 antilost_le_sleep_timer
+0x3376 antilost_le_sleep_timer_timeout
+0x3377 antilost_adc_check_timer
+0x337a antilost_adc_check_timer_timeout
+0x337d antilost_le_process_conn
+0x3386 antilost_le_process_discon
+0x3394 antilost_le_conn_process
+0x3395 antilost_idle_process
+0x3398 antilost_power_starting_cb
+0x339b antilost_power_common
+0x339c antilost_power_off_cb
+0x33a1 antilost_le_receive_data_process
+0x33a4 antilost_le_parse_att_write_request
+0x33a8 antilost_key_process
+0x33ab antilost_key_up_down
+0x33ad antilost_key_is_down
+0x33b0 antilost_key_is_up
+0x33b3 antilost_key0_down
+0x33bb antilost_key0_up
+0x33bd antilost_double_click_timer_init
+0x33c1 antilost_butten_down_after_conn
+0x33c7 antilost_click_once
+0x33cb antilost_click_twice
+0x33d2 antilost_butten_down_while_disconn
+0x33d6 antilost_cmd_parse_for_application
+0x33dc antilost_on_of_alram
+0x33e0 antilost_configuration_for_alram
+0x33e4 antilost_prepare_data_and_send
+0x33f1 antilost_alert_on
+0x33fc antilost_alert_off
+0x3404 antilost_set_start_alarm_after_disconn
+0x3409 antilost_set_no_alarm_after_disconn
+0x340e antilost_on_off_alarm_after_disconn
+0x3411 antilost_notify_alarm_config_first_time
+0x3421 antilost_buzzer_configuration
+0x3423 antilost_led_configuration
+0x3424 antilost_configuration_common
+0x3425 antilost_led_buzzer_stop_blink
+0x342b antilost_led_buzzer_style_configuration
+0x342e antilost_fast_adv_start
+0x3430 antilost_adv_start_common
+0x3435 antilost_adv_interval_lpm_interval_set
+0x343a antilost_buzzer_pwm_init
+0x3441 antilost_led_on_cb
+0x3443 antilost_led_off_cb
+0x3445 antilost_buzzer_off
+0x3448 antilost_buzzer_on
+0x344c antilost_adc_init
+0x344e antilost_battery_process
+0x3458 antilost_battery_calculate_end
+0x345b antilost_full_battery
+0x345d antilost_low_battery
+0x345e car_init
+0x3482 car_soft_switch_power_on_init
+0x3488 car_power_off_signal
+0x3489 car_hard_switch_power_on_signal
+0x348a car_soft_switch_power_on_signal
+0x348d car_le_modified_name_adv
+0x348f car_name_loop
+0x349c car_le_modified_name_scan
+0x34a1 car_hex_to_ascii
+0x34a5 car_hex_num
+0x34a7 car_ui_led_init
+0x34a9 car_ui_led_init_1
+0x34ab car_ui_led_init_2
+0x34ad car_ui_led_init_3
+0x34b1 car_in_lp1
+0x34b7 car_in_lp1_end
+0x34b8 car_ui_led_init_end
+0x34b9 car_blood_led_gpio_set
+0x34bc car_pairing_led_gpio_set
+0x34be car_low_voltage_led_gpio_set
+0x34c0 car_init_environment
+0x34c7 car_motor_init
+0x34cb p_in_lp1
+0x34d2 p_in_lp1_end
+0x34d3 p_car_ui_led_init_end
+0x34d4 car_ui_gpio_init
+0x34d8 car_init_adc_hvin
+0x34da car_le_before_hibernate
+0x34da car_le_process_lpm_before
+0x34db car_key_scan_process
+0x34dc car_scale_process_idle
+0x34df car_g24_status_process
+0x34e4 car_g24_connected_event
+0x34ea car_lpm_timer_enable
+0x34ee car_lpm_timer_disable
+0x34f0 car_stop_blink
+0x34f2 car_start_blink
+0x34f4 car_le_send_packet
+0x34fd car_scale_process_bb_event
+0x3503 car_scale_event_le_conn
+0x3507 car_g24_connected
+0x3509 car_scale_process_conn
+0x350d car_scale_event_le_discon
+0x3511 car_g24_disconnect
+0x3527 car_le_bb_event_timer
+0x352f car_24g_bind_enable_timer
+0x3532 car_enter_lpm_timer
+0x3535 car_enter_lpm_enable
+0x3537 car_24g_no_data_timeout_timer
+0x353a car_24g_no_data_timer_timeout
+0x353d car_notify_vdd_timer
+0x3542 car_notify_vdd
+0x3546 car_read_hvin
+0x354f car_notify_vdd_next2
+0x355a car_enter_low_bat
+0x355f car_low_bat_led_off
+0x3561 calc_check_sum_start
+0x3562 calc_check_sum_loop
+0x3565 calc_check_sum_and
+0x3567 car_le_receive_data
+0x356a car_le_parse_att_write_request
+0x356d le_app_receive_data
+0x3581 car_control_le_receive
+0x3589 car_receive_cmd_select
+0x3593 car_24g_receive_data
+0x3598 car_24g_receive_data_next
+0x359f car_moto1_enable_blank_data_timer
+0x35a1 car_moto2_enable_blank_data_timer
+0x35a3 car_moto3_enable_blank_data_timer
+0x35a5 car_moto1_blank_data_timer
+0x35a8 car_moto2_blank_data_timer
+0x35ab car_moto3_blank_data_timer
+0x35ae car_moto1_blank_data
+0x35b0 car_moto2_blank_data
+0x35b2 car_moto3_blank_data
+0x35b4 car_drive_old
+0x35b9 car_left_right_control_old
+0x35bc car_front_back_control_old
+0x35c1 car_reset_old_speed
+0x35c5 car_reset_old_speed2
+0x35c7 car_reset_old_speed3
+0x35c9 car_speed_set_old
+0x35d0 car_motor_control
+0x35da car_motor_control_common
+0x35e1 car_conn_led_state
+0x35e6 car_motor1_control
+0x35e8 car_motor2_control
+0x35ea car_motor3_control
+0x35ec car_motor_working_flag
+0x35ee car_motor1_status_select
+0x35f3 car_motor2_status_select
+0x35f8 car_lr_motor_stop
+0x35fc car_lr_motor_left
+0x3600 car_lr_motor_right
+0x3604 car_fb_motor_stop
+0x3608 car_fb_motor_front
+0x360c car_fb_motor_back
+0x3610 car_motor_status_select
+0x3616 car_motor_positive
+0x3618 car_motor_negative
+0x361d car_motor_stop
+0x3622 car_motor_work
+0x3626 car_motor_select_negative
+0x3629 car_motor_work_next
+0x3630 car_motor_select_positive
+0x3634 car_motor_speed_duty_setting
+0x3637 car_motor_speed_duty_transform
+0x3640 car_ir_data_rx_from_app
+0x3641 car_led_control_receive
+0x3644 car_info_request
+0x3650 car_g24_init
+0x3654 car_g24_receive_process
+0x3658 car_g24_mode_switch
+0x3659 car_g24_bind_mode_enable
+0x3660 car_g24_work_mode
+0x3664 car_g24_receive_ch_polling
+0x366d car_g24_ch_polling_clear
+0x366f car_g24_bind_mode
+0x367c car_g24_bind_mode_exit
+0x3683 car_g24_bind_device_addr
+0x3686 car_g24_cb_data_device1
+0x368d car_g24_lpm_dipatch
+0x3695 car_g24_lpm_wait
+0x369a dongle_init
+0x36a5 dongle_default_init
+0x36ae dongle_default_no_eeprom
+0x36c7 dongle_xtal_select
+0x36cc dongle_dispatch
+0x36d0 dongle_read_kb_bind_status
+0x36d4 dongle_write_kb_bind_status
+0x36d8 dongle_usb_config
+0x36dc dongle_usb_config_kb
+0x36e0 dongle_usb_config_param
+0x36e4 dongle_usb_vid_pid_config
+0x36e8 dongle_usb_vid_pid_for_mouse_only_auto_pair
+0x36e9 dongle_usb_vid_pid_store
+0x36eb dongle_usb_vid_pid_for_suit
+0x36ed dongle_usb_hid_icon_config
+0x36f3 dongle_usb_kb_hidreportdesc
+0x36f7 dongle_usb_device_name
+0x36fd dongle_pc_bind
+0x36fe dongle_pc_bind_loop
+0x3702 dongle_g24_blank_data_process
+0x3705 dongle_g24_ms_blank_data
+0x370f dongle_usb_tx_ms_data
+0x3710 dongle_usb_tx_enable_ep2
+0x3714 dongle_g24_kb_blank_data
+0x371d dongle_usb_tx_kb_data
+0x371e dongle_usb_tx_enable_ep1
+0x3723 dongle_g24_kb_mul_blank_data
+0x372d dongle_usb_tx_multikey_data
+0x372f dongle_usb_dispatch
+0x3742 dongle_usb0_data_ready_report_set0
+0x3744 dongle_dispose_cmd_mode
+0x3747 dongle_enter_bind_mode
+0x3748 dongle_usb0_data_ready_report_set1
+0x374a dongle_dispose_cmd_bind
+0x374f dongle_dispose_cmd_get_bind
+0x3752 dongle_dispose_cmd_exit_bind
+0x3754 dongle_dispose_cmd_read_mode
+0x3754 dongle_dispose_in_bind_mode
+0x3756 dongle_dispose_cmd_current_project
+0x3758 dongle_dispose_cmd_current_mode
+0x375c dongle_dispose_in_work_mode
+0x375e dongle_dispose_cmd_current_fw_version
+0x3763 dongle_auto_bind
+0x3764 dongle_auto_bind_loop
+0x376b dongle_work_mode_auto
+0x3773 dongle_ackpayload_prep
+0x3776 dongle_ackpayload_prep_mouse
+0x3779 dongle_set_pc_sleep_flag
+0x377d dongle_clear_pc_sleep_flag
+0x377f dongle_ackpayload_prep_keyboard
+0x3781 dongle_ackpayload_prep_end
+0x3785 dongle_pc_sleep_ackpayload_prep_mouse
+0x3789 dongle_pc_sleep_ackpayload_prep_keyboard
+0x378c dongle_pc_sleep_ackpayload_prep
+0x3790 dongle_g24_bind_ackpayload_prep
+0x3794 dongle_g24_kb_led_ackpayload_prep
+0x379c dongle_g24_mouse
+0x37a5 dongle_g24_ms_enable_blank_data_forcibly
+0x37a9 dongle_g24_ms_disable_blank_data_forcibly
+0x37ad dongle_g24_kb
+0x37b2 dongle_g24_kb_type0
+0x37c5 dongle_g24_kb_enable_blank_data_forcibly
+0x37c9 dongle_g24_kb_disable_blank_data_forcibly
+0x37cd dongle_g24_kb_type3
+0x37dd dongle_g24_kb_mul_enable_blank_data_forcibly
+0x37e1 dongle_g24_kb_mul_disable_blank_data_forcibly
+0x37e5 dongle_g24_kb_type2
+0x37f5 dongle_g24_kb_sys_enable_blank_data_forcibly
+0x37f9 dongle_g24_kb_sys_disable_blank_data_forcibly
+0x37fd dongle_usb_tx_sys_data
+0x37ff dongle_g24_store_dvc2_bind_flag
+0x3803 dongle_prep_soft_reset
+0x3805 dongle_kb_bind_soft_reset
+0x380a dongle_wirte_efuse_bind_status
+0x3814 module_init
+0x382b module_lpm_uart_init
+0x383d module_lpm_init
+0x383f module_gpio_init
+0x3844 module_lpm_lock
+0x3848 module_bt_conn_process
+0x384a module_spp_enter_sniff
+0x3858 module_spp_clear_last_transmite_clock
+0x385b module_process_idle
+0x385f module_process_bb_event
+0x387e module_process_bb_event_disconned
+0x3885 module_process_spp_connected
+0x388c module_process_spp_disconnected
+0x388c module_spp_disconnected
+0x3891 module_process_enter_sniff
+0x3891 module_sniff_param_check
+0x3898 module_sniff_param_check_unsniff
+0x389d module_process_exit_sniff
+0x389f module_process_setup_complete
+0x38a1 module_process_bb_even_le_disconn
+0x38a5 module_process_evt_pincode_req
+0x38a6 module_process_sniff_not_accept
+0x38a7 module_process_unsniff_accept
+0x38aa module_process_unsniff_not_accept
+0x38ab module_process_le_conn
+0x38af module_process_bb_conn
+0x38b2 module_process_reconn_fail
+0x38b2 module_disconn_start
+0x38b4 module_process_ble_ltk_lost
+0x38b6 module_process_ble_update_phy
+0x38b7 module_set_conn_pin_high
+0x38b9 module_conn_start
+0x38bb module_stop_adv_discovery
+0x38c2 module_set_conn_pin_low
+0x38c4 module_process_with_credit
+0x38c7 module_process_check_hci_command_complete
+0x38dd module_hci_in_excp
+0x38e0 module_hci_release_except
+0x38e6 module_hci_dicard_packet
+0x38ea module_hci_dicard_bytes
+0x38eb module_hci_cmd_control
+0x391d module_hci_cmd_set_bt_addr
+0x3922 module_hci_cmd_set_le_addr
+0x3927 module_hci_cmd_set_visibility
+0x392f module_start_adv_discovery_by_command
+0x3935 moudle_start_adv_by_command
+0x393c module_hci_cmd_set_bt_name
+0x3946 module_hci_cmd_set_le_name
+0x394a module_hci_cmd_receive_spp_data
+0x3958 module_hci_cmd_pass_init_ng_rx_len_all
+0x395a module_hci_cmd_spp_exit_sniff
+0x395c module_hci_cmd_get_current_packet_len_and_remain_len
+0x3962 module_hci_cmd_get_current_patcket_len
+0x3969 module_hci_command_tx_spp_tx_complete
+0x396c module_hci_cmd_receive_le_data
+0x3991 module_hci_cmd_receive_le_data_finish
+0x3994 module_hci_cmd_transmit_handle_error
+0x3998 module_hci_cmd_transmit_le_notify
+0x39b6 module_hci_cmd_transmit_le_notify_malloc_l2cap
+0x39bb module_get_le_remote_mtu
+0x39c0 module_check_ble_encrypt_state
+0x39c3 module_hci_cmd_inquire_status
+0x39c4 module_hci_cmd_set_pairing_mode
+0x39d1 module_hci_pairing_just_work_sc
+0x39d3 module_hci_pairing_passkey_sc
+0x39d5 module_hci_pairing_numeric_comparison_sc
+0x39d7 module_hci_pairing_pincode_mode
+0x39da module_hci_pairing_just_work_mode
+0x39db module_hci_sspairing_mode
+0x39e4 module_hci_pairing_passkey
+0x39e6 module_hci_pairing_numeric_comparison
+0x39e8 module_hci_cmd_set_pincode
+0x39eb module_hci_cmd_set_uart_control_mode
+0x39f3 module_hci_cmd_set_uart_baud
+0x39fb module_hci_cmd_version_request
+0x39ff module_hci_cmd_bt_disconnect
+0x3a01 module_hci_cmd_bt_disconnect_doing
+0x3a03 module_hci_cmd_ble_disconnect
+0x3a05 module_hci_cmd_ble_disconnect_doing
+0x3a07 module_hci_cmd_set_cod
+0x3a0c module_hci_cmd_set_nvram
+0x3a11 module_hci_cmd_confirm_gkey
+0x3a1d module_hci_cmd_spp_number_comparison_result_is1
+0x3a21 module_hci_cmd_set_credit_given
+0x3a2a module_hci_cmd_auto_adv
+0x3a30 module_hci_cmd_auto_adv_loop
+0x3a3a module_hci_cmd_auto_adv_store_adv
+0x3a44 module_hci_cmd_auto_adv_store_scan
+0x3a4d module_hci_cmd_auto_adv_store_common
+0x3a58 module_hci_cmd_auto_adv_adv_analys
+0x3a5d module_hci_cmd_power_request
+0x3a63 module_hci_cmd_power_set
+0x3a6a module_hci_cmd_passkey_entry
+0x3a74 module_hci_cmd_set_gpio
+0x3a7a module_set_gpio_input
+0x3a80 module_set_gpio_output
+0x3a85 module_hci_cmd_read_gpio
+0x3a90 module_hci_cmd_le_set_pairing_mode
+0x3a9f module_le_set_pairing_mode_secure_justwork
+0x3aa3 module_le_set_pairing_mode_secure_numeric
+0x3aa8 module_le_set_pairing_mode_secure_passkey
+0x3aac module_le_set_pairing_mode_secure_passkey_res_input
+0x3ab0 module_le_set_no_pairing
+0x3ab1 module_le_set_noinputnooutput
+0x3ab3 module_le_set_pairing_mode_lagacy_just_work
+0x3ab5 module_le_set_pairing_mode_lagacy_passkey
+0x3ab7 module_le_set_pairing_mode_lagacy_passkey_res_input
+0x3ab9 module_le_set_keboadonly
+0x3abb module_le_set_displayonly
+0x3abd module_hci_cmd_le_set_adv_data
+0x3ac0 module_hci_cmd_le_set_scan_data
+0x3ac3 module_hci_cmd_receive_store_mem
+0x3ac9 module_hci_cmd_le_send_conn_update_req
+0x3ad2 module_hci_cmd_set_le_adv_parameter
+0x3ad5 module_hci_cmd_le_start_pairing
+0x3add module_hci_cmd_set_wake_gpio
+0x3ae7 module_hci_cmd_set_tx_power
+0x3aec module_hci_cmd_le_confirm_gkey
+0x3af3 module_hci_cmd_le_confirm_gkey_ok
+0x3af5 module_hci_cmd_le_confirm_gkey_fail
+0x3af7 module_hci_cmd_set_reject_justwork_flag
+0x3afd module_hci_cmd_reset_chip
+0x3b01 module_hci_cmd_le_set_fixed_passkey
+0x3b0e module_hci_cmd_le_set_random_passkey
+0x3b10 module_hci_cmd_delete_customize_service
+0x3b16 module_hci_cmd_add_service_uuid
+0x3b1b module_hci_cmd_add_characteristic_uuid
+0x3b1f module_hci_cmd_add_service_uuid_set_uuid
+0x3b23 module_hci_cmd_add_characteristic_uuid_set_handle
+0x3b2a module_hci_cmd_add_characteristic_uuid_set_uuid
+0x3b42 module_hci_cmd_add_characteristic_uuid_set_ccc_uuid
+0x3b4a le_att_creat_new_handle
+0x3b4d uart_copy_rx_bytes_len_data
+0x3b51 module_hci_cmd_le_passkey_entry_input
+0x3b57 module_hci_cmd_passkey_entry_sc_res_input
+0x3b5a module_hci_cmd_receive_ble_passkey
+0x3b5d module_hci_cmd_passkey_entry_res_input
+0x3b5f module_hci_cmd_ble_set_phy
+0x3b64 module_hci_cmd_ble_read_current_phy
+0x3b68 module_hci_cmd_ble_set_dle
+0x3b6d module_hci_cmd_read_chip_data
+0x3b71 module_hci_cmd_write_chip_data
+0x3b77 module_hci_cmd_close_lpm
+0x3b79 module_hci_event_receive_invalid_cmd
+0x3b7c module_hci_event_receive_valid_cmd
+0x3b7f module_hci_event_spp_connect
+0x3b81 module_hci_event_le_connect
+0x3b83 module_hci_event_spp_disconnect
+0x3b85 module_hci_event_le_disconnect
+0x3b87 module_hci_event_set_cmd
+0x3b94 module_hci_event_receive_spp_data
+0x3b9f module_hci_event_receive_le_data
+0x3baa module_hci_event_enter_standby_mode
+0x3bab module_hci_event_enter_standby_mode_len0
+0x3bae module_hci_event_status_res
+0x3bbf module_hci_read_bt_status
+0x3bcc module_hci_event_store_device
+0x3bd5 module_hci_event_gkey_generate
+0x3bdb module_hci_event_invalid_packet
+0x3bea module_hci_event_passkey_entry_mode
+0x3bec module_hci_event_le_tk
+0x3bf2 module_hci_event_le_pairing_fail
+0x3bf4 module_hci_event_le_pairing_success
+0x3bf6 module_hci_event_bt_pairing_fail
+0x3bf8 module_hci_event_bt_pairing_success
+0x3bf9 module_hci_event_pairing_completed
+0x3c00 module_hci_event_pause_enc
+0x3c02 module_hci_event_start_enc
+0x3c03 module_hci_event_enc
+0x3c09 module_hci_event_le_gkey
+0x3c0f module_hci_event_uuid_handle
+0x3c16 module_hci_event_le_input_passkey
+0x3c18 module_hci_event_le_update_phy
+0x3c1e module_hci_prepare_tx
+0x3c28 module_hci_transmit_tx
+0x3c2a module_set_mcu_wake_pin_high_delay
+0x3c2c module_set_mcu_wake_pin_h_delay
+0x3c31 module_set_mcu_wake_pin_high
+0x3c33 module_check_mcu_wake_pin_high
+0x3c35 module_set_mcu_wake_pin_low
+0x3c37 module_le_receive_data
+0x3c3d module_le_receive_data_ok
+0x3c48 module_exit_sniff
+0x3c4c module_set_lpm_mult_2
+0x3c4e module_bb_event_timer
+0x3c4e module_read_vdd_timer
+0x3c5e module_control_air_flow
+0x3c61 module_set_sniff_task_flag
+0x3c63 module_clear_sniff_task_flag
+0x3c65 module_set_unsniff_task_flag
+0x3c67 module_clear_unsniff_task_flag
+0x3c69 module_set_le_tx_data_flag
+0x3c6b module_clear_le_tx_data_flag
+0x3c6d module_clr_state
+0x3c71 module_set_state
+0x3c75 mouse_init
+0x3c7f mouse_init_wireless
+0x3c83 mouse_cb_fuction
+0x3ca6 mouse_setting_config
+0x3cb3 mouse_xtal_init
+0x3cb8 mouse_default_init
+0x3dd6 mouse_param_init
+0x3e02 mouse_param_init_intervl_end
+0x3e06 mouse_24g_short_sleep_set_end
+0x3e15 mouse_start_work
+0x3e1c mouse_start_reconnect_device
+0x3e24 mouse_start_reconnect
+0x3e28 mouse_wakeup_from_power_check
+0x3e2f mouse_wakeup_from_power
+0x3e32 mouse3_0_check_reconn_target
+0x3e36 mouse3_0_check_reconn_target_next
+0x3e3e mouse4_0_check_reconn_target
+0x3e43 mouse4_0_check_reconn_target_next
+0x3e4d mouse_lpm_check_wake_lock
+0x3e57 mouse_delay_enter_hibernata
+0x3e5a mouse_app_enter_hibernate
+0x3e5e mouse_before_hibernate
+0x3e6a mouse_setgpio_hibernate
+0x3e72 mouse_gpio_pu_idle
+0x3e74 mouse_gpio_pu_idle_loop
+0x3e79 mouse_gpio_pu_idle_configured
+0x3e7b mouse_process_lpm_before
+0x3e80 mouse_lpm_before_common
+0x3ea0 mouse_set_mult
+0x3ea5 mouse_set_ble_mult
+0x3ea8 mouse_set_bt_mult
+0x3eab mouse_adc_gpio_set
+0x3ead mouse_adc_gpio_check_output
+0x3eb3 mouse_adc_gpio_set_next
+0x3eb9 mouse_adc_gpio_4_7_set
+0x3ebc mouse_adc_vol_init
+0x3ec5 mouse_adc_gpio_vol_init
+0x3eca mouse_adc_gpio_vinlpm_init
+0x3ecf mouse_adc_gpio_mux_init
+0x3ed6 mouse_adc_read_interval
+0x3edc mouse_adc_read
+0x3ee8 mouse_adc_read_gpio_mux_start
+0x3eea mouse_adc_read_gpio
+0x3eef mouse_adc_read_vinlpm
+0x3ef3 mouse_adc_read_battery
+0x3ef7 mouse_adc_read_battery_start
+0x3ef9 mouse_adc_read_start
+0x3f08 mouse_adc_data_process
+0x3f10 mouse_adc_low_voltage
+0x3f12 mouse_adc_no_low_voltage
+0x3f1a mouse_adc_bat_percent_lowpower_out
+0x3f21 mouse_adc_bat_percent_lowpower_out_gpio_multiple
+0x3f27 mouse_adc_bat_percent_lowpower_out_gpio_switch
+0x3f30 mouse_select_24gdevice
+0x3f32 mouse_adc_bat_percent_lowpower_out_battery
+0x3f3c mouse_adc_bat_level_set
+0x3f4d mouse_adc_bat_level_100_percent
+0x3f4f mouse_adc_bat_level_0_percent
+0x3f51 mouse_adc_bat_percent_lowpower_out_vinlpm_multiple
+0x3f54 mouse_adc_set_button_press_flag
+0x3f58 mouse_adc_clear_button_press_flag
+0x3f5c mouse_adc_button_press
+0x3f5e mouse_power_down
+0x3f60 mouse_gpio_init
+0x3f8d mouse_gpio_set_pupd_by_input
+0x3f94 mouse_gpio_config_input_pd
+0x3f96 mouse_gpio_config_input_pu
+0x3f98 mouse_gpio_set_high_impedance
+0x3f9c mouse_gpio_set_high_impedance_bit_loop
+0x3fa5 mouse_sensor_spi_init
+0x3fa9 mouse_spi_write_flash_cb
+0x3fa9 mouse_spi_init
+0x3faa mouse_spid_init_pin
+0x3fb0 mouse_motion
+0x3fbe mouse_zwheel
+0x3fc3 mouse_t_zwheel
+0x3fc8 mouse_wheel_check
+0x3fd5 mouse_t_wheel_scan
+0x3fe5 mouse_t_wheel_scan_judge1
+0x3fe9 mouse_t_wheel_scan_judge2
+0x3fed mouse_t_wheel_scan_judge11
+0x3fef mouse_t_wheel_scan_judge12
+0x3ff1 mouse_t_wheel_scan_judge21
+0x3ff3 mouse_t_wheel_scan_judge22
+0x3ff5 mouse_t_wheel_scan_judge3
+0x3ffd mouse_t_wheel_scan_judge30
+0x4000 mouse_t_wheel_scan_judge31
+0x4003 mouse_t_wheel_scan_judge32
+0x4006 mouse_t_wheel_scan_judge33
+0x4009 mouse_wheel_t_forward
+0x400d mouse_wheel_t_back
+0x4011 mouse_wheel_scan
+0x4021 mouse_wheel_scan_judge1
+0x4025 mouse_wheel_scan_judge2
+0x4029 mouse_wheel_scan_judge11
+0x402b mouse_wheel_scan_judge12
+0x402d mouse_wheel_scan_judge21
+0x402f mouse_wheel_scan_judge22
+0x4031 mouse_wheel_scan_judge3
+0x4039 mouse_wheel_scan_judge30
+0x403c mouse_wheel_scan_judge31
+0x403f mouse_wheel_scan_judge32
+0x4042 mouse_wheel_scan_judge33
+0x4045 mouse_wheel_forward
+0x4049 mouse_wheel_back
+0x404d mouse_wheel_gpio_set_wake
+0x4055 mouse_before_hibernate_wheel_gpio_set
+0x405d mouse_wheel_trigger
+0x4062 mouse_wheel_trigger_timer
+0x4065 mouse_wheel_trigger_disable
+0x4067 mouse_dpi_check
+0x406f mouse_dpi_check_next
+0x4073 mouse_dpi_check_exit
+0x4076 mouse_dpi_check_connect_adc
+0x4079 mouse_dpi_key_check
+0x407f mouse_dpi_key_check_next
+0x4082 mouse_3io6key_dpi_check_end
+0x4085 mouse_dpi_check_end
+0x4088 mouse_dpi_key_connect_gnd
+0x408a mouse_dpi_key_connect_matrix
+0x4092 mouse_dpi_down
+0x4099 mouse_dpi_up
+0x40a0 mouse_dpi_up_next
+0x40a4 mouse_dpi_up_after_long_press
+0x40a9 mouse_dpi_process
+0x40b2 mouse_dpi_ghost_check
+0x40bc mouse_dpi_key_check_long_press
+0x40c0 mouse_select_device_by_dpi_button
+0x40c5 mouse_ready_reconnection_by_dpi_button
+0x40c7 mouse_discovery_by_dpi_button
+0x40cc mouse_long_dpi_button_bt_discovery
+0x40ce mouse_dpi_config
+0x40cf mouse_setting_dpi_4_level
+0x40d5 mouse_seting_dpi
+0x40d8 mouse_seting_sensor_type
+0x40e0 mouse_set_cpi1
+0x40e2 mouse_set_cpi0
+0x40e4 mouse_set_cpi2
+0x40e6 mouse_set_cpi3
+0x40e8 mouse_dpi_store
+0x40ee mouse_dpi_write
+0x40f7 mouse_3065xy_set_dpi
+0x40f9 mouse_ka8_set_dpi
+0x40fb mouse_seting_3212_dpi
+0x4100 mouse_set_p3212_cpi1
+0x4102 mouse_set_p3212_cpi0
+0x4104 mouse_set_p3212_cpi2
+0x4106 mouse_set_p3212_cpi3
+0x4107 mouse_p3212_dpi
+0x410f mouse_seting_ka8g2_dpi
+0x4114 mouse_set_pka8g2_cpi1
+0x4116 mouse_set_pka8g2_cpi0
+0x4118 mouse_set_pka8g2_cpi2
+0x411a mouse_set_pka8g2_cpi3
+0x411c mouse_key
+0x4128 mouse_24g_key
+0x412d mouse_ghost_key_check
+0x413d mouse_ghost_key_check_l_bk
+0x4140 mouse_ghost_key_check_m_fw
+0x4143 mouse_ghost_key_check_bk_fw
+0x4146 mouse_ghost_key_check_lmr
+0x414c mouse_matrix_row_more_than_one_key
+0x414e mouse_matrix_cow_more_than_one_key
+0x4150 mouse_key_check_once
+0x4155 mouse_check_key_gpio
+0x415e mouse_check_key_gpio_next
+0x4161 mouse_check_key_gpio_once
+0x4164 mouse_check_lkey_gpio
+0x416a mouse_check_rkey_gpio
+0x4170 mouse_check_mkey_gpio
+0x4176 mouse_check_bkkey_gpio
+0x417e mouse_check_bkkey_gpio_next
+0x4185 mouse_check_bkkey_gpio_end
+0x4187 mouse_check_bk_button_connect_gnd
+0x418b mouse_3io6key_bk_check
+0x418f mouse_check_fwkey_gpio
+0x4197 mouse_check_fwkey_gpio_next
+0x419e mouse_check_fwkey_gpio_end
+0x41a0 mouse_check_fw_button_connect_gnd
+0x41a4 mouse_3io6key_fw_check
+0x41a8 mouse_matrix_public_gpio_reset
+0x41aa mouse_check_customerkey_gpio
+0x41b7 mouse_check_customerkey_gpio_exit
+0x41ba mouse_customerkey_press
+0x41bd mouse_customerkey_release
+0x41c0 mouse_customer_key_need_send
+0x41c2 mouse_check_matrix_button_connect_gnd
+0x41c7 mouse_check_key_connect_gnd
+0x41d1 mouse_key_release
+0x41d3 mouse_key_press
+0x41d5 mouse_3io6key_check
+0x41e1 mouse_check_press
+0x41e7 mouse_init_sunt
+0x41ea mouse_init_sensor_wakeup
+0x41eb mouse_init_sensor
+0x41f2 mouse_twspi_reset
+0x41f5 mouse_read_sensor_id
+0x41fc mouse_init_p32xx_id2_judge
+0x4205 mouse_mx8650_init_param
+0x420b mouse_8009_init_param
+0x421a mouse_3205_3t_init_param
+0x4223 mouse_3204_3l_init_param
+0x422a mouse_3212_init_param
+0x422d mouse_ka8_init_param_check
+0x423f mouse_ka8_init_param
+0x4241 mouse_ka8ul_init_param
+0x4244 mouse_ka8hd_sensor_judge
+0x424e mouse_ka8hd_init_param
+0x4251 mouse_enable_ka8_sensor_wp
+0x4254 mouse_p6520_init_param
+0x4257 mouse_init_p3065
+0x425c mouse_p3065_init_param
+0x425e mouse_p3065xy_init_param
+0x4260 mouse_ka8g2_id2_judge
+0x4264 mouse_ka8g2_init_param
+0x4267 mouse_sensor_enable_wp
+0x4269 mouse_sensor_disable_wp
+0x426b mouse_sensor_wr_seq
+0x4272 mouse_sensor_reset
+0x4273 mouse_sensor_reset_end
+0x4276 mouse_sensor_poweron
+0x4278 mouse_sensor_poweron_next
+0x427a mouse_sensor_poweron_end
+0x427c mouse_sensor_powerdown
+0x427e mouse_sensor_powerdown_end
+0x4280 mouse_check_sensor_data
+0x428c mouse_p32xx_sensor_motion
+0x4293 mouse_p32xx_sensor_motion_2
+0x4296 mouse_p32xx_sensor_motion_1
+0x42a0 mouse_set_sensor_angle
+0x42a6 mouse_p3065_judge
+0x42a8 mouse_motion32xx_6clk_direction_selection
+0x42aa mouse_motion32xx_9clk_direction_selection
+0x42ac mouse_motion32xx_12clk_direction_selection
+0x42ae mouse_motion32xx_3clk_direction_selection
+0x42b0 mouse_p3212_sensor_motion
+0x42b6 mouse_p3212_sensor_motion_1
+0x42b9 mouse_p3212_sensor_motion_2
+0x42cc mouse_read_3212sensor_xy_high
+0x42ce mouse_pka8g2_sensor_motion
+0x42d4 mouse_pka8g2_sensor_motion_1
+0x42d5 mouse_p8009_sensor_motion
+0x42e0 mouse_sensor_set_angle
+0x42ea mouse_sensor_switch_angle
+0x42ed mouse_motion_6clk_direction_dispose
+0x42f1 mouse_motion_12clk_direction_dispose
+0x42f5 mouse_motion_9clk_direction_dispose
+0x42fd mouse_motion_3clk_direction_dispose
+0x42ff mouse_sensor_data_swap_places
+0x4304 mouse_clear_sensor_data
+0x4308 mouse_clear_sensor_data_by_reset
+0x430a mouse_init_sensor_reset
+0x430b mouse_data_xy_release
+0x4313 mouse_data_extsign
+0x4317 mouse_data_extsign_bit3
+0x431b mouse_read_sensor_common
+0x4322 mouse_sensor_sdio_low
+0x4329 mouse_set_sdio_high
+0x432b mouse_buletooth_fast_conn_init
+0x432f mouse_ble_fast_conn_init
+0x4334 mouse_bt_fast_conn_init
+0x4338 mouse_buletooth_fast_conn_end
+0x433f mouse_device1_check_auto_discover
+0x4341 mouse_device2_check_auto_discover
+0x4342 mouse_device_check_auto_discover
+0x4346 mouse_bt_fast_conn_send_device_name
+0x4354 mouse_bluetooth_fast_conn_disable
+0x4356 mouse_stop_bluetooth_mode
+0x435b mouse_disconnect
+0x4362 mouse_cancel_reconnect
+0x4364 mouse_check_125hz
+0x4366 mouse_bluetooth_125hz
+0x436c mouse_bluetooth_125hz_clear
+0x436f mouse_current_mult_update
+0x4374 mouse_priority_bb_event
+0x4390 mouse_le_bb_event_connected
+0x4397 mouse_le_bb_event_connected_next
+0x439f mouse_le_bb_disconnected
+0x43a4 mouse_le_bb_disconnected_next
+0x43aa mouse_le_pairing_success
+0x43ac mouse_le_enc_info
+0x43ac mouse_updata_le_param
+0x43ae mouse_le_ll_start_encryt
+0x43b1 mouse_le_ll_reconn_start_encryt
+0x43b3 mouse_le_ll_enable_start_enc_flag
+0x43b5 mouse_le_enable_connect_flag
+0x43b9 mouse_le_pairing_complete
+0x43ba mouse_le_conn_param_update_rsp_recieved
+0x43c4 mouse_le_conn_param_lpm_disable
+0x43c6 mouse_le_conn_param_lpm_enable
+0x43c8 mouse_le_bb_event_connect_complete
+0x43ce mouse_le_write_enable
+0x43d0 mouse_le_parse_conn_param_accepted
+0x43da mouse_le_lpm_mult_reinit
+0x43dd mouse_le_clean_connect_flag
+0x43df mouse_le
+0x43e7 mouse_le_next
+0x43f8 mouse_le_send_mouse_data
+0x43f9 mouse_le_send_keyboard_package_data
+0x43fc mouse_fill_keyboard_package_data_le
+0x4403 mouse_le_release_keyboard_data
+0x4405 mouse_fill_multimedia_key_data_le
+0x4408 mouse_fill_systemctrl_key_data_le
+0x440b mouse_fill_battery_level_le
+0x4411 mouse_le_send_empty_packet
+0x4413 mouse_fill_mouse_data_le
+0x4418 mouse_fill_data_le
+0x441f mouse_check_51cmd_adv
+0x4428 mouse_le_check_adv_flag
+0x4429 mouse_le_check_adv_flag_loop
+0x442f mouse_le_adv_data_update
+0x4433 mouse_bt_sniff_param_interval_setup
+0x443a mouse_bb_event_connected
+0x443e mouse_bb_disconnected
+0x4449 mouse_bb_discon_clear_stack
+0x4450 mouse4_0_event_bb_disconn
+0x4454 mouse_event_light_state_pairing
+0x4457 mouse_event_light_state_hibernate
+0x4461 mouse_bt_event_setup_complete
+0x4462 mouse_bt_send_first_package_timer_init
+0x4464 mouse_bt_hid_handshake
+0x446c mouse_bt_hid_handshake_boot_check
+0x4472 mouse_bb_event_reconn_timeout
+0x4472 mouse_bb_event_reconn_failed
+0x447d mouse_enter_sniff_check
+0x4483 mouse_sniff_not_accept
+0x448a mouse_bb_event_pincode
+0x448c mouse_irtual_cable_unplug
+0x4490 mouse_irtual_cable_unplug1
+0x4497 mouse_bt
+0x44b4 mouse_send_data
+0x44bd mouse_send_data_boot_mode
+0x44ce mouse_send_empty_data
+0x44d1 mouse_bt_send_keyboard_packet
+0x44d4 mouse_bt_send_keyboard_data
+0x44e1 mouse_bt_send_multimedia_key_data
+0x44ea mouse_bt_send_systemctrl_key_data
+0x44f3 mouse_bt_release_keyboard_data
+0x44f5 mouse_bb_event_timer
+0x450c mouse_bt_discovery_check
+0x450f mouse_bt_discovery_by_pb_button
+0x4514 mouse_long_button_bt_discovery
+0x451c mouse_commbination_key_process
+0x4522 mouse_24g_commbination_key_process
+0x4525 mouse_commbination_key_start
+0x452b mouse_commbination_key_up
+0x4531 mouse_commbination_key_down
+0x4536 mouse_combination_ui_timer
+0x453f mouse_check_discovery_timeout_timer
+0x4542 mouse_check_discovery_timeout
+0x4544 mouse_check_direct_timeout_timer
+0x454a mouse_check_direct_timeout
+0x4552 mouse_le_enable_att_list_timer
+0x4555 mouse_le_send_smp_security_request_timer
+0x455a mouse_le_pairing_sm_start_check
+0x455f mouse_le_battery_updata_timer
+0x4562 mouse_le_battery_level_updata
+0x4565 mouse_le_enable_att_list
+0x456a mouse_check_hid_handshake_timer
+0x456d mouse_bt_check_sniff_req_timeout_timer
+0x4570 mouse_bt_send_first_package
+0x4572 mouse_check_reconnect_delay_long_sleep
+0x4575 mouse_current_mult_update_timer
+0x4578 mouse_current_mult_reinit
+0x457c mouse_check_no_data_timeout_timer
+0x4581 mouse_check_no_data_timeout
+0x4584 mouse_no_data_timer_init
+0x4587 mouse_store_information_delay_timer
+0x458a mouse_store_device_info_check
+0x458e mouse_bb_event_discovery_btn
+0x4593 mouse_start_discovery
+0x459f mouse_start_discovery_norandom
+0x45b6 mouse_stop_discovery
+0x45c1 mouse_stop_le_adv
+0x45c3 mouse_stop_bt3_discovery
+0x45c6 mouse_store_remote_bdaddr
+0x45cd mouse_unplug_clean_bdaddr
+0x45cf mouse_check_device_addr
+0x45d3 mouse_check_le_device_addr
+0x45d6 mouse_check_bt_device_addr
+0x45d8 mouse_check_bt_device_addr_common
+0x45dc mouse_check_device_addr_end
+0x45e2 mouse_before_store_reconn_info
+0x45ec mouse_store_le_device
+0x45f3 mouse_store_bt_device
+0x45f7 mouse_clean_addr
+0x45fd mouse_select_reconn_device
+0x4608 mouse_load_bt_device
+0x4609 mouse_load_bt_device_end
+0x460d mouse_load_le_device
+0x460e mouse_load_le_device_end
+0x4614 mouse_app_initflag_check
+0x4622 mouse_load_device_info
+0x4627 mouse_ble_init_address
+0x462e mouse_store_device_info_delay
+0x4631 mouse_store_device_info
+0x4636 mouse_load_flash_info_check
+0x463d mouse_information_flash_parameters
+0x4643 mouse_store_flash_device_info
+0x464a mouse_spid_flash_release_form_powerdown
+0x464b mouse_spid_write_flash_cmd
+0x4651 mouse_spid_flash_powerdown
+0x4653 mouse_spid_write_flash_cmd_common
+0x465f mouse_flash_erase_sector
+0x4662 mouse_spid_write_flash
+0x466d mouse_flash_power_down
+0x4675 mouse_load_eeprom_info_check
+0x467b mouse_eeprom_load_recon_info
+0x467f mouse_store_eeprom_device_info
+0x4683 mouse_store_eerpom_dpi
+0x4687 mouse_load_eeprom_dpi
+0x468b mouse_idle
+0x4693 mouse_select_device_check
+0x4697 mouse_select_device_by_pb_button_check_once
+0x4698 mouse_select_device_by_pb_button
+0x46a2 mouse_select_device_by_pb_button_exit
+0x46a5 mouse_3io6key_pb_button_check_end
+0x46a8 mouse_pb_button_check
+0x46b1 mouse_select_device_by_pb_button_end
+0x46b4 mouse_pb_button_connect_gnd
+0x46b6 mouse_pb_button_connect_matrix
+0x46be mouse_select_device_button_up
+0x46c9 mouse_select_device_button_down
+0x46d5 mouse_select_device_ghost_check
+0x46de mouse_check_select_device_by_switch
+0x46e2 mouse_check_select_device_by_switch_gpio
+0x46e7 mouse_select_btdevice
+0x46eb mouse_check_select_24gdevice
+0x46ef mouse_check_select_24g_device
+0x46f3 mouse_ready_reconnection_by_button
+0x46f8 mouse_store_device_number_before_reset
+0x46fe mouse_soft_reset
+0x4700 mouse_select_device_number
+0x4707 mouse_select_device_number_24g
+0x470c mouse_select_device_count_clean_24g
+0x470e mouse_select_device_count_clean_bt
+0x4710 mouse_store_device_number2eeprom
+0x4714 mouse_bt_button_check
+0x4718 mouse_select_device_enable
+0x471a mouse_select_device_disable
+0x471c mouse_bt_cannel_reconn_enable
+0x471e mouse_bt_cannel_reconn_disable
+0x4720 mouse_bt_discovery_button_down_enable
+0x4722 mouse_bt_discovery_button_down_disable
+0x4724 mouse_adc_read_enable
+0x4726 mouse_24g_set_250hz
+0x4728 mouse_24g_search_dongle_enable
+0x472a mouse_16m_enable
+0x472c mouse_dpi_4level_enable
+0x472e mouse_enable_function_flag
+0x4732 mouse_disable_function_flag
+0x4736 mouse_customer_key_enable
+0x4741 mouse_customer_standrad_key_set
+0x4743 mouse_customer_key_ctrl_alt_a
+0x4745 mouse_customer_ac_home
+0x4746 mouse_customer_media_key_set
+0x474a mouse_customer_key_play
+0x474c mouse_polling_device
+0x4758 mouse_drawing_optima
+0x4766 mouse_drawing_optima_init
+0x476b mouse_drawing_optima_modify
+0x477f mouse_drawing_optima_xy_offset_modify
+0x4792 mouse_pre_xy_data_judge
+0x4795 mouse_pre_xy_pdata_offset
+0x4798 mouse_xy_data_offset_new
+0x479a mouse_pre_xy_ndata_offset
+0x47a0 mouse_current_xy_data_judge
+0x47a3 mouse_current_xy_pdata_offset
+0x47a7 mouse_current_xy_ndata_offset
+0x47ad mouse_pre_xy_get_0_4_times
+0x47b2 mouse_current_xy_get_0_6_times
+0x47b7 mouse_drawing_optima_data_x
+0x47bf mouse_drawing_optima_data_y
+0x47c7 mouse_drawing_optima_data
+0x47cd mouse_data_store_pre
+0x47d1 mouse_data_sum_overflow
+0x47d5 mouse_data_sum_overflow_p
+0x47d8 mouse_data_sum_n
+0x47de mouse_data_set_direction
+0x47e1 mouse_data_zero
+0x47e3 mouse_pdata_get_half
+0x47e5 mouse_pdata_get_new_value
+0x47e9 mouse_pdata_invert
+0x47ea mouse_rega_in_out
+0x47ed mouse_disable_asm
+0x47ef mouse_enable_asm
+0x47f1 mouse_pdata_greater_than_check
+0x47f6 mouse_data_less_than_check
+0x47fb mouse_data_abs_check
+0x4802 mouse_data_abs
+0x4806 mouse_data_abs_store
+0x4808 mouse_data_reversal
+0x480b mouse_24g_long_sleep_param_update_timer
+0x480e mouse_24g_long_sleep_normal_param
+0x4812 mouse_24g_long_sleep_set
+0x4817 mouse_24g_long_sleep_set_80ms
+0x4818 mouse_24g_long_sleep_set_end
+0x481a mouse_24g_long_sleep_set_30ms
+0x481c mouse_24g_long_sleep_set_50ms
+0x481e mouse_24g_long_sleep_set_100ms
+0x4820 mouse_24g_hibernate_set
+0x482a mouse_wakeup_24g
+0x482e mouse_24g_transmit_start
+0x4831 mouse_24g_stop
+0x4835 mouse_24g_start_mode
+0x4842 mouse_24g_mode_setup_error
+0x4845 mouse_24g_reconn_dongle_start
+0x4849 mouse_24g_first_start_auto_pair_mode
+0x484b mouse_24g_reconn_general_dongle
+0x4850 mouse_24g_start_auto_pair
+0x4855 mouse_24g_first_start_reconn
+0x4859 mouse_24g_first_bluetooth_reconnect
+0x485e mouse_24g_first_bb_event_reconn_timeout
+0x4861 mouse_24g_first_store_reconn_info
+0x4866 mouse_24g_start_pair_mode
+0x486d mouse_24g_pair_mode_check
+0x4872 mouse_24g_attempt_fail
+0x4878 mouse_24g_attempt_fail_enter_hibernate
+0x487f mouse_24g_fast_conn_attempt_fail
+0x4883 mouse_24g_auto_pair_attempt_fail
+0x4888 mouse_reconn_dongle_attempt_fail
+0x488d mouse_24g_attempt_success
+0x4896 mouse_24g_pairing_complete
+0x48a5 mouse_24g_package_data
+0x48ac mouse_24g_mouse_package_data
+0x48bb mouse_24g_mouse_package_data_now
+0x48c1 mouse_24g_keyboard_package_data
+0x48c7 mouse_customer_key_press
+0x48c9 mouse_24g_search_dongle_init
+0x48cc mouse_24g_search_dongle
+0x48d8 mouse_24g_search_dongle_loop
+0x48e3 mouse_24g_search_dongle_loop_end
+0x48e9 mouse_24g_search_dongle_loop_retry
+0x48eb mouse_24g_search_dongle_check
+0x48f2 mouse_24g_search_dongle_success
+0x48fb mouse_g24_ackpayload_parse
+0x4902 mouse_24g_before_lpm_sleep
+0x4906 mouse_peripheral_clock_off
+0x490b mouse_device_poweron_timer
+0x4913 mouse_device_poweron_timer_init
+0x4919 mouse_discover_setting_led_gpio
+0x491d mouse_setting_led_gpio_comman
+0x4922 mouse_device_led_24g
+0x4924 mouse_device_led_bt1
+0x4926 mouse_device_led_bt2
+0x4927 mouse_led_blink
+0x492e mouse_dpi_led_blink_delay
+0x493c mouse_dpi_led_blink_delay_timer
+0x493f mouse_dpi_led_blink_init
+0x494c mouse_dpi_led_blink_init_end
+0x494f mouse_dpi_led_blink_count_clean
+0x4951 mouse_check_dpi_blink
+0x495b mouse_device_led_all_off
+0x495f mouse_device_led_off
+0x4964 mouse_device_24g_led_off
+0x4967 mouse_device_bt1_led_off
+0x4969 mouse_device_bt2_led_off
+0x496b mouse_dpi_led_off
+0x496d mouse_device_led_on
+0x4972 mouse_device_24g_led_on
+0x4974 mouse_device_bt1_led_on
+0x4976 mouse_device_bt2_led_on
+0x4978 mouse_led_off
+0x497c mouse_led_on
+0x4980 mouse_ui_led_off_static
+0x498c mouse_ui_led_on_static
+0x4990 mouse_check_bt2_led_off
+0x4994 mouse_check_dpi_led_off
+0x4998 mouse_check_low_v_led_off
+0x499b mouse_check_1gpio_2led_off
+0x499f mouse_clear_24g_led_statue
+0x49a1 mouse_set_24g_led_statue
+0x49a3 mouse_low_voltage_led_timer
+0x49bb mouse_adc_low_volatage_led_timer_count_clean
+0x49bd mouse_low_voltage_led_on
+0x49c3 mouse_low_voltage_led_off
+0x49c9 mouse_low_voltage_led_blink_new_data
+0x49d3 mouse_low_voltage_led_blink_init
+0x49db mouse_low_voltage_led_blink_disable
+0x49dd mouse_low_voltage_led_no_enter_lpm
+0x49e4 mouse_low_voltage_led_no_enter_lpm_next
+0x49e8 g24_transmit_by_interrupt_exit_check
+0x49eb mouse_lpm_mode_clear
+0x49ef mouse_low_voltage_led_no_enter_lpm_blink
+0x49f2 mouse_store_signal_rssi
+0x49f5 mouse_le_transmit
+0x49f7 mouse_bt_slave_match
+0x4a00 mouse_le_set_lpm_mult
+0x4a05 mouse_bt_set_lpm_mult
+0x4a0a mouse_set_lpm_mult
+0x4a0d remote_car_init
+0x4a28 remote_car_soft_switch_power_on_init
+0x4a2f remote_car_hard_switch_power_on_signal
+0x4a30 remote_car_soft_switch_power_on_signal
+0x4a3c remote_car_set_24g_addr_eeprom
+0x4a40 remote_car_power_off_signal
+0x4a40 remote_car_ui_led_init
+0x4a43 remote_car_ui_led_init_1
+0x4a45 remote_car_pairing_led_gpio_set
+0x4a47 remote_car_init_environment
+0x4a48 remote_no_data_timer_init
+0x4a4b remote_car_le_before_hibernate
+0x4a4c remote_gpio_set_before_hibernate
+0x4a50 remote_car_process_lpm_before
+0x4a52 remote_car_key_scan_process
+0x4a56 remote_conn_led_state
+0x4a5d remote_car_stop_state
+0x4a63 get_remote_key_state
+0x4a71 send_data
+0x4a77 remote_car_no_data_timeout_check
+0x4a81 remote_car_fb_check
+0x4a86 remote_car_lr_check
+0x4a8b remote_car_scale_process_idle
+0x4a8d remote_car_scale_process_bb_event
+0x4a94 remote_car_24g_attempt_fail
+0x4a95 remote_car_24g_pairing_complete
+0x4a97 remote_car_24g_attempt_success
+0x4a9b remote_car_24g_status_process
+0x4aa0 remote_car_scale_process_paired
+0x4aa2 remote_car_scale_process_shutdown
+0x4aa6 remote_car_event_timer
+0x4aaa remote_car_no_data_timer
+0x4ab1 remote_car_send_motor1_key0_press
+0x4ab3 remote_car_send_motor1_key1_press
+0x4ab5 remote_car_send_motor2_key2_press
+0x4ab7 remote_car_send_motor2_key3_press
+0x4ab9 remote_car_send_motor1_key0_rel
+0x4ab9 remote_car_send_motor1_key1_rel
+0x4abb remote_car_send_motor2_key2_rel
+0x4abb remote_car_send_motor2_key3_rel
+0x4abd remote_car_send_key
+0x4abf remote_car_send_attack
+0x4ac1 remote_car_g24_package_data
+0x4ac6 remote_car_g24_package_data_continue
+0x4acb remote_car_g24_send_empty
+0x4ad0 remote_car_moto_data
+0x4ad4 remote_car_moto_data_next
+0x4adb remote_car_moto_data_enable_user
+0x4add remote_car_default_init
+0x4b23 shutter_init
+0x4b48 shutter_set_ble_version
+0x4b4a shutter_hart_swtich_power_on
+0x4b4d shutter_le_scale_lpm_lock
+0x4b53 shutter_process_bb_event
+0x4b5c ble_shutter_process_baseband_connect
+0x4b60 ble_shutter_process_baseband_disconnect
+0x4b63 ble_shutter_process_reconnect_complete
+0x4b69 ble_shutter_process_parse_connect_parameter_update_response
+0x4b6f shutter_process_soft_swtich_button_long_press
+0x4b70 shutter_process_soft_swtich_button_down
+0x4b76 shutter_store_currenct_led_state
+0x4b7b shutter_process_soft_swtich_button_up
+0x4b80 shutter_load_currenct_led_state
+0x4b8a shutter_le_bb_event_timer
+0x4b8d shutter_check_sleep_timer
+0x4b90 shutter_sleep_timeout
+0x4b94 shutter_check_power_off_timer
+0x4b97 shutter_check_power_off_timeout
+0x4b9f ble_shutter_reconn_timer
+0x4ba4 shutter_process_idle
+0x4ba6 shutter_process_lpm_before
+0x4ba8 shutter_le_before_hibernate
+0x4baa shutter_stop_bluetooth_discovery
+0x4bad ble_shutter_stop_bluetooth_discovery
+0x4bb1 shutter_start_bluetooth_discovery
+0x4bb6 ble_shutter_start_discovery
+0x4bc3 shutter_start_reconnect
+0x4bc8 ble_shutter_start_reconnect
+0x4bd4 shutter_disconnect_current_connection
+0x4bd7 shutter_check_data_enable
+0x4bdb shutter_check_ble_data_enable
+0x4bde shutter_check_bluetooth_conn
+0x4be3 shutter_change_bluetooth_status_bt_disconn
+0x4be6 ble_shutter_change_bluetooth_status_bt_disconn
+0x4be7 shutter_check_send_data
+0x4bf0 shutter_key_change
+0x4bf4 shutter_key_press
+0x4bf7 shutter_key_release
+0x4bf9 push_queue_press_or_release
+0x4bfc push_buffer_in_queue
+0x4c01 shutter_send_data_to_master
+0x4c04 pop_queue_to_ble_data
+0x4c0d queue_push_one_byte
+0x4c10 queue_pop_one_byte
+0x4c15 ble_shutter_receive_data
+0x4c18 shutter_init_param
+0x4c25 shutter_load_buffer_config_form_datarom
+0x4c29 shutter_load_ble_gatt_form_datarom
+0x4c2c shutter_soft_swtich_power_on
+0x4c2d shutter_soft_swtich_power_off
+0x4c31 shutter_wait_power_off
+0x4c34 ui_soft_swtich_init
+0x4c3c ui_soft_swtich_init_power_on_time
+0x4c41 ui_soft_switch_botton_up
+0x4c45 ui_soft_switch_botton_long_press
+0x4c48 ui_soft_switch_power_on
+0x4c50 ui_soft_switch_power_off
+0x4c56 shutter_ble_adv_interval_set
+0x4c5a le_send_notify_from_list
+0x4c62 shutter_default_init
+0x4d02 rf_debug_rx_gpio_low
+0x4d03 rf_debug_gpio_low
+0x4d05 rf_debug_rx_on_line
+0x4d05 rf_debug_rx_gpio_high
+0x4d06 rf_debug_gpio_high
+0x4d08 rf_debug_rx_gpio_h_l_h
+0x4d09 rf_debug_rx_gpio_l_h
+0x4d0b rf_debug_rx_gpio_l_h_l
+0x4d0b rf_debug_shutdown_radio_line
+0x4d0c rf_debug_rx_crc_line
+0x4d0d rf_debug_rx_sync_line
+0x4d0e rf_debug_rx_crc_fail_line
+0x4d10 rf_debug_rx_crc_error_line
+0x4d10 rf_debug_rx_sync_timeout_line
+0x4d11 rf_debug_tx_off_line
+0x4d11 rf_debug_tx_gpio_low
+0x4d13 rf_debug_tx_on_line
+0x4d13 rf_debug_tx_gpio_high
+0x4d15 rf_debug_tx_gpio_l_h_l
+0x4d18 hci_init
+0x4d20 hci_process_loop
+0x4d22 hci_init_clksel
+0x4d24 hci_init_clksel_dpll
+0x4d2a hci_init_clksel_xtal
+0x4d2c hci_init_uart_default_config
+0x4d30 hci_init_uart_default_config_tx
+0x4d34 hci_init_uart_default_config_rx
+0x4d38 hci_init_uart_default_config_rts
+0x4d3c hci_init_uart_default_config_cts
+0x4d40 hci_init_uart_config
+0x4d5f hci_init_pwm_default_config
+0x4d63 hci_init_pwm
+0x4d6e hci_process_check_uart_rx
+0x4d76 hci_parse_packet_cmd
+0x4d84 hci_parse_complete_packet
+0x4d87 hci_parse_packet_cmd_ogf_vendorspecific_debug
+0x4d92 phci_grp_vendor_chipid
+0x4d97 phci_grp_vendor_baud
+0x4d9a phci_grp_vendor_patch_common
+0x4da5 phci_grp_vendor_patch
+0x4da6 phci_grp_vendor_patch_loop
+0x4daa phci_grp_vendor_patch_check_sum
+0x4daf phci_grp_vendor_done
+0x4db2 phci_grp_vendor_done_loop
+0x4dbe phci_grp_vendor_patch_bad
+0x4dc0 phci_grp_vendor_mem
+0x4dc6 phci_grp_vendor_flow_control
+0x4dca hci_normal_reply
+0x4dcb hci_send_event_command_complete_error_command_nuknown
+0x4dcd hci_send_event_command_complete_error_command_disallowed
+0x4dcf hci_send_event_command_complete_without_payload
+0x4dd2 hci_send_event_command_complete
+0x4ddb hci_prepare_send_event
+0x4ddf hci_drop_current_packet
+0x4de4 cmd_exit
+0x4de6 cmd_check_plap
+0x4dea hid_rx_process
+0x4df7 hid_rx_process_hid_control
+0x4dfb hid_rx_process_virtual_cable_unplug
+0x4e02 hid_rx_process_suspend
+0x4e03 hid_rx_process_set_report
+0x4e0b hid_rx_process_handshake
+0x4e1a hid_rx_process_data
+0x4e1d hid_rx_process_data_hid_kb
+0x4e1e hid_malloc_tx_buff
+0x4e25 l2cap_init
+0x4e26 l2cap_init_work
+0x4e2a l2cap_init_wake
+0x4e34 process_rx_l2cap_pkt
+0x4e40 l2cap_rx_multiplexing
+0x4e45 l2cap_rx_multiplexing0
+0x4e4a l2cap_check_map
+0x4e56 l2cap_call_proc_signal
+0x4e58 l2cap_call_proc_signal0
+0x4e62 l2cap_call_proc_sigal_pending
+0x4e70 l2cap_sdp_conn_succ
+0x4e7c l2cap_reset_sdp_map
+0x4e8b check_l2cap_map
+0x4e8d check_l2cap_map_loop
+0x4e92 check_l2cap_map_used
+0x4e96 check_l2cap_map_used2
+0x4e98 l2cap_call_proc_sdp
+0x4ea2 ml2cap_call_proc_sdp
+0x4ea8 l2cap_call_proc_sdp_common
+0x4eaf l2cap_call_proc_hid
+0x4eb1 l2cap_call_proc_rfcomm
+0x4eb7 l2cap_call_proc_no_reply
+0x4eb8 l2cap_rx_reset_state
+0x4ebd l2cap_process_signal_pkt
+0x4ec4 l2cap_process_signal_pkt_loop
+0x4ecc l2cap_process_one_signal
+0x4eda l2cap_process_one_signal_rtn
+0x4edb l2cap_proc_signal_info_req
+0x4ee6 l2cap_proc_signal_info_req_reply
+0x4ee9 l2cap_proc_signal_info_req_ext
+0x4eef l2cap_proc_signal_info_req_fix
+0x4ef4 l2cap_proc_signal_info_req_common
+0x4ef6 ml2cap_proc_signal_info_req
+0x4f05 l2cap_proc_signal_cmd_reject
+0x4f0c l2cap_proc_signal_cmd_reject_rtn
+0x4f0d l2cap_proc_signal_connect_req
+0x4f20 l2cap_proc_signal_connect_req_sdp
+0x4f2a store_l2cap_req_param
+0x4f36 restore_l2cap_req_param
+0x4f42 l2cap_proc_signal_connect_req_rfcomm
+0x4f4e l2cap_proc_signal_connect_req_hid_ctrl
+0x4f59 l2cap_proc_signal_connect_req_hid_int
+0x4f65 send_connection_pending
+0x4f69 send_connection_sdp_res
+0x4f6d send_connection_res
+0x4f6f send_connection_res0
+0x4f80 connect_suc
+0x4f85 connect_pending
+0x4f8a already_connected
+0x4f8c connect_req_update_byte_counts
+0x4f90 l2cap_proc_signal_connect_req_rtn
+0x4f91 l2cap_proc_signal_connect_rsp
+0x4fa9 l2cap_proc_signal_connect_rsp_sdp
+0x4faf l2cap_proc_signal_connect_rsp_rfcomm
+0x4fb5 l2cap_proc_signal_connect_rsp_hid_int
+0x4fbb l2cap_proc_signal_connect_rsp_hid_ctrl
+0x4fc1 l2cap_proc_signal_config_req
+0x4fd8 l2cap_proc_signal_config_req_sdp
+0x4fe2 l2cap_proc_signal_config_req_hid_ctrl
+0x4fec l2cap_proc_signal_config_req_hid_int
+0x4ff6 l2cap_proc_signal_config_req_rfcomm
+0x4fff l2cap_send_config_rsp
+0x5015 l2cap_send_config_rsp_is_sdp
+0x5016 l2cap_check_channel_state
+0x5020 l2cap_send_config_req
+0x5020 l2cap_send_config_req_sdp
+0x5027 l2cap_send_config_req_rfcomm
+0x502e l2cap_send_config_req_hid_ctrl
+0x5035 l2cap_send_config_req_hid_int
+0x503b l2cap_generate_config_req
+0x5053 l2cap_generate_config_req_rfcomm
+0x5055 l2cap_generate_config_req_done
+0x505d l2cap_proc_signal_config_req_rtn
+0x505e l2cap_proc_signal_config_rsp
+0x5076 l2cap_proc_signal_config_rsp_sdp
+0x507a l2cap_proc_signal_config_rsp_rfcomm
+0x507e l2cap_proc_signal_config_rsp_hid_ctrl
+0x5082 l2cap_proc_signal_config_rsp_hid_int
+0x5087 l2cap_proc_signal_disconnect_req
+0x50a2 l2cap_proc_signal_disconnect_req_hid_ctrl
+0x50a8 l2cap_proc_signal_disconnect_req_hid_int
+0x50ae l2cap_proc_signal_disconnect_req_sdp
+0x50b4 l2cap_disconnect_hid_control_now
+0x50b6 l2cap_disconnect_hid_interrupt_now
+0x50ba l2cap_disconnect_sdp_now
+0x50be l2cap_proc_signal_disconnect_req_rfcomm
+0x50c4 l2cap_disconnect_rfcomm_now
+0x50c6 l2cap_send_disconnect_rsp_pkt
+0x50d3 l2cap_proc_signal_disconnect_req_err_rtn
+0x50d5 l2cap_proc_signal_disconnect_req_rtn
+0x50d7 l2cap_proc_signal_disconnect_rsp
+0x50f1 l2cap_proc_signal_disconnect_rsp_sdp
+0x50f7 l2cap_proc_signal_disconnect_rsp_rfcomm
+0x50fd l2cap_proc_signal_disconnect_rsp_hid_ctrl
+0x5103 l2cap_proc_signal_disconnect_rsp_hid_int
+0x5109 l2cap_proc_signal_disconnect_rsp_rtn
+0x510b l2cap_proc_signal_disconnect_rsp_err_rtn
+0x510c l2cap_proc_signal_echo_req
+0x511c l2cap_proc_signal_echo_rsp
+0x511d l2cap_proc_signal_info_rsp
+0x511e l2cap_reject_command
+0x512b l2cap_reset_rfcomm_channel_state
+0x5130 l2cap_reset_sdp_channel_state
+0x5135 l2cap_reset_hid_ctrl_state
+0x513b l2cap_reset_hid_int_state
+0x5141 l2cap_reset_hid_disconnected
+0x5143 l2cap_disconnect_interrupt_req
+0x514d l2cap_disconnect_control_req
+0x5156 l2cap_generate_disconnect_req
+0x5164 ml2cap_send_signal_connect_req
+0x5173 ml2cap_send_signal_config_req
+0x5188 ml2cap_send_signal_disconn_req
+0x519a ml2cap_send_signal
+0x51a3 msdp_send_req_done
+0x51ab ml2cap_rx_multiplexing
+0x51b5 ml2cap_call_proc_signal
+0x51bd ml2cap_proc_one_comm_loop
+0x51c3 ml2cap_proc_one_comm
+0x51ce ml2cap_proc_signal_connect_req
+0x51d1 ml2cap_proc_signal_cmd_reject
+0x51d7 mvptr
+0x51db ml2cap_proc_signal_connect_rsp
+0x51e9 ml2cap_proc_signal_connect_refused_result
+0x51eb ml2cap_proc_signal_connect_rsp_mnosucc
+0x51ed ml2cap_proc_signal_connect_rsp_sucessful
+0x51fc ml2cap_proc_signal_connect_rsp_sdp
+0x5202 ml2cap_proc_signal_connect_rsp_rfcomm
+0x5208 ml2cap_proc_signal_connect_rsp_hid_ctrl
+0x520e ml2cap_proc_signal_connect_rsp_hid_int
+0x5213 mnosucc1
+0x5214 mnosucc
+0x5217 ml2cap_proc_signal_config_rsp
+0x5231 ml2cap_proc_signal_config_rsp_sdp
+0x5235 ml2cap_proc_signal_config_rsp_rfcomm
+0x5239 ml2cap_proc_signal_config_rsp_hid_ctrl
+0x523d ml2cap_proc_signal_config_rsp_hid_int
+0x5242 mcfrsdone
+0x5243 mcrsdone1
+0x5244 mloop2
+0x5248 mcrsdone
+0x5249 ml2cap_proc_signal_config_req
+0x5268 ml2cap_proc_signal_config_req_sdp
+0x5276 ml2cap_proc_signal_config_req_sdp_nsndreq
+0x5279 ml2cap_proc_signal_config_req_rfcomm
+0x527f ml2cap_proc_signal_config_req_hid_ctrl
+0x5285 ml2cap_proc_signal_config_req_hid_int
+0x528a mcfgrq_done
+0x5295 mloop1
+0x529b mcrqdone
+0x529c ml2cap_proc_signal_disconn_req
+0x52b5 ml2cap_proc_signal_disconn_sdp
+0x52ba ml2cap_proc_signal_disconn_hid_ctrl
+0x52bc ml2cap_proc_signal_disconn_hid_int
+0x52be mclsrfc
+0x52c0 mclssdp
+0x52ce ml2cap_proc_signal_disconn_rsp
+0x52e2 ml2cap_proc_signal_disconn_rsp_sdp
+0x52e5 ml2cap_proc_signal_disconn_rsp_rfcomm
+0x52e5 mdisdone
+0x52e9 ml2cap_proc_send_reject
+0x52f5 l2cap_get_req_id
+0x52f9 l2cap_get_req_id_ok
+0x52fb l2cap_malloc
+0x52fb bt_l2cap_malloc
+0x52ff ble_l2cap_malloc
+0x5303 host_l2cap_malloc
+0x5308 host_l2cap_malloc_loop
+0x5310 host_l2cap_malloc_next_buffer
+0x5314 host_l2cap_malloc_succ
+0x5317 host_l2cap_malloc_check_buffer_enough
+0x531b host_l2cap_malloc_check_buffer_enough_loop
+0x5328 host_l2cap_malloc_check_buffer_enough_end
+0x532d host_l2cap_malloc_into_fifo
+0x5336 host_l2cap_malloc_into_fifo_no_push
+0x5339 l2cap_malloc_fifo_out
+0x533e l2cap_malloc_free
+0x5345 l2cap_malloc_discard
+0x534f l2cap_malloc_is_fifo_full
+0x5352 l2cap_malloc_is_fifo_nearly_full
+0x5355 l2cap_malloc_is_fifo_empty
+0x5358 l2cap_malloc_fifo_get_first_ptr
+0x535b l2cap_malloc_free_loop
+0x535d l2cap_malloc_fifo_get_first_ptr_empty
+0x535f l2cap_malloc_get_full_map
+0x5363 l2cap_malloc_get_full_map_loop
+0x5369 l2cap_malloc_signal_channel
+0x5372 l2cap_get_signal_tx_buff
+0x5374 l2cap_get_signal_tx_payload
+0x5376 l2cap_malloc_sdp_channel
+0x537f l2cap_get_sdp_tx_buff
+0x5381 l2cap_get_sdp_tx_payload
+0x5383 l2cap_malloc_rfcomm_channel
+0x5391 l2cap_get_rfcomm_tx_buff
+0x5393 l2cap_util_pdata_to_contw
+0x5396 l2cap_lpm_save_calc_len
+0x539a l2cap_lpm_save_calc_len_loop
+0x53a6 l2cap_lpm_save_calc_len_end
+0x53a8 l2cap_lpm_get_wake_lock
+0x53aa l2cap_lpm_put_wake_lock
+0x53ac l2cap_lpm_save_txbuf
+0x53b7 l2cap_lpm_save_txbuf_loop
+0x53c0 l2cap_lpm_save_txbuf_nempty
+0x53c9 l2cap_lpm_load_txbuf
+0x53d0 l2cap_lpm_load_txbuf_loop
+0x53df init_lmp
+0x53e0 init_lmp_work
+0x53ee init_lmp_reinit
+0x53f1 parse_rx_done
+0x53f2 parse_lmp
+0x543e reject_unknown_packet
+0x543f reject_lmp_packet
+0x5441 parse_quality_of_server_req
+0x5442 parse_quality_of_server
+0x5443 parse_lmp_clkoffset_req
+0x5445 parse_enc_key_size_mask_req
+0x5447 parse_lmp_set_afh
+0x5454 parse_lmp_escape
+0x5466 reject_unknown_ext_packet
+0x5469 parse_lmpext_ping_req
+0x546b parse_lmpext_chn_classification_req
+0x546e parse_lmpext_iocap_req
+0x5471 parse_lmpext_iocap_res
+0x5473 iocap_lmpext_load
+0x5477 iocap_lmpext_common
+0x5479 parse_lmpext_accepted
+0x547e parse_lmpext_not_accepted
+0x5483 parse_lmpext_accepted_ptt
+0x5487 parse_lmpext_not_accepted_ptt
+0x548d parse_lmpext_pause_encrypt
+0x5490 parse_lmpext_pause_encrypt_slave
+0x5492 parse_lmpext_resume_encrypt
+0x5494 parse_lmpext_features_req
+0x5499 parse_lmpext_features_req_page1
+0x549e parse_lmpext_features_req_page2
+0x54a3 remote_support_br_sc_controller
+0x54ac remote_not_support_br_sc_controller
+0x54ae set_remote_br_sc_support
+0x54b0 remote_support_br_sc_host
+0x54b3 remote_not_support_br_sc_host
+0x54b6 parse_lmpext_features_res
+0x54bc parse_lmpext_features_res_not_hci
+0x54c0 parse_lmp_accepted
+0x54d1 parse_lmp_not_accepted
+0x54de parse_lmp_accepted_switch
+0x54e1 parse_lmp_not_accepted_switch
+0x54e7 parse_lmp_accepted_hostconn
+0x54ed parse_lmp_accepted_hostconn_ctn
+0x54f1 parse_lmp_not_accepted_hostconn
+0x54f6 parse_lmp_accepted_inrand
+0x54fd parse_lmp_accepted_enc_mode
+0x5503 parse_lmp_accepted_enc_keysize
+0x5504 parse_lmp_accepted_start_enc
+0x550c parse_lmp_accepted_stop_enc
+0x550d parse_lmp_not_accepted_aurand
+0x550d parse_lmp_not_accepted_aurand_send_detach
+0x5513 parse_lmp_not_accepted_inrand
+0x5519 parse_lmp_inrand_key_missing
+0x551c parse_lmp_not_accepted_name_req
+0x551d parse_lmp_not_accepted_simple_pairing_number
+0x5520 parse_lmp_not_accepted_dhkey_check
+0x5523 parse_lmp_not_accepted_unsniff_req
+0x5525 parse_lmp_accepted_unsniff_req
+0x5528 parse_lmp_accepted_sniff_req
+0x5534 parse_lmp_not_acdcept_sniff_req
+0x5536 parse_lmp_crypt_key
+0x553b parse_lmp_setup_complete
+0x5541 parse_lmp_max_slot
+0x5542 parse_lmp_max_slot_req
+0x554a parse_lmp_detach
+0x554b accept_lmp_msg
+0x554d parse_lmp_incr_power
+0x554f parse_lmp_decr_power
+0x5551 parse_lmp_version_res
+0x5555 parse_lmp_auto_rate
+0x5556 parse_lmp_in_rand
+0x555f parse_lmp_in_rand_not_accept
+0x5563 parse_lmp_inrand_res
+0x5567 pop_tid_follow
+0x556b push_tid_follow
+0x556f parse_lmp_au_rand_moudle
+0x5574 parse_lmp_au_rand
+0x557b parse_lmp_au_rand_common
+0x5581 parse_lmp_au_rand_256
+0x5586 parse_lmp_sres
+0x558e authentication_fail
+0x5591 authentication_ok
+0x5596 parse_lmp_sres_256
+0x559b authentication_ok_256
+0x559f authentication_ok_common
+0x55a8 authentication_ok_conn_sm
+0x55ad parse_lmp_comb_key
+0x55b7 parse_lmp_name_res
+0x55c7 parse_lmp_name_res_end
+0x55cc parse_lmp_name_req
+0x55d0 parse_lmp_conn_req
+0x55d1 parse_lmp_timing_accuracy_req
+0x55d3 parse_lmp_features_req
+0x55d5 parse_lmp_version_req
+0x55d7 parse_lmp_supervision_timeout
+0x55d8 parse_lmp_sniff_subrating_req
+0x55e6 parse_lmpext_packet_type_table_req
+0x55f1 parse_lmp_max_power
+0x55f1 parse_lmp_min_power
+0x55f2 parse_lmp_page_mode_req
+0x55f3 parse_lmp_page_scan_mode_req
+0x55f4 parse_lmp_slot_offset
+0x55f7 parse_lmp_sniff_req_check_sniff_para
+0x55fd parse_lmp_sniff_req
+0x5614 set_big_value_to_attempt
+0x5617 parse_lmp_start_encryption_req
+0x561d parse_lmp_start_encryption_req_256
+0x561f calc_kc
+0x5624 parse_lmp_stop_encryption_req
+0x5626 parse_lmp_switch_req
+0x562b parse_lmp_switch_req_not_accept
+0x562d parse_lmp_switch_req_clear_mark
+0x5630 parse_lmp_switch_accept
+0x5636 parse_lmp_unit_key
+0x5636 parse_lmp_use_semi_permanend_key
+0x5637 parse_lmp_unsniff_req
+0x563c parse_lmp_encapsulated_header
+0x5646 parse_lmp_encapsulated_header2
+0x564a parse_lmp_encapsulated_header3
+0x564e parse_lmp_encapsulated_header_master
+0x5651 parse_lmp_accepted_encapsulated_header
+0x5653 parse_lmp_accepted_simple_pairing_number
+0x5656 parse_lmp_accepted_simple_pairing_number_common
+0x565a parse_lmp_accepted_simple_pairing_number_ssp_pin
+0x565e parse_lmp_accepted_simple_pairing_number_passkey
+0x5664 authentication_passkey
+0x566e authentication_passkey_end
+0x5670 parse_lmp_accepted_dhkey_check
+0x5671 pairing_success
+0x5676 parse_lmp_accepted_dhkey_check_common
+0x567e parse_simple_pairing_confirm
+0x5685 parse_lmp_encapsulated_payload
+0x5689 parse_lmp_encapsulated_payload_256
+0x568d parse_encapsulated_payload_256_master
+0x569b parse_lmp_encapsulated_payload_192
+0x569f parse_encapsulated_payload_192_master
+0x56ac parse_lmp_encapsulated_payload_completed
+0x56b2 parse_lmp_accepted_encapsulated_payload
+0x56b6 parse_lmp_accepted_encapsulated_payload_192
+0x56ba parse_lmp_accepted_encapsulated_payload_256
+0x56be parse_lmp_encapsulated_payload_all_accepted
+0x56c5 parse_lmp_encapsulated_payload_all_accepted_get_passkey
+0x56c7 parse_lmp_encapsulated_payload_all_accepted_master
+0x56c8 parse_lmp_simple_pairing_number
+0x56cc parse_lmp_simple_pairing_number_master
+0x56d6 parse_lmp_simple_pairing_number_master0
+0x56d9 parse_dhkey_check
+0x56dd parse_dhkey_check_master
+0x56e4 number_comparison_successed
+0x56e9 parse_dhkey_check_master0
+0x56ec lmp_reject_pdu_not_allowed
+0x56ee number_comparison_mode
+0x56f3 comparison_result
+0x56f6 parse_lmp_clkoffset_res
+0x56f7 parse_lmp_encryption_mode_req
+0x5702 parse_lmp_features_res
+0x5703 parse_lmp_features_res_not_hci
+0x5709 parse_lmp_send_conn
+0x570b parse_lmp_test_activate
+0x5710 parse_lmp_test_control
+0x5715 parse_lmp_test_xor
+0x5729 parse_lmp_test_control_exit
+0x572e parse_lmp_test_control_pattern
+0x5735 parse_lmp_test_control_loopback_nowhite
+0x5736 parse_lmp_test_control_loopback
+0x5742 parse_lmp_test_control_pause
+0x5748 lmp_copy_rand
+0x574b lmp_generate_key
+0x574d lmp_start_encryption
+0x5750 lmp_accept_inrand
+0x5755 lmp_disconnect
+0x5759 send_lmp
+0x575f send_lmp0
+0x578c send_lmp_error
+0x578e send_lmp_escape
+0x579a send_lmp_accepted
+0x57a9 send_create_conn_start_l2cap_timer_sm
+0x57af send_lmp_accept_sniff_req
+0x57b0 send_lmp_not_accepted
+0x57b8 send_not_accept_aurand
+0x57bd send_lmpext_accepted
+0x57c6 send_lmpext_not_accepted
+0x57d0 send_lmp_accepted_inrand
+0x57d4 send_lmp_accepted_enc_mode
+0x57db send_lmp_accepted_enc_start
+0x57dd send_lmp_accepted_enc_exit
+0x57df send_lmp_accepted_enc_key
+0x57e2 send_lmp_accepted_connection
+0x57e8 send_lmp_accept_dhkey_check
+0x57e9 send_lmpext_ping_res
+0x57ec send_lmpext_features_res
+0x57f2 send_lmpext_features_res1
+0x57fa send_lmpext_features_res2
+0x5802 check_ssp_enable
+0x5806 ssp_disable
+0x580c ssp_enable
+0x5813 check_br_sc_enable
+0x5816 br_sc_enable
+0x5819 send_lmpext_io_cap_res
+0x5824 responder_iocap_keyboard_only
+0x582a responder_iocap_display_yesno
+0x5830 responder_iocap_no_input_no_output
+0x5836 responder_iocap_no_input_no_output_initiator_iocap_no_input_no_output
+0x5836 set_ssp_mode_justwork
+0x583a responder_iocap_display_yesno_initiator_iocap_display_yesno
+0x583a set_ssp_mode_numeric_comparison
+0x583c responder_iocap_display_yesno_initiator_iocap_keyboard_only
+0x583c set_ssp_mode_passkey
+0x583e classic_bt_set_reject_justwork_flag
+0x5840 classic_bt_clr_reject_justwork_flag
+0x5842 classic_bluetooth_set_flag
+0x5846 classic_bluetooth_clr_flag
+0x584a send_lmp_io_cap_req
+0x584f send_lmpext_sniff_subrating_req
+0x5850 send_lmpext_sniff_subrating_res
+0x5859 send_lmp_name_res
+0x5861 send_lmp_name_res_offset_ok
+0x5869 send_lmp_timing_accuracy_res
+0x586e send_lmp_clkoffset_res
+0x5874 send_lmp_clkoffset_res_master
+0x5878 send_lmp_version_res
+0x587d send_lmp_features_res
+0x5882 send_lmpext_features_req
+0x588f send_lmpext_packet_type_table_req
+0x589b afh_init
+0x58a5 afh_open_all_channels
+0x58a9 afh_reset_map
+0x58b0 afh_clear_error_counter
+0x58b3 afh_set_send_flag
+0x58b7 send_lmpext_pause_encryption_req
+0x58bb send_lmp_detach
+0x58c0 prepare_disconnect
+0x58c5 send_lmp_no_payload
+0x58c8 send_lmp_nopayload_reply
+0x58cb send_lmp_encryption_mode_req
+0x58d3 send_lmp_superto
+0x58d8 send_lmp_name_req
+0x58de send_lmp_test_control
+0x58e2 send_lmp_test_control_loop
+0x58e7 send_lmp_quality_of_service_req
+0x58e8 send_lmp_unit_key
+0x58e9 send_lmp_slot_offset
+0x58fa send_lmp_slot_offset_reply
+0x58fe send_lmp_switch_req
+0x5902 switch_on_native
+0x5903 switch_slack
+0x590d send_lmp_sniff_req
+0x5913 send_lmp_timing_accuracy_req
+0x5918 send_lmp_unsniff_req
+0x591b send_lmp_max_slot
+0x5920 send_lmp_max_slot_req
+0x5925 send_lmp_inc_power
+0x592a send_lmp_setup_complete_by_module
+0x592c send_lmp_setup_complete
+0x593d send_lmp_setup_complete_has_sent
+0x593f send_lmp_version_req
+0x5944 send_lmp_features_req
+0x5949 sp_master_send_io_cap_get
+0x594e sp_master_send_io_cap_send
+0x5952 sp_master_send_lmp_encapsulated_header
+0x5956 sp_master_commitment_compare
+0x595f sp_master_commitment_compare_success
+0x5963 sp_master_send_lmp_simple_pairing_number
+0x5965 sp_send_lmp_encapsulated_header
+0x5967 send_lmp_encapsulated_header
+0x596f send_lmp_encapsulated_payload
+0x5973 send_lmp_encapsulated_payload_256
+0x5978 send_lmp_encapsulated_payload_192
+0x597c send_lmp_encapsulated_payload_common
+0x5987 sp_send_lmp_simple_pairing_comfirm
+0x598a send_lmp_simple_pairing_comfirm
+0x5992 sp_send_lmp_simple_pairing_number
+0x5994 send_lmp_simple_pairing_number
+0x59a0 master_sp_sm_end
+0x59a1 sp_aurand_send
+0x59a6 master_sp_send_lmp_dhkey_check
+0x59a7 sp_send_lmp_dhkey_check
+0x59a9 send_lmp_dhkey_check
+0x59b3 send_lmp_enc_key_size_mask_res
+0x59b8 send_lmp_auto_rate
+0x59b9 send_lmp_clkoffset_req
+0x59ba send_lmp_quality_of_service
+0x59bb send_lmp_test_activate
+0x59bc send_lmp_comb_key
+0x59c6 send_lmp_inrand
+0x59c9 send_lmp_rand
+0x59d1 send_lmp_aurand
+0x59d5 send_lmp_aurand2
+0x59d9 send_lmp_aurand_notpairing
+0x59da send_lmp_aurand_common
+0x59dc send_lmp_aurand_256
+0x59de send_lmp_sres
+0x59ef send_lmp_sres_master
+0x59f1 send_lmp_sres_startenc
+0x59f4 send_lmp_sres_startenc_slave
+0x59f8 send_lmp_sres_256
+0x5a07 copy_aco_256
+0x5a0a send_lmp_start_encryption
+0x5a11 send_lmp_stop_encryption_req
+0x5a14 send_lmp_encryption_key_size_req
+0x5a1a msg_send_lmp
+0x5a22 send_lmpext
+0x5a29 send_lmp_follow
+0x5a2f send_lmp_tid
+0x5a32 send_lmp_reply
+0x5a34 send_lmp_request
+0x5a35 send_lmp_end
+0x5a39 send_lmp_exit
+0x5a3f lmo_fifo_check
+0x5a44 lmo_fifo_process
+0x5a4a lmo_fifo_process_lmo0empty
+0x5a54 lmo_fifo_process_lmo2to1
+0x5a5a lmo_fifo_process_lmo1_empty
+0x5a65 special_tid_store
+0x5a6e tid_reply
+0x5a72 tid_initiate
+0x5a76 tid_check
+0x5a7b tid_set_reply
+0x5a7f check_localsm
+0x5a82 setlocalsm_master
+0x5a86 setlocalsm_slave
+0x5a8a check_localsm_master
+0x5a8e generate_random_number
+0x5a8f generate_random
+0x5a90 generate_random_another
+0x5a90 generate_random_loop
+0x5a94 generate_linkkey
+0x5a9e process_conn_sm
+0x5aa1 process_conn_sm_continue
+0x5abd host_create_conn_done
+0x5ac3 host_conn_judge_encrypt
+0x5ac7 host_create_conn_done_wait
+0x5acc host_create_conn_auth
+0x5ad2 host_create_conn_auth_wait
+0x5ad3 host_create_conn_pairing
+0x5ad8 host_create_conn_pairing_wait
+0x5ad9 host_creat_conn_send_feat_ext
+0x5adc host_create_conn_send_version
+0x5adf host_creat_conn_wait_switch
+0x5ae7 host_create_conn_switch_accept
+0x5ae9 host_create_conn_send_features
+0x5aec host_create_conn_send_switch
+0x5af2 host_create_conn_send_conn_req
+0x5af8 host_create_conn_wait_accept
+0x5afe host_create_conn_resend
+0x5b00 host_create_conn_waiting
+0x5b01 host_create_conn_switch
+0x5b0a host_create_conn_send_setup_complete
+0x5b0d host_create_conn_wait_setup_complete
+0x5b11 host_create_conn_wait_setup_complete_rtn
+0x5b13 host_create_conn_master_detach
+0x5b18 host_create_conn_send_detach
+0x5b1c host_create_conn_auth_pair
+0x5b1f host_create_conn_sm_done
+0x5b21 host_create_conn_auth_pair_true
+0x5b2d host_create_conn_auth_pair_nokey
+0x5b34 host_create_conn_auth_pair_wait
+0x5b35 host_create_conn_encrypt
+0x5b39 host_create_conn_encrypt_start
+0x5b3e host_create_conn_encrypt_wait
+0x5b42 host_create_conn_encrypt_wait_clear
+0x5b44 host_auth
+0x5b49 remote_auth
+0x5b4f pincode_reinit
+0x5b55 twspi_reset
+0x5b62 twspi_disable
+0x5b66 twspi_enable
+0x5b6a aes_disable
+0x5b6e read_function_aes
+0x5b72 read_function
+0x5b75 read_fuction_zero
+0x5b77 get_block_header
+0x5b78 get_block_header0
+0x5b80 read_first_block
+0x5b87 get_iv
+0x5b8b set_iv
+0x5b91 load_storage
+0x5b9c load_storage_loop
+0x5ba4 load_data_checksum
+0x5baf load_data_checksum_calc
+0x5bb8 load_data_checksum_compare
+0x5bc0 load_storage_efuse
+0x5bcb load_storage_efuse_loop
+0x5bd2 load_efuse_read_code_loop
+0x5bd6 load_efuse_read_code
+0x5bd9 load_efuse_read_code_loop_enc
+0x5be0 load_efuse_store_code
+0x5be2 load_efuse_store_code_loop
+0x5bf3 run_efuse_code
+0x5bf5 loadcode
+0x5bf9 load_efuse
+0x5c17 loadcode_efuse
+0x5c1e loadcode_iic
+0x5c1f loadcode_iic_loop
+0x5c2a loadcode_iic_eeprom_2k
+0x5c2b loadcode_iic_eeprom_2k_loop
+0x5c36 iicd_load_gpio_init
+0x5c3a iicd_load_default_gpio
+0x5c3d loadcode_spi
+0x5c3e loadcode_spi_loop
+0x5c4c loadcode_hci
+0x5c50 clear_key_buf
+0x5c58 loadcode_timeout
+0x5c5e loadcode_error_delay
+0x5c64 loadcode_efuse_check_xor
+0x5c68 loadcode_efuse_check
+0x5c70 loadcode_efuse_check_sum
+0x5c83 loadcode_efuse_check_sum_loop
+0x5c8a loadcode_iic_by_eeprom
+0x5c90 loadcode_error
+0x5c92 set_ucode_status
+0x5c99 decrypt_code
+0x5c9c decrypt_code_loop
+0x5c9f decrypt_code_skip
+0x5ca3 load_ucode
+0x5cab load_ucode_loop
+0x5cb0 app_read_efuse_app_vsel
+0x5cb7 app_read_efuse_sys_config
+0x5cc0 app_read_efuse_dig_aon_vsel
+0x5cc6 app_read_efuse_syn_afc_cfg1
+0x5ccb app_read_efuse_rf_ldo_cfg1
+0x5cd1 app_read_efuse_rc_cal
+0x5cd5 app_read_efuse_agc
+0x5cde app_disable_soft_agc
+0x5ce4 app_lpm_efuse_lock_prep
+0x5ceb app_lpm_peripheral_lock_check
+0x5cf8 app_lpm_peripheral_lock_hci
+0x5cf8 app_lpm_peripheral_lock_hciboot
+0x5cfb app_lpm_peripheral_lock_dongle
+0x5d00 app_lpm_peripheral_lock_mouse
+0x5d05 app_lpm_peripheral_lock_shutter
+0x5d0a app_lpm_peripheral_lock_mesh
+0x5d0d app_lpm_peripheral_lock_remote_car
+0x5d12 app_lpm_peripheral_lock_car
+0x5d17 app_lpm_peripheral_lock_antilost
+0x5d1c app_lpm_mpu_lock_mesh
+0x5d1f app_lpm_mpu_lock_module
+0x5d22 app_mpu_s0_lock
+0x5d25 app_lpm_mpu_lock_app
+0x5d28 app_lpm_mpu_lock_br
+0x5d2b app_lpm_mpu_lock_ble
+0x5d2d app_mpu_s1_lock
+0x5d30 app_lpm_mpu_lock_24g
+0x5d33 app_lpm_mpu_lock_br_ble
+0x5d37 app_lpm_mpu_mode_lock
+0x5d3d lpm_write_lock
+0x5d4e lpm_write2_ctrl_option
+0x5d4f lpm_write2
+0x5d54 spid_init
+0x5d55 spid_init_common
+0x5d5e twspi_write
+0x5d5e spid_write_reg
+0x5d65 twspi_read
+0x5d65 spid_read_reg
+0x5d66 spid_read_regs
+0x5d6e wait_spid_done
+0x5d74 flash_write
+0x5d7b flash_write_spi_sm_timer
+0x5d82 spid_flash_write_start
+0x5d88 spid_flash_erase_sector
+0x5d90 spid_flash_wait_erase_sector
+0x5d94 spid_flash_write_data
+0x5d9a spid_flash_wait_write_data
+0x5da2 spid_flash_data_recover
+0x5da4 spid_flash_data_recover_comm
+0x5da7 spid_flash_data_preserve
+0x5daf spid_init_flash
+0x5db4 spid_unlock_flash
+0x5db5 spid_sendcmd_common
+0x5dbd spid_flash_release_form_powerdown
+0x5dbf spid_flash_powerdown
+0x5dc1 spid_write_flash
+0x5dc5 spid_write_flash_common
+0x5dd2 spid_read_flash
+0x5de4 spid_read_flash_wait
+0x5de8 wait_spid_flash_done
+0x5df1 spid_load_flash
+0x5dfe spi_load_flash_wait
+0x5e13 spi_gpio_init
+0x5e18 spi_pin_set
+0x5e24 spi_gpio_default_init
+0x5e29 soft_reset_chip
+0x5e2b iic_init_600khz
+0x5e33 iic_init_360khz
+0x5e3b iicd_init_pin
+0x5e3c iicd_init_pin_scl_sda
+0x5e42 iicd_read_init_pin
+0x5e44 wait_iicd_done
+0x5e47 iicd_read_data
+0x5e51 iic_write_data
+0x5e59 set_eeprom_size_2k
+0x5e5c clear_eeprom_size_2k
+0x5e5f iicd_read_eep_data_size_2k
+0x5e63 iicd_read_eep_size_2k_lcadcode
+0x5e66 iicd_read_eep_size_2k
+0x5e6b iicd_write_protect_eep_data
+0x5e70 iicd_eeprom_write_enable
+0x5e75 iicd_wp_gpio_output_low
+0x5e77 iicd_eeprom_write_disable
+0x5e79 iicd_read_eep_data
+0x5e7f iicd_read_eep
+0x5e85 iicd_read_eep_common
+0x5e9a iicd_read_eep_load_code_size_2k
+0x5e9f iicd_write_eep_data
+0x5ea1 iicd_write_ota_data
+0x5ea5 iicd_write_eep_loop
+0x5eb4 iicd_eep_transparency
+0x5ec6 iicd_eep_deal_short_packet
+0x5ecb iicd_write_eep_size_2k
+0x5ed5 iicd_write_eep
+0x5ee2 iicd_write_eep_common
+0x5ee9 iic_check_eeprom_standby
+0x5eeb iic_check_eeprom_standby_wait
+0x5f00 efuse_read_data
+0x5f06 efuse_read_loop
+0x5f12 efuse_program
+0x5f16 efuse_program_loop
+0x5f18 efuse_program_bit_loop
+0x5f22 efuse_pa_vdd_set
+0x5f27 efuse_pa_vdd_recover
+0x5f2a efuse_lna_pa_ldo_on
+0x5f34 efuse_vdd_fsource_on
+0x5f3c efuse_vdd_on
+0x5f44 efuse_vdd_off
+0x5f50 efuse_program_bit
+0x5f56 uarta_init_dma_mem
+0x5f58 uartb_init_dma_mem
+0x5f5a uart_init_dma_mem
+0x5f66 uartb_init_dma_turn_on_clk
+0x5f6a uarta_init_baud_rate
+0x5f6c uartb_init_baud_rate
+0x5f6e uarta_calc_baud_rate_config
+0x5f70 uartb_calc_baud_rate_config
+0x5f72 uart_calc_baud_rate_config
+0x5f77 uart_calc_baud_rate_config_choice_uart_clock
+0x5f7b uart_calc_baud_rate_config_choice_uart_clock_crystal
+0x5f7d uart_clock_select_main_freq_crystal
+0x5f81 uart_clock_select_main_freq_dpll
+0x5f85 uarta_init_tx
+0x5f89 uartb_init_tx
+0x5f8d uarta_init_rx
+0x5f91 uartb_init_rx
+0x5f95 uarta_prepare_tx
+0x5f99 uartb_prepare_tx
+0x5f9d uarta_prepare_rx
+0x5fa1 uartb_prepare_rx
+0x5fa5 uarta_send
+0x5fa7 uartb_send
+0x5fa9 uarta_rxdone
+0x5fab uartb_rxdone
+0x5fad uarta_clear_current_rx
+0x5fb1 uartb_clear_current_rx
+0x5fb5 uarta_prepare_tx_register_push
+0x5fb7 uartb_prepare_tx_register_push
+0x5fb9 uarta_send_register_pop
+0x5fbb uartb_send_register_pop
+0x5fbd uart_register_push
+0x5fc1 uart_register_pop
+0x5fc5 uart_copy_tx_bytes_fast
+0x5fc7 uart_copy_tx_bytes_fast_loop
+0x5fcc uart_copy_tx_bytes_fast_loop_four
+0x5fd2 uart_tx_16_bytes
+0x5fd3 uart_tx_8_bytes
+0x5fd6 uart_tx_4_bytes
+0x5fd9 uart_copy_tx_bytes
+0x5fdb uart_copy_tx_bytes_loop
+0x5fdf uart_copy_rx_bytes_fast
+0x5fe1 uart_copy_rx_bytes_fast_loop
+0x5fe6 uart_copy_rx_bytes_fast_loop_four
+0x5fec uart_rx_16_bytes
+0x5fed uart_rx_8_bytes
+0x5ff0 uart_rx_4_bytes
+0x5ff3 uart_copy_rx_bytes
+0x5ff5 uart_copy_rx_bytes_loop
+0x5ff9 app_store_nvram_event
+0x5ffb check_51cmd_store_reconn_info
+0x5ffb check_51cmd_update_device_record
+0x6002 write_device_record
+0x6006 write_device_loop_find
+0x6012 write_device_loop_find0
+0x6016 set_index_finded_device
+0x601c set_index_find_device_master_addr
+0x6021 store_rec_data_common
+0x6024 set_index_finded_device_ble_mode
+0x6028 set_index_finded_device_irk
+0x602a store_ble_rec_data_common
+0x602c set_index_finded_device_ediv
+0x602f nvram_find_addr_from_bd_list
+0x6036 find_addr_from_bd_list_ble_mode
+0x603e find_addr_from_bd_list_static_addr
+0x6042 find_addr_from_bd_list_static_addr_reconnect
+0x6045 find_addr_from_bd_list_static_addr_sc_or_legacy
+0x6045 find_addr_from_bd_list_random_non_resolvable_private_address_sc_or_legacy
+0x6048 find_addr_from_bd_list_static_addr_sc
+0x6048 find_addr_from_bd_list_random_non_resolvable_private_address_sc
+0x604b find_addr_from_bd_list_public_device_addr
+0x604e find_addr_from_bd_list_random_non_resolvable_private_address
+0x6050 find_addr_from_bd_list_random_addr
+0x6052 find_addr_from_bd_list_spp_mode
+0x6054 find_addr_from_bd_list_common
+0x605c nvram_find_addr_from_list
+0x606c nvram_find_addr_from_list_compare
+0x606e find_master_addr_from_list_compare
+0x6073 find_addr_from_list_compare_ble_mode
+0x6076 find_irk_form_list_compare
+0x6088 genernate_master_macaddress
+0x6091 find_ediv_form_list_compare
+0x60a0 check_nvram
+0x60a6 init_device_list
+0x60aa init_device_list_loop
+0x60af load_device_list
+0x60ba clear_key_exists
+0x60bc load_device_list_mode_4
+0x60c7 clear_ltk_exists
+0x60c9 eeprom_store_le_reconn_info
+0x60cb eeprom_store_bd_reconn_info
+0x60cc eeprom_store_reconn_info
+0x60d0 check_link_key_load
+0x60d6 gpio_set_wake_by_current_state
+0x60da gpio_set_wake
+0x60e6 gpio_clr_wake
+0x60f2 gpio_config_input_nowake
+0x60f4 gpio_config_input
+0x60f7 gpio_config_input_without_wake
+0x60fd gpio_get_bit
+0x6107 gpio_get_bit_reverse
+0x6109 gpio_out_inactive
+0x610d gpio_config_output
+0x610d gpio_out_active
+0x6110 gpio_out_flag
+0x6113 gpio_out
+0x6118 gpio_check_active
+0x611d gpio_check_active_high
+0x611f gpio_write
+0x6121 gpio_set_high_impedance
+0x6124 gpio_addr
+0x6128 gpio_config_param
+0x612b gpio_config_function
+0x612c gpio_config_function_int
+0x6131 gpio_get_config
+0x6136 gpio_set_before_lpm
+0x6138 setgpio_loop
+0x6148 setgpio_loop_end
+0x614a setgpio_pullup
+0x614d setgpio_pulldown
+0x6150 adc_init_data
+0x6151 adc_init_cal_data
+0x6156 adc_init_cal_data_loop
+0x615d adc_init_cal_data_default
+0x6166 enable_adc
+0x6182 read_adc_mode
+0x6185 adc_check_gpio
+0x6189 adc_mode_vdcdc
+0x618b adc_adc_mode_vbat
+0x618d vdd_calculate_by_mode
+0x6193 vdd_calculate_vinlpm
+0x6199 vdd_calculate_hvin
+0x619f vdd_calculate_io
+0x61a4 vdd_calculate
+0x61ad vdd_calculate2
+0x61b1 vdd_calculate1
+0x61ba adc_bat_percent_lowpower_out
+0x61ca adc_set_low_power_flag
+0x61ce adc_clear_low_power_flag
+0x61d2 adc_set_no_power_flag
+0x61d6 adc_clear_no_power_flag
+0x61da keyscan_key_init
+0x61dc keyscan_key_init_next
+0x61e1 keyscan_key_init_lp1
+0x61e5 keyscan_key_init_end
+0x61e6 keyscan_scan_key
+0x61ec keyscan_scan_key_lp1
+0x61f7 keyscan_scan_key_lp1_next
+0x61ff keyscan_process_lpm_before
+0x6201 keyscan_process_lpm_before_next
+0x6206 keyscan_process_lpm_before_lp1
+0x620a keyscan_process_lpm_before_end
+0x620b keyscan_key_process
+0x6216 keyscan_key_process_next
+0x621f keyscan_key_lp1
+0x622b keyscan_key_lp1_next
+0x6234 keyscan_send_key_data
+0x6239 pwm_init
+0x623f delay_nop100
+0x6241 pwm_clk_set
+0x6244 pwm_12m_clk_set
+0x6246 pwm_24m_clk_set
+0x6248 pwm_33k_clk_set
+0x624a pwm_cont_set
+0x624e pwm_cont_set1
+0x6255 pwm_cont_set0
+0x625c pwm_set_value
+0x6260 pwm_out_set
+0x6272 pwm_duty_cycle_set
+0x627b pwm_enable
+0x627e pwm_disable
+0x6280 pwm_gpio_set
+0x6285 pwm_set_select
+0x628b pwm_select_channel
+0x628f pwm_srst_powerdown
+0x6290 pwm_srst_set
+0x6295 wdt_init_config
+0x62a4 wdt_set_enable
+0x62a6 wdt_set_disable
+0x62a7 wdt_init_set
+0x62ab nec61212_init
+0x62ac nec_init_config
+0x62b0 nec_check_rxbuff_size
+0x62b2 nec_prepare_read
+0x62b6 nec_read_done
+0x62b8 nec_parse_nec61212
+0x62d3 nec_parse_nec61212_data
+0x62df nec_parse_nec61212_error_data
+0x62e4 nec_parse_nec61212_add_bit1
+0x62e5 nec_parse_nec61212_add_bit0
+0x62e8 nec_parse_nec61212_check_repeat_data
+0x62f3 nec_parse_nec61212_check_stop_bit
+0x62fa nec_parse_nec61212_check_timeout
+0x62ff nec_parse_nec61212_check_timeout_cb
+0x6303 nec_check_pulse_range_legal_default_deviation
+0x6304 nec_check_pulse_range_legal
+0x630c nec_check_pulse_range_legal_data_negative
+0x630e select_system_clk_24m
+0x6312 calc_new_param
+0x6314 calc_new_param_loop
+0x631a calc_new_le_time
+0x631c select_system_clk_12m_xtal
+0x631d select_system_clk_12m_common
+0x6321 select_system_clk_12m_dpll
+0x6323 rfcomm_init
+0x632d rfcomm_init_spp
+0x6335 rfcomm_init_spp_with_credit
+0x6337 set_cr_bit
+0x6339 rfcomm_calculate_fcs_sabm
+0x6345 rfcomm_calculate_fcs_ua
+0x634e rfcomm_calculate_fcs_dlci0
+0x6352 rfcomm_calculate_fcs_dlci0_res
+0x6354 rfcomm_save_fcs_uih
+0x6363 caculate_uihdata_fcs
+0x636f caculate_fcs
+0x637c mod2div
+0x6380 mod2div_loop
+0x6385 mod2div_not_enough_reduction
+0x638f mod2div_end
+0x6391 get_rfcomm_snd_adss
+0x6392 dlci_to_address_cmd
+0x6398 channel_to_dlci
+0x639c rfcomm_rx_process_dlci0_sabm
+0x63a5 rfcomm_rx_process_dlci0_ua
+0x63a9 rfcomm_rx_process
+0x63ad rfcomm_rx_process_remote_page
+0x63b3 parse_dlci0_rp
+0x63ba parse_dlci0_rp_uih
+0x63c4 parse_dlci0_rp_uih_pn_cmd
+0x63c6 parse_dlci0_rp_uih_pn_cmd_spp
+0x63cc parse_dlci0_rp_uih_pn_res
+0x63ce parse_dlci0_rp_uih_pn_res_common
+0x63d0 get_rfcomm_param_modem_status
+0x63d7 get_rfcomm_head_struct
+0x63dd get_rfcomm_current_length
+0x63e2 get_rfcomm_uih_head_struct
+0x63ea get_param_payload_ptr
+0x63ed get_rfcomm_length_common
+0x63f6 get_rfcomm_prarmer_negotiation
+0x6405 parse_dlci0_rp_uih_ms_cmd
+0x6407 parse_dlci0_rp_uih_ms_cmd_spp
+0x6411 parse_dlci0_rp_uih_ms_res
+0x6418 parse_dlci0_rp_uih_ms_res_spp
+0x641c parse_dlci0_rp_uih_cmd_port
+0x6437 parse_uih_rp
+0x6438 parse_uih_rp_spp
+0x6440 parse_uih_rp_spp_ua
+0x6444 parse_uih_rp_spp_sabm
+0x6456 parse_uih_spp_uih_credits
+0x645e parse_uih_spp_uih
+0x645f parse_uih_spp_uih_cont
+0x6463 parse_uih_rp_spp_disconn_send_event
+0x6465 parse_uih_rp_spp_disconn
+0x646b rfcomm_rx_process_reconn
+0x6471 parse_dlci0_reconn
+0x6477 parse_dlci0_reconn_uih
+0x6480 parse_dlci0_reconn_uih_pn_cmd
+0x6487 parse_dlci0_reconn_uih_pn_cmd_spp
+0x648b parse_dlci0_reconn_uih_ms_cmd
+0x6492 parse_dlci0_reconn_uih_ms_cmd_spp
+0x649b parse_dlci0_reconn_uih_ms_res
+0x64a1 parse_dlci0_reconn_uih_ms_res_spp
+0x64a5 parse_uih_reconn
+0x64ab parse_uih_reconn_spp
+0x64b0 parse_uih_reconn_spp_ua
+0x64b4 parse_uih_reconn_spp_sabm
+0x64b5 parse_uih_reconn_spp_disconn
+0x64b6 rfcomm_rx_process_end
+0x64b7 rfcomm_send_more_pkt
+0x64bb rfcomm_send_more_pkt_msc_cmd_spp
+0x64c0 rfcomm_send_more_pkt_msc_cmd_spp0
+0x64c8 rfcomm_send_sabm
+0x64d5 rfcomm_send_ua
+0x64e3 rfcomm_send_param_neg_cmd
+0x64ff rfcomm_send_param_neg_res
+0x651b rfcomm_send_modem_status_cmd
+0x6530 rfcomm_send_modem_status_res
+0x6547 rfcomm_send_uih_without_payload
+0x6561 rfcomm_increase_credit_given
+0x656a spp_process_rx_data
+0x656c spp_tx_rfcomm_packet
+0x6576 ssp_tx_rfcomm_from_uart
+0x657e ssp_tx_rfcomm_from_uart_without_credit
+0x6583 ssp_tx_rfcomm_from_uart_common
+0x658a ssp_tx_rfcomm_from_uart_common0
+0x65b4 ssp_tx_write_length
+0x65bc ssp_tx_write_long_packet
+0x65c5 ssp_tx_write_given_credit
+0x65c9 scheduler_process
+0x65da scheduler_process0
+0x65dd scheduler_tx_disconnect_hid
+0x65e1 scheduler_tx_l2cap_pkt
+0x65fc scheduler_tx_l2cap_start_pkt
+0x6607 scheduler_tx_l2cap_last_pkt
+0x6609 scheduler_tx_l2cap_pkt_end
+0x660d scheduler_start_upper_sm
+0x6611 scheduler_start_upper_sm_hid
+0x6613 process_upper_sm
+0x6615 process_upper_sm_remote_page
+0x6618 process_upper_sm_rp_wait
+0x6619 process_upper_sm_reconn
+0x6638 process_upper_sm_reconn_wait
+0x6639 process_upper_sm_reconn_sdp_conn
+0x663f process_upper_sm_reconn_sdp_cfg
+0x6649 process_upper_sm_reconn_ss_spp
+0x664e process_upper_sm_reconn_sdp_disconn
+0x6651 process_upper_sm_reconn_hid_ctrl_conn
+0x6657 process_upper_sm_reconn_hid_ctrl_cfg
+0x665d process_upper_sm_reconn_hid_int_conn
+0x6663 process_upper_sm_reconn_hid_int_cfg
+0x6669 process_upper_sm_reconn_rfcomm_conn
+0x666f process_upper_sm_reconn_rfcomm_cfg
+0x6675 process_upper_sm_reconn_rfcomm_sabm
+0x667b process_upper_sm_reconn_spp_cmd_pn
+0x6681 process_upper_sm_reconn_spp_sabm
+0x668c process_upper_sm_reconn_spp_cmd_ms
+0x6692 process_upper_sm_reconn_sdp_conn_wait
+0x6696 process_upper_sm_reconn_sdp_cfg_wait
+0x6699 process_upper_sm_reconn_ss_spp_wait
+0x669e process_upper_sm_reconn_sdp_disconn_wait
+0x66a4 process_upper_sm_reconn_hid_ctrl_conn_wait
+0x66a8 process_upper_sm_reconn_hid_ctrl_cfg_wait
+0x66ac process_upper_sm_reconn_hid_int_conn_wait
+0x66b0 process_upper_sm_reconn_hid_int_cfg_wait
+0x66b5 process_upper_sm_reconn_rfcomm_conn_wait
+0x66b9 process_upper_sm_reconn_rfcomm_cfg_wait
+0x66bd process_upper_sm_reconn_rfcomm_sabm_wait
+0x66c2 process_upper_sm_reconn_spp_cmd_pn_wait
+0x66c6 process_upper_sm_reconn_spp_sabm_wait
+0x66ca process_upper_sm_reconn_spp_cmd_ms_wait
+0x66cd process_upper_sm_reconn_setup_hid
+0x66cf process_upper_sm_reconn_setup_rfcomm
+0x66d1 process_upper_sm_reconn_setup_spp
+0x66d3 process_upper_sm_reconn_termination
+0x66d5 upper_sm_send_sdp_conn
+0x66dc upper_sm_send_sdp_cfg
+0x66e1 upper_sm_send_sdp_disconn
+0x66eb upper_sm_send_ss_spp
+0x66ef upper_sm_send_rfcomm_conn
+0x66f6 upper_sm_send_rfcomm_cfg
+0x66fb upper_sm_send_hid_ctrl_conn
+0x6702 upper_sm_send_hid_ctrl_cfg
+0x6707 upper_sm_send_hid_int_conn
+0x670e upper_sm_send_hid_int_cfg
+0x6713 upper_sm_send_rfcomm_sabm
+0x671a upper_sm_send_spp_cmd_pn
+0x6720 upper_sm_send_spp_sabm
+0x672a upper_sm_send_spp_cmd_ms
+0x672f sdp_process
+0x674a sdp_process_ss_req
+0x676a ss_req_loop
+0x676d ss_req_blank
+0x6772 sdp_process_sa_req
+0x677d sa_isnot_wholerange
+0x6780 sa_judge_wholerange
+0x6789 sa_judge_wholerange_false3
+0x678b sa_judge_wholerange_false2
+0x678d sa_judge_wholerange_false1
+0x678f sa_req_loop
+0x6792 sa_req_range
+0x6798 sa_req_range_id_increase
+0x67a1 sa_req_range_id_finish
+0x67a4 sa_req_one_id
+0x67a9 sa_req_check_next_id
+0x67b0 sa_req_handle_attributelist_next
+0x67c0 sa_req_handle_attributelist_notfound
+0x67c3 sa_req_handle_attributelist_end
+0x67c8 sdp_store_continue_common
+0x67cc sdp_store_continue_0byte
+0x67ce sdp_store_continue_1byte
+0x67d1 sdp_store_continue_2byte
+0x67d4 sdp_store_continue_end
+0x67d6 sa_req_all
+0x67f8 sa_req_all_fisrt_fragment
+0x67fc sa_req_all_parlength_continue_byte
+0x67ff sa_req_all_parlength_continue_byte_end
+0x6805 sa_req_all_fragment_sdp
+0x6813 sa_req_all_answer_attributelist_full_loop
+0x681c sa_req_all_last_frag_continue
+0x681e sa_req_all_frag_end
+0x6820 sdp_process_ssa_req
+0x682a ssa_req_loop
+0x683a ssa_req_attributelist_next
+0x6845 ssa_req_attributelist_notfound
+0x6847 ssa_req_attributelist_end
+0x684c sdp_store_maxbyte
+0x6854 ssa_req_range
+0x6865 ssa_req_range_find_handle
+0x686d ssa_req_range_later_freg_with_continue
+0x6875 ssa_req_range_send_not_maxbyte
+0x687c ssa_req_range_maxbyte_with_continue
+0x687f ssa_req_range_maxbyte_with_continue_cpy
+0x6885 ssa_req_range_next_handle
+0x688a ssa_req_range_get_length
+0x6893 ssa_req_range_first_freg
+0x689d ssa_req_range_firstfreg_not_maxbyte_with_continue
+0x689f ssa_req_range_freg_no_continue
+0x68a1 ssa_req_range_lastfreg
+0x68a2 ssa_req_range_lastfreg_common
+0x68ad ssa_req_range_firstfreg_maxbyte_with_continue
+0x68b2 ssa_req_range_attrbutes_length
+0x68b8 ssa_req_range_attrbutes_length_no_continue
+0x68be ssa_req_range_freg_with_continue
+0x68ce ssa_req_range_common
+0x68d8 sdp_process_sa_res
+0x68d8 sdp_process_error_res
+0x68d9 sdp_invalid_service_record_handle
+0x68dc sdp_invalid_pdu_size
+0x68df sdp_insufficient_resource
+0x68e2 sdp_invalid_request_syntax
+0x68e4 sdp_error_response
+0x68ee ask_serviceclassid
+0x68f3 classidloop
+0x68fc skip2bytes
+0x6905 frstbwrong
+0x6908 scndbwrong
+0x6911 cmp032
+0x6914 cmp016
+0x6916 cmpuuid
+0x691c uuidsize
+0x6937 wrong12b
+0x6938 wrong12b1
+0x693c chck12dn
+0x693e loopornot
+0x6944 asksrv_error
+0x6946 dataelementtype6
+0x6955 dsize32
+0x6957 dsize16
+0x695a dsize
+0x695c dsize_error
+0x695e ss_empty_rsp
+0x6961 sa_empty_rsp
+0x6964 ssa_empty_rsp
+0x6966 empty_response
+0x6975 fullsearch
+0x6977 outempty
+0x6979 sdp_data_len
+0x6980 sdp_get_data
+0x6984 sdp_get_data_type0
+0x6987 sdp_get_data_type_not0_sizeindex01234
+0x698a sdp_get_data_type_not0
+0x6991 sdp_get_data_type_not0_sizeindex5
+0x6994 sdp_get_data_type_not0_sizeindex6
+0x6998 sdp_get_data_type_not0_sizeindex7
+0x69a0 search_all_uuid
+0x69a4 search_all_uuid_llop
+0x69ab search_uuid
+0x69ae search_uuid_next
+0x69b4 search_uuid_loop
+0x69b8 search_uuid_not_found
+0x69be search_uuid_check_same_handle
+0x69c4 search_uuid_store_handle
+0x69cb search_uuid_nomatch
+0x69cf search_handle
+0x69d2 search_handle_loop
+0x69e4 search_attrib
+0x69e7 search_attrib_next
+0x69ea search_attrib_loop
+0x69f2 search_attrib_found_uuid
+0x69f8 search_attrib_loop_attribs
+0x6a02 search_attrib_end
+0x6a05 search_handle_attrib
+0x6a08 search_handle_attrib_next
+0x6a12 search_handl_attrib_found_handle
+0x6a14 search_handle_attrib_loop_attribs
+0x6a1e search_handle_attrib_end
+0x6a20 search_rfcomm_cn
+0x6a2b search_uuid_in_data
+0x6a2e search_uuid_in_data_loop
+0x6a3e search_uuid_in_data_found_element_index5
+0x6a41 search_uuid_in_data_found_element_index6
+0x6a44 search_uuid_in_data_found_element_index7
+0x6a47 search_uuid_in_data_found_uuid
+0x6a4d search_uuid_in_data_type_uuid_128
+0x6a4e search_uuid_in_data_type_uuid_32
+0x6a50 search_uuid_in_data_type_uuid_16
+0x6a56 sdp_send_spp_request
+0x6a6d function_g2
+0x6a84 function_f6_eb
+0x6a94 get_r
+0x6a98 function_f6_ea
+0x6aab function_f5
+0x6abd function_f5_common
+0x6ace store_addr_common_b
+0x6ad3 store_addr_common_a
+0x6ad8 function_f4_ca
+0x6ae3 function_f4_cb
+0x6aee function_aes_cmac
+0x6af2 function_ceil16
+0x6b00 function_aes_cmac_set_flag_0_balnk
+0x6b03 function_aes_cmac_set_flag_0
+0x6b04 function_aes_cmac_set_flag_0_common
+0x6b0e function_aes_cmac_aes
+0x6b11 function_aes_cmac_aes_loop
+0x6b17 function_aes_cmac_aes_loop_end
+0x6b1f load_inverse_result
+0x6b23 store_inverse_k
+0x6b25 inverse_k
+0x6b28 inverse_memdat
+0x6b2c bn_lshift_0_inverse
+0x6b36 function_aes_cmac_k1_inverse
+0x6b37 function_aes_cmac_inverse_common
+0x6b3b function_aes_cmac_k2_inverse
+0x6b3d function_aes_cmac_generate_subkey
+0x6b45 function_aes_cmac_k1
+0x6b4e function_aes_cmac_k1_0
+0x6b4f function_aes_cmac_k2
+0x6b58 function_aes_cmac_xor_rb
+0x6b59 function_aes_cmac_xor_rb_loop
+0x6b5f function_aes_cmac_xor_loop_common
+0x6b63 function_aes_cmac_padding
+0x6b66 function_aes_cmac_padding_loop
+0x6b6b function_aes_cmac_padding_loop2
+0x6b6e function_aes_cmac_padding_beq_length
+0x6b6f function_aes_cmac_padding_common
+0x6b71 function_aes_cmac_padding_big_length
+0x6b73 generate_kinit
+0x6b77 function_e21
+0x6b86 function_e22
+0x6b8c function_e22_pin_init
+0x6b8d function_e22_genx_pin
+0x6b90 function_e22_genx_loop
+0x6b9a function_e22_genx_end
+0x6ba6 function_e1
+0x6ba9 function_e3
+0x6bb0 function_hash
+0x6bc6 function_ar
+0x6bcf function_ar_loop
+0x6bd7 function_ar_original
+0x6bed key_scheduling
+0x6bf3 key_rotateloop
+0x6bfe key_select_octet_loop
+0x6c03 key_select_octet_nwrap
+0x6c0d bias_round_key_loop
+0x6c14 key_sched_zero
+0x6c16 create_byte_16_loop
+0x6c1e xor_mod32
+0x6c1f xor_mod32_ar2
+0x6c22 xor_mod32_loop
+0x6c28 xor_mod32_invert
+0x6c2b xor_even
+0x6c31 el_boxes
+0x6c34 el_box_loop
+0x6c3a e_boxes
+0x6c40 pht
+0x6c43 pht_loop
+0x6c4f permute
+0x6c5e permute_exchange
+0x6c5f permute_loop
+0x6c6e add16
+0x6c70 xor16
+0x6c71 xor_add16
+0x6c72 xoradd_loop
+0x6c77 xoradd_add
+0x6c78 xoradd_store
+0x6c7d function_expand
+0x6c83 expand_12
+0x6c84 expand_cont
+0x6c88 key_offset
+0x6c97 key_addxor
+0x6c98 key_addxor_loop
+0x6c9c key_add
+0x6c9e key_high
+0x6c9f key_xor
+0x6ca0 key_store
+0x6ca4 copy_aco
+0x6ca9 concatenate_temp24
+0x6caa concatenate_temp16
+0x6cad loop1
+0x6cae generate_stk
+0x6cb2 authenticate_rconfirm
+0x6cb5 authenticate_mconfirm
+0x6cba generate_confirm
+0x6cbd generate_mrand
+0x6cc0 generate_sk
+0x6cc9 ccm_b0
+0x6ccc first_block_counter
+0x6cce first_block_data
+0x6ccf first_block
+0x6cd0 iv_common
+0x6ce1 generate_mic
+0x6cf0 generate_mic_loop
+0x6cf5 generate_mic_end
+0x6cf9 aes_crypt_data
+0x6d03 ccm_br_enc_new
+0x6d21 ccm_br_pcnt_tx_add
+0x6d25 ccm_br_check_0_length_continuation
+0x6d2b ccm_br_pcnt_tx_set
+0x6d30 ccm_br_pcnt_rx_set
+0x6d34 ccm_br_decrypt_new
+0x6d5b ccm_br_pcnt_rx_add
+0x6d62 le_decrypt_new
+0x6d88 le_encrypt_new
+0x6d8f le_encrypt_new_start
+0x6da8 ccm_wait_enc
+0x6dad ccm_check_enc_done
+0x6daf ccm_enc_done
+0x6db4 ccm_init_common
+0x6dbb wait_ccm_done
+0x6dbd ccm_ctrl_clr
+0x6dbf wait_aes
+0x6dc1 do_aes_ocb
+0x6dc4 do_aes_cbc
+0x6dc7 do_aes_ctr
+0x6dca aes_init
+0x6dcd function_s1
+0x6de2 function_c1
+0x6de8 function_c1_master
+0x6df8 function_c1_irat
+0x6dfd function_c1_loop1
+0x6e10 padding_data
+0x6e15 padding_loop
+0x6e1a aes_load_data
+0x6e1b load_data_loop
+0x6e1f load_data_padding
+0x6e24 aes_load_xor
+0x6e26 load_key
+0x6e28 load_data128
+0x6e29 load_regext
+0x6e2a load_regext_loop
+0x6e2f load_sk
+0x6e31 clear_hidata
+0x6e33 regext_clear
+0x6e36 aes_clear_data
+0x6e37 aes_clear
+0x6e38 clear_loop
+0x6e39 clear_data_rest
+0x6e3c store_aes_result
+0x6e3e send_aes_result_loop
+0x6e43 store_enc_data
+0x6e49 store_enc_loop
+0x6e51 store_enc_byte
+0x6e55 compare_res
+0x6e57 compare_res_loop
+0x6e5e enable_authrom
+0x6e62 disable_authrom
+0x6e66 init_memp
+0x6ebd init_memp_256
+0x6f0f publickey_init
+0x6f12 sp_calc_sequence_256_check
+0x6f20 stop_publickey_calc_256
+0x6f22 sp_br_secure_connection_enable
+0x6f26 sp_br_secure_connection_disable
+0x6f2a sp_initialize
+0x6f2d sp_reset
+0x6f31 sp_wait_pubkey_calc_done
+0x6f37 sp_clear_flags
+0x6f40 sp_generate_local_key
+0x6f45 sp_generate_local_key0_256
+0x6f48 sp_start_send_pubkey_256
+0x6f4d sp_master_generate_local_key
+0x6f50 sp_generate_local_key0_192
+0x6f53 sp_start_send_pubkey
+0x6f58 sp_calc_check_publickey_256
+0x6f73 sp_calc_b256
+0x6f89 sp_calc_check_publickey
+0x6fa4 sp_calc_b
+0x6fba sp_calculate_commitment
+0x6fbe sp_calculate_commitment_256
+0x6fc8 sp_calculate_commitment0_256
+0x6fce sp_calculate_commitment_192
+0x6fd9 master_sp_calculate_commitment
+0x6fe0 sp_calculate_commitment0
+0x6fe6 master_sp_calculate_commitment0
+0x6fe9 sp_local_random_key_generator
+0x6fec sp_calculate_commitment_wait_dhkey_calc
+0x6fee sp_confirm_check
+0x6ff1 sp_confirm_check_wait
+0x6ff4 sp_confirm_check_256
+0x6ff7 sp_confirm_check_192
+0x6ff9 sp_confirm_check_common
+0x7009 sp_confirm_check_success
+0x700f sp_confirm_check_success_master
+0x7012 sp_confirm_check_failed
+0x7018 sp_confirm_check_failed_master
+0x701b sp_confirm_calc
+0x701f sp_confirm_calc_256
+0x7023 sp_confirm_calc_192
+0x7027 sp_confirm_calc_ready
+0x7034 sp_confirm_calc_master
+0x7037 sp_master_key_prarm_push
+0x7041 sp_link_key_prarm_push
+0x704b sp_link_key_calc
+0x7056 sp_debug_private
+0x7066 sp_pubkey_calc
+0x707f sp_pubkey_generated
+0x7085 sp_dhkey_calc
+0x7096 sp_dhkey_generated
+0x709d random_generator
+0x70a2 compare4
+0x70ac compare4_failed
+0x70ae compare4_success
+0x70b0 simple_pairing_sequence
+0x70c1 master_simple_paring_sequence
+0x70d3 master_set_mem_master_sp_flag
+0x70d5 master_clear_mem_master_sp_flag
+0x70d7 sp_calc_sequence
+0x70e2 sp_calc_sequence_done
+0x70e7 bn_testbit
+0x70ed ec_copy
+0x70f0 bn_eq_zero
+0x70f6 bn_eq_0
+0x70ff bn_bigeq
+0x7102 bn_bigeq_0
+0x710c bn_add
+0x710e bn_add_0
+0x711a bn_sub
+0x711c bn_sub_0
+0x7128 bn_rshift6
+0x712a bn_rshift
+0x712b bn_rshift_0
+0x7136 bn_lshift
+0x7138 bn_lshift_0
+0x7143 bn_lshiftmod
+0x7144 bn_lshiftmod_ismod
+0x714c bn_lshiftmod_0
+0x7150 bn_addmod
+0x7153 bn_submod
+0x715a bn_p192mod
+0x717b bn_load
+0x717c bn_load_0
+0x7181 bn_mulmod
+0x718b bn_mulmod_1
+0x718d bn_mulmod_0
+0x71a3 bn_sqrmod
+0x71a5 bn_rshifteven
+0x71a6 bn_rshifteven_1
+0x71b5 bn_rshifteven_0
+0x71b9 bn_invmod
+0x71c8 bn_invmod_2
+0x71e3 bn_invmod_1
+0x71f1 bn_invmod_0
+0x71fe ecdbl
+0x724f ecadd
+0x72bb eckp_0
+0x72c9 eckp_1
+0x72ce ecunmapz
+0x72e0 sha_endian_swap2
+0x72e3 sha_endian_loop
+0x72eb sha_getw
+0x72ef sha_r
+0x72f1 sha_r_loop
+0x7306 sha_init
+0x7308 sha_init_0
+0x730d sha
+0x7311 sha_0
+0x731a sha_loop
+0x7343 sha_1
+0x7349 sha_result
+0x734b sha_regext_save
+0x7350 pad_xor
+0x7353 pad_xor_0
+0x735a pad_xor_1
+0x735d g_noninit_number_confirm
+0x7361 g_noninit_number_confirm_192
+0x7364 g_noninit_number_confirm_256
+0x7367 g_noninit_192
+0x7369 g_noninit0_192
+0x7377 g_init_192
+0x7386 g_common_192
+0x738f g_common0
+0x73a0 noninit_number_confirm
+0x73a3 g_noninit0_256
+0x73b1 g_common_256
+0x73ba function_f1_192_no_key
+0x73bc function_f1_192
+0x73be function_f1_192_common
+0x73d9 function_f1_common2
+0x73f3 function_f2_192
+0x7429 function_f3a_192
+0x742b function_f3a_common
+0x743a function_f3a_no_pin
+0x743d function_f3b_no_pin
+0x7440 function_f3b_192
+0x7442 function_f3b_common
+0x744f function_f3_common
+0x7479 eckp_calc_init
+0x747a eckp_calc_init_1
+0x7484 eckp_calc
+0x748c memcpy_dword_swap4
+0x748d memcpy_dword_swap
+0x748e memcpy_dword_swap_loop
+0x7493 function_f1_no_key_256
+0x7495 function_f1_256
+0x7497 function_f1_common_256
+0x74b4 function_f3a
+0x74b8 function_f3a_256
+0x74ba function_f3a_common_256
+0x74c7 function_f3_common_256
+0x74e2 sha_end_common
+0x74f1 function_f3a_no_pin_256
+0x74f4 function_f3b_no_pin_256
+0x74f7 function_f3b
+0x74fb function_f3b_256
+0x74fd function_f3b_common_256
+0x750b function_f2
+0x750f function_f2_256
+0x7537 function_h3
+0x755f function_h4
+0x7584 function_h5
+0x75ac sp_initialize_256
+0x75af sc_reset
+0x75b2 sp_wait_pubkey_calc_256_done
+0x75b8 sp_debug_private_256
+0x75cd sp_pubkey_calc_256
+0x75e6 sp_pubkey_generated_256
+0x75ec sp_dhkey_calc_256
+0x75fc sp_dhkey_generated_256
+0x7602 sp_calc_sequence_256
+0x760c sp_calc_sequence_done_256
+0x7612 eckp_calc_256
+0x761a eckp_calc_init_256
+0x761d eckp_calc_init_256_1
+0x7627 ecunmapz_256
+0x7639 ecdbl_256
+0x768a ecadd_256
+0x76f6 bn_invmod_256
+0x7704 bn_invmod_256_2
+0x771f bn_invmod_256_1
+0x772d bn_invmod_256_0
+0x7734 bn_mulmod_256
+0x7742 bn_mulmod_256_1
+0x7748 bn_mulmod_256_0
+0x775d bn_p256mod
+0x77c6 bn_load_mem
+0x77ca bn_load_256
+0x77cc bn_sqrmod_256
+0x77ce bn_add_256
+0x77d0 bn_addmod_256
+0x77d3 bn_lshiftmod_256
+0x77d4 bn_lshiftmod_ismod_256
+0x77dd bn_lshiftmod_p_256
+0x77e5 sub_p2_256
+0x77e9 bn_submod_256
+0x77f3 bn_submod_256_np
+0x77fc bn_sub_256
+0x77fe bn_rshift_256
+0x7801 bn_lshift_256
+0x7804 bn_bigeq_256
+0x7808 bn_eq_zero_256
+0x780b bn_rshifteven_256
+0x780c bn_rshifteven_256_1
+0x781b bn_rshifteven_256_0
+0x781f ui_init
+0x7824 ui_dispatch
+0x7826 ui_button_init
+0x7830 ui_button_polling
+0x7836 ui_button_down
+0x7842 ui_button_up
+0x784c ui_button_check_long_press
+0x7853 lpm_button_get_wake_lock
+0x7855 lpm_button_clean_wake_lock
+0x7857 calc_curr_struct_prt
+0x785b ui_led_init_global
+0x7860 ui_led_init_loop
+0x7867 ui_led_on_global
+0x786c ui_led_blink_stop_global
+0x786c ui_led_off_global
+0x7871 ui_led_blink_start_global
+0x7877 ui_led_set_style_global
+0x787c ui_led_dispatch
+0x787f ui_led_blink_polling
+0x7885 ui_led_off_static
+0x788a ui_led_on_static
+0x788f ui_led_change_style_by_type
+0x7898 ui_led_blink_state_lighting
+0x78a3 ui_led_blink_state_darking
+0x78af ui_led_blink_infinite
+0x78b3 ui_led_blink_timer_start
+0x78b5 ui_led_stop_timer
+0x78b7 ui_timer_timeout
+0x78bb ui_timer_check
+0x78c2 ui_timer_check_loop
+0x78cc ui_timer_init
+0x78cf ui_timer_check_end
+0x78d5 ui_timer_check_send_evt
+0x78d6 ui_ipc_get_lock
+0x78d7 ui_ipc_get_lock_wait
+0x78da ui_ipc_put_lock
+0x78dc ui_ipc_send_event
+0x78e5 ui_ipc_send_cmd
+0x78ee ui_ipc_clean_all_fifo
+0x78f2 check_51cmd
+0x78fd check_51cmd_once
+0x7917 check_51cmd_once_continue
+0x7928 check_51cmd_check_idle
+0x792d check_51cmd_restore
+0x792f check_51cmd_start_discovery
+0x7934 check_51cmd_stop_discovery
+0x793a check_51cmd_reconnect
+0x793c check_51cmd_disconnect
+0x793f check_51cmd_enter_sniff
+0x794a check_51cmd_exit_sniff
+0x794c check_51cmd_pincode
+0x7952 check_51cmd_pincode_pair_passive
+0x7959 check_51cmd_adv
+0x795f check_51cmd_stop_adv
+0x7964 check_51cmd_direct_adv
+0x796a check_51cmd_stop_direct_adv
+0x796f check_51cmd_le_disconnect
+0x7973 check_51cmd_ble_update_connect_param
+0x7974 check_51cmd_led_off
+0x7976 check_51cmd_led_on
+0x7978 check_51cmd_led_start_blink
+0x797f check_51cmd_led_start_blink_in_blink
+0x7982 check_51cmd_le_start_con
+0x7985 check_51cmd_start_scan
+0x7987 check_51cmd_stop_scan
+0x798a check_51cmd_hibernate
+0x7990 check_51cmd_hibernate_btn_disabled
+0x7992 check_51cmd_le_smp_sec_req
+0x7993 check_51cmd_role_switch
+0x799c check_51cmd_bb_reconn_cancel
+0x799e check_51cmd_dhkey_not_accept
+0x79a1 ui_check_paring_button
+0x79a5 queue_init
+0x79aa queue_push
+0x79b9 calc_queue_next_ptr
+0x79c1 queue_pop
+0x79d2 queue_get_new_ele
+0x79e1 queue_store_new_ele
+0x79f0 queue_empty
+0x79f4 queue_full
+0x79f8 queue_get_size
+0x79fc usb_isr
+0x7a08 usb_init
+0x7a1f usb_offline_check_init
+0x7a21 usb_offline_state
+0x7a27 usb_init_param
+0x7a59 usb_config_cb
+0x7a5b usb_tx_interval_config
+0x7a60 usb_nak_state
+0x7a68 usb_nak_state_judge
+0x7a6b usb_nak_state_timer_init
+0x7a70 usb0_attached_state_judge
+0x7a75 usb_clear_halt_dispose
+0x7a7b usb_rx_no_data
+0x7a7e usb_rx_data
+0x7a89 usb_rx_read
+0x7a8f usb_data_rx
+0x7a90 usb_rx
+0x7a98 usb0_rx
+0x7a9d usb_class_type
+0x7aa4 usb_out_one_byte
+0x7aa8 usb_in_device
+0x7ab0 usb_out_device
+0x7ab8 usb_in_standard_req
+0x7abe usb_in_class_req
+0x7ac3 usb_in_manufacturer_req
+0x7ac4 usb_out_standard_req
+0x7acc usb_out_class_req
+0x7ad1 usb_out_manufacturer_req
+0x7ad2 usb0_force_stall
+0x7ad6 usb0_reply_zerolen
+0x7ad8 usb0_request_get_configuration
+0x7aea usb0_request_get_cfg_dev_cfg
+0x7aec usb0_request_get_cfg_dev_addr
+0x7aee usb0_request_get_descriptor
+0x7af6 dsc_hid_info
+0x7afb dsc_hid_info_interface0
+0x7afe dsc_hid_info_interface1
+0x7b01 dsc_device_info
+0x7b05 dsc_info_set_data_len
+0x7b0a dsc_info_set_initial_data_len
+0x7b0b dsc_info_set_data_size_completed
+0x7b10 dsc_info_set_current_data_len
+0x7b12 usb_set_high_addr
+0x7b16 usb0_set_addr
+0x7b1a dsc_config_info
+0x7b1d dsc_string_info
+0x7b2b dsc_hid_report_info
+0x7b2f dsc_hid_report_info0
+0x7b33 usb0_request_get_interface
+0x7b45 usb0_request_get_status
+0x7b56 usb0_sdsystem_dispose
+0x7b58 usb0_get_status_in_device
+0x7b5d usb_send_zero_packet
+0x7b5f usb_send_ones_packet
+0x7b61 usb_send_two_packet
+0x7b63 usb0_get_status_in_interface
+0x7b67 usb0_get_status_in_endpoint
+0x7b70 usb0_get_status_in_ep_in_ep0
+0x7b71 usb0_get_status_in_ep_in_ack
+0x7b74 usb0_get_status_in_ep_in_ep1
+0x7b76 usb0_get_status_in_ep_in_ep2
+0x7b78 usb0_get_status_in_ep_in_ep3
+0x7b7a usb_get_idle
+0x7b7e usb_get_report
+0x7b82 usb_get_report_dispose
+0x7b85 usb_get_report_send_data
+0x7b89 usb_get_report_data_release
+0x7b8c usb_get_report_data_success
+0x7b8f usb_get_protocol_req
+0x7b97 usb_get_report_protocol
+0x7b98 usb_get_boot_protocol
+0x7b99 usb0_request_clear_feature
+0x7ba8 usb0_request_clear_feature_out_device
+0x7bb5 usb0_request_clear_feature_out_interface
+0x7bb6 usb0_request_clear_feature_out_endpoint
+0x7bbf usb0_force_stall_ep0_in_off
+0x7bc1 usb0_force_stall_ep1_in_off
+0x7bc2 usb0_force_stall_ep1_in_off_reply
+0x7bc4 usb0_force_stall_ep2_in_off
+0x7bc6 usb0_force_stall_ep3_in_off
+0x7bc8 usb0_request_set_feature
+0x7bd1 usb0_request_set_feature_out_device
+0x7bdb usb_wakeup_timer_reinit
+0x7bdf usb0_request_set_feature_out_interface
+0x7be0 usb0_request_set_feature_out_endpoint
+0x7beb usb0_force_stall_ep0_in_on
+0x7bed usb0_force_stall_ep1_in_on
+0x7bef usb0_force_stall_ep2_in_on
+0x7bf1 usb0_force_stall_ep3_in_on
+0x7bf3 usb0_request_set_address
+0x7c04 usb_usb0_state_set_dev_default
+0x7c05 usb0_request_set_wait_address
+0x7c0a usb_usb0_state_set_dev_addr
+0x7c0c usb0_request_set_configuration
+0x7c21 usb0_request_set_cfg_addr_state
+0x7c21 usb0_request_set_cfg_cfg_state
+0x7c25 usb0_request_set_cfg_stay_addr_state
+0x7c27 usb0_request_set_interface
+0x7c38 usb_set_idle
+0x7c46 usb_clear_remote_wakeup_set0
+0x7c4a usb_set_report
+0x7c56 usb_get_led_status
+0x7c5a usb_set_report_resume_judge
+0x7c68 usb_set_protocol_req
+0x7c6e usb_set_boot_protocol
+0x7c71 usb_set_report_protocol
+0x7c75 usb0_respond_length
+0x7c77 usb0_respond
+0x7c7c usb0_respond_nostr
+0x7c7f usb_no_respond_data
+0x7c81 usb0_tx
+0x7c8f usb0_tx_short
+0x7c93 usb0_tx_info
+0x7ca5 usb0_tx_nostr
+0x7ca7 usb0_tx0
+0x7cac usb0_tx1
+0x7cb9 usb_tx_ep1
+0x7cbc usb_tx_buf
+0x7cbe usb_tx_loop
+0x7cc1 usb_trig
+0x7cc5 usb_tx_ep2
+0x7cc9 usb_tx
+0x7cd5 usb_tx_data_ep1
+0x7ce0 usb_tx_data_ep2
+0x7ced usb_tx_fifo_release
+0x7cf0 usb_tx_ms_data
+0x7cf8 usb_tx_ms_data_mac_boot_mode
+0x7cf9 usb_tx_ms_data_mac_boot_regroup
+0x7d07 usb_tx_ms_data_normal_mode
+0x7d08 usb_tx_mac_boot_ms_regroup_r_or_lrkey
+0x7d0b usb_tx_kb_multikey_data
+0x7d0f usb_tx_kb_normal_data
+0x7d13 usb_tx_kb_systemkey_data
+0x7d17 usb_inwake_state_tx_dispose
+0x7d1a usb_mac_wakeup_trig
+0x7d1f usb_mac_wakeup_judge
+0x7d23 usb_mac_wakeup
+0x7d27 usb_windows_wakeup
+0x7d2a usb_wakeup
+0x7d30 right_shift_n
+0x7d32 right_shift_n_loop
+0x7d35 left_shift_n
+0x7d38 left_shift_n_loop
+0x7d3b push_stack
+0x7d43 push_stack_rega_b_c
+0x7d47 pop_stack
+0x7d51 pop_stack_rega_b_c
+0x7d55 get_contw
+0x7d58 get_contr
+0x7d5b store_contw
+0x7d5e store_contr
+0x7d61 save_cont_pointers
+0x7d66 load_cont_pointers
+0x7d6b get_diff
+0x7d71 memcpy96
+0x7d72 memcpy64
+0x7d74 memcpy20
+0x7d75 memcpy12
+0x7d76 memcpy4
+0x7d79 memcpy8
+0x7d7c memcpy48
+0x7d7d memcpy32
+0x7d7e memcpy24
+0x7d7f memcpy16
+0x7d81 delay
+0x7d85 delay_10ms
+0x7d86 delay_ms_wait
+0x7d89 delay_50ms
+0x7d8b bn_zero
+0x7d8c memset0
+0x7d8d memset8
+0x7d90 memset0_16
+0x7d91 memset0_8
+0x7d94 memset0_4
+0x7d97 clear_mem_256
+0x7d99 clear_mem_512
+0x7d9b clear_mem
+0x7d9e clear_mem_loop
+0x7da1 clear_temp_block
+0x7da4 xor_loop
+0x7dac inverse_data
+0x7db3 inverse_loop
+0x7dbb le2be_6byte
+0x7dbb inverse_data_6byte
+0x7dc1 le2be_4byte
+0x7dc1 inverse_data_4byte
+0x7dc7 memcpy_fast
+0x7dc9 memcpy_fast_loop
+0x7dce memcpy_fast_loop_four
+0x7dd4 memcpy
+0x7dd6 memcpy_loop
+0x7dda timer_stop
+0x7ddb timer_init
+0x7de4 timer_check_timeout
+0x7de8 timer_reinit
+0x7de9 timer_check
+0x7df4 timer_loop
+0x7df8 timer_counting
+0x7dff clk_add
+0x7e0a clk_diff_rt
+0x7e0c clk_diff
+0x7e11 clk_diff_pos
+0x7e19 clk2rt
+0x7e1f clk2lpo
+0x7e26 clk2bt
+0x7e2d string2dec_from_uart
+0x7e2e string2dec_from_uart_done
+0x7e39 uchar2dialog
+0x7e42 uchar2dialog_number
+0x7e45 uchar2dialog_a2f
+0x7e48 pn9
+0x7e4b pn9_loop
+0x7e5b calc_average
+0x7e5d calc_average_loop
+0x7e61 get_div_result
+0x7e64 wait_div_end
+0x7e66 compare_loop
+0x7e66 string_compare
+0x7e6f ceiling
+0x7e73 swap
+0x7e77 clean_mem
+0x7e7a callback_func
+0x7e7c wait_uarttx
+0x7e7f ice_break
+0x7e81 ice_setbp
+0x7e86 ice_setbp2
+0x7e8b ice_set_write_bp
+0x7e8e test_enable_white
+0x7e92 check_uart_tx_buff
+0x7e94 pdata_sub_temp
+0x7e96 fifo_in
+0x7e9c fifo_in_push
+0x7ea2 fifo_out
+0x7ea6 fifo_out_loop
+0x7eab fifo_out_end
+0x7eae fifo_is_empty
+0x7eb0 fifo_is_full
+0x7eb2 fifo_is_near_full
+0x7eb4 fifo_content_count
+0x7eb5 fifo_content_count_loop
+0x7ebb not_greater_than
+0x7ebd copy_temp2pdata
+0x7ebf disable_positive
+0x7ec1 enable_positive
+0x7ec1 disable_zero
+0x7ec3 enable_zero
+0x7ec5 enable_user
+0x7ec7 disable_user
+0x7ec9 enable_user2
+0x7ecb disable_user2
+0x7ecd enable_user7
+0x7ecf disable_blank
+0x7ed1 enable_blank
+0x7ed1 set_pdata_0
+0x7ed3 cal_sum
+0x7ed5 cal_sum_loop
+0x7ed9 reverse_byte
+0x7edf reverse_loop
+0x7ee4 calc_k12
+0x7ee5 calc_k
+0x7ee9 rxcal_k1_loop
+0x7ef9 complex_mult16to8
+0x7f00 complex_not_conj
+0x7f10 complex_mult32to32
+0x7f21 lshift14
+0x7f22 rshift2
+0x7f24 lshift6
+0x7f26 calc_vok
+0x7f27 rshift7
+0x7f2a signed_ext16by8
+0x7f2d abs32
+0x7f34 sqrt
+0x7f39 sqrt_loop
+0x7f3f sqrt_less
+0x7f42 sqrt_greater
+0x7f45 signed_div
+0x7f49 signed_div_unsigna
+0x7f4d signed_div_unsignb
+0x7f52 clear_wake
+0x1000 z_entrance0
+0x1000 z_mouse_init_set_config
+0x1001 z_le_set_justwork
+0x1001 z_mouse_load_flash_info_check
+0x1002 z_mouse_app_initflag_check
+0x1002 z_mouse_24g_report_param_init
+0x1002 z_mouse_set_report_125hz
+0x1002 z_mouse_set_report_250hz
+0x1002 z_mouse_set_report_500hz
+0x1003 z_mouse_set_report_1000hz
+0x1003 z_mouse_store_normal_tx_power
+0x1003 z_mouse_led_multi_parm_init
+0x1003 z_mouse_cb_fuction
+0x2000 z_entrance1
+0x2000 z_mouse_start_work_next
+0x2000 z_mouse_le_fast_conn_judge
+0x2000 z_mouse_le_device1_judge
+0x2001 z_mouse_le_device2_judge
+0x2001 z_mouse_le_addr_compare
+0x2001 z_mouse_24g_start_mode
+0x2002 z_mouse_24g_first_start_auto_pair_mode
+0x2002 z_mouse_24g_reconn_general_dongle
+0x2002 z_mouse_24g_pairing_complete
+0x3000 z_entrance2
+0x3000 z_mouse_setgpio_hibernate
+0x3001 z_mouse_device_switch_gpio_high_impedance
+0x3001 z_mouse_wheel_gpio_set_before_hibernate
+0x3001 z_mouse_wheel_clr_wakeup
+0x3002 z_mouse_24g_attempt_success
+0x4000 z_entrance3
+0x4000 z_mouse_le_bb_disconnected
+0x4000 z_mouse_start_discovery
+0x4001 z_mouse_device_discovery_led_config
+0x5000 z_entrance4
+0x5000 z_mouse_report_param_set
+0x5000 z_mouse_g24_report_125hz
+0x5000 z_mouse_g24_report_250hz
+0x5001 z_mouse_24g_short_sleep_set
+0x5001 z_mouse_g24_report_500hz
+0x5001 z_mouse_g24_report_1000hz
+0x6000 z_entrance5
Index: format/rom.format
===================================================================
--- /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/format/rom.format	(nonexistent)
+++ /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/format/rom.format	(working copy)
@@ -0,0 +1,10161 @@
+(//mem_system_clk
+12 SYSTEM_CLK_12M
+24 SYSTEM_CLK_24M
+)
+(//bluetooth tx power
+0x00 TX_POWER_0DB
+0x03 TX_POWER_3DB
+0x05 TX_POWER_5DB
+0x06 TX_POWER_6DB
+0x07 TX_POWER_7DB
+0x0a TX_POWER_10DB
+
+0x83 TX_POWER_F3DB
+0x85 TX_POWER_F5DB
+0x91 TX_POWER_F17DB
+0x94 TX_POWER_F20DB
+0x95 TX_POWER_PAIR
+0x9e TX_POWER_F30DB
+0xaa TX_POWER_FAST_CONN
+
+)
+(
+0x01 coffset_mode
+0x02 coffset_tsniff
+0x04 coffset_sniff_anchor
+0x08 coffset_clk_offset
+0x0e coffset_rx_window
+0x10 coffset_plap
+0x16 coffset_conn_handle
+0x17 coffset_arq
+	/* 3.0 only */
+0x18 coffset_lmp_to_send
+0x1b coffset_op
+0x1c coffset_state_map
+	/* le only */
+0x18 coffset_le_ch
+0x19 coffset_le_hop
+0x1a coffset_le_event_cnt
+0x1c coffset_le_supervision_timer
+0x20 coffset_le_instant
+0x22 coffset_le_channels
+0x23 coffset_le_op
+0x24 coffset_le_access
+0x28 coffset_le_crcinit
+0x2b coffset_le_window_size
+0x2c coffset_le_slave_latency
+0x2e coffset_le_slave_superto
+0x30 coffset_le_channel_map
+0x35 coffset_le_rx_phy
+0x36 coffset_le_tx_phy
+0x37 coffset_le_new_map
+0x37 coffset_le_new_m2s_phy
+0x38 coffset_le_new_s2m_phy
+0x37 coffest_le_new_transmitwindowsize
+0x38 coffest_le_new_transmitwindowoffset
+0x3a coffest_le_new_conninterval
+0x3c coffest_le_new_connslavelatency
+0x3e coffest_le_new_connsupervisiontimeout
+0x40 coffset_le_sk
+0x50 coffset_le_peer_sca
+0x53 coffset_le_transmit_window
+	
+88 context_size
+1 context_num
+)
+(
+0 lpm_flag_wake
+1 lpm_flag_loadcode
+)
+(
+0x0050 param_newconn_arq
+0x0007 param_esco_addr
+0x0010 param_conn_handle
+0x01f0 param_conn_handle_comp
+0x0020 param_newconnto
+0x0008 param_pagerespto
+0x0a00 param_snooze_setup_orig
+0x5353 param_snooze_ahead_orig
+0x00ff param_ninquiry
+0x2000 param_page_to
+0x0005 param_max_slot
+0x0010 param_sco_poll
+
+/* 24Mhz clock setting */
+ifdef CLK24M
+0x1c86 param_tx_setup
+0x0c00 param_rf_setup
+0x0c00 param_conn_access 
+0x1a00 param_rx_setup
+0x0776 param_clke_cal
+0x0a00 param_pll_setup
+4000 param_dpll_start_delay
+7500 param_halfclk
+60084 param_halfclk_neg
+-60084 param_halfclk_neg1
+else
+/* 12Mhz clock setting */
+0x0e43 param_tx_setup
+0x0600 param_rf_setup
+0x0600 param_conn_access 
+0x03bb param_clke_cal
+0x0500 param_pll_setup		// 120 is minimum
+0x0d00 param_rx_setup	// 114us before sync
+2000 param_dpll_start_delay
+3750 param_rt_rthalfslot
+
+480 param_clke_cal_le_1m	//preamble(1B) & access address(4B) time (1+4)*8*1 * 12
+288 	param_clke_cal_le_2m	//preamble(2B) & access address(4B) time (1+4)*8*1 * 12
+282 param_clke_cal_le_coded	//preamble(80us) & access address(256us)-312.5us(0.5slot)
+endif
+
+110 param_lpm_fix
+10 param_lpo_extra
+200 param_lpm_adjmax
+
+ifdef SIM
+20 param_hibernate_clks
+3 param_chgpump_delay
+else
+-1 param_hibernate_clks
+3000 param_chgpump_delay
+endif
+
+3 param_featrue_ssp
+0x0101 param_lmpext_ssp_enable
+30   param_sco_pktlen
+1     param_acl_pktcnt		/*buffer acl pkt cnt*/
+7     param_sco_pktcnt
+
+
+0x8fffff param_features0
+0x9d83fe param_features1  // not support afh
+0x8359     param_features2
+0x000033 param_unap
+0x001177 param_lap
+0x9e8b33 param_glap
+0x002540 param_class//0x180208 //0x002580//402500//240404
+0x000a04 param_lmp_version//0x0a04
+0x000a06 param_lmp_version0
+0x12e9 param_lmp_subversion
+0x0012 param_tisw
+0x0012 param_tpsw
+0x1000 param_tisi
+0x0800 param_tpsi
+0x0020 param_page_window
+0x0020 param_inq_window
+0x1c80 param_supervision_to
+39 param_fcomp_div
+2 param_fcomp_mul
+6     param_name_len
+0x535442 param_name
+0x344950 param_name1
+
+
+)
+(
+0x0      type_null    
+0x1      type_poll   
+0x2      type_fhs    
+0x3      type_dm1    
+0x4      type_dh1    
+0x5      type_hv1    
+0x6      type_hv2    
+0x7      type_hv3    
+0x8      type_3dh1     
+0x9      type_aux1   
+0xa      type_dm3    
+0xb      type_dh3    
+0xe      type_dm5    
+0xf      type_dh5    
+0x10     type_id
+0x11     type_shutdown
+0x13     type_lmp
+)
+(
+0        always        /* always 1 */
+1        true          /* set/rstn by verify,compare,icompare (true) */
+2        positive      /* set/rstn by all alu operations (opcode = 0x03,0x13,0x0f,0x1f), if alu output >= 0 */
+3        timeout       /* read only, the timeout from timers */
+5        zero          /* set/rstn by all alu operations (opcode = 0x03,0x13,0x0f,0x1f), if alu output == 0 */
+6        crc_failed    /* level, cleared by hop_start */
+7        enable_white  /* outside mux decide whether to load bt_clk or response_X */
+8        enable_parity /* level */
+9        enable_crc    /* level */
+10       enable_hec    /* level */
+11       decode_fec1   /* level */
+12       decode_fec2   /* level */
+13       decode_fec0   /* level */
+14       encrypt       /* level */
+15       crc16       /* for caculate ccitt crc16 */
+16       swfine	/* =0 stop_watch count based on oneslot =1 on 1 clock */
+20       rqst_freq    /* pulse, to start calculating frequency */
+21       recalc        /* pulse, to recalculate the fhs_parity */
+22       init_encrypt  /* pulse, issued to initialize encrption */
+23       mhalfbnd    /* half slot boundary of clke_rt, or when clke_bt[0] toggles */
+24       sync          /* sync found as a result of correlation,set/rstn by correlate opcode */
+25       user10    /* user10 */
+26       kc_p_activate  /* pulse to recalc the kc_p */
+27       encode_fec1   /* level */
+28       encode_fec2   /* level */
+29       encode_fec0   /* level */
+30       packet_end    /* pulse */
+32       is_tx         /* level */
+33       is_rx         /* level */
+34       halfslot     /* pulse, read only, when clkn_bt[0] toggles */
+35       oneslot      /* pulse, read only, when clkn_bt[1] toggles */
+36       mslotbnd     /* pulse, read only, when clke_bt[1] toggles */
+37       expire       /* level, read only, when selected clock source exceed timeup value */
+38       meet         /* level, read only, when selected clock source meet timeup value */
+39       tx_clear     /* level, read only, indicate tx pipe is cleared */
+40       user         /* user0 */
+41       master        /* user1 */
+42       slave2         /* user2 */
+43       wake           /* user3 */
+44       user2        /* user4 */
+45       match         /* user5 */
+46       attempt        /* user6 */
+47       user3          /* user7 */
+48       clknt         /* user8 */
+49	   user7 	/* user9 */
+50       synchronize   /* synchronize lpo and regular version of the clock */
+51       lpo_edge  /* read only, 3 clocks after risling edge of lpo clock */
+52       blank         /* C0 only, means pdata == 0 */
+53       modone          /* set divide operation is done */
+54       le		/* bluetooth 4.0 LE enable */
+55       aes_ready	/* set when aes is ok */
+56       encode_fec3   /* level */
+57       dewhiten_code_calc   /* dewhiten code calculate */
+58       lr_s2en       /* long range s2 enable */
+60	   ble_coded_info	//1:s2 0:s8
+63       never         /* read only, always 0 */
+)
+default flag = always
+(
+0        mark   /* for keeping strobes, more permanent */
+1        type   /* save and verify during rx */     /* rw */
+2        temp   /* general purpose register, 64 bits */
+3        contu  /* contr uart */
+3	 contru	/*contr uart*/
+3	 contwu	/*contw uart*/
+4        am_addr      /* verify during rx, read and send during tx */ /* ro */
+5        contw        /* last mem_addr during write */
+6        contr        /* last mem_addr during read */
+7        queue    /* the index of qset*,qisolate* commands, ie, if queue = 3, qset/qisolate operate on bit3 */
+8        debug    /* can be wired out for observation */
+9        access   /* the 72 bit access word */
+10       contus   /* contw uart */
+11       timeup        /* when does certain counter expire */
+12       pwindow       /* bit 71-61 of pdata; because on rx, bits shifts in from 71 down */
+13       fhs_parity    /* re-gernated based on bt_adr( {nap,uap,lap} ) when recalc flag is pulsed */
+14       white_init    /* init value of the whitening */
+15       crc24_init        /* init crc24 lfsr, 24 bits */
+16       contue    /* set interrupts, 40 bits */
+17       rega          /* general purpose register, 32 bits */
+18       regb          /* general purpose register, 32 bits */
+19       regc          /* general purpose register, 17 bits */
+20       regab         /* concat of {rega,regb}, thus 64 bits */
+21       radio_ctrl   /* radio i/f direct i/o ctrl, check following "radio_ctrl" section */
+
+23       freq_index   /* 7 bit read only */
+24       regd    /* 32 bit regext[1,0] */
+25       clkn              /* {clkn_bt, clkn_rt} */
+26       clke              /* {clke_bt, clke_rt} */
+27       stop_watch		
+28       fhs_misc   /* SR, SP, pscan mode */
+29       fhs_class  /* class field in fhs */
+30       fhs0   /* read only, bit 0-71 of fhs word */
+31       fhs1   /* read only, bit 72-142 of fhs word */
+32       bt_adr /* r/w, the bt_addr to access gen and freq hopping, contain only lap and uap */
+33       bt_clk /* r/w, the bt_clk for freq hopping */
+34       clkn_bt  /* read only, native bluetooth clock, free running 3.2KHz  or controlled by RTHALFSLOT register */
+35       clkn_rt  /* read only, native realtime clock, free running 12MHz, count from 0-3749, or controlled by RTHALFSLOT register */
+36       freq_mode
+37       xin   /* x parameter, read only */
+38       N_tx_slot /* the N factor in equations for Xi,Xp,Xprm,Xprs */
+39 	   auxcnt
+40       clke_bt  /* r/w,  external bluetooth clock , free running 3.2KHz or controlled by RTHALFSLOT register */
+41       clke_rt  /* r/w,  external realtime clock, , free running 12MHz, count from 0-3749, or controlled by RTHALFSLOT register */
+42       branch_addr	/* last branch address */
+43       rege         /* 64bit regext[3,2] */
+44       lap
+45       uap
+46       nap         
+47       regext		/* r/w extended 12x32bit registers,  indexed by regext_index */
+48       alarm             /* r/w, lpo wake up time, this is also how lpo and current clock keep sync */
+49       lpo_time          /* read only, this is the value to be copied back to clkn/clke after wakeup */
+50       kc_ls             /* secret key,                71: 0 */
+51       kc_ms             /* secret key,               127:72 */
+52       g1l               /* encryption length                */
+53		mask3ff		/* for mask 0x3ff operation */
+54       aes_ctrl		
+55       regf			/* 64bit regext[5,4] */
+56       regext_index   /* index of regext */
+57	     loopcnt
+58      stack			/* current return address */
+59       stack_ptr		/* stack depth */
+61         pc /* direct goto */
+62       null              /* to nowhere */
+63       pdata /* the shift register */
+)
+default reg = pdata
+(
+0 regidx_data
+4 regidx_key
+8 regidx_xor
+12 regidx_result
+)
+(
+0 TXGFSK
+1 PSK
+2 PSK3M
+3 RESET
+)
+(
+0 bucket
+1 rxf
+2 back
+3 mod
+)
+default dest = bucket
+(
+1 txf
+3 demod
+)
+default source = 0
+(
+0  mark_fhs_eir  
+1  mark_rxbuf_inuse
+2  mark_tx_l2cap
+3  mark_switch_initiated
+4  mark_accept_switch
+5  mark_loopback
+7  mark_esco
+8  mark_esco_rxok
+9  mark_context
+10 mark_am_addr_broadcast
+11 mark_fhs_already_good
+12 mark_page_trainb
+13 mark_lpm_mult_enable
+14 mark_usb_first_resp
+15 mark_old_packet
+16 mark_longpacket
+17 mark_testmode
+18 mark_ar2
+28 mark_inquiry_on
+29 mark_inquiry_state
+30 mark_inquiry_trainb
+31 mark_periodical_diac
+32 mark_all_diac
+33 mark_slave_in_rand_accepted
+34 mark_reconn_recieve_switch
+35 mark_isstr
+36 mark_loadcode
+37 mark_ext_patch
+38 mark_24g
+39 mark_24g_rxmode
+40 mark_eeprom_size
+41 mark_ble_tx_md
+42 mark_ble_rx_md
+43 mark_otp_encrypt
+44 mark_temp
+45 mark_ble_2M
+46 mark_ble_lr_s8
+47 mark_ble_lr
+48 mark_ble_crc_fail
+49 mark_role_switch_receive_fhs
+50 mark_ble_encryption
+51 mark_first_packet
+)
+(
+1 reload_type_otp
+2 reload_type_spi
+3 reload_type_iic
+)
+(
+0 le_adv_interval_timer
+1 inquiry_length_timer
+2 le_scan_interval_timer
+3 page_length_timer
+4 iscan_interval_timer
+5 pscan_interval_timer
+6 switch_wait_timer
+7 enpt_delay_timer
+8 page_interval_timer
+9 key_scan_timer
+10 smp_pairing_timer
+11  ui_led_blink   //led timer ¿ÉÀ©Õ¹
+12  ui_led_blink1
+13 ui_led_blink2
+
+//²»Ê¹ÓÃmeshÓ¦ÓÃ¿ÉÒÔ¸´ÓÃ
+//Tiny Mesh ¹ã²¥APP»Ø¸´
+13 mesh_ble_adv_app
+//Tiny Mesh¹ã²¥tmall»Ø¸´
+14 mesh_ble_adv_tmall
+//Tiny Mesh relay
+15 mesh_ble_relay_timer
+
+)
+(
+1 hci_cmd_inquiry
+2 hci_cmd_inquiry_cancel
+3 hci_cmd_remote_name_req
+4 hci_cmd_remote_feature_req
+5 hci_cmd_create_conn
+6 hci_cmd_disconn
+7 hci_cmd_accept_conn
+8 hci_cmd_reject_conn
+9 hci_cmd_pair
+10 hci_cmd_nopair
+11 hci_cmd_linkkey
+12 hci_cmd_nokey
+13 hci_cmd_auth
+14 hci_cmd_stopencrypt
+15 hci_cmd_startencrypt
+16 hci_cmd_setup_sco
+17 hci_cmd_disconn_sco
+18 hci_cmd_in_sniff
+19 hci_cmd_exit_sniff
+20 hci_cmd_remote_version_req
+21 hci_cmd_remote_ext_features_req
+22 hci_cmd_io_cap
+23 hci_cmd_role_discovery
+24 hci_cmd_role_switch
+25 hci_cmd_accept_with_switch
+26 hci_cmd_detach
+27 hci_cmd_le_create_conn
+28 hci_cmd_accept_sco_conn
+29 hci_cmd_le_disconn
+30 hci_cmd_le_att_req
+80 hci_cmd_wait_remote_feature
+81 hci_cmd_wait_remote_ext_feature
+82 hci_cmd_wait_remote_name
+)
+(
+0 debug_neg_skew
+1 debug_bitbucket
+2 debug_dont_clear_got_tx
+3 debug_scatter_enabled
+4 debug_tx_fixed_freq
+5 debug_rx_fixed_freq
+6 debug_tx_pattern
+)
+(
+0 tester_fixed_flow
+1 tester_fixed_flow_polarity
+2 tester_change
+3 tester_exit
+4 tester_pattern_test
+5 tester_whitening_change
+6 tester_fixed_freq
+7 tester_no_whitening
+)
+(
+0 mode_le
+1 mode_master
+2 afh_enable
+3 afh_change
+4 first_seqnx
+)
+(
+0 smap_lmptidinit
+1 smap_lmptid
+2 smap_encryption
+3 smap_name_res
+4 smap_name_req
+5 smap_edr
+6 smap_rxlmp
+7 smap_rxl2cap
+)
+(
+0 state_inconn
+1 state_insniff
+2 state_insco 
+3 state_inpage
+4 state_conn_comp
+5 state_init_seq
+6 state_combkey
+7 state_linkkey
+)
+(
+0 op_send_sres
+1 op_auth_req
+2 op_inrand_req
+3 op_disconn
+4 op_stop_enc
+5 op_start_enc
+6 op_txl2cap
+7 op_pkt_comp
+)
+(
+0 flow
+1 arqn
+2 seqn
+3 wack
+4 flowx              /* out */  /* not really in memory */
+5 arqnx              /* out */
+6 seqnx              /* out */
+7 bcast1             /* first broadcast received */
+)
+(
+0 AFH_CFG_ON
+1 AFH_CFG_TIMER
+2 send_lmp_set_afh
+3 AFH_CFG_REPORT_MODE
+4 AFH_CFG_MASTER_SENT_REQ
+)
+(	
+1 LLID_L2CAP_CONT
+2 LLID_L2CAP_START
+3 LLID_LMP
+)
+(
+0  master_in_idle
+1  master_in_inquiry
+2  master_in_page
+10 master_in_becoming_slave
+15 master_in_conn
+)
+(
+0 newrev_feature_bettx
+1 newrev_feature_betplltx
+2 newrev_feature_skip_retransmit
+3 newrev_feature_init_radio_after_sleep
+4 newrev_feature_no_lpolog
+)
+(
+0 pincode_state_ilde
+1 pincode_state_wait_pincode
+2 pincode_state_pincode_ready
+)
+(
+1 lpmreg_sel_ctrl
+2 lpmreg_sel_ctrl2
+4 lpmreg_sel_gpiolow
+8 lpmreg_sel_gpiohigh
+16 lpmreg_sel_counter
+32 lpmreg_sel_ctrl3
+)
+(
+0x02 lpmreg_sel_option
+)
+(
+8 lpmreg_spi_lock_bit
+9 lpmreg_spi2_lock_bit
+0x0a lpmreg_uart_lock_bit
+0x0b lpmreg_uartb_lock_bit
+0x0c lpmreg_iic_lock_bit
+0x0d lpmreg_rom_lock_bit
+0x0e lpmreg_ice_mode_bit
+
+0x01 lpmreg_spi_lock
+0x02 lpmreg_spi2_lock
+0x04 lpmreg_uart_lock
+0x08 lpmreg_uartb_lock
+0x10 lpmreg_iic_lock
+0x20 lpmreg_rom_lock
+0x40 lpmreg_ice_mode
+)
+(
+0 inq_scan_mode
+1 page_scan_mode
+2 page_inq_enable
+)
+(
+ 0 default_neogotiation_state
+ 1 prarm_neogotiation
+)
+(
+0 wake_lock_ble_rx
+1 wake_lock_ble_tx
+
+3 wake_lock_key_press
+4 wake_lock_ble_tx_patch
+5 wake_lock_uart_tx
+6 wake_lock_uart_rx
+7 wake_lock_button
+8 wake_lock_cmd
+9 wake_lock_app
+10 wake_lock_lmp_tx
+11 wake_lock_lmp_rx
+12 wake_lock_l2cap_tx
+13 wake_lock_l2cap_rx
+14 wake_lock_ipc_c512bt
+15 wake_lock_ipc_bt2c51
+
+)
+(//mem_fcomp_div
+0x18 XTAL_24M
+0x08 XTAL_16M
+)
+( //verion
+6 BLUETOOTH_CORE_SPECIFICATION_4_0
+7 BLUETOOTH_CORE_SPECIFICATION_4_1
+8 BLUETOOTH_CORE_SPECIFICATION_4_2
+9 BLUETOOTH_CORE_SPECIFICATION_5_0
+10 BLUETOOTH_CORE_SPECIFICATION_5_1
+)
+(
+0x050e COMPANY_ID_YICHIP
+)
+(
+0x33  REC_3_MODE
+0x34  REC_4_MODE
+0x35  REC_4_MODE_STATIC_ADDRESS
+0x36  REC_4_MODE_RANDOM_RESOLVABLE_PRIVATE_ADDRESS
+0x37  REC_4_MODE_RANDOM_NON_RESOLVABLE_PRIVATE_ADDRESS
+)
+(
+6 UART_WAKEUP_TX
+7 UART_WAKEUP_RX
+)
+(//mem_le_T_IFS
+150 PARAM_T_IFS_150US
+20000 PARAM_20MS_INIT
+-13 PARAM_SYNC_TIME_DIFFERENCE
+40 PARAM_CODED_C1_TERM1_TIME_40US
+1666 PARAM_WINDOWN_SIZE
+//T_IFS = 150-modem(CRC time)
+)
+(
+0 DEFAULT_STATES
+1 IPHONE_LOST_LTK
+2 MODULE_LOST_LTK
+3 LTK_NOT_LOST
+)
+	(    
+	0x01 ERROR_UNKNOWN_HCI_COMMAND
+	0x02 ERROR_NO_CONNECTION
+	0x03 ERROR_HARDWARE_FAILURE
+	0x04 ERROR_PAGE_TIMEOUT
+	0x05 ERROR_AUTHENTICATION_FAILURE
+	0x06 ERROR_KEY_MISSING
+	0x07 ERROR_MEMORY_FULL
+	0x08 ERROR_CONNECTION_TIMEOUT
+	0x09 ERROR_MAX_CONNECTIONS
+	0x0A ERROR_MAX_SCO_CONNECTIONS
+	0x0B ERROR_MAX_ACL_CONNECTIONS
+	0x0C ERROR_COMMAND_DISALLOWED
+	0x0D ERROR_HOST_REJECT_LIMITED_RESOURCES
+	0x0E ERROR_HOST_REJECT_SECURITY_REASONS
+	0x0F ERROR_HOST_REJECT_REMOTE_IS_ONLY_PERSONAL
+	0x10 ERROR_HOST_TIMEOUT
+	0x11 ERROR_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE
+	0x12 ERROR_INVALID_HCI_COMMAND_PARAMETERS
+	0x13 ERROR_REMOTE_USER_TERMINATED_CONNECTION
+	0x14 ERROR_REMOTE_LOW_RESOURCES
+	0x15 ERROR_REMOTE_POWERING_OFF
+	0x16 ERROR_CONNECTION_TERMINATED_BY_LOCAL_HOST
+	0x17 ERROR_REPEATED_ATTEMPTS
+	0x18 ERROR_PAIRING_NOT_ALLOWED
+	0x19 ERROR_UNKNOWN_LMP_PDU
+	0x1A ERROR_UNSUPPORTED_REMOTE_FEATURE
+	0x1B ERROR_SCO_OFFSET_REJECTED
+	0x1C ERROR_SCO_INTERVAL_REJECTED
+	0x1D ERROR_SCO_AIR_MODE_REJECTED
+	0x1E ERROR_INVALID_LMP_PARAMETER
+	0x1F ERROR_UNSPECIFIED_ERROR
+	0x20 ERROR_UNSUPPORTED_LMP_PARAMETER_VALUE
+	0x21 ERROR_ROLE_CHANGE_NOT_ALLOWD
+	0x22 ERROR_LMP_RESPONSE_TIMEOUT
+	0x23 ERROR_ERROR_TRANSACTION_COLLISION
+	0x24 ERROR_LMP_PDU_NOT_ALLOWED
+	0x25 ERROR_ENCRYPTION_MODE_NOT_ACCEPTABLE
+	0x26 ERROR_UNIT_KEY_USED
+	0x27 ERROR_QOS_NOT_SUPPORTED
+	0x28 ERROR_INSTANT_PASSED
+	0x29 ERROR_PAIRING_W_UNIT_KEY_NOT_SUPPORTED
+	0x2a ERROR_DIFFERENT_TRANSACTION_COLLISION
+	0x2c ERROR_QOS_UNACCEPTABLE_PARAMETER
+	0x2d ERROR_QOS_REJECTED
+	0x2e ERROR_CHANNEL_CLASSIFICATION_NOT_SUPPORTED
+	0x2f ERROR_INSUFFICIENT_SECURITY
+	0x30 ERROR_PARAMETER_OUT_OF_MANDATORY_PANGE
+	0x32 ERROR_ROLE_SWITCH_PENDING
+	0x34 ERROR_RESERVED_SLOT_VIOLATION
+	0x35 ERROR_ROLE_SWITCH_FAILED
+	0x36 ERROR_EXTENDED_INQUIRY_RESPONSE_TOO_LARGE
+	0x37 ERROR_SIMPLE_PAIRING_NOT_SUPPORTED_BY_HOST
+	0x38 ERROR_HOST_BUSY_PAIRING
+	0x3d ERROR_MIC_FAILURE
+	)
+	(
+	0X20 SPACE	
+	)
+	(
+	0x0004 LE_L2CAP_CID_ATT
+	0x0005 LE_L2CAP_CID_SIGNAL
+	0x0006 LE_L2CAP_CID_SMP
+	)
+	(
+	0 LE_ADDR_TYPE_PUBLIC
+	1 LE_ADDR_TYPE_RANDOM
+	)
+	(
+	7 LE_RECEIVER_ADDR_BIT
+	6 LE_SENDER_ADDR_BIT
+	)
+	(
+	0x00 LE_SCAN_TYPE_PASSIVE //no SCAN_REQ shall be sent
+	0x01 LE_SCAN_TYPE_ACTIVE
+	)
+	(
+	0x00 LE_SCAN_DISABLE
+	0x01 LE_SCAN_ENABLE
+	0x0101 LE_ACTIVE_SCAN_ENABLE
+	)
+	(
+	0x01 UUID_SIZE_16BIT
+	0x02 UUID_SIZE_128BIT
+	)
+(
+3 lestate_got_first_packet
+4 lestate_encryption
+5 lestate_update_param
+6 lestate_update_map
+7 lestate_update_phy
+)
+(
+0 lemode_idle
+1 lemode_slave
+3 lemode_master
+0x20 lemode_2m
+0x40 lemode_lr_s2
+0xc0 lemode_lr_s8
+)
+(
+0 llid0
+1 llid1
+2 nesn
+3 sn
+4 md
+5 wak
+6 txdat
+)
+(
+0x01 LLID_CONTINUE
+0x02 LLID_START
+0x03 LLID_LE_LL
+0x01 LLID_EMPTY
+)
+(
+4 LE_TX_BUFF_COUNT
+3 LE_TX_BUFF_UPDATE_LOOPCNT //LE_TX_BUFF_COUNT-1
+
+12 LE_MD_MAX_COUNT
+)
+(
+0 LE_INITATOR_LTK_BIT
+1 LE_INITATOR_IRK_BIT
+2 LE_INITATOR_CSRK_BIT
+)
+(
+0  LE_FIND_BY_TYPE_VAL_RES_NOT_FOUND
+1  LE_FIND_BY_TYPE_VAL_RES_FOUND_STARTING_HANDLE
+2  LE_FIND_BY_TYPE_VAL_RES_FOUND_ENDING_HANDLE
+
+)
+(
+0 MASTER_PUBLIC_ADDR
+1 MASTER_RANDOM_ADDR
+)
+(
+0x06 LE_ERR_PIN_OR_KEY_MISSING
+)
+(
+39 LE_CCM_DIRECTIONBIT
+)
+(
+36 BR_CCM_0_LENGTH_CONTINUATION
+37 BR_CCM_DIRECTIONBIT
+)
+(
+96000 TIMER_SMP_PAIRING_TIMEOUT //30S
+)
+(
+0 FLAG_LE_ENC_NULL
+1 FLAG_LE_RCV_ENC_START
+2 FLAG_LE_ENC_PAUSE
+3 FLAG_LE_RCV_START_ENC_RSP
+4 FLAG_LE_SEND_START_ENC_RSP
+5 FLAG_LE_SEND_START_ENC_REQ
+0xff FLAG_LE_ENC_END
+)
+(//mem_le_configuration
+//bit0:use fixed key , ble passkey pairing
+0 BIT_BLE_PASSKEY_FIXED_KEY
+//bit1:ble pairing use fixed long term key
+1 BIT_BLE_PAIRING_FIXED_LTK
+//bit2:ble transmit packet will set more data flag
+2 BIT_BLE_TRANSMIT_PACKET_BY_MD
+//bit3:master read handle, with requires an authenticated link
+3 BIT_BLE_READ_AUTH
+//bit4:master write handle, with requires an authenticated link
+4 BIT_BLE_WRITE_AUTH
+//bit5:cannot enter long sleep
+5 BIT_BLE_SHORT_MULT
+//bit6:DEAL baseband packet
+6 BIT_BLE_DEAL_BB_PACKET
+)
+(
+0x01	GAP_ADTYPE_FLAGS
+0x02	GAP_ADTYPE_16BIT_MORE
+0x03	GAP_ADTYPE_16BIT_COMPLETE
+0x04	GAP_ADTYPE_32BIT_MORE
+0x05	GAP_ADTYPE_32BIT_COMPLETE
+0x06	GAP_ADTYPE_128BIT_MORE
+0x07	GAP_ADTYPE_128BIT_COMPLETE
+0x08	GAP_ADTYPE_LOCAL_NAME_SHORT
+0x09	GAP_ADTYPE_LOCAL_NAME_COMPLETE
+0x0a	GAP_ADTYPE_POWER_LEVEL
+0x16	GAP_ADTYPE_SERVICE_DATA
+0x2a	GAP_ADTYPE_MESH_MESSAGE
+0x2b 	GAP_ADTYPE_MESH_BEACON
+0xff	GAP_ADTYPE_MANUFACTURER_SPECIFIC
+)
+(
+0 ADV_IND
+1 ADV_DIRECT_IND
+2 ADV_NONCONN_IND
+3 SCAN_REQ
+3 AUX_SCAN_REQ
+4 SCAN_RSP
+5 CONNECT_REQ
+5 AUX_CONNECT_REQ
+6 ADV_SCAN_IND
+)
+(
+0 BIT_ADV_CHANNEL_MAP_37
+1 BIT_ADV_CHANNEL_MAP_38
+2 BIT_ADV_CHANNEL_MAP_39
+)
+(
+0xa0 param_le_sca
+)
+(//bit of mem_le_l2cap_att_states
+0 BLE_L2CAP_SEND_INDICATION_PACKET
+0 BLE_L2CAP_RECV_CONFIRMATION_PACKET
+1 BLE_L2CAP_DEAL_WITH_CONTINUE_PACKET
+)
+(//bit map of att handle
+14 BIT_OF_ATT_HANDLE_READ_AUTHENTICATED
+15 BIT_OF_ATT_HANDLE_WRITE_AUTHENTICATED
+)
+(
+0 BIT_CHARACTERISTIC_BROADCAST
+1 BIT_CHARACTERISTIC_READ
+2 BIT_CHARACTERISTIC_WRITE_WITHOUT_RESPONSE
+3 BIT_CHARACTERISTIC_WRITE
+4 BIT_CHARACTERISTIC_NOTIFY
+5 BIT_CHARACTERISTIC_INDICATE
+6 BIT_CHARACTERISTIC_SIGNED_WRITE
+7 BIT_CHARACTERISTIC_EXTENDED_PROPERTIES
+)
+(
+0x01 ATTOP_ERROR_RESPONSE
+0x02 ATTOP_EXCHANGE_MTU_REQUEST
+0x03 ATTOP_EXCHANGE_MTU_RESPONSE
+0x04 ATTOP_FIND_INFORMATION_REQUEST
+0x05 ATTOP_FIND_INFORMATION_RESPONSE
+0x06 ATTOP_FIND_BY_TYPE_VALUE_REQUEST
+0x07 ATTOP_FIND_BY_TYPE_VALUE_RESPONSE
+0x08 ATTOP_READ_BY_TYPE_REQUEST
+0x09 ATTOP_READ_BY_TYPE_RESPONSE
+0x0A ATTOP_READ_REQUEST
+0x0B ATTOP_READ_RESPONSE
+0x0C ATTOP_READ_BLOB_REQUEST
+0x0D ATTOP_READ_BLOB_RESPONSE
+0x0E ATTOP_READ_MULTIPLE_REQUEST
+0x0F ATTOP_READ_MULTIPLE_RESPONSE
+0x10 ATTOP_READ_BY_GROUP_TYPE_REQUEST
+0x11 ATTOP_READ_BY_GROUP_TYPE_RESPONSE
+0x12 ATTOP_WRITE_REQUEST
+0x13 ATTOP_WRITE_RESPONSE
+0x16 ATTOP_PREPARE_WRITE_REQUEST
+0x17 ATTOP_PREPARE_WRITE_RESPONSE
+0x18 ATTOP_EXECUTE_WRITE_REQUEST
+0x19 ATTOP_EXECUTE_WRITE_RESPONSE
+0x1B ATTOP_HANDLE_VALUE_NOTIFICATION
+0x1D ATTOP_HANDLE_VALUE_INDICATION
+0x1E ATTOP_HANDLE_VALUE_CONFIRMATION
+0x52 ATTOP_WRITE_COMMAND
+0xD2 ATTOP_SIGNED_WRITE_COMMAND
+0x1f ATTOP_CONTINUE
+0x9e EMPTY_LE_DATA_PRE
+0x9f EMPTY_LE_DATA
+)
+(
+0x01 ATT_ERR_INVALID_HANDLE
+0x02 ATT_ERR_READ_NOT_PERMITTED
+0x03 ATT_ERR_WRITE_NOT_PERMITTED
+0x04 ATT_ERR_INVALID_PDU
+0x05 ATT_ERR_INSUFFICIENT_AUTHENTICATION
+0x06 ATT_ERR_REQUEST_NOT_SUPPORTED
+0x07 ATT_ERR_INVALID_OFFSET
+0x08 ATT_ERR_INSUFFICIENT_AUTHORIZATION
+0x09 ATT_ERR_PREPARE_QUEUE_FULL
+0x0A ATT_ERR_ATTRIBUTE_NOT_FOUND
+0x0B ATT_ERR_ATTRIBUTE_NOT_LONG
+0x0C ATT_ERR_INSUFFICIENT_ENCRYPTION_KEY_SIZE
+0x0D ATT_ERR_INVALID_ATTRIBUTE_VALUE_LENGTH
+0x0E ATT_ERR_UNLIKELY_ERROR
+0x0F ATT_ERR_INSUFFICIENT_ENCRYPTION
+0x10 ATT_ERR_UNSUPPORTED_GROUP_TYPE
+0x11 ATT_ERR_INSUFFICIENT_RESOURCES
+)
+(
+0X2900 CHARACTERTIC_EXTENDED_PROPERTIES
+0X2901 CHARACTERTIC_USER_DESCRIPTION
+0X2902 CLIENT_CHARACTERTIC_CONFIGURATION
+0X2903 SERVER_CHARACTERTIC_CONFIGURATION
+0X2904 CHARACTERTIC_PRESENTATION_FORMAT
+0X2905 CHARACTERTIC_AGGREGATE
+0X2906 VALID_RANGE
+0X2907 EXTERNAL_REPORT_REFERENCE
+0X2908 REPORT_REFERENCE
+0X290B ENVIR_SENSING_CONFIGURATION
+0X290C ENVIR_SENSING_MEASUREMENT
+0X290D ENVIR_SENSING_TRIGGER_SETTING
+)
+(
+0x1800 UUID_SERVICE_GENERIC_ACC
+0x1801 UUID_SERVICE_GENERIC_ATT
+0x180a UUID_SERVICE_DEVICE_INFO
+0x180f UUID_SERVICE_BATTERY
+0x1812 UUID_SERVICE_HIDS
+0x2800 UUID_GATT_PRIMARY_SERVICE
+0x2801 UUID_GATT_SECONDARY_SERVICE
+0X2802 UUID_GATT_INCLUDE
+0X2803 UUID_GATT_CHARACTERISTIC
+0X2A00 UUID_CHRCTR_DEVICE_NAME
+0X2A19 UUID_CHRCTR_BATTERY_LEVEL
+0X2A22 UUID_CHRCTR_KEYBOARD_INPUT
+0X2A23 UUID_CHRCTR_SYSTEM_ID 
+0X2A25 UUID_CHRCTR_SERIAL_NUMBER
+0X2A26 UUID_CHRCTR_FIRMWARE
+0X2A32 UUID_CHRCTR_KEYBOARD_OUTPUT
+0X2A33 UUID_CHRCTR_MOUSE_INPUT
+0X2A4A UUID_CHRCTR_HID_INFO
+0X2A4B UUID_CHRCTR_REPORT_MAP
+0X2A4C UUID_CHRCTR_HID_CTRL_POINT
+0X2A4D UUID_CHRCTR_REPORT
+0X2A4E UUID_CHRCTR_PROTOCOL_MODE
+)
+(
+0x12 L2CAP_CONNECTION_PARAMETER_UPDATE_REQUEST
+0x13 L2CAP_CONNECTION_PARAMETER_UPDATE_RESPONSE
+)
+(
+0x0000 BLE_SIGNALING_CONNECT_PARAMETER_UPDATE_ACCEPTED
+0x0001 BLE_SIGNALING_CONNECT_PARAMETER_UPDATE_REJECTED
+)
+(
+0x00 LE_PAIRING_MODE_NONE
+0x01 LE_PAIRING_MODE_LAGACY_JUSTWORK
+0x02 LE_PAIRING_MODE_LAGACY_PASSKEY
+0x04 LE_PAIRING_MODE_LAGACY_PASSKEY_RES_INPUT
+0x81 LE_PAIRING_MODE_SECURE_CONNECT_JUSTWORK
+0x82 LE_PAIRING_MODE_SECURE_CONNECT_NUMERIC
+0x83 LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY
+0x84 LE_PAIRING_MODE_SECURE_CONNECT_PASSKEY_RES_INPUT
+
+7 LE_PAIRING_MODE_SECURE_CONNECT_BIT
+)
+(
+0 FLAG_IOCAP_DISPLAYONLY
+1 FLAG_IOCAP_DISPLAYYESNO
+2 FLAG_IOCAP_KEYBOARDONLY
+3 FLAG_IOCAP_NOINPUTNOOUTPUT
+4 FLAG_IOCAP_KEYBOARDDISPLAY
+
+0x00 FLAG_OOB_DATA_FLAG_NO
+)
+(
+0x00 FLAG_LE_NO_BONDING_NO_MITM
+0x01 FLAG_LE_BONDING_NO_MITM
+0x04 FLAG_LE_NO_BONDING_MITM
+0x05 FLAG_LE_BONDING_MITM
+0x09 FLAG_LE_BONDING_NO_MITM_SECURE
+0x0D FLAG_LE_BONDING_MITM_SECURE
+
+2 LE_AUTH_MITM_BIT
+3 LE_AUTH_SECURE_CONNECTION_PAIRING_BIT
+)
+(
+0 FLAG_LE_PAIRING_NULL
+1 FLAG_LE_PAIRING_START
+2 FLAG_LE_PAIRING_SEND_RECURITY_REQ
+3 FLAG_LE_PAIRING_RCV_PAIRING_REQ
+4 FLAG_LE_PAIRING_WAIT_STK_GENERATION
+5 FLAG_LE_PAIRING_RECEIVE_PAIRING_CONFIRM
+6 FLAG_LE_PAIRING_SEND_PAIRING_CONFIRM
+7 FLAG_LE_PAIRING_RECEIVE_PAIRING_RANDOM
+8 FLAG_LE_PAIRING_SEND_PAIRING_RANDOM
+9 FLAG_LE_PAIRING_AFTER_AUTH
+10 FLAG_LE_PAIRING_SEND_START_ENC_RSP
+11 FLAG_LE_PARING_SEND_ENC_INFORMATION
+12 FLAG_LE_PARING_SEND_MASTER_IDENTIFICATION 
+13 FLAG_LE_PARING_SEND_INDENTITY_INFORMATION
+0xff FLAG_LE_PAIRING_END
+)
+(
+0x01 SMP_PAIRING_REQUEST
+0x02 SMP_PAIRING_RESPONSE
+0x03 SMP_PAIRING_CONFIRM
+0x04 SMP_PAIRING_RANDOM
+0x05 SMP_PAIRING_FAILED
+0x06 SMP_ENCRYPTION_INFORMATION
+0x07 SMP_MASTER_IDENTIFICATION
+0x08 SMP_IDENTITY_INFORMATION
+0x09 SMP_IDENTITY_ADDRESS_INFORMATION
+0x0A SMP_SIGNING_INFORMATION
+0x0B SMP_SECURITY_REQUEST
+0x0c SMP_PAIRING_PUBLIC_KEY
+0x0d SMP_PAIRING_DHKEY_CHECK
+)
+(// pairing failed reason
+0x00 PAIRING_FAILED_RESERVED
+0X01 PAIRING_FAILED_PASSKEY_ENTRY_FAILED
+0X02 PAIRING_FAILED_OOB_NOT_AVAILABLE
+0X03 PAIRING_FAILED_AUTHENTICATION_REQUIRE
+0X04 PAIRING_FAILED_CONFIRM_VALUE_FAILED
+0X05 PAIRING_FAILED_PAIRING_NOT_SUPPORTED
+0X06 PAIRING_FAILED_ENCRYPTION_KEY_SIZE
+0X07 PAIRING_FAILED_COMMAND_NOT_SUPPORTED
+0X08 PAIRING_FAILED_UNSPECIFIED_REASON
+0X09 PAIRING_FAILED_REPEATED_ATTEMPTS
+0X0A PAIRING_FAILED_INVALID_PARAMETERS
+0X0B PAIRING_FAILED_DHKEY_CHECK_FAILED
+0X0C PAIRING_FAILED_NUMERIC_COMPARISON_FAILED
+0X0D PAIRING_FAILED_BR_EDR_PAIRING_IN_PROGRESS
+0X0E PAIRING_FAILED_KEY_DERIVATION_GENERATION_NOT_ALLOWED
+)
+(
+0x00 LE_SC_STAT_NULL
+0x01 LE_SC_STAT_RECEIVE_PUBLIC_KEY
+0x02 LE_SC_STAT_WAIT_SEND_PUBLIC_KEY
+0x03 LE_SC_STAT_SEND_PUBLIC_KEY
+0x04 LE_SC_STAT_RECEIVE_RANDOM
+0x05 LE_SC_STAT_SEND_RANDOM
+0x06 LE_SC_STAT_RECEIVE_DHKEY
+0x07 LE_SC_STAT_WAIT_CONFIRM_GKEY
+0x08 LE_SC_STAT_PASSKEY_WAIT_CONFIRM
+)
+(
+0 FLAG_LE_SC_CONFRIM_NULL
+1 FLAG_LE_SC_CONFRIM_GKEY_OK
+)
+(
+0x00 LL_CONNECTION_UPDATE_IND
+0x01 LL_CHANNEL_MAP_IND
+0x02 LL_TERMINATE_IND
+0x03 LL_ENC_REQ
+0x04 LL_ENC_RSP
+0x05 LL_START_ENC_REQ
+0x06 LL_START_ENC_RSP
+0x07 LL_UNKNOWN_RSP
+0x08 LL_FEATURE_REQ
+0x09 LL_FEATURE_RSP
+0x0A LL_PAUSE_ENC_REQ
+0x0B LL_PAUSE_ENC_RSP
+0x0C LL_VERSION_IND
+0x0D LL_REJECT_IND
+0x0E LL_SLAVE_FEATURE_REQ
+0x0F LL_CONNECTION_PARAM_REQ
+0x10 LL_CONNECTION_PARAM_RSP
+0x11 LL_REJECT_IND_EXT
+0x12 LL_PING_REQ
+0x13 LL_PING_RSP
+0x14 LL_LENGTH_REQ
+0x15 LL_LENGTH_RSP
+0x16 LL_PHY_REQ
+0x17 LL_PHY_RSP
+0x18 LL_PHY_UPDATE_IND
+0x19 LL_MIN_USED_CHANNELS_IND
+0x1A LL_CTE_REQ
+0x1B LL_CTE_RSP
+0x1C LL_PERIODIC_SYNC_IND
+0x1D LL_CLOCK_ACCURACY_REQ
+0x1E LL_CLOCK_ACCURACY_RSP
+0x1F LL_CIS_REQ
+0x20 LL_CIS_RSP
+0x21 LL_CIS_IND
+0x22 LL_CIS_TERMINATE_IND
+0x23 LL_POWER_CONTROL_REQ
+0x24 LL_POWER_CONTROL_RSP
+0x25 LL_POWER_CHANGE_IND
+)
+(//bit map of mem_le_ll_feature
+//LL_FEATURE_REQ
+0 BIT_LL_FEATURE_LE_ENCRYPTION
+1 BIT_LL_FEATURE_CONNECTION_PARAMETERS_REQUEST_PROCEDURE
+2 BIT_LL_FEATURE_EXTENDED_REJECT_INDICATION
+3 BIT_LL_FEATURE_SLAVE_INITIATED_FEATURES_EXCHANGE
+4 BIT_LL_FEATURE_LE_PING
+5 BIT_LL_FEATURE_LE_DATA_PACKET_LENGTH_EXTENSION
+6 BIT_LL_FEATURE_LL_PRIVACY
+7 BIT_LL_FEATURE_EXTENDED_SCANNER_FILTER_POLICIES
+8 BIT_LL_FEATURE_LE_2M_PHY
+9 BIT_LL_FEATURE_STABLE_MODULATION_INDEX_TRANSMITTER
+10 BIT_LL_FEATURE_STABLE_MODULATION_INDEX_RECEIVER
+11 BIT_LL_FEATURE_LE_CODED_PHY
+12 BIT_LL_FEATURE_LE_EXTENDED_ADVERTISING
+13 BIT_LL_FEATURE_LE_PERIODIC_ADVERTISING
+14 BIT_LL_FEATURE_CHANNEL_SELECTION_ALGORITHM
+15 BIT_LL_FEATURE_LE_POWER_CLASS_1
+16 BIT_LL_FEATURE_MINIMUM_NUMBER_OF_USED_CHANNELS_PROCEDURE
+)
+(//function map of mem_le_ll_feature
+//LL_FEATURE_REQ
+0x1 FUN_LL_FEATURE_LE_ENCRYPTION
+0x2 FUN_LL_FEATURE_CONNECTION_PARAMETERS_REQUEST_PROCEDURE
+0x4 FUN_LL_FEATURE_EXTENDED_REJECT_INDICATION
+0x8 FUN_LL_FEATURE_SLAVE_INITIATED_FEATURES_EXCHANGE
+0x10 FUN_LL_FEATURE_LE_PING
+0x20 FUN_LL_FEATURE_LE_DATA_PACKET_LENGTH_EXTENSION
+0x40 FUN_LL_FEATURE_LL_PRIVACY
+0x80 FUN_LL_FEATURE_EXTENDED_SCANNER_FILTER_POLICIES
+0x100 FUN_LL_FEATURE_LE_2M_PHY
+0x200 FUN_LL_FEATURE_STABLE_MODULATION_INDEX_TRANSMITTER
+0x400 FUN_LL_FEATURE_STABLE_MODULATION_INDEX_RECEIVER
+0x800 FUN_LL_FEATURE_LE_CODED_PHY
+0x1000 FUN_LL_FEATURE_LE_EXTENDED_ADVERTISING
+0x2000 FUN_LL_FEATURE_LE_PERIODIC_ADVERTISING
+0x4000 FUN_LL_FEATURE_CHANNEL_SELECTION_ALGORITHM
+0x8000 FUN_LL_FEATURE_LE_POWER_CLASS_1
+0x10000 FUN_LL_FEATURE_MINIMUM_NUMBER_OF_USED_CHANNELS_PROCEDURE
+)
+(//bit of mem_le_tx_phys and mem_le_rx_phys
+0x00 BIT_LE_1M_PHY
+0x01 BIT_LE_2M_PHY
+0x02 BIT_LE_CODED_PHY
+
+0x02 BIT_LE_CODED_PHY_S2
+0x07 BIT_LE_CODED_PHY_S8
+)
+(//map of mem_le_tx_phys and mem_le_rx_phys
+0x01 FUN_TX_LL_1M_PHY
+0x02 FUN_TX_LL_2M_PHY
+0x04 FUN_TX_LL_CODED_PHY
+
+0x01 FUN_RX_LL_1M_PHY
+0x02 FUN_RX_LL_2M_PHY
+0x04 FUN_RX_LL_CODED_PHY
+)
+(//mem_24g_data_type
+1 TYPE_MS
+2 TYPE_KB
+0x07 bits_data
+//0-2 data type
+3 bit_abort
+4 bit_hop
+5 bit_sync
+//6-7 channel offset
+)
+(//mem_24g_pair_sm
+0 STATE_24G_PAIRING_NULL
+1 STATE_24G_PAIRING_1
+2 STATE_24G_PAIRING_2
+3 STATE_24G_PAIRING_3
+4 STATE_24G_PAIRING_4
+0X11 STATE_24G_PAIRING_1_WAITING_ACK
+0X12 STATE_24G_PAIRING_2_WAITING_ACK
+0X13 STATE_24G_PAIRING_3_WAITING_ACK
+0X14 STATE_24G_PAIRING_4_WAITING_ACK
+0XFF STATE_24G_PAIRING_SUCCESS
+)
+(
+0x01 DATATYPE_DEVICE1	//mouse
+0x02 DATATYPE_DEVICE2	//keyboard
+0xaa DATATYPE_BIND		//bind step 1
+0x55 DATATYPE_CONFIG	//bind step 2
+0x22 DATATYPE_OK		//bind step 3
+0xff DATATYPE_ATTEMP	//reconn
+0xaf DATATYPE_OTA
+)
+(
+5 BIND_MODE_CONTINUE
+)
+(
+0 bit_ack_24g
+)
+(//mem_24g_reconn_type
+0 DEFAULT_24G_DEVICE
+1 FAST_CONN_AND_RECEIVER
+2 FAST_CONN_AND_3_0_ADDR
+3 RECEIVER_AND_3_0_ADDR
+4 PAIR_AND_3_0_ADDR
+5 PAIR_AND_RECEIVER
+)
+(
+0x50 RSSI_THRESH_NOISE
+)
+(
+1 NO_ACK_24G
+0 WITH_ACK_24G
+)
+(//mem_24g_conn_sm
+0 STATE_24G_STOP
+0 STATE_24G_START
+1 STATE_24G_PAIR
+2 STATE_24G_RECONN
+3 STATE_24G_OTA
+)
+(//mem_24g_transmit_by_interrupt
+1 G24_TX_TIMER_INT_ENABLE
+0 G24_TX_TIMER_INT_DISABLE
+)
+(
+1 OFFSET_DATA_TYPE
+2 OFFSET_LR_DATA_TYPE
+)
+(
+0x017700 G24_LONG_SLEEP_STEP1	//8ms
+0x36ee80 G24_LONG_SLEEP_STEP2	//300ms
+0x124f80 G24_LONG_SLEEP_STEP3	//100ms
+63500 G24_8MS_INTERVAL_PARAM	//8ms
+12210 G24_4MS_INTERVAL_PARAM
+4200 G24_2MS_INTERVAL_PARAM
+)
+(
+50 POWER_CTRL_DECRS_THRESHOLD
+)
+(//status codes
+0 STATUS_CODE_SUCCESS
+)
+(
+0xD0 VENDOR_MESSAGE_ATTR_GET
+0xD1 VENDOR_MESSAGE_ATTR_SET
+0xD2 VENDOR_MESSAGE_ATTR_SET_UNACKNOWLEDGED
+0xD3 VENDOR_MESSAGE_ATTR_STATUS
+0xD4 VENDOR_MESSAGE_ATTR_INDICATION
+0xD5 VENDOR_MESSAGE_ATTR_CONFIRMATION
+0xCF VENDOR_MESSAGE_TRANSPARENT_MSG
+)
+(//configuration message and health message opcode
+0x80 MESH_CONFIGURATION_AND_HEALTH_MESSAGE_OPCODE_HEADER
+
+0x00 MESH_MESSAGE_OPCODE_CONFIG_APPKEY_ADD
+0x01 MESH_MESSAGE_OPCODE_CONFIG_APPKEY_UPDATE
+0x02 MESH_MESSAGE_OPCODE_CONFIG_COMPOSITION_DATA_STATUS
+0x03 MESH_MESSAGE_OPCODE_CONFIG_CONFIG_MODEL_PUBLICATION_SET
+0x04 MESH_MESSAGE_OPCODE_HEALTH_CURRENT_STATUS
+0x05 MESH_MESSAGE_OPCODE_HEALTH_FAULT_STATUS
+0x06 MESH_MESSAGE_OPCODE_CONFIG_HEARTBEAT_PUBLICATION_STATUS
+0x00 MESH_MESSAGE_OPCODE_CONFIG_APPKEY_DELETE_NO_HEAD
+0x01 MESH_MESSAGE_OPCODE_CONFIG_APPKEY_GET_NO_HEAD
+0x02 MESH_MESSAGE_OPCODE_CONFIG_APPKEY_LIST_NO_HEAD
+0x03 MESH_MESSAGE_OPCODE_CONFIG_APPKEY_STATUS_NO_HEAD
+0x04 MESH_MESSAGE_OPCODE_HEALTH_ATTENTION_GET_NO_HEAD
+0x05 MESH_MESSAGE_OPCODE_HEALTH_ATTENTION_SET_NO_HEAD
+0x06 MESH_MESSAGE_OPCODE_HEALTH_ATTENTION_SET_UNACKNOWLEDGED_NO_HEAD
+0x07 MESH_MESSAGE_OPCODE_HEALTH_ATTENTION_STATUS_NO_HEAD
+0x08 MESH_MESSAGE_OPCODE_CONFIG_COMPOSITION_DATA_GET_NO_HEAD
+0x09 MESH_MESSAGE_OPCODE_CONFIG_BEACON_GET_NO_HEAD
+0x0A MESH_MESSAGE_OPCODE_CONFIG_BEACON_SET_NO_HEAD
+0x0B MESH_MESSAGE_OPCODE_CONFIG_BEACON_STATUS_NO_HEAD
+0x0C MESH_MESSAGE_OPCODE_CONFIG_DEFAULT_TTL_GET_NO_HEAD
+0x0D MESH_MESSAGE_OPCODE_CONFIG_DEFAULT_TTL_SET_NO_HEAD
+0x0E MESH_MESSAGE_OPCODE_CONFIG_DEFAULT_TTL_STATUS_NO_HEAD
+0x0F MESH_MESSAGE_OPCODE_CONFIG_FRIEND_GET_NO_HEAD
+0x10 MESH_MESSAGE_OPCODE_CONFIG_FRIEND_SET_NO_HEAD
+0x11 MESH_MESSAGE_OPCODE_CONFIG_FRIEND_STATUS_NO_HEAD
+0x12 MESH_MESSAGE_OPCODE_CONFIG_GATT_PROXY_GET_NO_HEAD
+0x13 MESH_MESSAGE_OPCODE_CONFIG_GATT_PROXY_SET_NO_HEAD
+0x14 MESH_MESSAGE_OPCODE_CONFIG_GATT_PROXY_STATUS_NO_HEAD
+0x15 MESH_MESSAGE_OPCODE_CONFIG_KEY_REFRESH_PHASE_GET_NO_HEAD
+0x16 MESH_MESSAGE_OPCODE_CONFIG_KEY_REFRESH_PHASE_SET_NO_HEAD
+0x17 MESH_MESSAGE_OPCODE_CONFIG_KEY_REFRESH_PHASE_STATUS_NO_HEAD
+0x18 MESH_MESSAGE_OPCODE_CONFIG_MODEL_PUBLICATION_GET_NO_HEAD
+0x19 MESH_MESSAGE_OPCODE_CONFIG_MODEL_PUBLICATION_STATUS_NO_HEAD
+0x1A MESH_MESSAGE_OPCODE_CONFIG_MODEL_PUBLICATION_VIRTUAL_ADDRESS_SET_NO_HEAD
+0x1B MESH_MESSAGE_OPCODE_CONFIG_MODEL_SUBSCRIPTION_ADD_NO_HEAD
+0x1C MESH_MESSAGE_OPCODE_CONFIG_MODEL_SUBSCRIPTION_DELETE_NO_HEAD
+0x1D MESH_MESSAGE_OPCODE_CONFIG_MODEL_SUBSCRIPTION_DELETE_ALL_NO_HEAD
+0x1E MESH_MESSAGE_OPCODE_CONFIG_MODEL_SUBSCRIPTION_OVERWRITE_NO_HEAD
+0x1F MESH_MESSAGE_OPCODE_CONFIG_MODEL_SUBSCRIPTION_STATUS_NO_HEAD
+0x20 MESH_MESSAGE_OPCODE_CONFIG_MODEL_SUBSCRIPTION_VIRTUAL_ADDRESS_ADD_NO_HEAD
+0x21 MESH_MESSAGE_OPCODE_CONFIG_MODEL_SUBSCRIPTION_VIRTUAL_ADDRESS_DELETE_NO_HEAD
+0x22 MESH_MESSAGE_OPCODE_CONFIG_MODEL_SUBSCRIPTION_VIRTUAL_ADDRESS_OVERWRITE_NO_HEAD
+0x23 MESH_MESSAGE_OPCODE_CONFIG_NETWORK_TRANSMIT_GET_NO_HEAD
+0x24 MESH_MESSAGE_OPCODE_CONFIG_NETWORK_TRANSMIT_SET_NO_HEAD
+0x25 MESH_MESSAGE_OPCODE_CONFIG_NETWORK_TRANSMIT_STATUS_NO_HEAD
+0x26 MESH_MESSAGE_OPCODE_CONFIG_RELAY_GET_NO_HEAD
+0x27 MESH_MESSAGE_OPCODE_CONFIG_RELAY_SET_NO_HEAD
+0x28 MESH_MESSAGE_OPCODE_CONFIG_RELAY_STATUS_NO_HEAD
+0x29 MESH_MESSAGE_OPCODE_CONFIG_SIG_MODEL_SUBSCRIPTION_GET_NO_HEAD
+0x2A MESH_MESSAGE_OPCODE_CONFIG_SIG_MODEL_SUBSCRIPTION_LIST_NO_HEAD
+0x2B MESH_MESSAGE_OPCODE_CONFIG_VENDOR_MODEL_SUBSCRIPTION_GET_NO_HEAD
+0x2C MESH_MESSAGE_OPCODE_CONFIG_VENDOR_MODEL_SUBSCRIPTION_LIST_NO_HEAD
+0x2D MESH_MESSAGE_OPCODE_CONFIG_LOW_POWER_NODE_POLLTIMEOUT_GET_NO_HEAD
+0x2E MESH_MESSAGE_OPCODE_CONFIG_LOW_POWER_NODE_POLLTIMEOUT_STATUS_NO_HEAD
+0x2F MESH_MESSAGE_OPCODE_HEALTH_FAULT_CLEAR_NO_HEAD
+0x30 MESH_MESSAGE_OPCODE_HEALTH_FAULT_CLEAR_UNACKNOWLEDGED_NO_HEAD
+0x31 MESH_MESSAGE_OPCODE_HEALTH_FAULT_GET_NO_HEAD
+0x32 MESH_MESSAGE_OPCODE_HEALTH_FAULT_TEST_NO_HEAD
+0x33 MESH_MESSAGE_OPCODE_HEALTH_FAULT_TEST_UNACKNOWLEDGED_NO_HEAD
+0x34 MESH_MESSAGE_OPCODE_HEALTH_PERIOD_GET_NO_HEAD
+0x35 MESH_MESSAGE_OPCODE_HEALTH_PERIOD_SET_NO_HEAD
+0x36 MESH_MESSAGE_OPCODE_HEALTH_PERIOD_SET_UNACKNOWLEDGED_NO_HEAD
+0x37 MESH_MESSAGE_OPCODE_HEALTH_PERIOD_STATUS_NO_HEAD
+0x38 MESH_MESSAGE_OPCODE_CONFIG_HEARTBEAT_PUBLICATION_GET_NO_HEAD
+0x39 MESH_MESSAGE_OPCODE_CONFIG_HEARTBEAT_PUBLICATION_SET_NO_HEAD
+0x3A MESH_MESSAGE_OPCODE_CONFIG_HEARTBEAT_SUBSCRIPTION_GET_NO_HEAD
+0x3B MESH_MESSAGE_OPCODE_CONFIG_HEARTBEAT_SUBSCRIPTION_SET_NO_HEAD
+0x3C MESH_MESSAGE_OPCODE_CONFIG_HEARTBEAT_SUBSCRIPTION_STATUS_NO_HEAD
+0x3D MESH_MESSAGE_OPCODE_CONFIG_MODEL_APP_BIND_NO_HEAD
+0x3E MESH_MESSAGE_OPCODE_CONFIG_MODEL_APP_STATUS_NO_HEAD
+0x3F MESH_MESSAGE_OPCODE_CONFIG_MODEL_APP_UNBIND_NO_HEAD
+0x40 MESH_MESSAGE_OPCODE_CONFIG_NETKEY_ADD_NO_HEAD
+0x41 MESH_MESSAGE_OPCODE_CONFIG_NETKEY_DELETE_NO_HEAD
+0x42 MESH_MESSAGE_OPCODE_CONFIG_NETKEY_GET_NO_HEAD
+0x43 MESH_MESSAGE_OPCODE_CONFIG_NETKEY_LIST_NO_HEAD
+0x44 MESH_MESSAGE_OPCODE_CONFIG_NETKEY_STATUS_NO_HEAD
+0x45 MESH_MESSAGE_OPCODE_CONFIG_NETKEY_UPDATE_NO_HEAD
+0x46 MESH_MESSAGE_OPCODE_CONFIG_NODE_IDENTITY_GET_NO_HEAD
+0x47 MESH_MESSAGE_OPCODE_CONFIG_NODE_IDENTITY_SET_NO_HEAD
+0x48 MESH_MESSAGE_OPCODE_CONFIG_NODE_IDENTITY_STATUS_NO_HEAD
+0x49 MESH_MESSAGE_OPCODE_CONFIG_NODE_RESET_NO_HEAD
+0x4A MESH_MESSAGE_OPCODE_CONFIG_NODE_RESET_STATUS_NO_HEAD
+0x4B MESH_MESSAGE_OPCODE_CONFIG_SIG_MODEL_APP_GET_NO_HEAD
+0x4C MESH_MESSAGE_OPCODE_CONFIG_SIG_MODEL_APP_LIST_NO_HEAD
+0x4D MESH_MESSAGE_OPCODE_CONFIG_VENDOR_MODEL_APP_GET_NO_HEAD
+0x4E MESH_MESSAGE_OPCODE_CONFIG_VENDOR_MODEL_APP_LIST_NO_HEAD
+)
+(//Modle message opcode
+0x82 MESH_MODULE_MESSAGE_OPCODE_HEADER
+
+0x01 MESH_MODULE_MESSAGE_OPCODE_GENERIC_ONOFF_GET_NO_HEAD
+0x02 MESH_MODULE_MESSAGE_OPCODE_GENERIC_ONOFF_SET_NO_HEAD
+0x03 MESH_MODULE_MESSAGE_OPCODE_GENERIC_ONOFF_SET_UNACKNOWLEDGED_NO_HEAD
+0x04 MESH_MODULE_MESSAGE_OPCODE_GENERIC_ONOFF_STATUS_NO_HEAD
+0x05 MESH_MODULE_MESSAGE_OPCODE_GENERIC_LEVEL_GET_NO_HEAD
+0x06 MESH_MODULE_MESSAGE_OPCODE_GENERIC_LEVEL_SET_NO_HEAD
+0x07 MESH_MODULE_MESSAGE_OPCODE_GENERIC_LEVEL_SET_UNACKNOWLEDGED_NO_HEAD
+0x08 MESH_MODULE_MESSAGE_OPCODE_GENERIC_LEVEL_STATUS_NO_HEAD
+0x09 MESH_MODULE_MESSAGE_OPCODE_GENERIC_DELTA_SET_NO_HEAD
+0x0A MESH_MODULE_MESSAGE_OPCODE_GENERIC_DELTA_SET_UNACKNOWLEDGED_NO_HEAD
+0x0B MESH_MODULE_MESSAGE_OPCODE_GENERIC_MOVE_SET_NO_HEAD
+0x0C MESH_MODULE_MESSAGE_OPCODE_GENERIC_MOVE_SET_UNACKNOWLEDGED_NO_HEAD
+0x0D MESH_MODULE_MESSAGE_OPCODE_GENERIC_DEFAULT_TRANSITION_TIME_GET_NO_HEAD
+0x0E MESH_MODULE_MESSAGE_OPCODE_GENERIC_DEFAULT_TRANSITION_TIME_SET_NO_HEAD
+0x0F MESH_MODULE_MESSAGE_OPCODE_GENERIC_DEFAULT_TRANSITION_TIME_SET_UNACKNOWLEDGED_NO_HEAD
+0x10 MESH_MODULE_MESSAGE_OPCODE_GENERIC_DEFAULT_TRANSITION_TIME_STATUS_NO_HEAD
+0x11 MESH_MODULE_MESSAGE_OPCODE_GENERIC_ONPOWERUP_GET_NO_HEAD
+0x12 MESH_MODULE_MESSAGE_OPCODE_GENERIC_ONPOWERUP_STATUS_NO_HEAD
+0x13 MESH_MODULE_MESSAGE_OPCODE_GENERIC_ONPOWERUP_SET_NO_HEAD
+0x14 MESH_MODULE_MESSAGE_OPCODE_GENERIC_ONPOWERUP_SET_UNACKNOWLEDGED_NO_HEAD
+0x15 MESH_MODULE_MESSAGE_OPCODE_GENERIC_POWER_LEVEL_GET_NO_HEAD
+0x16 MESH_MODULE_MESSAGE_OPCODE_GENERIC_POWER_LEVEL_SET_NO_HEAD
+0x17 MESH_MODULE_MESSAGE_OPCODE_GENERIC_POWER_LEVEL_SET_UNACKNOWLEDGED_NO_HEAD
+0x18 MESH_MODULE_MESSAGE_OPCODE_GENERIC_POWER_LEVEL_STATUS_NO_HEAD
+0x19 MESH_MODULE_MESSAGE_OPCODE_GENERIC_POWER_LAST_GET_NO_HEAD
+0x1A MESH_MODULE_MESSAGE_OPCODE_GENERIC_POWER_LAST_STATUS_NO_HEAD
+0x1B MESH_MODULE_MESSAGE_OPCODE_GENERIC_POWER_DEFAULT_GET_NO_HEAD
+0x1C MESH_MODULE_MESSAGE_OPCODE_GENERIC_POWER_DEFAULT_STATUS_NO_HEAD
+0x1D MESH_MODULE_MESSAGE_OPCODE_GENERIC_POWER_RANGE_GET_NO_HEAD
+0x1E MESH_MODULE_MESSAGE_OPCODE_GENERIC_POWER_RANGE_STATUS_NO_HEAD
+0x1F MESH_MODULE_MESSAGE_OPCODE_GENERIC_POWER_DEFAULT_SET_NO_HEAD
+0x20 MESH_MODULE_MESSAGE_OPCODE_GENERIC_POWER_DEFAULT_SET_UNACKNOWLEDGED_NO_HEAD
+0x21 MESH_MODULE_MESSAGE_OPCODE_GENERIC_POWER_RANGE_SET_NO_HEAD
+0x22 MESH_MODULE_MESSAGE_OPCODE_GENERIC_POWER_RANGE_SET_UNACKNOWLEDGED_NO_HEAD
+0x23 MESH_MODULE_MESSAGE_OPCODE_GENERIC_BATTERY_GET_NO_HEAD
+0x24 MESH_MODULE_MESSAGE_OPCODE_GENERIC_BATTERY_STATUS_NO_HEAD
+0x25 MESH_MODULE_MESSAGE_OPCODE_GENERIC_LOCATION_GLOBAL_GET_NO_HEAD
+0x40 MESH_MODULE_MESSAGE_OPCODE_GENERIC_LOCATION_GLOBAL_STATUS
+0x26 MESH_MODULE_MESSAGE_OPCODE_GENERIC_LOCATION_LOCAL_GET_NO_HEAD
+0x27 MESH_MODULE_MESSAGE_OPCODE_GENERIC_LOCATION_LOCAL_STATUS_NO_HEAD
+0x41 MESH_MODULE_MESSAGE_OPCODE_GENERIC_LOCATION_GLOBAL_SET
+0x42 MESH_MODULE_MESSAGE_OPCODE_GENERIC_LOCATION_GLOBAL_SET_UNACKNOWLEDGED
+0x28 MESH_MODULE_MESSAGE_OPCODE_GENERIC_LOCATION_LOCAL_SET_NO_HEAD
+0x29 MESH_MODULE_MESSAGE_OPCODE_GENERIC_LOCATION_LOCAL_SET_UNACKNOWLEDGED_NO_HEAD
+0x2A MESH_MODULE_MESSAGE_OPCODE_GENERIC_MANUFACTURER_PROPERTIES_GET_NO_HEAD
+0x43 MESH_MODULE_MESSAGE_OPCODE_GENERIC_MANUFACTURER_PROPERTIES_STATUS
+0x2B MESH_MODULE_MESSAGE_OPCODE_GENERIC_MANUFACTURER_PROPERTY_GET_NO_HEAD
+0x44 MESH_MODULE_MESSAGE_OPCODE_GENERIC_MANUFACTURER_PROPERTY_SET
+0x45 MESH_MODULE_MESSAGE_OPCODE_GENERIC_MANUFACTURER_PROPERTY_SET_UNACKNOWLEDGED
+0x46 MESH_MODULE_MESSAGE_OPCODE_GENERIC_MANUFACTURER_PROPERTY_STATUS
+0x2C MESH_MODULE_MESSAGE_OPCODE_GENERIC_ADMIN_PROPERTIES_GET_NO_HEAD
+0x47 MESH_MODULE_MESSAGE_OPCODE_GENERIC_ADMIN_PROPERTIES_STATUS
+0x2D MESH_MODULE_MESSAGE_OPCODE_GENERIC_ADMIN_PROPERTY_GET_NO_HEAD
+0x48 MESH_MODULE_MESSAGE_OPCODE_GENERIC_ADMIN_PROPERTY_SET
+0x49 MESH_MODULE_MESSAGE_OPCODE_GENERIC_ADMIN_PROPERTY_SET_UNACKNOWLEDGED
+0x4A MESH_MODULE_MESSAGE_OPCODE_GENERIC_ADMIN_PROPERTY_STATUS
+0x2E MESH_MODULE_MESSAGE_OPCODE_GENERIC_USER_PROPERTIES_GET_NO_HEAD
+0x4B MESH_MODULE_MESSAGE_OPCODE_GENERIC_USER_PROPERTIES_STATUS
+0x2F MESH_MODULE_MESSAGE_OPCODE_GENERIC_USER_PROPERTY_GET_NO_HEAD
+0x4C MESH_MODULE_MESSAGE_OPCODE_GENERIC_USER_PROPERTY_SET
+0x4D MESH_MODULE_MESSAGE_OPCODE_GENERIC_USER_PROPERTY_SET_UNACKNOWLEDGED
+0x4E MESH_MODULE_MESSAGE_OPCODE_GENERIC_USER_PROPERTY_STATUS
+0x4F MESH_MODULE_MESSAGE_OPCODE_GENERIC_CLIENT_PROPERTIES_GET
+0x50 MESH_MODULE_MESSAGE_OPCODE_GENERIC_CLIENT_PROPERTIES_STATUS
+0x30 MESH_MODULE_MESSAGE_OPCODE_SENSOR_DESCRIPTOR_GET_NO_HEAD
+0x51 MESH_MODULE_MESSAGE_OPCODE_SENSOR_DESCRIPTOR_STATUS
+0x31 MESH_MODULE_MESSAGE_OPCODE_SENSOR_GET_NO_HEAD
+0x52 MESH_MODULE_MESSAGE_OPCODE_SENSOR_STATUS
+0x32 MESH_MODULE_MESSAGE_OPCODE_SENSOR_COLUMN_GET_NO_HEAD
+0x53 MESH_MODULE_MESSAGE_OPCODE_SENSOR_COLUMN_STATUS
+0x33 MESH_MODULE_MESSAGE_OPCODE_SENSOR_SERIES_GET_NO_HEAD
+0x54 MESH_MODULE_MESSAGE_OPCODE_SENSOR_SERIES_STATUS
+0x34 MESH_MODULE_MESSAGE_OPCODE_SENSOR_CADENCE_GET_NO_HEAD
+0x55 MESH_MODULE_MESSAGE_OPCODE_SENSOR_CADENCE_SET
+0x56 MESH_MODULE_MESSAGE_OPCODE_SENSOR_CADENCE_SET_UNACKNOWLEDGED
+0x57 MESH_MODULE_MESSAGE_OPCODE_SENSOR_CADENCE_STATUS
+0x35 MESH_MODULE_MESSAGE_OPCODE_SENSOR_SETTINGS_GET_NO_HEAD
+0x58 MESH_MODULE_MESSAGE_OPCODE_SENSOR_SETTINGS_STATUS
+0x36 MESH_MODULE_MESSAGE_OPCODE_SENSOR_SETTING_GET_NO_HEAD
+0x59 MESH_MODULE_MESSAGE_OPCODE_SENSOR_SETTING_SET
+0x5A MESH_MODULE_MESSAGE_OPCODE_SENSOR_SETTING_SET_UNACKNOWLEDGED
+0x5B MESH_MODULE_MESSAGE_OPCODE_SENSOR_SETTING_STATUS
+0x37 MESH_MODULE_MESSAGE_OPCODE_TIME_GET_NO_HEAD
+0x5C MESH_MODULE_MESSAGE_OPCODE_TIME_SET
+0x5D MESH_MODULE_MESSAGE_OPCODE_TIME_STATUS
+0x38 MESH_MODULE_MESSAGE_OPCODE_TIME_ROLE_GET_NO_HEAD
+0x39 MESH_MODULE_MESSAGE_OPCODE_TIME_ROLE_SET_NO_HEAD
+0x3A MESH_MODULE_MESSAGE_OPCODE_TIME_ROLE_STATUS_NO_HEAD
+0x3B MESH_MODULE_MESSAGE_OPCODE_TIME_ZONE_GET_NO_HEAD
+0x3C MESH_MODULE_MESSAGE_OPCODE_TIME_ZONE_SET_NO_HEAD
+0x3D MESH_MODULE_MESSAGE_OPCODE_TIME_ZONE_STATUS_NO_HEAD
+0x3E MESH_MODULE_MESSAGE_OPCODE_TAI_UTC_DELTA_GET_NO_HEAD
+0x3F MESH_MODULE_MESSAGE_OPCODE_TAI_UTC_DELTA_SET_NO_HEAD
+0x40 MESH_MODULE_MESSAGE_OPCODE_TAI_UTC_DELTA_STATUS_NO_HEAD
+0x41 MESH_MODULE_MESSAGE_OPCODE_SCENE_GET_NO_HEAD
+0x42 MESH_MODULE_MESSAGE_OPCODE_SCENE_RECALL_NO_HEAD
+0x43 MESH_MODULE_MESSAGE_OPCODE_SCENE_RECALL_UNACKNOWLEDGED_NO_HEAD
+0x5E MESH_MODULE_MESSAGE_OPCODE_SCENE_STATUS
+0x44 MESH_MODULE_MESSAGE_OPCODE_SCENE_REGISTER_GET_NO_HEAD
+0x45 MESH_MODULE_MESSAGE_OPCODE_SCENE_REGISTER_STATUS_NO_HEAD
+0x46 MESH_MODULE_MESSAGE_OPCODE_SCENE_STORE_NO_HEAD
+0x47 MESH_MODULE_MESSAGE_OPCODE_SCENE_STORE_UNACKNOWLEDGED_NO_HEAD
+0x9E MESH_MODULE_MESSAGE_OPCODE_SCENE_DELETE_NO_HEAD
+0x9F MESH_MODULE_MESSAGE_OPCODE_SCENE_DELETE_UNACKNOWLEDGED_NO_HEAD
+0x48 MESH_MODULE_MESSAGE_OPCODE_SCHEDULER_ACTION_GET_NO_HEAD
+0x5F MESH_MODULE_MESSAGE_OPCODE_SCHEDULER_ACTION_STATUS
+0x49 MESH_MODULE_MESSAGE_OPCODE_SCHEDULER_GET_NO_HEAD
+0x4A MESH_MODULE_MESSAGE_OPCODE_SCHEDULER_STATUS_NO_HEAD
+0x60 MESH_MODULE_MESSAGE_OPCODE_SCHEDULER_ACTION_SET
+0x61 MESH_MODULE_MESSAGE_OPCODE_SCHEDULER_ACTION_SET_UNACKNOWLEDGED
+0x4B MESH_MODULE_MESSAGE_OPCODE_LIGHT_LIGHTNESS_LIGHT_LIGHTNESS_GET_NO_HEAD
+0x4C MESH_MODULE_MESSAGE_OPCODE_LIGHT_LIGHTNESS_SET_NO_HEAD
+0x4D MESH_MODULE_MESSAGE_OPCODE_LIGHT_LIGHTNESS_SET_UNACKNOWLEDGED_NO_HEAD
+0x4E MESH_MODULE_MESSAGE_OPCODE_LIGHT_LIGHTNESS_STATUS_NO_HEAD
+0x4F MESH_MODULE_MESSAGE_OPCODE_LIGHT_LIGHTNESS_LINEAR_GET_NO_HEAD
+0x50 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LIGHTNESS_LINEAR_SET_NO_HEAD
+0x51 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LIGHTNESS_LINEAR_SET_UNACKNOWLEDGED_NO_HEAD
+0x52 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LIGHTNESS_LINEAR_STATUS_NO_HEAD
+0x53 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LIGHTNESS_LAST_GET_NO_HEAD
+0x54 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LIGHTNESS_LAST_STATUS_NO_HEAD
+0x55 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LIGHTNESS_DEFAULT_GET_NO_HEAD
+0x56 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LIGHTNESS_DEFAULT_STATUS_NO_HEAD
+0x57 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LIGHTNESS_RANGE_GET_NO_HEAD
+0x58 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LIGHTNESS_RANGE_STATUS_NO_HEAD
+0x59 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LIGHTNESS_DEFAULT_SET_NO_HEAD
+0x5A MESH_MODULE_MESSAGE_OPCODE_LIGHT_LIGHTNESS_DEFAULT_SET_UNACKNOWLEDGED_NO_HEAD
+0x5B MESH_MODULE_MESSAGE_OPCODE_LIGHT_LIGHTNESS_RANGE_SET_NO_HEAD
+0x5C MESH_MODULE_MESSAGE_OPCODE_LIGHT_LIGHTNESS_RANGE_SET_UNACKNOWLEDGED_NO_HEAD
+0x5D MESH_MODULE_MESSAGE_OPCODE_LIGHT_CTL_GET_NO_HEAD
+0x5E MESH_MODULE_MESSAGE_OPCODE_LIGHT_CTL_SET_NO_HEAD
+0x5F MESH_MODULE_MESSAGE_OPCODE_LIGHT_CTL_SET_UNACKNOWLEDGED_NO_HEAD
+0x60 MESH_MODULE_MESSAGE_OPCODE_LIGHT_CTL_STATUS_NO_HEAD
+0x61 MESH_MODULE_MESSAGE_OPCODE_LIGHT_CTL_TEMPERATURE_GET_NO_HEAD
+0x62 MESH_MODULE_MESSAGE_OPCODE_LIGHT_CTL_TEMPERATURE_RANGE_GET_NO_HEAD
+0x63 MESH_MODULE_MESSAGE_OPCODE_LIGHT_CTL_TEMPERATURE_RANGE_STATUS_NO_HEAD
+0x64 MESH_MODULE_MESSAGE_OPCODE_LIGHT_CTL_TEMPERATURE_SET_NO_HEAD
+0x65 MESH_MODULE_MESSAGE_OPCODE_LIGHT_CTL_TEMPERATURE_SET_UNACKNOWLEDGED_NO_HEAD
+0x66 MESH_MODULE_MESSAGE_OPCODE_LIGHT_CTL_TEMPERATURE_STATUS_NO_HEAD
+0x67 MESH_MODULE_MESSAGE_OPCODE_LIGHT_CTL_DEFAULT_GET_NO_HEAD
+0x68 MESH_MODULE_MESSAGE_OPCODE_LIGHT_CTL_DEFAULT_STATUS_NO_HEAD
+0x69 MESH_MODULE_MESSAGE_OPCODE_LIGHT_CTL_DEFAULT_SET_NO_HEAD
+0x6A MESH_MODULE_MESSAGE_OPCODE_LIGHT_CTL_DEFAULT_SET_UNACKNOWLEDGED_NO_HEAD
+0x6B MESH_MODULE_MESSAGE_OPCODE_LIGHT_CTL_TEMPERATURE_RANGE_SET_NO_HEAD
+0x6C MESH_MODULE_MESSAGE_OPCODE_LIGHT_CTL_TEMPERATURE_RANGE_SET_UNACKNOWLEDGED_NO_HEAD
+0x6D MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_GET_NO_HEAD
+0x6E MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_HUE_GET_NO_HEAD
+0x6F MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_HUE_SET_NO_HEAD
+0x70 MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_HUE_SET_UNACKNOWLEDGED_NO_HEAD
+0x71 MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_HUE_STATUS_NO_HEAD
+0x72 MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_SATURATION_GET_NO_HEAD
+0x73 MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_SATURATION_SET_NO_HEAD
+0x74 MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_SATURATION_SET_UNACKNOWLEDGED_NO_HEAD
+0x75 MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_SATURATION_STATUS_NO_HEAD
+0x76 MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_SET_NO_HEAD
+0x77 MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_SET_UNACKNOWLEDGED_NO_HEAD
+0x78 MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_STATUS_NO_HEAD
+0x79 MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_TARGET_GET_NO_HEAD
+0x7A MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_TARGET_STATUS_NO_HEAD
+0x7B MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_DEFAULT_GET_NO_HEAD
+0x7C MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_DEFAULT_STATUS_NO_HEAD
+0x7D MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_RANGE_GET_NO_HEAD
+0x7E MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_RANGE_STATUS_NO_HEAD
+0x7F MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_DEFAULT_SET_NO_HEAD
+0x80 MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_DEFAULT_SET_UNACKNOWLEDGED_NO_HEAD
+0x81 MESH_MODULE_MESSAGE_OPCODE_LIGHT_HSL_RANGE_SET_NO_HEAD
+0x83 MESH_MODULE_MESSAGE_OPCODE_LIGHT_XYL_GET_NO_HEAD
+0x84 MESH_MODULE_MESSAGE_OPCODE_LIGHT_XYL_SET_NO_HEAD
+0x85 MESH_MODULE_MESSAGE_OPCODE_LIGHT_XYL_SET_UNACKNOWLEDGED_NO_HEAD
+0x86 MESH_MODULE_MESSAGE_OPCODE_LIGHT_XYL_STATUS_NO_HEAD
+0x87 MESH_MODULE_MESSAGE_OPCODE_LIGHT_XYL_TARGET_GET_NO_HEAD
+0x88 MESH_MODULE_MESSAGE_OPCODE_LIGHT_XYL_TARGET_STATUS_NO_HEAD
+0x89 MESH_MODULE_MESSAGE_OPCODE_LIGHT_XYL_DEFAULT_GET_NO_HEAD
+0x8A MESH_MODULE_MESSAGE_OPCODE_LIGHT_XYL_DEFAULT_STATUS_NO_HEAD
+0x8B MESH_MODULE_MESSAGE_OPCODE_LIGHT_XYL_RANGE_GET_NO_HEAD
+0x8C MESH_MODULE_MESSAGE_OPCODE_LIGHT_XYL_RANGE_STATUS_NO_HEAD
+0x8D MESH_MODULE_MESSAGE_OPCODE_LIGHT_XYL_DEFAULT_SET_NO_HEAD
+0x8E MESH_MODULE_MESSAGE_OPCODE_LIGHT_XYL_DEFAULT_SET_UNACKNOWLEDGED_NO_HEAD
+0x8F MESH_MODULE_MESSAGE_OPCODE_LIGHT_XYL_RANGE_SET_NO_HEAD
+0x90 MESH_MODULE_MESSAGE_OPCODE_LIGHT_XYL_RANGE_SET_UNACKNOWLEDGED_NO_HEAD
+0x91 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LC_MODE_GET_NO_HEAD
+0x92 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LC_MODE_SET_NO_HEAD
+0x93 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LC_MODE_SET_UNACKNOWLEDGED_NO_HEAD
+0x94 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LC_MODE_STATUS_NO_HEAD
+0x95 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LC_OM_GET_NO_HEAD
+0x96 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LC_OM_SET_NO_HEAD
+0x97 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LC_OM_SET_UNACKNOWLEDGED_NO_HEAD
+0x98 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LC_OM_STATUS_NO_HEAD
+0x99 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LC_LIGHT_ONOFF_GET_NO_HEAD
+0x9A MESH_MODULE_MESSAGE_OPCODE_LIGHT_LC_LIGHT_ONOFF_SET_NO_HEAD
+0x9B MESH_MODULE_MESSAGE_OPCODE_LIGHT_LC_LIGHT_ONOFF_SET_UNACKNOWLEDGED_NO_HEAD
+0x9C MESH_MODULE_MESSAGE_OPCODE_LIGHT_LC_LIGHT_ONOFF_STATUS_NO_HEAD
+0x9D MESH_MODULE_MESSAGE_OPCODE_LIGHT_LC_PROPERTY_GET_NO_HEAD
+0x62 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LC_PROPERTY_SET
+0x63 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LC_PROPERTY_SET_UNACKNOWLEDGED
+0x64 MESH_MODULE_MESSAGE_OPCODE_LIGHT_LC_PROPERTY_STATUS)
+
+// status code
+(
+0x00 MESH_SUCCESS
+0x01 MESH_INVALID_ADDRESS
+0x02 MESH_INVALID_MODEL
+0x03 MESH_INVALID_APPKEYINDEX
+0x04 MESH_INVALID_NETKEYINDEX
+0x05 MESH_INSUFFICIENT_RESOURCES
+0x06 MESH_KEYINDEX_ALREAD_STORED
+0x07 MESH_INVALID_PUBLISH_PARAMETERS
+0x08 MESH_NOT_A_SUBSCRIBE_MODEL
+0x09 MESH_STORAGE_FAILURE
+0x0a MESH_FEATURE_NOT_SUPPORTED
+0x0b MESH_CANNOT_UPDATE
+0x0c MESH_CANNOT_REMOVE
+0x0d MESH_CANNOT_BIND
+0x0e MESH_TEMPORARILY_UNABLE_TO_CHANGE_STATE
+0x0f MESH_CANNOT_SET
+0x10 MESH_UNSPECIFIED_ERROR
+0x11 MESH_INVALID_BINDING
+)
+(
+0x00F0 VENDOR_MESSAGE_TMALL_DST
+)
+(// vendor model attribute
+0x0123 VENDOR_ATTR_COLOR_SERVER
+0x0100 VENDOR_ATTR_GENERIC_ONOFF_SERVER
+0x0121 VENDOR_ATTR_LIGHTNESS_LEVEL_SERVER
+0x0122 VENDOR_ATTR_COLOR_TEMPERATURE_SERVER
+0x0534 VENDOR_ATTR_MAIN_LIGHT_SERVER
+0x0533 VENDOR_ATTR_BACKGROUND_LIGHT_ONOFF_SERVER
+0xf004 VENDOR_ATTR_SCENE_SERVER
+)
+(//Timer opcode
+0x01A8 VENDOR_MESSAGE_OPCODE_COMPANY_ID
+//Ê±¼ä
+0xF01F VENDOR_MESSAGE_ATTR_TYPE_TIME
+//Ê±Çø
+0xF01E VENDOR_MESSAGE_ATTR_TYPE_TIME_ZONE
+//¶ÔÊ±
+0xF01D VENDOR_MESSAGE_ATTR_TYPE_ON_TIME
+//¶¨Ê±
+0xF010 VENDOR_MESSAGE_ATTR_TYPE_TIMING
+//ÖÜÆÚ¶¨Ê±
+0xF011 VENDOR_MESSAGE_ATTR_TYPE_CYCLE_TIMING
+//É¾³ý¶¨Ê±
+0xF012 VENDOR_MESSAGE_ATTR_TYPE_DELETE_TIMING
+
+//ÑÕÉ«
+0x0123 VENDOR_MESSAGE_ATTR_TYPE_COLOR
+//Ö÷µÆ
+0x0534 VENDOR_MESSAGE_ATTR_TYPE_MAIN_LIGHT
+//±³¹âµÆ
+0x0533 VENDOR_MESSAGE_ATTR_TYPE_BACKGROUND_LIGHT
+)
+(//ÌìÃ¨eventÊÂ¼þ±í
+//Éè±¸·¢ÉúµÄÊÂ¼þ£¬±ÈÈçÉÏµç»òÕß¶¨Ê±Íê³É
+0xF009 VENDOR_ATTR_TYPE_EVENT_TRIGGER
+
+//ÌìÃ¨Éè±¸ÉÏµç
+0x03 VENDOR_MESSAGE_EVENT_DEVICE_POWER_ON
+//ÌìÃ¨¶¨Ê±Íê³É
+0x11 VENDOR_MESSAGE_EVENT_FINISH_TIMING
+)
+(
+0x80 VENDOR_MESSAGE_SEND_TID_MIN
+0xC0 VENDOR_MESSAGE_SEND_TID_MAX
+)
+(
+0x59 TIMER_CYCLICAL_FALG
+60 SECONDS_OF_MIN
+345600 SECONDS_OF_FOUR_DAYS
+604800 SECONDS_OF_WEEK
+86400 SECONDS_OF_DAY
+0x01e0 EIGHT_HOURS_TIME_ZONE_OFFSET
+
+)
+(
+6 ADV_PACKET_MIN_LENGTH
+37 ADV_PACKET_MAX_LENGTH
+
+1 AD_TYPE_MIN_LENGTH
+30 AD_TYPE_MAX_LENGTH
+)
+(//transport mic cache parameter
+10 TRANSPORT_MIC_CACHE_SPACE_NUM
+4 TRANSPORT_MIC_CACHE_SPACE_SIZE
+//×Ü³¤¶ÈÉÙÒ»¸öspace
+36 TRANSPORT_MIC_CACHE_TOTAL_SIZE
+)
+(
+0x00 MESH_EEP_THREE_TUPLE_OFFSET
+0x1a MESH_EEP_NETWORK_KEY_OFFSET
+0x2d MESH_EEP_APPLICATION_KEY_OFFSET
+0x3d MESH_EEP_DEVICE_KEY_OFFSET
+0x4d MESH_EEP_RESET_COUNT_OFFSET
+0x4e MESH_EEP_SEQ_OFFSET
+0x51 MESH_EEP_SUBSCRIPTION_OFFSET
+)
+(
+0x1a MESH_EEP_THREE_TUPLE_LENGTH
+0x13 MESH_EEP_NETWORK_KEY_LENGTH
+0x10 MESH_EEP_APPLICATION_KEY_LENGTH
+0x10 MESH_EEP_DEVICE_KEY_LENGTH
+0x01 MESH_EEP_RESET_COUNT_LENGTH
+0x03 MESH_EEP_SEQ_LENGTH
+0x10 MESH_EEP_SUBSCRIPTION_LENGTH
+0x40 MESH_EEP_SUBSCRIPTION_TOTAL_LENGTH
+)
+(//mem_mesh_advertising_unprovisioned_device_beacon_switch
+0 DEVICE_BEACON_OFF
+1 DEVICE_BEACON_ON
+)
+(
+//Î´ÅäÍø¹ã²¥³¬Ê±10min
+0x1770	ADV_UNPROVISIONED_DEVICE_BEACON_TIMEOUT
+//Î´ÅäÍø¹ã²¥¼ä¸ô500ms
+5		ADV_UNPROVISIONED_DEVICE_BEACON_INTERVAL
+//Î´ÅäÍø¹ã²¥Ê±³¤120ms=20ms*6
+6		ADV_UNPROVISIONED_DEVICE_BEACON_DURATION
+
+//¾²Ä¬¹ã²¥³¬Ê±:ÎÞ
+0		ADV_SILENCE_DEVICE_BEACON_TIMEOUT
+//¾²Ä¬¹ã²¥¼ä¸ô60s
+600		ADV_SILENCE_DEVICE_BEACON_INTERVAL
+//¾²Ä¬¹ã²¥Ê±³¤120ms=20ms*6
+6		ADV_SILENCE_DEVICE_BEACON_DURATION
+
+
+//ÅäÍøºó¹ã²¥¼ä¸ô
+0x54		ADV_PAIRING_MESH_MESSAGE_INTERVAL
+//ÅäÍøºó¹ã²¥Ê±³¤
+20		ADV_PAIRING_MESH_MESSAGE_DURATION
+
+10		ADV_RELAY_MESH_MESSAGE_DURATION
+)
+(
+0x12 MAX_APP_MSSAGE_PAYLOAD_LENGTH
+7 BIT_OF_APP_PACKAGE_NUM
+6 BIT_OF_ADV_IN_OFF
+)
+(
+//mesh »Ø¸´APP¹ã²¥¼ä¸ô24*0.625ms = 15ms
+0x15 MESH_ADV_APP_MESSAGE_INTERVAL
+//mesh»Ø¸´tmall¹ã²¥¼ä¸ô32*0.625ms = 20ms
+0x1d MESH_ADV_TMALL_MESSAGE_INTERVAL
+)
+(
+0x2c COMMA
+-4 DECREASED_FOUR
+
+)
+(
+0x19 MIC_SIZE_64BIT
+0x09 MIC_SIZE_32BIT
+)
+(
+33 GATT_RECEIVE_MSG_BUFFER_SIZE
+)
+(//mem_mesh_provisioned_flag
+0 PAIRED_STATUS
+1 UNPROVISIONED_BEACON_STATUS
+2 PAIRING_STATUS
+3 SILENCE_BEACON_STATUS
+4 RECEIVED_CONFIG_APPKEY_ADD
+)
+(//mem_mesh_UUID_FeatureFlag
+0 BIT_SILENCE_ADV_FLAG
+)
+(
+0x01 UNPROVISIONED_ADLEN_LENGTH
+0x01 UNPROVISIONED_ADTYPE_LENGTH
+0x01 UNPROVISIONED_DEVICE_BEACON_LENGTH
+0x10 UNPROVISIONED_DEVICE_UUID_LENGTH
+0x02 UNPROVISIONED_OOB_INFORMATION_LENGTH
+)
+(
+0x00 UNPROVISIONED_DEVICE_BEACON
+0x01 SECURE_NETWORK_BEACON
+0x1827 MESH_PROVISIONING_UUID
+0x1828 MESH_PROXY_SERVICE
+
+)
+(
+0x00 PROVISIONING_RANDOM
+0x01 PROVISIONING_CONFIRMATION
+0x02 PROVISIONING_DATA
+0x03 PROVISIONING_COMPLETE
+0x04 PROVISIONING_CONFIG
+0x05 PROVISIONING_CONFIG_ACK
+0x06 PROVISIONING_IOS_DATA
+0x07 PROVISIONING_SEND_IOS_DATA
+)
+(//mem_mesh_Provisioning_State_Flag
+// FLAG bit1:Provisioning Confirmation
+1 RECEIVE_PROVISIONING_RANDOM
+2 RECEIVE_PROVISIONING_DATA
+)
+(//provisioning packet info size
+3 PROVISIONING_PACKET_LENGTH_FLAGS
+6 PROVISIONING_PACKET_LENGTH_AD_TYPE_COMPANY_ID_VID_PROVISIONING_TYPE
+5 PROVISIONING_PACKET_AD_TYPE_COMPANY_ID_VID_PROVISIONING_TYPE
+1 PROVISIONING_PACKET_LENGTH
+1 PROVISIONING_PACKET_AD_TYPE
+2 PROVISIONING_PACKET_COMPANY_ID
+1 PROVISIONING_PACKET_VID
+1 PROVISIONING_PACKET_PROVISIONING_TYPE
+//provisioning random
+2 PROVISIONING_PACKET_RANDOM_MAC
+8 PROVISIONING_PACKET_RANDOM_RANDOM_A
+8 PROVISIONING_PACKET_RANDOM_RANDOM_B
+//provisioning confirmation
+2 PROVISIONING_PACKET_CONFIRMATION_MAC
+16 PROVISIONING_PACKET_CONFIRMATION_DEVICE
+//provisioning complete
+6 PROVISIONING_PACKET_COMPLETE_MAC
+
+2 PROVISIONING_CONFIG_ACK_MAC
+1 PROVISIONING_CONFIG_ACK_FIELD
+
+)
+(
+0x01 PROVISIONING_CONFIG_ACK_NOTE
+)
+(//gatt package struct
+0 GATT_PACKAGE_MSG_ID
+1 GATT_PACKAGE_PACKAGE_NUM
+2 GATT_PACKAGE_LENGTH
+3 GATT_PACKAGE_PAYLOAD
+)
+(
+0x12 MAX_LENGTH_PRIVISIONING_CONTROL_MSG_ANDROID
+0x08 MAX_LENGTH_PRIVISIONING_CONTROL_MSG_IOS
+0x07 MAX_LENGTH_PRIVISIONING_PAIRING_MSG_IOS
+)
+(
+4 MAX_GATT_PACKAGE_NUM
+50 GATT_RECEIVE_TIMEOUT
+)
+(
+8 SUBSCRIPTION_MAX_COUNT
+)
+(//typedef struct of mem_mesh_element_device
+0 ELEMENT_DEVICE_GROUP_ADDR
+2 ELEMENT_DEVICE_QUEUE_BUFFER_PTR
+4 ELEMENT_DEVICE_VENDOR_TIME_PTR
+6 ELEMENT_DEVICE_SUBSCRIPTION_LABEL
+22 ELEMENT_DEVICE_UPPER_ADV_FLAG
+23 ELEMENT_DEVICE_UPPER_QUEUE_PTR
+25 ELEMENT_DEVICE_TRAN_PACKAGE_TID
+26 ELEMENT_DEVICE_TRAN_PACKAGE_TYPE
+27 SIZEOF_ELEMENT_DEVICE
+
+)
+(
+36 MESH_SEGMENT_SIZE
+)
+(
+320 MESH_TIMER_BUFFER_SIZE
+)
+(//bit map of mem_mesh_core_feature
+0 MESH_FEATURE_DISABLE_LOG
+1 MESH_FEATURE_DISABLE_RELAY
+2 MESH_FEATURE_DISABLE_SUBSCRIPTION
+3 MESH_FEATURE_DISABLE_APP_PAIRING
+)
+(//taobao id
+0x01a8	COMPANY_IDENTIFIERS_ALIBABA
+0x0d	ALI_MESH_VID_NUMBER
+0x0da801 COMPANY_ID_ALIBABA_AND_VID
+0x0ea801 COMPANY_ID_ALIBABA_AND_VID_GATT
+)
+(
+0x00 MESH_CODE_INIT
+0x01 MESH_RECEIVE_PROVISIONING_PACKET
+0x02 MESH_RECEIVE_PROVISIONING_RANDOM_PACKET
+0x03 MESH_SEND_PROVISIONING_CONFIRMATION_PACKET
+0x04 MESH_RECEIVE_PROVISIONING_DATA_PACKET
+0x05 MESH_SEND_PROVISIONING_COMPLETE_PACKET
+0x06 MESH_RECEIVE_PROVISIONING_FAILED_PACKET
+
+0x10 MESH_ENCRYPT_SHA256_FUNCTION_INPUT
+0x11 MESH_ENCRYPT_SHA256_FUNCTION_RESULT
+0x12 MESH_ENCRYPT_AES_CMAC_FUNCTION_INPUT_M
+0x13 MESH_ENCRYPT_AES_CMAC_FUNCTION_INPUT_K
+0x14 MESH_ENCRYPT_AES_CMAC_FUNCTION_RESULT
+
+0x20 MESH_NETWORK_RECEIVE_PACKET
+0x21 MESH_NETWORK_RELAY_PACKET
+
+0x30 MESH_LOWER_RECEIVE_PACKET
+0x40 MESH_UPPER_RECEIVE_PACKET
+0x41 MESH_UPPER_SEND_PACKET
+
+0x50 MESH_ACCESS_RECEIVE_MESSAGE
+
+0x60 MESH_PROXY_RECEIVE_MESSAGE_HANDLE
+0x61 MESH_PROXY_RECEIVE_MESSAGE
+
+0xF0 MESH_MESSAGE_GENERIC_ONOFF_SET
+0xF1 MESH_MESSAGE_SET_LIGHT_LIGHTNESS
+0xF2 MESH_MESSAGE_SET_CTL
+)
+(//LUA LOG 
+0xAA LUA_LOG_PACKET_HEADER
+0x03 LUA_LOG_PAKCET_TYPE
+0xBB LUA_LOG_PACKET_TRAIL
+)
+(//logging level
+0 LOGGING_DEBUG
+1 LOGGING_INFO
+2 LOGGING_WARNING
+3 LOGGING_ERROR
+4 LOGGING_CRITICAL
+)
+(
+0x1c00 mem_mesh_uart_log_rx_buff
+0x1c01 mem_mesh_uart_log_rx_buff_end
+0x1c02 mem_mesh_uart_log_tx_buff
+0x1fff mem_mesh_uart_log_tx_buff_end
+)
+(
+7 TRANSPORT_HEAD_BIT_SEG
+6 TRANSPORT_HEAD_BIT_AKF
+05 TRANSPORT_HEAD_BIT_AID
+7 BIT_CTL
+)
+(//Generic OnOff
+0x00 GENERIC_ONOFF_CMD_OFF
+0x01 GENERIC_ONOFF_CMD_ON
+)
+(//LIGHTNESS
+0xFFFF ALI_MESH_LIGHTNESS_MAX
+0x0064 ALI_MESH_LIGHTNESS_LEVEL
+)
+(//TEMPERATURE
+0x4E20 ALI_MESH_TEMPERATURE_MAX
+0x0320 ALI_MESH_TEMPERATURE_MIN
+0x0064 ALI_MESH_TEMPERATURE_LEVEL
+)
+(//nonce type
+0x00 NETWORK_NONCE
+0x01 APPLICATION_NONCE
+0x02 DEVICE_NONCE
+0x03 PROXY_NONCE
+)
+(
+0x00c0 GROUP_ADDRESS_0XC000_little_endian
+0xffcf GROUP_ADDRESS_0XCFFF_little_endian
+0x02c0 GROUP_ADDRESS_0XC002_little_endian
+0x07c0 GROUP_ADDRESS_0XC007_little_endian
+0x01c0 GROUP_ADDRESS_0XC001_little_endian
+0xffff GROUP_ADDRESS_0XFFFF_little_endian
+)
+(//SRC SEQ cache parameter
+10 CACHE_SPACE_NUM
+5 CACHE_SPACE_SIZE
+)
+(
+12 MESH_NETWORK_PACKET_MIN_LENGTH
+30 MESH_NETWORK_PACKET_MAX_LENGTH
+)
+(
+0 MESH_MESSAGE_TMALL
+1 MESH_MESSAGE_APP
+2 MESH_MESSAGE_PROXY
+)
+(
+0x00 MESH_PROXY_SERVICE_DATA_ID_TYPE_NETWORK_ID
+0x01 MESH_PROXY_SERVICE_DATA_ID_TYPE_NODE_IDENTITY
+)
+(
+0x00 MESH_PROXY_MESSAGE_TYPE_NETWORK_PDU
+0x01 MESH_PROXY_MESSAGE_TYPE_MESH_BEACON
+0x02 MESH_PROXY_MESSAGE_TYPE_PROXY_CONFIGURATION
+0x03 MESH_PROXY_MESSAGE_TYPE_PROVISIONING_PDU
+)
+(
+0x0e	MESH_PROXY_DATA_IN_HANDLE
+0x10	MESH_PROXY_DATA_OUT_HANDLE
+0x11	MESH_PROXY_ENABLE_DATA_OUT_HANDLE
+0x14	MESH_PROVISIONING_DATA_IN_HANDLE
+0x16	MESH_PROVISIONING_DATA_OUT_HANDLE
+0x17	MESH_PROVISIONING_ENABLE_DATA_OUT_HANDLE
+)
+(
+15 UNSEGMENTED_ACCESS_MESSAGE_MAX_UPPER_TRANSPORT_ACCESS_PDU_LEN
+12 SEGMENTED_ACCESS_MESSAGE_UNINT_PDU_LEN
+)
+(//bit of mem_mesh_upper_tran_layer_temp_packet_flag
+7 BIT_UPPER_FLAG_PROXY_CONTROL
+6 BIT_UPPER_FLAG_APP_CONTROL
+5 BIT_UPPER_FLAG_VENDOR_INDICATION
+4 BIT_UPPER_FLAG_RETRANSMIT
+//BIT3-0
+0x0f DATA_UPPER_FLAG_MAX_RETRY_COUNT
+
+2 UPPER_RETRY_COUNT_STATUS
+1 UPPER_RETRY_COUNT_INDICATION
+)
+(
+0 NULL_PACKET_ADVERTISING
+1 PACKET_IN_BEARER
+2 PACKET_IN_ADVERTING
+3 PACKET_RECEIVE_INDICATION
+)
+(
+1 UPPER_TRAN_TMALL_MESSAGE
+2 UPPER_TRAN_APP_MESSAGE
+3 UPPER_TRAN_TMALL_AND_APP
+
+0 BIT_UPPER_TRAN_TMALL_MESSAGE
+1 BIT_UPPER_TRAN_APP_MESSAGE
+2 BIT_UUPER_TRAN_PROXY_MESSAGE
+)
+(
+0 ADC_CONFIG_VINLPM
+1 ADC_CONFIG_HVIN
+2 ADC_CONFIG_GPIO
+)
+(
+0 QUEUE_OFFSET_EACH_SIZE
+1 QUEUE_OFFSET_LENGTH
+2 QUEUE_OFFSET_CURR_NUM
+3 QUEUE_OFFSET_READ_PTR
+4 QUEUE_OFFSET_WRITE_PTR
+5 QUEUE_OFFSET_ELE_INIT_ADDR
+)
+(
+//Flash Register
+0x05 FLASH_READ_SATUS
+
+// Flash Status Register
+0x00 FLASH_STATUS_WIP
+0X01 FLASH_STATUS_WEL
+0X02 FLASH_STATUS_BP0
+0X03 FLASH_STATUS_BP1
+
+//Flash Write Sm
+0X00 FLASH_SM_NO_BUYS
+0X01 FLASH_SM_START
+0X02 FLASH_SM_ERASE_SECTOR
+0X03 FLASH_SM_WAIT_ERASE_SECTOR
+0X04 FLASH_SM_WRITE_DATA
+0X05 FLASH_SM_WAIT_WRITE_DATA
+
+
+//Flash Command
+0x02 FLASH_COMMAND_WRITE_DATA
+0x03 FLASH_COMMAND_READ_DATA
+0x06 FLASH_COMMAND_WRITE_ENABLE
+0x20 FLASH_COMMAND_SECTOR_ERASE
+0xAB FLASH_COMMAND_RELEASE_FROM_POWERDOWN
+0xB9 FLASH_COMMAND_POWERDOWN
+
+)
+(
+0x00 EFUSE_OFFSET_UCODE	//1B
+0X01 EFUSE_OFFSET_DEVICE_LOCK
+0x02 EFUSE_OFFSET_PERIPHERALS_LOCK
+0X03 EFUSE_OFFSET_OFFSET
+
+0x2b EFUSE_OFFSET_HCI_BOOT_CLKSEL	//bit7
+0x2b EFUSE_OFFSET_LOADCODE_DELAY	 //bit6
+0x2b EFUSE_OFFSET_DIG_AON_VSEL	//bit5-4
+0x2b EFUSE_OFFSET_DEVICE_OPTION	//bit3-0
+0x2c EFUSE_OFFSET_XTAL_OFFSET	//0x813a
+0x2d EFUSE_OFFSET_XTAL_CNT	//0x813c
+0x2e EFUSE_OFFSET_AGC_TABLE	//2B
+0x30 EFUSE_OFFSET_ADC_PARAM	//bit7-4
+0x30 EFUSE_OFFSET_APP_VSEL	//bit3-0
+0x31 EFUSE_OFFSET_AGC_SEL	//bit7 agc sel
+0x31 EFUSE_OFFSET_AGC_SEC_EN	//bit6 agc second en 0x8960[3]
+0x31 EFUSE_OFFSET_LDO_CFG1	//bit5-4:0x8a0d[2:0]
+0x31 EFUSE_OFFSET_TX_VCO_CURRENT //bit3-0:0x8a87[3:0]
+0x32 EFUSE_OFFSET_RC_CAL	//0x8a6c
+0x33 EFUSE_OFFSET_ADC		//9B
+0x3c EFUSE_OFFSET_KEY_ADDR	//4B
+
+//EFUSE_OFFSET_PERIPHERALS_LOCK
+0 EFUSE_SPI_LOCK_BIT
+1 EFUSE_SPI2_LOCK_BIT
+2 EFUSE_UART_LOCK_BIT
+3 EFUSE_UARTB_LOCK_BIT
+4 EFUSE_IIC_LOCK_BIT
+6 EFUSE_LE_LOCK_BIT
+7 EFUSE_BR_LOCK_BIT
+)
+(
+0	eeprom_nv_ram
+
+)
+(
+0 APP_HANDSHAKE_NULL
+1 APP_HANDSHAKE_DONE
+
+)
+(
+1 dvc_op_hci
+2 dvc_op_esl
+4 dvc_op_dongle
+5 dvc_op_test
+8 dvc_op_mouse
+9 dvc_op_shutter
+0x0a dvc_op_module
+0x0b dvc_op_ali_mesh
+0x0c dvc_op_hci_boot
+0x0d dvc_op_remote_car
+0x0e dvc_op_car
+0x0f dvc_op_antilost
+   
+)
+(
+3 UCODE_FLAG_ENC
+2 UCODE_FLAG_SKIP_EEP
+1 UCODE_FLAG_SKIP_FLASH
+0 UCODE_FLAG_HCI
+)
+(
+7 gpio_active_bit
+)
+(
+2 HID_HANDSHAKE_TIMEOUT
+
+)
+(
+1 APP_FLAG_RECONNECT
+)
+(
+5 LPM_WAKE_UP_DELAY_TIMER
+)
+(
+2 APP_DISC_RSN_SIZE
+)
+(
+0 APP_DISC_BY_BUTTON
+1 APP_DISC_AFTER_PAIRING
+2 APP_DISC_AFTER_RECONN
+3 APP_DISC_AFTER_SNIFF
+4 APP_DISC_AFTER_SETUP_DONE
+5 APP_DISC_AFTER_HANDSHAKE
+6 APP_DISC_BT
+7 APP_DISC_BLE
+8 APP_DISC_L2CAP_REFUSED
+9 APP_DISC_SWITCH_FAIL
+)
+(
+0xaa55 EEPROM_INIT_FLAG
+)
+(
+1 KEY_CONF_STRUCT_LEN
+0 KEY_PIN_OFFSET
+)
+(
+12000000 PWM_12MHZ
+24000000 PWM_24MHZ
+33000 PWM_33KHZ
+)
+(
+0 POWER_OFF
+1 POWER_STARTING
+2 POWER_STANDBY
+)
+(
+0 power_state_offset
+1 power_timer_offset
+2 power_off_timeout_offset
+3 power_starting_timeout_offset
+4 power_off_cb_offset
+6 power_starting_cb_offset
+8 power_standby_cb_offset
+10 ui_butten_up_cb_offset
+)
+(
+0x9000 mem_b_box
+0x9100 mem_e_box
+0x9200 mem_l_box
+0x9300 memk
+0x9400 mem_theta
+0x9420 mem_local_sig
+0x9fff mem_sim_slave
+//mouse
+0x9468 MOUSE_BT_SDP_ADDR
+0x9732 MOUSE_BLE_ATT_LIST_ADDR
+//dongle
+0x99A4 USB_KBDATA_VENDOR_DEFINE_ADDR
+0x99BF USB_KBDATA_ADDR
+0x99FF USB_MSDATA_ADDR
+0x9AA3 USB_DEVICEDATA_ADDR
+0x9AB6 USB_CONFDATA_ADDR
+//shutter
+0x9AF2 BLE_SHUTTER_GATT_LIST
+0x9C70 CLASSIC_SHUTTER_SDP_LIST
+0x9E57 BLE_SHUTTER_KEY_VALUE_LIST
+0x9E7F CLASSIC_SHUTTER_KEY_VALUE_LIST
+//car
+0x9EA7 BLE_CAR_ATT_LIST
+//tx power list
+//0x9F73 TX_POWER_LIST
+)
+(//NEC 61212
+9000 NEC61212_BOOT_CODE_START_TIME
+4500 NEC61212_BOOT_CODE_END_TIME
+
+9000 NEC61212_REPEAT_START_TIME
+2250 NEC61212_REPEAT_END_TIME
+
+560 NEC61212_DATA_BIT_1_START_TIME
+1690 NEC61212_DATA_BIT_1_END_TIME
+
+560 NEC61212_DATA_BIT_0_START_TIME
+560 NEC61212_DATA_BIT_0_END_TIME
+
+560 NEC61212_STOP_TIME
+
+42580 NEC61212_DATA2REPEAT_TIME
+98190 NEC61212_REPEAT2REPEAT_TIME
+
+0xffff NEC61212_TIMEOUT_TIME
+)
+(
+0 ADC_GPIO_4
+1 ADC_GPIO_5
+2 ADC_GPIO_6
+3 ADC_GPIO_7
+4 ADC_GPIO_9
+5 ADC_GPIO_10
+6 ADC_GPIO_11
+7 ADC_GPIO_12
+)
+(
+0 CONN_PARAM_UPDATA_PROCEDURE_NO_INIT
+1 CONN_PARAM_UPDATA_PROCEDURE_STARTING
+2 CONN_PARAM_UPDATA_PROCEDURE_COMPLETE
+3 CONN_PARAM_UPDATA_PROCEDURE_FAILD
+)
+(
+0 NEW_SPEC_HEADER_OFFSET
+2 NEW_SPEC_OPCODE_OFFSET
+3 NEW_SPEC_DLEGTH_OFFSET  //data length offset
+5 NEW_SPEC_DADDR_OFFSET   //data address offset
+)
+(
+1 OPCODE1_BUTTEN_CLICK_ONCE
+2 OPCODE2_BUTTEN_DOUBLE_CLICK
+3 OPCODE3_ANTL_START_ALRAM
+4 OPCODE4_CURRENT_ALARM_STATE
+5 OPCODE5_BATTER_INFORMATION
+7 OPCODE7_ANTL_CONFIG_ALRAM
+)
+(
+0x0a NEW_SPEC_NOTIFY_HANDLE
+0x0b NEW_SPEC_NOTIFICATION_ENABLE_HANDLE
+0x0d NEW_SPEC_WRITE_HANDLE
+)
+(
+0x01 ANTI_LE_ALARM_ON
+0x00 ANTI_LE_ALARM_OFF
+)
+(
+0 NOTIFICATION_ENABLE_BIT
+1 INDICATION_ENABLE_BIT
+)
+(
+//20ms
+0x0020	FAST_ADV_INTERVAL_VALUE_CAR
+)
+(
+0x14 ATT_CAR_CONTROL_HANDLE
+0x14 ATT_SPEED_SET_HANDLE
+)
+(
+0 TURN_FRONT
+1 TURN_LEFT
+2 TURN_RIGHT
+0 MOTOR_STOP
+1 GO_FRONT
+2 GO_BACK
+0x6b5a LE_RECEIVE_PACKET_HEAD
+)
+(
+0 FLAG_IR_DISABLE
+1 FLAG_IR_ENABLE
+)
+(
+0 DEVICE_CAR
+1 DEVICE_TANK
+2 DEVICE_BATTLE_CAR
+3 DEVICE_BATTLE_TANK
+4 DEVICE_REMOTE
+)
+(
+0 F_B_MOTOR
+1 L_R_MOTOR
+2 F_B_BATTERY
+3 L_R_BATTERY
+)
+(
+0 CAR_WORK	   		//connect mode normal
+1 CAR_BIND			//code pair mode
+2 CAR_TEST			//test mode
+3 CAR_CODE			//PC_application
+4 CAR_PCBA			//PCBA_TEST
+5 CAR_DEBUG
+6 CAR_MODE_MAX
+7 CAR_SEARCH
+)
+(
+1 SPEED_LEVEL_1
+2 SPEED_LEVEL_2
+3 SPEED_LEVEL_3
+4 SPEED_LEVEL_4
+5 SPEED_LEVEL_5
+6 SPEED_LEVEL_6
+7 SPEED_LEVEL_7
+8 SPEED_LEVEL_8
+9 SPEED_LEVEL_9
+10 SPEED_LEVEL_10
+)
+(
+0 PWM0_DUTY_SETTING
+1 PWM1_DUTY_SETTING
+2 PWM2_DUTY_SETTING
+)
+(
+1 CAR_CMD_BATTERY
+2 CAR_CMD_OLD_CAR_CONTROL
+3 CAR_CMD_OLD_SPEED_CONTROL
+4 CAR_CMD_L_R_MOTOR_CONTROL
+5 CAR_CMD_F_B_MOTOR_CONTROL
+6 CAR_CMD_IR_CONTROL
+7 CAR_CMD_LED_CONTROL
+8 CAR_CMD_DEVICE_INFO
+)
+(
+0 CAR_REMOTE_CHECK_BUTTON
+1 CAR_REMOTE_CHECK_ROCKER
+)
+(
+0x11 CAR_NOTIFY_HANDLE
+)
+(
+0 LED_OFF
+1 LED_ON
+2 LED_BLINK
+0xFF LED_INVALID
+)
+(
+0xFF INVALID_PIN_NUM
+)
+(
+0 POWER_ON
+1 WORK_PAIRED
+2 WORK_SEARCH
+)
+(
+0x5A DONGLE_KB_BIND_SUCCESS
+0x00 DONGLE_KB_BIND_EEPROM_OFFECT
+0x2A DONGLE_KB_BIND_EFUSE_OFFECT
+)
+(
+5 WORK_MODE_DELAY
+7 BIND_MODE_DELAY
+)
+(
+0 DONGLE_WORK	   		//connect mode normal
+1 DONGLE_BIND			//code pair mode
+2 DONGLE_TEST			//test mode
+3 DONGLE_CODE			//PC_application
+4 DONGLE_PCBA			//PCBA_TEST
+5 DONGLE_DEBUG
+6 DONGLE_MODE_MAX
+7 DONGLE_SEARCH
+0 CLEAR_INIT
+)
+(
+0xa0 COMMAND_MODE     //BYTE 0
+0x81 COM_MODE_BIND	//BYTE 1
+0x82 COM_MODE_TEST	//BYTE 1
+)
+(
+0xa1 COMMAND_BIND		//BYTE 0
+0x01 COM_BIND_GET		//1
+0x84 COM_BIND_EXIT		//1
+0xa7 COM_READ_MODE		//1
+)
+(
+0xa2 COMMAND_TEST	//BYTE 0
+0x81 COM_TEST_SC		//	½øÈëµ¥ÔØ²¨
+0x82 COM_TEST_CD		// fcc²âÊÔ
+0x83 COM_TEST_DAT		// Êý¾Ý²âÊÔ
+0x84 COM_TEST_LOW_CH  //µÍÆµµã
+0x85 COM_TEST_MID_CH	//ÖÐÆµµã
+0x86 COM_TEST_HIG_CH	//¸ßÆµµã
+0x87 COM_TEST_SW_HIG	//×Ô¶¯ÇÐ»»ÆµµãÎª¸ß 1mhz
+0x88 COIM_TEST_SW_LOW	//×Ô¶¯ÇÐ»»ÆµµãÎªµÍ 1mhz
+0x89 COM_TEST_SW_STOP	//Í£Ö¹×Ô¶¯ÇÐ»»Æµµã
+0x8a COM_TEST_POW_5		//ÉèÖÃÊä³ö¹¦ÂÊ5dbm
+0x8b COM_TEST_POW_0		//0dbm
+0x8c COM_TEST_POW_N5		//-5dbm
+0x8d COM_TEST_POW_N10		//-10dbm
+0x8e COM_TEST_EXIT			//ÍË³ö²âÊÔÄ£Ê½
+)
+(
+0xa6 COMMAND_CURRENT_PROJECT
+0xa7 COMMAND_CURRENT_MODE
+0xa9 COMMAND_CURRENT_FW_VERSION
+0xb0 COMMAND_USER_DEFINED		//user defined cmd
+)
+(
+0x15 PRODUCT_ID
+0 FW_VERSION0
+0 FW_VERSION1
+1 FW_VERSION2
+7 FW_VERSION3
+)
+(
+8 TIMER_NODATA
+640 TIMER_NODATA_DELAY	//200ms
+
+11 TIMER_MS_BLANK
+384 TIMER_MS_BLANK_DELAY
+
+12 TIMER_KB_MUL_BLANK
+384 TIMER_KB_MUL_BLANK_DELAY
+
+14 TIMER_KB_BLANK
+384 TIMER_KB_BLANK_DELAY
+)
+(
+0 KB_NORMAL_REPORT_ID
+1 MS_REPORT_ID
+2 KB_SYSTEM_CONCTRL_REPORT_ID
+3 KB_MULTIKEY_REPORT_ID
+)
+(
+0x01 BIND_ACKPAYLOAD
+0x03 KB_LED_ACKPAYLOAD
+)
+(
+7 DG_ENABLE_XTAL_24M
+6 DG_ENABLE_NEW_CHMAP
+5 DG_ENABLE_EEPROM
+4 DG_ENABLE_KB_ICON
+//bit3-0
+//tx power
+)
+(//mem_module_flag
+//bit0~bit7 config module function
+0 MODULE_FLAG_UART_FLOW_CONTROL
+1 MODULE_FLAG_BLE_SEND_MTU23
+2 MODULE_FLAG_BLE_DATA_ENCRYPT
+
+//bit8~bit15 module states change
+8 MODULE_FLAG_BLE_DATA_FINISH
+9 MOUDLE_TASK_UNSNIFF
+10 MOUDLE_TASK_SNIFF
+
+)
+(
+34 NV_DATA_LEN
+-1 DECREASED_ONE
+)
+(
+	5 FLAG_MODULE_READ_VDD_COUNT
+)
+(
+	0x200 UART_AIR_CONTROL_THRESHOLD
+)
+(
+0x01 HCI_DISCARD_PACKET
+0x00 HCI_NOT_DISCARD_PACKET
+)
+(//Command
+0x00 HCI_CMD_SET_BT_ADDR_REQ
+0x01 HCI_CMD_SET_LE_ADDR_REQ
+0x02 HCI_CMD_SET_VISIBILITY_REQ
+0x03 HCI_CMD_SET_BT_NAME_REQ
+0x04 HCI_CMD_SET_LE_NAME_REQ
+0x05 HCI_CMD_SPP_DATA_REQ
+0x09 HCI_CMD_LE_DATA_REQ
+0x0b HCI_CMD_STATUS_IRQ
+0x0c HCI_CMD_SET_PAIRING_REQ
+0x0d HCI_CMD_SET_PINCODE_REQ
+0x0e HCI_CMD_SET_UARTCONTROL_REQ
+0x0f HCI_CMD_SET_UART_BAUD_REQ
+0x10 HCI_CMD_VERSION_REQ
+0x11 HCI_CMD_BT_DISCONNECT
+0x12 HCI_CMD_BLE_DISCONNECT
+0x13 HCI_CMD_DELETE_DEVICE
+0x14 HCI_CMD_CREATE_CONNECT
+0x15 HCI_CMD_SET_COD
+0x26 HCI_CMD_SET_NVRAM_REQ
+0x27 HCI_CMD_SLEEP
+0x28 HCI_CMD_CONFIRM_GKEY
+0x29 HCI_CMD_SET_CREDIT_GIVEN
+0x2a HCI_CMD_AUTO_ADV_SCAN
+0x2b HCI_CMD_POWER_REQ
+0x2c HCI_CMD_POWER_SET
+0x30 HCI_CMD_PASSKEY_ENTRY
+0x31 HCI_CMD_SET_GPIO
+0x32 HCI_CMD_READ_GPIO
+0x33 HCI_CMD_LE_SET_PAIRING
+0x34 HCI_CMD_LE_SET_ADV_DATA
+0x35 HCI_CMD_LE_SET_SCAN_DATA
+0x36 HCI_CMD_LE_SEND_CONN_UPDATE_REQ
+0x37 HCI_CMD_LE_SET_ADV_PARM
+0x38 HCI_CMD_LE_START_PAIRING
+0x40 HCI_CMD_SET_WAKE_GPIO
+0x42 HCI_CMD_SET_TX_POWER
+0x43 HCI_CMD_BOOT_VERSION_REQ
+0x48 HCI_CMD_LE_CONFIRM_GKEY
+0x49 HCI_CMD_REJECT_JUSTWORK
+0x51 HCI_CMD_RESET_CHIP_REQ
+
+0x61 HCI_CMD_LE_SET_FIXED_PASSKEY
+
+0x76 HCI_CMD_DELETE_CUSTOMIZE_SERVICE
+0x77 HCI_CMD_ADD_SERVICE_UUID
+0x78 HCI_CMD_ADD_CHARACTERISTIC_UUID
+0x7a HCI_CMD_PASSKEY_ENTRY_INPUT
+
+0x90 HCI_CMD_BLE_SET_PHY
+0x91 HCI_CMD_BLE_READ_CURRENT_PHY
+0x92 HCI_CMD_BLE_SET_DLE
+0x93 HCI_CMD_READ_CHIP_DATA
+0x94 HCI_CMD_WRITE_CHIP_DATA
+ifdef COMPILE_WECHAT
+0x95 HCI_CMD_WECHAT_SEND_DATA
+endif
+0xff HCI_CMD_CLOSE_LPM
+)
+(//event
+0x00 HCI_EVENT_SPP_CONN_REP
+0x01 HCI_EVENT_HID_CONN_REP
+0x02 HCI_EVENT_LE_CONN_REP
+0x03 HCI_EVENT_SPP_DIS_REP
+0x04 HCI_EVENT_HID_DIS_REP
+0x05 HCI_EVENT_LE_DIS_REP
+0x06 HCI_EVENT_CMD_RES
+0x07 HCI_EVENT_SPP_DATA_REP
+0x08 HCI_EVENT_LE_DATA_REP
+0x09 HCI_EVENT_STANDBY_REP
+
+0x0a HCI_EVENT_STATUS_RES
+
+0x0D HCI_EVENT_NVRAM_REP
+0x0e HCI_EVENT_GKEY
+0x0F HCI_EVENT_INVALID_PACKET
+0x10 HCI_EVENT_GET_PASSKEY
+0x11 HCI_EVENT_LE_TK
+0x12 HCI_EVENT_REMOTE_MTU
+0x14 HCI_EVENT_LE_PAIRING_STATE
+0X15 HCI_EVENT_LE_ENCRYPTION_STATE
+0x17 HCI_EVENT_LE_CONNECTION_UPDATE
+0x1d HCI_EVENT_LE_GKEY
+0x29 HCI_EVENT_UUID_HANDLE
+0x2b HCI_EVENT_LE_INPUT_GKEY
+
+0x40 HCI_BLE_UPDATE_PHY_EVENT
+ifdef COMPILE_WECHAT
+0x41 HCI_BLE_WECHAT_RECEIVE_PUSH_DATA
+endif
+)
+(//command HCI_CMD_SET_GPIO
+//byte 0
+0x00 HCI_CMD_CONFIG_GPIO_INPUT
+0x01 HCI_CMD_CONFIG_GPIO_OUTPUT
+//byte 1 input state
+0x00 GPIO_INPUT_PULLUP
+0x01 GPIO_INPUT_PULLDOWN
+0x02 GPIO_INPUT_HIGH_IMPEDANCE
+)
+(
+0x7e0 OTP_ADDR_RF_PARAM_FIX
+//struct of RF_PARAM_FIX
+// uint8       //length = param_pair_count * 2 
+// uint16     //param-pair-1
+// uint16     //param-pair-2
+// uint16     //param-pair-3
+// uint16     //param-pair-4
+// uint16     //param-pair-5
+// uint16     //param-pair-6
+// uint16     //param-pair-7
+)
+(
+0	BR_PAIRING_MODE_PINCODE
+1	BR_PAIRING_MODE_JUSTWORK
+2	BR_PAIRING_MODE_PASSKEY
+3	BR_PAIRING_MODE_NUMERIC
+
+0x81 BR_PAIRING_MODE_SECURE_CONNECT_JUSTWORK
+0x82 BR_PAIRING_MODE_SECURE_CONNECT_PASSKEY
+0x83 BR_PAIRING_MODE_SECURE_CONNECT_NUMERIC
+)
+(
+0x0001	FLAG_BT_PAIRING_SUCCESS
+0x0101	FLAG_BT_PAIRING_FAIL
+0x0080	FLAG_BLE_PAIRING_SUCCESS
+0x0180	FLAG_BLE_PAIRING_FAIL
+)
+(
+1	FLAG_EVENT_START_ENC
+0	FLAG_EVENT_PAUSE_ENC
+)
+(
+0 MOUDLE_STATE_BT_BIT
+1 MOUDLE_STATE_BLE_BIT
+)
+(
+5 BIT_OF_NOTIFY_AUTHENTICATED
+6 BIT_OF_READ_AUTHENTICATED
+7 BIT_OF_WRITE_AUTHENTICATED
+)
+(
+0x33 ROM_MAX_HANDLE
+)
+(
+//data type
+5 DATA_HEART
+6 DATA_DPI
+7 DATA_BATTERY
+)
+(
+//ms recv ack type
+0x05f5 DPI_ACK
+0x05f4 REPORT_ACK
+0x05f3 GET_DPI
+)
+(
+//recv dpi ack:dpi level
+0x01 DPI_800
+0x02 DPI_1000
+0x03 DPI_1200
+0x04 DPI_1600
+)
+(
+//recv report ack:report level
+0x01 REPORT_125
+0x02 REPORT_250
+0x03 REPORT_500
+0x04 REPORT_1000
+)
+(
+//zcode
+0xe00 mem_zcode_buff   
+
+256 ZCODE_BUFF_SIZE
+64 ZCODE_CODE_SIZE
+0xff ZCODE_FLAG
+
+0x00 ZCODE_00
+0x01 ZCODE_01
+0x02 ZCODE_02
+0x03 ZCODE_03
+0x04 ZCODE_04
+0x05 ZCODE_05
+0x06 ZCODE_06
+0x07 ZCODE_07
+0x10 ZCODE_10
+0x11 ZCODE_11
+0x12 ZCODE_12
+0x13 ZCODE_13
+0x14 ZCODE_14
+0x15 ZCODE_15
+0x16 ZCODE_16
+0x17 ZCODE_17
+0x20 ZCODE_20
+0x21 ZCODE_21
+0x22 ZCODE_22
+0x23 ZCODE_23
+0x24 ZCODE_24
+0x25 ZCODE_25
+0x26 ZCODE_26
+0x27 ZCODE_27 
+0x30 ZCODE_30
+0x31 ZCODE_31
+0x32 ZCODE_32
+0x33 ZCODE_33
+0x34 ZCODE_34
+0x35 ZCODE_35
+0x36 ZCODE_36
+0x37 ZCODE_37 
+0x40 ZCODE_40
+0x41 ZCODE_41
+0x42 ZCODE_42
+0x43 ZCODE_43
+0x44 ZCODE_44
+0x45 ZCODE_45
+0x46 ZCODE_46
+0x47 ZCODE_47
+0x50 ZCODE_50
+0x51 ZCODE_51
+0x52 ZCODE_52
+0x53 ZCODE_53
+0x54 ZCODE_54
+0x55 ZCODE_55
+0x56 ZCODE_56
+0x57 ZCODE_57
+0x60 ZCODE_60
+0x61 ZCODE_61
+0x62 ZCODE_62
+0x63 ZCODE_63
+0x64 ZCODE_64
+0x65 ZCODE_65
+0x66 ZCODE_66
+0x67 ZCODE_67
+0x70 ZCODE_70
+0x71 ZCODE_71
+0x72 ZCODE_72
+0x73 ZCODE_73
+0x74 ZCODE_74
+0x75 ZCODE_75
+0x76 ZCODE_76
+0x77 ZCODE_77
+0x80 ZCODE_80
+0x81 ZCODE_81
+0x82 ZCODE_82
+0x83 ZCODE_83
+0x84 ZCODE_84
+0x85 ZCODE_85
+0x86 ZCODE_86
+0x87 ZCODE_87
+0x90 ZCODE_90
+0x91 ZCODE_91
+0x92 ZCODE_92
+0x93 ZCODE_93
+0x94 ZCODE_94
+0x95 ZCODE_95
+0x96 ZCODE_96
+0x97 ZCODE_97
+0xA0 ZCODE_A0
+0xA1 ZCODE_A1
+0xA2 ZCODE_A2
+0xA3 ZCODE_A3
+0xA4 ZCODE_A4
+0xA5 ZCODE_A5
+0xA6 ZCODE_A6
+0xA7 ZCODE_A7
+0xB0 ZCODE_B0
+0xB1 ZCODE_B1
+0xB2 ZCODE_B2
+0xB3 ZCODE_B3
+0xB4 ZCODE_B4
+0xB5 ZCODE_B5
+0xB6 ZCODE_B6
+0xB7 ZCODE_B7
+0xC0 ZCODE_C0
+0xC1 ZCODE_C1
+0xC2 ZCODE_C2
+0xC3 ZCODE_C3
+0xC4 ZCODE_C4
+0xC5 ZCODE_C5
+0xC6 ZCODE_C6
+0xC7 ZCODE_C7
+0xd0 ZCODE_D0
+0xd1 ZCODE_D1
+0xe0 ZCODE_e0
+0xe1 ZCODE_e1
+0xe2 ZCODE_e2
+)
+(
+//combination
+0x01 MOUSE_L_BUTTON
+0X02 MOUSE_R_BUTTON
+0x03 MOUSE_LR_BUTTON
+0X04 MOUSE_M_BUTTON
+0X05 MOUSE_LM_BUTTON
+0X06 MOUSE_RM_BUTTON
+0X07 MOUSE_LMR_BUTTON
+0x09 MOUSE_L_BK_BUTTON
+0x0a MOUSE_R_BK_BUTTON
+0x11 MOUSE_L_FW_BUTTON
+0x14 MOUSE_M_FW_BUTTON
+0X18 MOUSE_BK_FW_BUTTON
+//mouse default gpio
+0x1B MOUSE_DEFAULT_XA_GPIO
+0x1C MOUSE_DEFAULT_XB_GPIO
+
+//ui led blink
+0X00C8  LED_RECONNECT_BLINK //200
+0X0190  LED_DPI_BLINK //400
+0X03E8  LED_DPI_BLINK_FIXED    //1000
+0X03E8  LED_DISCOVERY_BLINK    //1000
+0XFF    LED_LONG_BLINK
+0x05	LED_SENSOR_BLINK_CNT
+//mode device number
+0x00 MODE_24G_DEVICE
+0x01 MODE_BT_DEVICE1
+0x02 MODE_BT_DEVICE2
+0x03 MODE_BT_DEVICE3
+//mouse  flag
+0X00 WRITE_REQ_ENABLE_FLAG
+0X01 LL_START_ENC_FLAG
+0X02 LL_PAIRING_SUCCESS_FLAG
+
+
+//mouse_function_flag
+0x08 MOUSE_FLAG_LEN
+//byte 1
+0x00 MOUSE_SELECT_DEVICE_FLAG
+0x01 MOUSE_24G_PAIRING_FLAG
+0x02 MOUSE_STORE_EEPROM_FLAG
+0x03 MOUSE_BT_CANNEL_RECONN_FLAG
+0x04 MOUSE_LOW_VOLTAGE_FLAG
+0x05 MOUSE_BT_DISCOVERY_BUTTON_DOWN_FLAG
+0x06 MOUSE_BT_DISCOVERY_BUTTON_LONG_DOWN_FLAG
+
+//byte 2
+0x08 MOUSE_ENABLE_BLE_RANDOM_ADDRE
+0x09 MOUSE_ENABLE_2K_EEPROM
+0x0a MOUSE_ENABLE_INIT_DELAY
+0x0b MOUSE_ENABLE_WAKEUP_FROM_POWER
+0x0c MOUSE_ENABLE_16M
+0x0d MOUSE_ENABLE_USB
+
+//byte 3
+0x10 MOUSE_ENABLE_SPI2
+0x11 MOUSE_ENABLE_24G
+0x12 MOUSE_ENABLE_FLASH
+0x13 MOUSE_ENABLE_EEPROM
+0x14 MOUSE_ENABLE_ADC
+0x15 MOUSE_ENABLE_KEYBOARD
+0x16 MOUSE_ENABLE_24G_SEARCH_DONGLE
+
+//byte 4
+0x18 MOUSE_ENABLE_24G_250Hz
+0x19 MOUSE_ENABLE_24G_500Hz
+0x1a MOUSE_ENABLE_24G_1000
+0x1b MOUSE_ENABLE_BT_125Hz
+0x1c MOUSE_ENABLE_DPI_LEVEL_4
+0x1d MOUSE_ENABLE_USB_250
+0x1e MOUSE_ENABLE_USB_500
+0x1f MOUSE_ENABLE_USB_1000
+
+//byte 5
+0x20 MOUSE_ENABLE_POWER_ON_LED
+0x21 MOUSE_ENABLE_LOW_VOLTAGE_LED
+0x22 MOUSE_ENABLE_LOW_VOLTAGE_USE_MODE_LED
+0x23 MOUSE_ENABLE_LOW_VOLTAGE_LED_BLINK_N_SECOND
+0x24 MOUSE_ENABLE_4_LED
+0x25 MOUSE_ENABLE_DPI_FOR_4_LED
+0x26 MOUSE_ENABLE_BT2_FOR_4_LED
+0x27 MOUSE_ENABLE_LOW_V_FOR_4_LED
+
+
+//byte 6
+0x28 MOUSE_ENABLE_SELECT_DEVICE_BY_DPI_BUTTON
+0x29 MOUSE_ENABLE_SELECT_DEVICE_BY_PB_BUTTON
+0x2a MOUSE_ENABLE_SELECT_DEVICE_BY_SWITCH_GPIO
+0x2b MOUSE_ENABLE_SELECT_DEVICE_BY_SWITCH_ADC
+0x2c MOUSE_ENABLE_DPI_KEY_CONNECT_GND
+0x2d MOUSE_ENABLE_PB_BUTTON_CONNECT_GND
+0x2e MOUSE_ENABLE_DPI_KEY_CONNECT_ADC
+0x2f MOUSE_ENABLE_24G_FIRST_AUTO_PAIRING
+//byte 7 
+0x30 MOUSE_ENABLE_AUTO_24G_PARING
+0x31 MOUSE_ENABLE_24G_POWER_ON_PAIRING
+0x32 MOUSE_ENABLE_COMMBINATION_KEY_BY_24G_PAIRING
+0x33 MOUSE_ENABLE_BT_RECONNECT_TIMEOUT_ENTER_DISCOVERY
+0x34 MOUSE_ENABLE_PB_BUTTON_SHORT_PRESS_ENTER_DISCOVERY
+0x35 MOUSE_ENABLE_COMMBINATION_KEY_BY_BT_DISCOVERY
+0x36 MOUSE_ENABLE_DPI_KEY_LONG_PRESS_DISCONVERY
+0x37 MOUSE_ENABLE_PB_BUTTON_LONG_PRESS_DISCONVERY
+
+//byte 8
+0x38 MOUSE_ENABLE_SMOOTHER
+0x39 MOUSE_ENABLE_XY_OFFSET
+0x3a MOUSE_ENABLE_24G_AUTO_PAIR_NERVER_BEEN_PAIRED
+0x3b MOUSE_ENABLE_LE_BATTERY_SERVICE_CANCEL
+0x3c MOUSE_ENABLE_WHEEL_WAKE_UP_CANCEL
+0x3d MOUSE_ENABLE_DOUBLE_DPI_KEY
+
+//mouse dpi level
+0x00 MOUSE_DPI_LEVEL1
+0x01 MOUSE_DPI_LEVEL2
+0x02 MOUSE_DPI_LEVEL3
+0x03 MOUSE_DPI_LEVEL4
+0x04 MOUSE_DPI_LEVEL5
+
+
+//mouse sensor angle
+0x00 MOUSE_6CLK_ANGLE
+0X01 MOUSE_9CLK_ANGLE
+0X02 MOUSE_12CLK_ANGLE
+0X03 MOUSE_3CLK_ANGLE
+
+
+
+0xFF GPIO_DISABLE
+
+//DPI button state 
+0x00 DPI_BUTTON_STATE_UP
+0x01 DPI_BUTTON_STATE_DOWN
+
+
+//PB button state 
+0x00 PB_BUTTON_STATE_UP
+0x01 PB_BUTTON_STATE_DOWN
+
+//Commbination_key state 
+0x00 COMMBINATION_KEY_STATE_UP
+0x01 COMMBINATION_KEY_STATE_DOWN
+
+
+//eeprom address offect
+0X00 MOUSE_INFO_EEPROM_OFFECT
+0x58 MOUSE_STORE_FLAG
+0X5A MOUSE_DPI_EEPROM_OFFECT	//1byte
+0X5B MOUSE_G24_ADDR_EEPROM_OFFECT	//4bytes
+0X5F MOUSE_RANDOM_ADDR_COUNT_EEPROM_OFFSET	//2bytes
+0X61 MOUSE_EEPROM_MODULE_INIT_FLAG
+
+// Sensor id number
+0x30 P32XX_ID1
+0x31 P3065_ID1
+0x02 P3212_ID2
+0xD1 P3205_TJ3T_ID2
+0XD2 P3204_TJ3L_ID2
+0x54 PKA8_ID2
+0x70 P3065_XY_ID2
+0x00 P3065_ID2
+0x5a P_MX8650
+0xD8 P8009_ID2
+0x50 P6520A_ID2
+0x57 KA5857_ID2
+0x58 PKA8G2_ID1
+0x59 PKA8G2_ID2
+0xc0 P3204_TJDM_ID2
+
+
+//Sensor type
+0X00 P3205
+0X01 P3065
+0X02 P3204
+0X03 P3212
+0X04 P3065_XY
+0x05 MX8650
+0x06 P8009
+0x07 P6520
+0X08 KA8
+0X09 KA8_UL
+0X0a KA8_HD
+0X0b KA8G2
+
+
+//SENSOR REG
+0x00 PAN_REG_PID_L
+0x01 PAN_REG_PID_H
+0x02 PAN_REG_MOTION_STAUS
+0x03 PAN_REG_DELTA_X
+0x04 PAN_REG_DELTA_Y
+0x05 PAN_REG_OPRATION_MODE
+0x06 PAN_REG_CONFIG
+0x07 PAN_REG_IMAGE_QUALITY
+0x08 PAN_REG_OPRATION_STATE
+0x09 PAN_REG_WRITE_PROTECT
+0x0A PAN_REG_SLEEP_1
+0x0B PAN_REG_ENTER_TIME
+0x0C PAN_REG_SLEEP_2
+0x0D PAN_REG_IMAGE_THRESHOLD
+0x0E PAN_REG_IMAGE_RECGNITION
+
+
+0x06 MOUSE_DPI_ADDRESS
+0x05 MOUSE_P3610_DPI_ADDRESS
+0x0D MOUSE_P3212_DPI_XADDRESS
+0x0E MOUSE_P3212_DPI_YADDRESS
+
+)
+(
+0x01 ADV_FLAG_LIMITED_DISCOVERABLE
+0x04 ADV_FLAG_BREDR_NOT_SUPPORTED
+)
+(
+2 BIT_POWER_ON
+)
+(
+0 MODE_3_MOUSE
+1 MODE_4_MOUSE
+)
+(
+10 LE_LPM_DISABLE_TO
+1 LE_LPM_DISABLE
+0 LE_LPM_ENABLE
+
+12 LE_INTERVAL_15MS
+9 LE_INTERVAL_11_25MS//11.25ms
+7 LE_INTERVAL_8_75MS//8.75ms
+6 LE_INTERVAL_7_5MS//7.5ms
+12 CLASSIC_INTERVAL_7_5MS
+14 CLASSIC_INTERVAL_8_75MS
+18 CLASSIC_INTERVAL_11_25MS
+)
+(
+0x00 MOUSE_L_KEY
+0x01 MOUSE_R_KEY
+0x02 MOUSE_M_KEY
+0x03 MOUSE_BK_KEY
+0x04 MOUSE_FW_KEY
+0x05 MOUSE_DPI_KEY
+0x06 MOUSE_PB_KEY
+0x07 MOUSE_CUSTOMER_KEY
+
+0x00 MOUSE_DPI_ANOTHER_KEY
+)
+(
+0 G24_DISCONN_STATE
+1 G24_CONN_STATE
+
+8 G24_CH_NUMBER
+16 G24_CH_POLL_COUNT
+)
+(
+0 MOUSE_ADC_CHECK_BATTERY_ONLY
+1 MOUSE_ADC_CHECK_MULTIPLE
+2 MOUSE_ADC_CHECK_GPIO_MULTIPLE
+3 MOUSE_ADC_CHECK_VINLPM_MULTIPLE
+)
+(
+0x5a MOUSE_USB_INTERFACE_INSERT
+0xa5 MOUSE_USB_INTERFACE_REMOVE
+)
+(
+0x10 MOUSE_BLE_L2CAP_TXBUFF_SIZE
+)
+(
+0 MOUSE_ADC_ENABLE
+1 MOUSE_SEARCH_DONGLE_ENABLE
+2 MOUSE_24G_250HZ_ENABLE
+3 MOUSE_CLK_16M_ENABLE
+4 MOUSE_DPI_4_LEVEL_ENABLE
+5 MOUSE_KEYBOARD_ENABLE
+
+7 MOUSE_DEVICE_NUMBER_FLAG
+)
+(
+0x0001 G24_OTA_VERSION
+0x5a G24_OTA_DATA_HEADER
+
+0 G24_OTA_STORAGE_ERROR
+0x02 G24_OTA_STORAGE_EEPROM
+0x03 G24_OTA_STORAGE_OTP
+0x04 G24_OTA_STORAGE_FLASH
+
+0x00 G24_OTA_STATUS_SUCCESS
+0x01 G24_OTA_STATUS_FAIL
+
+0x01 G24_OTA_TARGET_DONGLE
+0x02 G24_OTA_TARGET_MOUSE
+0x03 G24_OTA_TARGET_DONGLE_MOUSE
+
+0x1 G24_OTA_CMD_VERSION
+0x2 G24_OTA_CMD_INFO
+0X3 G24_OTA_CMD_CONFIG
+0X4 G24_OTA_CMD_SET_CONFIG_END
+0X5 G24_OTA_CMD_DATA
+0X6 G24_OTA_CMD_RESET
+0xff G24_OTA_CMD_PING
+
+0x01 G24_OTA_SM_RX_VERSION
+0x02 G24_OTA_SM_TX_VERSION
+0x03 G24_OTA_SM_TX_VERSION_OK
+0X04 G24_OTA_SM_RX_INFO
+0X05 G24_OTA_SM_TX_INFO
+0X06 G24_OTA_SM_TX_INFO_OK
+0X07 G24_OTA_SM_RX_CONFIG
+0X08 G24_OTA_SM_TX_CONFIG
+0X09 G24_OTA_SM_TX_CONFIG_OK
+0X0A G24_OTA_SM_RX_SET_CONFIG_END
+0X0B G24_OTA_SM_TX_SET_CONFIG_END
+0X0C G24_OTA_SM_TX_SET_CONFIG_END_OK
+0X0D G24_OTA_SM_RX_DATA
+0X0E G24_OTA_SM_TX_DATA
+0X0F G24_OTA_SM_TX_DATA_OK
+0X10 G24_OTA_SM_RX_RESET
+0X11 G24_OTA_SM_TX_RESET
+0X12 G24_OTA_SM_TX_RESET_OK
+
+)
+(
+0 MULTI_LED_ON
+1 MULTI_LED_BLINK
+)
+(
+0 LED_MULTI_DPI
+1 LED_MULTI_LOW
+)
+(
+// eeprom config
+0xb0 REMOTE_PARAM_EEPROM_CONFIG_ADDR
+//eeprom address offect
+0X00 REMOTE_INFO_EEPROM_OFFECT
+
+)
+(
+0x00 CONTROL_F_B_MOTOR
+0x02 CONTROL_L_R_MOTOR
+)
+(
+0x00 KEY_MAP_TEN
+0x01 KEY_MAP_LR
+)
+(
+0x00 CONTROL_F_B_TEN
+0x02 CONTROL_L_R_TEN
+0x03 CONTROL_L_R_LR
+)
+(
+0 KEY_CHECK
+1 ROCKER_CHECK
+)
+(
+1 MOTOR_POSITIVE
+2 MOTOR_NEGATIVE
+)
+(
+0 ROCKER_MIDDLE_KEY
+1 ROCKER_POSITIVE_KEY
+2 ROCKER_NEGATIVE_KEY
+)
+(
+0 BLE_SHUTTER
+1 CLASSIC_SHUTTER
+)
+(
+0x0000 NVRAM_EEPROM_OFFSET
+)
+(
+0x1b3a SHUTTER_EEPROM_CONFIG_CRC
+)
+(
+5 MAX_QUEUE_NUM
+5 SHUTTER_BLE_DATA_BUFFER
+5 SHUTTER_CLASSIC_DATA_BUFFER
+)
+(
+0x13	GATT_CONSUMER_NOTIFY_HANDLE
+0x14	GATT_CONSUMER_WRITE_HANDLE
+0x17	GATT_KEYBOARD_NOTIFY_HANDLE
+0x18	GATT_KEYBOARD_WRITE_HANDLE
+)
+(
+//20ms
+0x0020	FAST_ADV_INTERVAL_VALUE
+//100ms
+0x00a0	SLOW_ADV_INTERVAL_VALUE
+)
+(
+0 ATT_BIT_NOTIFICATION
+1 ATT_BIT_INDICATION
+)
+(
+0 HARD_SWITCH
+1 SOFT_SWITCH
+)
+(
+1  FLAG_SHUTTER_HID_DISCONN_TIMEOUT
+5 FLAG_SHUTTER_CABLE_UNPLUG_TIMEOUT
+)
+(//Data Rom Buffer Addr
+382		BLE_GATT_LIST_SIZE
+487		BT_SDP_LIST_SIZE
+40		BLE_KEY_VALUE_LIST_SIZE
+40		BT_KEY_VALUE_LIST_SIZE
+)
+(//soft switch power state
+0		SS_STATE_POWER_UP
+1		SS_STATE_POWER_ON
+2		SS_STATE_POWER_OFF
+)
+(
+0		SS_POWER_STATE_OFFSET
+1		SS_POWER_ON_TIME
+2		SS_POWER_OFF_TIME
+3		SS_POWER_ON_CB
+5		SS_POWER_OFF_CB
+
+)
+(
+
+0x4FFE SIM_IIC_SCL_GPIO_NUM
+0x4FFF SIM_IIC_SDA_GPIO_NUM
+
+)
+(
+0x0d HCI_UART_TX_GPIO_NUM
+0x0e HCI_UART_RX_GPIO_NUM
+0x09 HCI_UART_RTS_GPIO_NUM
+0x0a HCI_UART_CTS_GPIO_NUM
+0x0c HCI_PMW_12MHZ_GPIO_NUM
+)
+(
+0x00 COMMAND_SUCCEEDED
+0x01 COMMAND_UNKNOWN
+0x0c COMMAND_DISALLOWED
+)
+(
+0x01 HCI_H4_TYPE_CMD
+0x02 HCI_H4_TYPE_ACL
+0x04 HCI_H4_TYPE_EVENT
+)
+(
+0x00 BT_ACL_START_NO_FLUSH
+0x01 BT_ACL_CONT
+0x02 BT_ACL_START
+)
+(
+0x01 HCI_OGF_LINK_CONTROL
+0x02 HCI_OGF_LINK_POLICY
+0x03 HCI_OGF_CONTROLLER_AND_BASEBAND
+0x04 HCI_OGF_INFOMATIONAL_PARAM
+0x05 HCI_OGF_STATUS_PARAM
+0x06 HCI_OGF_TEST
+0x08 HCI_OGF_LE_CONTROLLER
+0x3f HCI_OGF_VENDOR_SPECIFIC_DEBUG
+)
+(
+0x01 HCI_INQUIRY 
+0x02 HCI_INQUIRY_CANCEL 
+0x03 HCI_PERIODIC_INQUIRY_MODE 
+0x04 HCI_EXIT_PERIODIC_INQUIRY_MODE 
+0x05 HCI_CREATE_CONNECTION 
+0x06 HCI_DISCONNECT 
+0x07 HCI_ADD_SCO_CONNECTION 
+0x08 HCI_CREATE_CONNECTION_CANCEL
+0x09 HCI_ACCEPT_CONNECTION 
+0x0A HCI_REJECT_CONNECTION 
+0x0B HCI_LINK_KEY_REQUEST_REPLY 
+0x0C HCI_LINK_KEY_REQUEST_NEGATIVE_REPLY 
+0x0D HCI_PIN_CODE_REQUEST_REPLY 
+0x0E HCI_PIN_CODE_REQUEST_NEGATIVE_REPLY 
+0x0F HCI_CHANGE_CONNECTION_PACKET_TYPE 
+0x11 HCI_AUTHENTICATION_REQUESTED 
+0x13 HCI_SET_CONNECTION_ENCRYPTION 
+0x15 HCI_CHANGE_CONNECTION_LINK_KEY 
+0x17 HCI_MASTER_LINK_KEY 
+0x19 HCI_REMOTE_NAME_REQUEST 
+0x1A HCI_REMOTE_NAME_REQUEST_CANCEL
+0x1B HCI_READ_REMOTE_SUPPORTED_FEATURES 
+0x1C HCI_READ_REMOTE_EXT_FEATURES 
+0x1D HCI_READ_REMOTE_VERSION_INFORMATION 
+0x1F HCI_READ_CLOCK_OFFSET 
+0x20 HCI_READ_LMP_HANDLE
+0x28 HCI_SETUP_SCO_CONNECTION
+0x29 HCI_ACCEPT_SCO_CONNECTION
+0x2A HCI_REJECT_SCO_CONNECTION
+0x2B HCI_IO_CAP_REQUEST_REPLY
+0x2C HCI_USER_CONFIRMATION_REQUEST_REPLY
+0x2D HCI_USER_CONFIRMATION_REQUEST_NEGATIVE_REPLY
+0x2E HCI_USER_PASSKEY_REQUEST_REPLY
+0x2F HCI_USER_PASSKEY_REQUEST_NEGATIVE_REPLY
+0x30 HCI_REMOTE_OOB_DATA_REQUEST_REPLY
+0x33 HCI_REMOTE_OOB_DATA_REQUEST_NEGATIVE_REPLY
+0x34 HCI_IO_CAPABILITY_REQUEST_NEGATIVE_REPLY
+0x35 HCI_CREATE_PHYSICAL_LINK
+0x36 HCI_ACCEPT_PHYSICAL_LINK
+0x37 HCI_DISCONNECT_PHYSICAL_LINK
+0x38 HCI_CREATE_LOGICAL_LINK
+0x39 HCI_ACCEPT_LOGICAL_LINK
+0x3A HCI_DISCONNECT_LOGICAL_LINK
+0x3B HCI_LOGICAL_LINK_CANCEL
+0x3C HCI_FLOW_SPEC_MODIFY
+0x3D HCI_ENHANCED_SETUP_SYNCHRONOUS_CONNECTION
+0x3E HCI_ENHANCED_ACCEPT_SYNCHRONOUS_CONNECTION_REQUEST
+0x3F HCI_TRUNCATED_PAGE
+0x40 HCI_TRUNCATED_PAGE_CANCEL
+0x41 HCI_SET_CONNECTIONLESS_SLAVE_BROADCAST
+0x42 HCI_SET_CONNECTIONLESS_SLAVE_BROADCAST_RECEIVE
+0x43 HCI_START_SYNCHRONIZATION_TRAIN
+0x44 HCI_RECEIVE_SYNCHRONIZATION_TRAIN
+0x45 HCI_REMOTE_OOB_EXTENDED_DATA_REQUEST_REPLY
+)
+(
+0x01 HCI_HOLD_MODE 
+0x03 HCI_SNIFF_MODE 
+0x04 HCI_EXIT_SNIFF_MODE 
+0x05 HCI_PARK_MODE 
+0x06 HCI_EXIT_PARK_MODE 
+0x07 HCI_QOS_SETUP 
+0x09 HCI_ROLE_DISCOVERY 
+0x0B HCI_SWITCH_ROLE 
+0x0C HCI_READ_LINK_POLICY_SETTINGS 
+0x0D HCI_WRITE_LINK_POLICY_SETTINGS 
+0x0e HCI_READ_DEFAULT_LINK_POLICY_SETTINGS
+0x0f HCI_WRITE_DEFAULT_LINK_POLICY_SETTINGS
+0x10 HCI_FLOW_SPECIFICATION
+0x11 HCI_SNIFF_SUBRATING
+)
+(
+0x01 HCI_SET_EVENT_MASK 
+0x03 HCI_RESET 
+0x05 HCI_SET_EVENT_FILTER 
+0x08 HCI_FLUSH 
+0x09 HCI_READ_PIN_TYPE 
+0x0A HCI_WRITE_PIN_TYPE 
+0x0B HCI_CREATE_NEW_UNIT_KEY 
+0x0D HCI_READ_STORED_LINK_KEY 
+0x11 HCI_WRITE_STORED_LINK_KEY 
+0x12 HCI_DELETE_STORED_LINK_KEY 
+0x13 HCI_WRITE_LOCAL_NAME 
+0x14 HCI_READ_LOCAL_NAME 
+0x15 HCI_READ_CONN_ACCEPT_TIMEOUT 
+0x16 HCI_WRITE_CONN_ACCEPT_TIMEOUT 
+0x17 HCI_READ_PAGE_TIMEOUT 
+0x18 HCI_WRITE_PAGE_TIMEOUT 
+0x19 HCI_READ_SCAN_ENABLE 
+0x1A HCI_WRITE_SCAN_ENABLE 
+0x1B HCI_READ_PAGE_SCAN_ACTIVITY 
+0x1C HCI_WRITE_PAGE_SCAN_ACTIVITY 
+0x1D HCI_READ_INQUIRY_SCAN_ACTIVITY 
+0x1E HCI_WRITE_INQUIRY_SCAN_ACTIVITY 
+0x1F HCI_READ_AUTHENTICATION_ENABLE 
+0x20 HCI_WRITE_AUTHENTICATION_ENABLE 
+0x21 HCI_READ_ENCRYPTION_MODE 
+0x22 HCI_WRITE_ENCRYPTION_MODE 
+0x23 HCI_READ_CLASS_OF_DEVICE 
+0x24 HCI_WRITE_CLASS_OF_DEVICE 
+0x25 HCI_READ_VOICE_SETTING 
+0x26 HCI_WRITE_VOICE_SETTING 
+0x27 HCI_READ_AUTOMATIC_FLUSH_TIMEOUT 
+0x28 HCI_WRITE_AUTOMATIC_FLUSH_TIMEOUT 
+0x29 HCI_READ_NUM_BROADCAST_RETRANSMISSIONS 
+0x2A HCI_WRITE_NUM_BROADCAST_RETRANSMISSIONS 
+0x2B HCI_READ_HOLD_MODE_ACTIVITY 
+0x2C HCI_WRITE_HOLD_MODE_ACTIVITY 
+0x2D HCI_READ_TRANSMIT_POWER_LEVEL 
+0x2E HCI_READ_SCO_FLOW_CONTROL_ENABLE 
+0x2F HCI_WRITE_SCO_FLOW_CONTROL_ENABLE 
+0x31 HCI_SET_CONTROLLER_TO_HOST_FLOW_CONTROL 
+0x33 HCI_HOST_BUFFER_SIZE 
+0x35 HCI_HOST_NUM_COMPLETED_PACKETS 
+0x36 HCI_READ_LINK_SUPERVISION_TIMEOUT 
+0x37 HCI_WRITE_LINK_SUPERVISION_TIMEOUT 
+0x38 HCI_READ_NUMBER_OF_SUPPORTED_IAC 
+0x39 HCI_READ_CURRENT_IAC_LAP 
+0x3A HCI_WRITE_CURRENT_IAC_LAP 
+0x3B HCI_READ_PAGE_SCAN_PERIOD_MODE 
+0x3C HCI_WRITE_PAGE_SCAN_PERIOD_MODE 
+0x3D HCI_READ_PAGE_SCAN_MODE 
+0x3E HCI_WRITE_PAGE_SCAN_MODE 
+0x3F HCI_SET_AFH_CHANNEL_CLASSIFICATION 
+
+
+0x42 HCI_READ_INQUIRY_SCAN_TYPE 
+0x43 HCI_WRITE_INQUIRY_SCAN_TYPE 
+0x44 HCI_READ_INQUIRY_MODE 
+0x45 HCI_WRITE_INQUIRY_MODE 
+0x46 HCI_READ_PAGE_SCAN_TYPE 
+0x47 HCI_WRITE_PAGE_SCAN_TYPE 
+
+0x48 HCI_READ_AFH_CHANNEL_ACCESSMENT_MODE 
+0x49 HCI_WRITE_AFH_CHANNEL_ACCESSMENT_MODE 
+0x51 HCI_READ_EXTENDED_INQUIRY_RESPONSE
+0x52 HCI_WRITE_EXTENDED_INQUIRY_RESPONSE
+0x53 HCI_REFRESH_ENCRYPTION_KEY
+0x55 HCI_READ_SIMPLE_PAIRING_MODE
+0x56 HCI_WRITE_SIMPLE_PAIRING_MODE
+0x57 HCI_READ_LOCAL_OOB_DATA
+0x58 HCI_READ_INQUIRY_RESPONSE_TRANSMIT_POWER_LEVEL
+0x59 HCI_WRITE_INQUIRY_TRANSMIT_POWER_LEVEL
+0x60 HCI_SEND_KEYPRESS_NOTIFICATION
+0x5A HCI_READ_DEFAULT_ERRONEOUS_DATA_REPORTING
+0x5B HCI_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING
+0x5F HCI_ENHANCED_FLUSH
+0x61 HCI_READ_LOGICAL_LINK_ACCEPT_TIMEOUT
+0x62 HCI_WRITE_LOGICAL_LINK_ACCEPT_TIMEOUT
+0x63 HCI_SET_EVENT_MASK_PAGE_2
+0x64 HCI_READ_LOCATION_DATA
+0x65 HCI_WRITE_LOCATION_DATA
+0x66 HCI_READ_FLOW_CONTROL_MODE
+0x67 HCI_WRITE_FLOW_CONTROL_MODE
+0x68 HCI_READ_ENHANCE_TRANSMIT_POWER_LEVEL
+0x69 HCI_READ_BEST_EFFORT_FLUSH_TIMEOUT
+0x6A HCI_WRITE_BEST_EFFORT_FLUSH_TIMEOUT
+0x6B HCI_SHORT_RANGE_MODE
+0x6C HCI_READ_LE_HOST_SUPPORT
+0x6D HCI_WRITE_LE_HOST_SUPPORT
+0x6E HCI_SET_MWS_CHANNEL_PARAMETERS
+0x6F HCI_SET_EXTERNAL_FRAME_CONFIGURATION
+0x70 HCI_SET_MWS_SIGNALING
+0x71 HCI_SET_MWS_TRANSPORT_LAYER
+0x72 HCI_SET_MWS_SCAN_FREQUENCY_TABLE
+0x73 HCI_SET_MWS_PATTERN_CONFIGURATION
+0x74 HCI_SET_RESERVED_LT_ADDR
+0x75 HCI_DELETE_RESERVED_LT_ADDR
+0x76 HCI_SET_CONNECTIONLESS_SLAVE_BROADCAST_DATA
+0x77 HCI_READ_SYNCHRONIZATION_TRAIN_PARAMETERS
+0x78 HCI_WRITE_SYNCHRONIZATION_TRAIN_PARAMETERS
+0x79 HCI_READ_SECURE_CONNECTIONS_HOST_SUPPORT
+0x7A HCI_WRITE_SECURE_CONNECTIONS_HOST_SUPPORT
+0x7B HCI_READ_AUTHENTICATED_PAYLOAD_TIMEOUT
+0x7C HCI_WRITE_AUTHENTICATED_PAYLOAD_TIMEOUT
+0x7D HCI_READ_LOCAL_OOB_EXTENDED_DATA
+0x7E HCI_READ_EXTENDED_PAGE_TIMEOUT
+0x7F HCI_WRITE_EXTENDED_PAGE_TIMEOUT
+0x80 HCI_READ_EXTENDED_INQUIRY_LENGTH
+0x81 HCI_WRITE_EXTENDED_INQUIRY_LENGTH
+)
+(
+0x01 HCI_READ_LOCAL_VERSION_INFORMATION 
+0x02 HCI_READ_LOCAL_SUPPORTED_COMMANDS
+0x03 HCI_READ_LOCAL_SUPPORTED_FEATURES 
+0x04 HCI_READ_LOCAL_EXT_FEATURES 
+0x05 HCI_READ_BUFFER_SIZE 
+0x07 HCI_READ_COUNTRY_CODE 
+0x09 HCI_READ_BD_ADDR 
+0x0A HCI_REJECT_CONNECTION_REQUEST
+0x0B HCI_READ_LOCAL_SUPPORTED_CODECS
+)
+(
+0x01 HCI_READ_FAILED_CONTACT_COUNTER 
+0x02 HCI_RESET_FAILED_CONTACT_COUNTER 
+0x03 HCI_GET_LINK_QUALITY 
+0x05 HCI_READ_RSSI 
+0x06 HCI_READ_AFH_CHANNEL_MAP
+0x07 HCI_READ_BD_CLOCK
+0x08 HCI_READ_ENCRYPTION_KEY_SIZE
+0x09 HCI_READ_LOCAL_AMP_INFO
+0x0A HCI_READ_LOCAL_AMP_ASSOC
+0x0B HCI_WRITE_REMOTE_AMP_ASSOC
+0x0C HCI_GET_MWS_TRANSPORT_LAYER_CONFIGURATION
+0x0D HCI_SET_TRIGGERED_CLOCK_CAPTURE
+)
+(
+0x01 HCI_READ_LOOPBACK_MODE 
+0x02 HCI_WRITE_LOOPBACK_MODE 
+0x03 HCI_ENABLE_DEVICE_UNDER_TEST_MODE 
+0x04 HCI_WRITE_SIMPLE_PAIRING_DEBUG_MODE
+0x07 HCI_ENABLE_AMP_RECEIVER_REPORTS
+0x08 HCI_AMP_TEST_END
+0x09 HCI_AMP_TEST
+0x0A HCI_WRITE_SECURE_CONNECTIONS_TEST_MODE
+)
+(
+0x01 HCI_WRITE_BD_ADDR 
+0x02 HCI_READ_INQUIRY_RESPONSE_TIMEOUT 
+0x03 HCI_WRITE_INQUIRY_RESPONSE_TIMEOUT 
+0x04 HCI_READ_PAGE_SCAN_REPETITION_MODE 
+0x05 HCI_WRITE_PAGE_SCAN_REPETITION_MODE 
+0x06 HCI_READ_PAGE_RESPONSE_TIMEOUT 
+0x07 HCI_WRITE_PAGE_RESPONSE_TIMEOUT 
+0x08 HCI_READ_NEW_CONNECTION_TIMEOUT 
+0x09 HCI_WRITE_NEW_CONNECTION_TIMEOUT 
+0x0a HCI_INITIALIZE_BASEBAND 
+0x0b HCI_WRITE_LOCAL_SUPPORTED_FEATURES 
+0x0c HCI_WRITE_PARK_PARAMETERS 
+0x0d HCI_READ_PARK_PARAMETERS 
+0x0e HCI_WRITE_QUALITY_OF_SERVICE 
+0x0f HCI_NOT_USED 
+0x10 HCI_MODIFY_BEACON_PARAMETERS 
+0x11 HCI_UNPARK_USING_PM_ADDR 
+0x12 HCI_WRITE_HOPPING_CHANNELS 
+0x13 HCI_SLEEP_FOREVER_MODE 
+0x14 HCI_WRITE_AUTO_PAGE_SCAN_ENABLE 
+0x15 HCI_READ_AUTO_PAGE_SCAN_ENABLE 
+0x16 HCI_SET_ENCRYPTION_KEY_SIZE 
+0x17 HCI_INVALIDATE_FLASH_AND_REBOOT 
+0x18 HCI_UPDATE_UART_BAUD_RATE 
+0x19 HCI_WRITE_GPIO_1_4_AS_OUTPUT 
+0x1A HCI_WRITE_GPIO_2_LED 
+0x1B HCI_SET_TESTMODE_TYPE 
+0x1C HCI_WRITE_SCO_PCM_INT_PARAM 
+0x1D HCI_READ_SCO_PCM_INT_PARAM 
+0x1E HCI_WRITE_PCM_DATA_FORMAT_PARAM 
+0x1F HCI_READ_PCM_DATA_FORMAT_PARAM 
+0x20 HCI_WRITE_COMFORT_NOISE_PARAM 
+0x21 HCI_READ_COMFORT_NOISE_PARAM 
+0x22 HCI_WRITE_SCO_TS 
+0x23 HCI_READ_SCO_TS 
+0x24 HCI_WRITE_PCM_LOOPBACK_MODE 
+0x25 HCI_READ_PCM_LOOPBACK_MODE 
+0x26 HCI_SET_TRANSMIT_POWER 
+0x27 HCI_SET_SLEEPMODE_PARAM 
+0x28 HCI_READ_SLEEPMODE_PARAM 
+0x29 HCI_SLEEPMODE_CMD 
+0x2A HCI_DELAY_PERIPHERAL_SCO_STARTUP 
+0x2B HCI_WRITE_RECEIVE_ONLY 
+0x2C HCI_WRITE_RATE_CONTROL 
+0x2D HCI_TX_UNMOD_CARRIER 
+0x2E HCI_DOWNLOAD_MINIDRIVER 
+0x2F HCI_CRYSTAL_PPM 
+0x30 HCI_SET_POWER_AMP_BIAS 
+0x31 HCI_SET_HAM_BEHAVIOR 
+0x32 HCI_SET_AFH_BEHAVIOR 
+0x33 HCI_READ_USER_DEFINED_NVRAM 
+0x34 HCI_ENABLE_RADIO 
+0x35 HCI_READ_DIAGNOSTIC_INFO 
+0x36 HCI_GET_HID_DEVICE_LIST 
+0x37 HCI_ADD_HID_DEVICE 
+0x38 HCI_READ_APP_FW_CONFIG_VERSION 
+0x39 HCI_DELETE_HID_DEVICE 
+0x3B HCI_ENABLE_USB_HID_EMULATION 
+// 0x3A available
+// 0x3B available
+0x3C HCI_SEND_LMPDU 
+0x3D HCI_AUTO_PAIR_REQ 
+0x3E HCI_READ_VS_EXTENSION 
+0x3F HCI_WRITE_VS_EXTENSION 
+
+0x77 HCI_OPCODE_FC77
+0x79 HCI_OPCODE_FC79
+0xC4 HCI_DOWNLOAD_PATCH
+0xCC HCI_OPCODE_FCCC
+
+0x00 HCI_VENDOR_CMD_RESET
+0x01 HCI_VENDOR_CMD_CHIPID
+0x02 HCI_VENDOR_CMD_BAUD
+0x03 HCI_VENDOR_CMD_PATCH
+0x04 HCI_VENDOR_CMD_PATCH_DONE
+0x05 HCI_VENDOR_CMD_ECHO
+0x06 HCI_VENDOR_CMD_BDADDR
+
+0x07 HCI_VENDOR_CMD_ENTER_LPM
+0x08 HCI_VENDOR_CMD_COMMU_READY
+
+0x10 HCI_VENDOR_CMD_MEM
+0x11 HCI_VENDOR_CMD_EEP
+
+0X12 HCI_VENDOR_CMD_PATCH_SEC_INIT
+0X13 HCI_VENDOR_CMD_PATCH_SEC
+0x14 HCI_VENDOR_CMD_SET_FLOW_CONTROL
+)
+(
+0x01 HCI_LE_SET_EVENT_MASK
+0x02 HCI_LE_READ_BUFFER_SIZE
+0x03 HCI_LE_READ_LOCAL_SUPPORTED_FEATURES
+0x05 HCI_LE_SET_RANDOM_ADDRESS
+0x06 HCI_LE_SET_ADVERTISING_PARAMETERS
+0x07 HCI_LE_READ_ADVERTISING_CHANNEL_TX_POWER
+0x08 HCI_LE_SET_ADVERTISING_DATA
+0x09 HCI_LE_SET_SCAN_RESPONSE_DATA
+0x0A HCI_LE_SET_ADVERTISE_ENABLE
+0x0B HCI_LE_SET_SCAN_PARAMETERS
+0x0C HCI_LE_SET_SCAN_ENABLE
+0x0D HCI_LE_CREATE_CONNECTION
+0x0E HCI_LE_CREATE_CONNECTION_CANCEL
+0x0F HCI_LE_READ_WHITE_LIST_SIZE
+0x10 HCI_LE_CLEAR_WHITE_LIST
+0x11 HCI_LE_ADD_DEVICE_TO_WHITE_LIST
+0x12 HCI_LE_REMOVE_DEVICE_FROM_WHITE_LIST
+0x13 HCI_LE_CONNECTION_UPDATE
+0x14 HCI_LE_SET_HOST_CHANNEL_CLASSIFICATION
+0x15 HCI_LE_READ_CHANNEL_MAP
+0x16 HCI_LE_READ_REMOTE_USED_FEATURES
+0x17 HCI_LE_ENCRYPT
+0x18 HCI_LE_RAND
+0x19 HCI_LE_START_ENCRYPTION
+0x1A HCI_LE_LONG_TERM_KEY_REQUEST_REPLY
+0x1B HCI_LE_LONG_TERM_KEY_REQUEST_NEGATIVE_REPLY
+0x1C HCI_LE_READ_SUPPORTED_STATES
+0x1D HCI_LE_RECEIVER_TEST
+0x1E HCI_LE_TRANSMITTER_TEST
+0x1F HCI_LE_TEST_END
+0x20 HCI_LE_REMOTE_CONNECTION_PARAMETER_REQUEST_REPLY
+0x21 HCI_LE_REMOTE_CONNECTION_PARAMETER_REQUEST_NEGATIVE_REPLY
+)
+(
+0x01 HCI_EVENT_INQUIRY_COMPLETE
+0x02 HCI_EVENT_INQUIRY_RESULT
+0x03 HCI_EVENT_CONNECTION_COMPLETE
+0x04 HCI_EVENT_CONNECTION_REQUEST
+0x05 HCI_EVENT_DISCONNECTION_COMPLETE
+0x06 HCI_EVENT_AUTHENTICATION_COMPLETE
+0x07 HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE
+0x08 HCI_EVENT_ENCRYPTION_CHANGE_COMPLETE
+0x09 HCI_EVENT_CHANGE_CONNECTION_LINK_KEY_COMPLETE
+0x0A HCI_EVENT_MASTER_LINK_KEY_COMPLETE
+0x0B HCI_EVENT_READ_REMOTE_FEATURES_COMPLETE
+0x0C HCI_EVENT_READ_REMOTE_VERSION_INFORMATION_COMPLETE
+0x0D HCI_EVENT_QOS_SETUP_COMPLETE
+0x0E HCI_EVENT_COMMAND_COMPLETE
+0x0F HCI_EVENT_COMMAND_STATUS
+0x10 HCI_EVENT_HARDWARE_ERROR
+0x11 HCI_EVENT_FLUSH_OCCURRED
+0x12 HCI_EVENT_ROLE_CHANGE
+0x13 HCI_EVENT_NUM_COMPLETED_PACKETS
+0x14 HCI_EVENT_MODE_CHANGE
+0x15 HCI_EVENT_RETURN_LINK_KEYS
+0x16 HCI_EVENT_PIN_CODE_REQUEST
+0x17 HCI_EVENT_LINK_KEY_REQUEST
+0x18 HCI_EVENT_LINK_KEY_NOTIFICATION
+0x19 HCI_EVENT_LOOPBACK_COMMAND
+0x1A HCI_EVENT_DATA_BUFFER_OVERFLOW
+0x1B HCI_EVENT_MAX_SLOTS_CHANGE
+0x1C HCI_EVENT_READ_CLOCK_OFFSET_COMPLETE
+0x1D HCI_EVENT_CONNECTION_PACKET_TYPE_CHANGED
+0x1E HCI_EVENT_QOS_VIOLATION
+0x1F HCI_EVENT_PAGE_SCAN_MODE_CHANGE
+0x20 HCI_EVENT_PAGE_SCAN_REPETITION_MODE_CHANGE
+0x21 HCI_EVENT_FLOW_SPECIFICATION_COMPLETE
+0x22 HCI_EVENT_INQUIRY_RESULT_WITHRSSI
+0x23 HCI_EVENT_READ_REMOTE_EXT_FEATURES_COMPLETE
+0x2C HCI_EVENT_SCO_CONNECTION_COMPLETE
+0x2D HCI_EVENT_SCO_CONNECTION_CHANGED
+0x2E HCI_EVENT_SNIFF_SUBRATING
+0x2F HCI_EVENT_EXT_INQUIRY_RESULT
+0x30 HCI_EVENT_ENCRYPT_KEY_REFRESH_COMPLETE
+0x31 HCI_EVENT_IO_CAP_REQ
+0x32 HCI_EVENT_IO_CAP_RESPONSE
+0x33 HCI_EVENT_USER_CONFIRMATION_REQUEST
+0x34 HCI_EVENT_UESR_PASSKEY_REQUEST
+0x35 HCI_EVENT_REMOTE_OOB_DATA_REQUEST
+0x36 HCI_EVENT_SIMPLE_PAIRING_COMPLETE
+0x38 HCI_EVENT_LINK_SUPERVISION_TIMEOUT_CHANGED
+0x39 HCI_EVENT_ENHANCED_FLUSH_COMPLETE
+0x3B HCI_EVENT_USER_PASSKEY_NOTIFICATION
+0x3C HCI_EVENT_KEYPRESS_NOTIFICATION
+0x3D HCI_EVENT_REMOTE_HOST_SUPPORTED_FEATURES_NOTIFICATION 
+0x3E HCI_EVENT_LE_META_EVENT
+0x40 HCI_EVENT_PHYSICAL_LINK_COMPLETE
+0x41 HCI_EVENT_CHANNEL_SELECTED
+0x42 HCI_EVENT_DISCONNECTION_PHYSICAL_LINK_COMPLETE
+0x43 HCI_EVENT_PHYSICAL_LINK_LOSS_EARLY_WARNING
+0x44 HCI_EVENT_PHYSICAL_LINK_RECOVERY
+0x45 HCI_EVENT_LOGICAL_LINK_COMPLETE
+0x46 HCI_EVENT_DISCONNECTION_LOGICAL_LINK_COMPLETE
+0x47 HCI_EVENT_FLOW_SPEC_MODIFY_COMPLETE
+0x48 HCI_EVENT_NUMBER_OF_COMPLETED_DATA_BLOCKS
+0x49 HCI_EVENT_AMP_START_TEST
+0x4A HCI_EVENT_AMP_TEST_END
+0x4B HCI_EVENT_AMP_RECEIVER_REPORT
+0x4C HCI_EVENT_SHORT_RANGE_MODE_CHANGE_COMPLETE
+0x4D HCI_EVENT_AMP_STATUS_CHANGE
+0x4E HCI_EVENT_TRIGGERED_CLOCK_CAPTURE
+0x4F HCI_EVENT_SYNCHRONIZATION_TRAIN_COMPLETE
+0x50 HCI_EVENT_SYNCHRONIZATION_TRAIN_RECEIVED
+0x51 HCI_EVENT_CONNECTIONLESS_SLAVE_BROADCAST_RECEIVE
+0x52 HCI_EVENT_CONNECTIONLESS_SLAVE_BROADCAST_TIMEOUT
+0x53 HCI_EVENT_TRUNCATED_PAGE_COMPLETE
+0x54 HCI_EVENT_SLAVE_PAGE_RESPONSE_TIMEOUT
+0x55 HCI_EVENT_CONNECTIONLESS_SLAVE_BROADCAST_CHANNEL_MAP_CHANGE
+0x56 HCI_EVENT_INQUIRY_RESPONSE_NOTIFICATION
+0x57 HCI_EVENT_AUTHENTICATED_PAYLOAD_TIMEOUT_EXPIRED
+
+0xFE HCI_EVENT_LOGO_TESTING
+0xFF HCI_EVENT_VENDOR_SPECIFIC
+)
+(
+0x01 HCI_VENDOR_EVENT_COMMU_READY
+)
+(
+0x01 HCI_LE_SUBEVENT_CONN_COMPLETE
+0x02 HCI_LE_SUBEVENT_ADV_REPORT
+0x03 HCI_LE_SUBEVENT_CONN_UPDATE_COMPLETE
+0x04 HCI_LE_SUBEVENT_REMOTE_FEATURE_COMPLETE
+0x05 HCI_LE_SUBEVENT_LTK_REQUEST
+0x06 HCI_LE_SUBEVENT_REMOTE_CONN_PARAM_REQ
+)
+(
+/*HID TYPE*/
+0x01 HID_TYPE_CONTROL
+0x04 HID_TYPE_GET_REPORT
+0x05 HID_TYPE_SET_REPORT
+0x07 HID_TYPE_SET_PROTOCOL
+0x09 HID_TYPE_SET_IDLE
+0x0a HID_TYPE_DATA
+/*HID REPORT ID*/
+0x01 HID_REPORT_ID_KB
+
+0x00 HID_CONTROL_P_NOOPERATION
+0x01 HID_CONTROL_P_HARDRESET
+0x02 HID_CONTROL_P_SOFTRESET
+0x03 HID_CONTROL_P_SUSPEND
+0x04 HID_CONTROL_P_EXITSUSPEND
+0x05 HID_CONTROL_P_VIRTUALCABLEUNPLUG
+)
+0x00 KEYSCAN_OFFECT_COL_NUM
+0x01 KEYSCAN_OFFECT_ROW_NUM
+0x02 KEYSCAN_OFFECT_COL_CONF_PIN
+0x06 KEYSCAN_OFFECT_ROW_CONF_PIN
+0x0a KEYSCAN_OFFECT_ROW_COUNT
+0x0b KEYSCAN_OFFECT_SHIFT_COUNT
+0X0C KEYSCAN_OFFECT_VALUE_TEMP
+0X0E KEYSCAN_OFFECT_LASVALUE
+0X10 KEYSCAN_OFFECT_VALUE
+0x12 KEYSCAN_OFFECT_BTCLK
+0x16 KEYSCAN_OFFECT_BTCLK_INTERVAL
+(
+256 l2cap_lpm_txbuf_len
+)
+(
+4 L2CAP_TX_FIFO_SIZE
+8 L2CAP_TX_BUFF_CNT
+
+)
+(
+0x0002 L2CAP_SIG_EXT_FEATRUE
+0x0003 L2CAP_SIG_FIX_FEATRUE
+)
+(
+0 HS_IDLE
+1 AG_INIT_CALL
+2 HS_INIT_CALL
+)
+(
+0 M_ACL_LINK_ABSENT
+1 M_ACL_LINK_EXIST
+)
+(
+0 L2CAP_INUSE_BUFF1
+1 L2CAP_INUSE_BUFF2
+)
+(
+1 MAX_NUM_LINKS_ALLOWED
+1 MAX_NUM_SCO_ALLOWED
+1 ACL_LINK_PRESENT
+0 ACL_LINK_ABSENT
+)
+(
+1 L2CAP_RX_DONE 
+0 L2CAP_RX_CLEAR
+)
+(
+0 L2CAP_DISCONNECT_INTERRUPT
+1 RFCOMM_wants_service
+2 L2CAP_sig_Tx_buff_full
+3 RFCOMM_Tx_buff_full
+4 SDP_Tx_buff_full
+5 got_complete_L2CAP_pkt	
+6 L2CAP_init_Config_Req
+7 L2CAP_DISCONNECT_CONTROL
+)
+(
+0 UI_NEED_SERVICE
+)
+(
+0x0001 L2CAP_signal_channel
+0x0050 L2CAP_SDP_channel
+0x0051 L2CAP_RFCOMM_channel
+0x0052 L2CAP_HID_Control_channel   
+0x0053 L2CAP_HID_Interrupt_channel
+0x0077 L2CAP_AVDTP_signal_channel		//------avdtp
+0x0078 L2CAP_AVDTP_media_channel
+0x0079 L2CAP_AVDTP_report_channel
+0x0080 L2CAP_AVDTP_recovery_channel
+0x00dd L2CAP_AVCTP_Control_channel
+)
+(
+0x00 reserved
+0x01 signal_cmd_reject
+0x02 signal_connect_req
+0x03 signal_connect_rsp
+0x04 signal_config_req
+0x05 signal_config_rsp
+0x06 signal_disconnect_req
+0x07 signal_disconnect_rsp
+0x08 signal_echo_req
+0x09 signal_echo_rsp
+0x0a signal_info_req
+0x0b signal_info_rsp
+)
+(
+0x0000 cmd_not_understood
+0x0001 signalling_MTU_exceeded
+0x0002 invalid_CID_in_req
+)
+(
+0x0001 PSM_SDP
+0x0003 PSM_RFCOMM
+0x0005 PSM_TCS
+0x0011 PSM_HID_control
+0x0013 PSM_HID_interrupt
+0x0017 PSM_AVCTP
+0x0019 PSM_AVDTP
+)
+(
+0x0000 L2CAP_connect_successful
+0x0001 L2CAP_connect_pending
+0x0002 L2CAP_connect_refused_PSM_unsupported
+0x0003 L2CAP_connect_refused_security_block
+0x0004 L2CAP_connect_refused_no_resources
+)
+(
+0x0000 L2CAP_no_info_available
+0x0001 L2CAP_authentication_pending
+0x0002 L2CAP_authorization_pending
+)
+(
+0x0000 L2CAP_config_success
+0x0001 L2CAP_config_failure_bad_parameters
+0x0002 L2CAP_config_failure_no_reason
+0x0003 L2CAP_config_failure_unknown_options
+)
+(
+128 L2CAP_Rx_buff_size
+48  L2CAP_signal_Tx_buff_size
+128 SDP_Tx_buff_size
+128 RFCOMM_Tx_buff_size
+1 AM_ADDRESS
+3 DM1TYPE
+4 DH1TYPE
+11 DH3TYPE
+8 DVTYPE
+0 channel_state_closed
+1 channel_state_config
+2 channel_state_open
+0x0030 L2CAP_config_MTU_SDP
+0xffff L2CAP_config_ftimeout_SDP
+0x03e3 L2CAP_config_MTU_RFCOMM
+0xffff L2CAP_config_ftimeout_RFCOMM
+260 l2cap_max_pkt_len
+)
+(
+0 FAILURE
+1 SUCCESS
+2 IN_PROGRESS
+)
+(
+0x00	IDLE
+0x01	WAIT_4_BB_PAGE
+0x02	WAIT_4_LMP_CONN
+0x03	WAIT_4_SCO_CONN
+0x04	WAIT_4_SCO_KILLED
+)
+(
+0 STOP_ENC
+1 SEND_SWITCH_REQ
+)
+(
+0 HF_HS_READY
+1 HF_AG_READY
+)
+(
+0 HF_STATE_WAITING_RFCOMM_CONN
+1 HF_STATE_HF_SEND_FEATURE
+2 HF_STATE_WAITING_AG_FEATURE_OK
+3 HF_STATE_HF_SEND_INDICATORS
+4 HF_STATE_WAITING_AG_INDICATORS_OK
+5 HF_STATE_HF_SEND_CURR_STATUS
+6 HF_STATE_WAITING_AG_STATUS_OK
+7 HF_STATE_HF_SEND_UPDATE_STATUS
+8 HF_STATE_WAITING_AG_UPDATE_STATUS_OK
+9 HF_STATE_CONNECTED
+0x0a HF_STATE_HF_SEND_RECEIVE_INFO
+0x0b HF_STATE_WAITING_AG_INFO
+0x0c HF_STATE_HF_SEND_AT_CLIP
+0x0d HF_STATE_WAITING_AT_CLIP
+0x0e HF_STATE_HF_SEND_AT_CCWA
+0x0f HF_STATE_WAITING_AT_CCWA
+)
+(
+0 HF_CALL_STATE_INACTIVE
+1 HF_CALL_STATE_SETUP
+2 HF_CALL_STATE_ACTIVE 
+)
+(
+0 PAIR_INQUIRY_START
+1 PAIR_INQUIRY_TIME_OUT
+2 PAIR_INQUIRY_FAILED
+3 PAIR_INQUIRY_SUCCESS
+4 PAIR_READY_CONN
+5 PAIR_WAIT_CANCEL_RESPONSE
+6 PAIR_CONN_SUCCESS
+7 PAIR_WAIT_DETACH
+)  
+(
+0 FORCE_AUTHENTICATION
+)
+(
+0 PROTECOL_BOOT /*default*/
+1 PROTECOL_REPORT
+)
+(
+1 UPPERSM_SEND_SDP_CONN_REQ
+2 UPPERSM_SEND_SDP_CFG_REQ
+3 UPPERSM_SEND_SDP_HF_SS
+4 UPPERSM_SEND_SDP_DISC_REQ
+5 UPPERSM_SEND_RFCOMM_CONN_REQ
+6 UPPERSM_SEND_RFCOMM_CFG_REQ
+7 UPPERSM_SEND_SABM_CMD
+8 UPPERSM_SEND_DISC
+9 UPPERSM_SEND_WAIT
+10 UPPERSM_SEND_HID_CONTROL_CONN_REQ
+11 UPPERSM_SEND_HID_CONTROL_CFG_REQ
+12 UPPERSM_SEND_HID_INTERRUPT_CONN_REQ
+13 UPPERSM_SEND_HID_INTERRUPT_CFG_REQ
+14 UPPERSM_SEND_SDP_HS_SS
+15 UPPERSM_SEND_SDP_PBAP_SS
+16 UPPERSM_SEND_SDP_AVTARG_SS
+)
+(
+1 UPPERSM_RP_SEND_SDP_CONN_REQ
+2 UPPERSM_RP_SEND_SDP_CFG_REQ
+3 UPPERSM_RP_SEND_SDP_HF_SS
+4 UPPERSM_RP_SEND_SDP_HS_SS
+5 UPPERSM_RP_SEND_SDP_PBAP_SS
+6 UPPERSM_RP_SEND_SDP_AVTARG_SS
+7 UPPERSM_RP_SEND_SDP_DISC_REQ
+8 UPPERSM_RP_SEND_AVCTP_CONN_REQ
+9 UPPERSM_RP_SEND_AVCTP_CFG_REQ
+)
+(
+0 MSCHEDULER_HID_CONTROL_CONN_DONE
+1 MSCHEDULER_HID_INTERRUPT_CONN_DONE
+2 MSCHEDULER_HID_CONTROL_CFG_REQ_DONE
+3 MSCHEDULER_HID_CONTROL_CFG_RSP_DONE
+4 MSCHEDULER_HID_INTERRUPT_CFG_REQ_DONE
+5 MSCHEDULER_HID_INTERRUPT_CFG_RSP_DONE
+6 MSCHEDULER_HID_CONTROL_DISC_DONE
+7 MSCHEDULER_HID_INTERRUPT_DISC_DONE
+)
+(
+0x00 UI_DATA_EVNET_NONE
+0x01 UI_DATA_EVNET_HID
+0x02 UI_DATA_EVNET_AVDTP_S
+0x03 UI_DATA_EVNET_AVDTP_M
+0x04 UI_DATA_EVNET_AVCTP
+0x05 UI_DATA_EVNET_HS
+0x06 UI_DATA_EVNET_HF
+0x07 UI_DATA_EVNET_SPP
+0x08 UI_DATA_EVNET_OBEX
+)
+(
+0x00 UI_DATA_TX_NONE
+0x01 UI_DATA_TX_HID
+0x02 UI_DATA_TX_AVDTP_S
+0x03 UI_DATA_TX_AVDTP_M
+0x04 UI_DATA_TX_AVCTP
+0x05 UI_DATA_TX_HS
+0x06 UI_DATA_TX_HF
+0x07 UI_DATA_TX_SPP
+0x08 UI_DATA_TX_OBEX
+0x10 ACL_TX_L2CAP_SIGNAL
+0x11 ACL_TX_SDP
+0x12 ACL_TX_RFCOMM
+
+)
+(
+0 L2CAP_SDP_interface_conn
+1 L2CAP_SDP_interface_cfg
+)
+(                                   
+0 L2CAP_CHANNEL_STATE_CONN_REQ      
+1 L2CAP_CHANNEL_STATE_CONN_RES      
+2 L2CAP_CHANNEL_STATE_SND_CFG_REQ   
+3 L2CAP_CHANNEL_STATE_SND_CFG_RES   
+4 L2CAP_CHANNEL_STATE_RCV_CFG_REQ   
+5 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+6 L2CAP_CHANNEL_RFCOMM_ONLY_SABM
+7 L2CAP_CHANNEL_RFCOMM_ONLY_UA
+6 L2CAP_CHANNEL_AVDTP_SIGNAL_INIT //set avdtp init complete
+6 L2CAP_CHANNEL_HID_HANDSHAKE_DONE
+0x3f L2CAP_CHANNEL_SETUP_COMPLETE
+0x7f L2CAP_CHANNEL_AVDTP_SIGNAL_COMPLETE
+0xff L2CAP_CHANNEL_RFCOMM_DLCI0_OPENED
+)                                     
+(
+0 L2CAP_AVDTP_SIGNAL_CONNECT
+1 L2CAP_AVDTP_SIGNAL_CONFIG
+2 L2CAP_AVDTP_MEDIA_CONNECT
+3 L2CAP_AVDTP_MEDIA_CONFIG
+4 L2CAP_AVDTP_REPORT_CONNECT
+5 L2CAP_AVDTP_REPORT_CONFIG
+6 L2CAP_AVDTP_RECOVERY_CONNECT
+7 L2CAP_AVDTP_RECOVERY_CONFIG
+)
+(
+0 L2CAP_AVCTP_SIGNAL_CONNECT
+1 L2CAP_AVCTP_SIGNAL_CONFIG
+)
+127 L2CAP_SIGNAL_MALLOC_SIZE
+(
+0 RFCOMM_MALLOC_SUCCEED
+1 RFCOMM_MALLOC_FAIL
+)
+(
+0 L2CAP_FLOW_CTRL_DISABLE
+1 L2CAP_FLOW_CTRL_ENABLE
+)
+	(
+	//bit flag:mem_classic_bt_flag
+	0 FLAG_SSP_REJECT_JUSTWORK
+	1 SHORT_MULT_FLAG
+	)
+	(
+	//bit map
+	0 pair_state_inrand
+	1 pair_state_inrand_acpt
+	2 pair_state_send_comb
+	3 pair_state_recv_comb
+	4 pair_state_send_aurand
+	5 pair_state_recv_sres
+	6 pair_state_recv_aurand
+	7 pair_state_send_sres	
+	)
+	(
+	1 LMP_NAME_REQ 
+	2 LMP_NAME_RES 
+	3 LMP_ACCEPTED 
+	4 LMP_NOT_ACCEPTED 
+	5 LMP_CLKOFFSET_REQ 
+	6 LMP_CLKOFFSET_RES 
+	7 LMP_DETACH 
+	8 LMP_IN_RAND 
+	9 LMP_COMB_KEY 
+	10 LMP_UNIT_KEY 
+	11 LMP_AU_RAND 
+	12 LMP_SRES 
+	13 LMP_TEMP_RAND 
+	14 LMP_TEMP_KEY 
+	15 LMP_ENCRYPTION_MODE_REQ 
+	16 LMP_ENCRYPTION_KEY_SIZE_REQ 
+	17 LMP_START_ENCRYPTION_REQ 
+	18 LMP_STOP_ENCRYPTION_REQ 
+	19 LMP_SWITCH_REQ 
+	20 LMP_HOLD
+	21 LMP_HOLD_REQ
+	23 LMP_SNIFF_REQ 
+	24 LMP_UNSNIFF_REQ 
+	26 LMP_PARK_REQ 
+	27 LMP_SET_BROADCAST_SCAN_WINDOW 
+	28 LMP_MODIFY_BEACON 
+	29 LMP_UNPARK_BD_ADDR_REQ 
+	30 LMP_UNPARK_PM_ADDR_REQ 
+	31 LMP_INCR_POWER_REQ 
+	32 LMP_DECR_POWER_REQ 
+	33 LMP_MAX_POWER 
+	34 LMP_MIN_POWER 
+	35 LMP_AUTO_RATE 
+	36 LMP_PREFERRED_RATE 
+	37 LMP_VERSION_REQ 
+	38 LMP_VERSION_RES 
+	39 LMP_FEATURES_REQ 
+	40 LMP_FEATURES_RES 
+	41 LMP_QUALITY_OF_SERVICE 
+	42 LMP_QUALITY_OF_SERVICE_REQ 
+	43 LMP_SCO_LINK_REQ 
+	44 LMP_REMOVE_SCO_LINK_REQ 
+	45 LMP_MAX_SLOT 
+	46 LMP_MAX_SLOT_REQ 
+	47 LMP_TIMING_ACCURACY_REQ 
+	48 LMP_TIMING_ACCURACY_RES 
+	49 LMP_SETUP_COMPLETE 
+	50 LMP_USE_SEMI_PERMANENT_KEY 
+	51 LMP_HOST_CONNECTION_REQ 
+	52 LMP_SLOT_OFFSET 
+	53 LMP_PAGE_MODE_REQ 
+	54 LMP_PAGE_SCAN_MODE_REQ 
+	55 LMP_SUPERVISION_TIMEOUT 
+	56 LMP_TEST_ACTIVATE
+	57 LMP_TEST_CONTROL
+	58 LMP_ENC_KEY_SIZE_MASK_REQ
+	59 LMP_ENC_KEY_SIZE_MASK_RES
+	60 LMP_SET_AFH
+
+	/* simple pairing support */
+	61 LMP_ENCAPSULATED_HEADER
+	62 LMP_ENCAPSULATED_PAYLOAD
+	63 LMP_SIMPLE_PAIRING_CONFIRM
+	64 LMP_SIMPLE_PAIRING_NUMBER
+	65 LMP_DHKEY_CHECK
+	127 LMP_ESCAPE
+	127 LMP_ESCAPE_4   /* add 2bytes LMP header support  */   
+	)
+	(
+	129 LMP_EXT_ACCEPTED
+	130 LMP_NOT_ACCEPTED_EXT
+	131 LMP_EXT_FEATURES_REQ
+	132 LMP_EXT_FEATURES_RES
+	139 LMP_PACKET_TYPE_TABLE_REQ
+	140 LMP_EXT_ESCO_LINK_REQ
+	141 LMP_EXT_REMOVE_ESCO_REQ
+	144 LMP_EXT_CHN_CLASSIFICATION_REQ
+	145 LMP_EXT_CHN_CLASSIFICATION
+	149 LMP_SNIFF_SUBRATING_REQ
+	150 LMP_SNIFF_SUBRATING_RES
+	151 LMP_PAUSE_ENCRYPTION_REQ
+	152 LMP_RESUME_ENCRYPTION_REQ
+	153 LMP_IO_CAP_REQ
+	154 LMP_IO_CAP_RES
+	161 LMP_PING_REQ
+	162 LMP_PING_RES
+	)
+	(
+	0x05 AUTHENTICATION_FAILURE_ERROR
+	0x06 KEY_MISSING
+	0x0b ACL_CONNECTION_ALREADY_EXISTS
+	0x13 OTHER_END_TERMINATED
+	0x15 ABOUT_TO_POEWR_OFF
+	0x16 LOCAL_HOST
+	0x18 PAIRING_NOT_ALLOWED
+	0x19 UNKNOWN_LMP_PDU
+	0x1A UNSUPPORTED_LMP_FEATURE 
+	0x1F UNSPECIFIED_ERROR
+	0x20 UNSUPPORTED_PARAMETERS
+	0x21 SWITCH_NOT_ALLOWED
+	0x23 TRANSACTION_COLLISION
+	0x24 PDU_NOT_ALLOWED
+	0x25 ENCRYPTION_MODE_NOT_ACCEPTABLE
+	0x2e NOT_SUPPORT_CHN_CLASSIFICATION
+	0x37 NOT_SUPPORT_SSP
+	)
+	(
+	0 PAUSE_TEST_MODE
+	1 ZERO_PATTERN
+	2 ONE_PATTERN
+	3 ALT_PATTERN
+	4 PSEUDORANDOM
+	5 CLOSED_LOOP_BACK_ACL
+	6 CLOSED_LOOP_BACK_SCO
+	7 ACL_WITHOUT_WHITENING
+	8 SCO_WITHOUT_WHITENING
+	9 ALT2_PATTERN
+	255 EXIT_TEST_MODE
+	)
+	(
+	0 FIXED_FREQ
+	1 NORMAL_HOP
+	)
+	(
+	0 TID_NORM_REPLY
+	1 TID_NORM_SEND
+	2 TID_ONE
+	3 TID_ZERO
+	4 TID_PAIRING
+	5 TID_ENCRYPTION
+	6 TID_VARIABLE
+	7 TID_RX
+	)
+	(
+	0 lmp_incoming
+	1 lmp_outgoing
+	2 lmp_reject_msg
+	3 lmp_clear_msg
+	4 upper_reject_msg
+	5 upper_clear_msg
+	)
+(
+0x2ee00 TIMER_ONE_MINUTE //96000*2
+80 TIMER_SWITCH_WAITE
+12 TIMER_ENPT_WAITE
+)
+(
+0 SWITCH_FLAG_INIT
+1 SWITCH_FLAG_ACCEPT
+2 SWITCH_FLAG_NOT_ACCEPT
+)
+(
+0 NULL_ENCRYP
+1 DONE_ENCRYP
+)
+(
+3 LMP_FEATURES_EXT_PAGE1_SC_HOST_BIT
+)
+(
+8 LMP_FEATURES_EXT_PAGE2_SC_CONTROLLER_BIT
+)
+(
+0 REMOTE_BR_SC_HOST_BIT
+1 REMOTE_BR_SC_CONTROLLER_BIT
+)
+(
+0xff0 mem_mcmd
+0xff1 mem_mouse_data
+)
+(
+0x1000 mem_le_l2cap_buf		//0x400
+0x1000 mem_l2cap_rxbuff1		//0x400
+0x1400 mem_l2cap_rxbuff2		//0x400
+//end address:0x17ff
+)
+(
+0x1800 mem_tx_buff0		//128
+0x0080 mem_bt_l2cap_tx_buff_size
+0x1400 mem_ble_tx_buff0
+0x0100 mem_ble_l2cap_tx_buff_size
+)
+(
+0x1800 mem_le_tx_buffer0
+0x1900 mem_le_tx_buffer1
+0x1a00 mem_le_tx_buffer2
+0x1b00 mem_le_tx_buffer3
+//end addr:0x1dff
+)
+(
+0x1800 mem_h5rx_buf//0x400
+0x1bff mem_h5rx_buf_end
+0x1c00 mem_h5tx_buf
+0x1fff mem_h5tx_buf_end
+)
+(
+0x1800 mem_ir_record
+0x1c      mem_ir_record_max
+)
+0x4c00 mem_savelist
+(
+7 context_num_new_m1
+8 context_num_new
+96 context_size_new
+)
+(
+0x4040 mem_anchor_array
+)
+(
+	  0 patch00_0
+	  1 patch00_1
+	  2 patch00_2
+	  3 patch00_3
+	  4 patch00_4
+	  5 patch00_5
+	  6 patch00_6
+	  7 patch00_7
+	  8 patch01_0
+	  9 patch01_1
+	 10 patch01_2
+	 11 patch01_3
+	 12 patch01_4
+	 13 patch01_5
+	 14 patch01_6
+	 15 patch01_7
+	 16 patch02_0
+	 17 patch02_1
+	 18 patch02_2
+	 19 patch02_3
+	 20 patch02_4
+	 21 patch02_5
+	 22 patch02_6
+	 23 patch02_7
+	 24 patch03_0
+	 25 patch03_1
+	 26 patch03_2
+	 27 patch03_3
+	 28 patch03_4
+	 29 patch03_5
+	 30 patch03_6
+	 31 patch03_7
+	 32 patch04_0
+	 33 patch04_1
+	 34 patch04_2
+	 35 patch04_3
+	 36 patch04_4
+	 37 patch04_5
+	 38 patch04_6
+	 39 patch04_7
+	 40 patch05_0
+	 41 patch05_1
+	 42 patch05_2
+	 43 patch05_3
+	 44 patch05_4
+	 45 patch05_5
+	 46 patch05_6
+	 47 patch05_7
+	 48 patch06_0
+	 49 patch06_1
+	 50 patch06_2
+	 51 patch06_3
+	 52 patch06_4
+	 53 patch06_5
+	 54 patch06_6
+	 55 patch06_7
+	 56 patch07_0
+	 57 patch07_1
+	 58 patch07_2
+	 59 patch07_3
+	 60 patch07_4
+	 61 patch07_5
+	 62 patch07_6
+	 63 patch07_7
+	 64 patch08_0
+	 65 patch08_1
+	 66 patch08_2
+	 67 patch08_3
+	 68 patch08_4
+	 69 patch08_5
+	 70 patch08_6
+	 71 patch08_7
+	 72 patch09_0
+	 73 patch09_1
+	 74 patch09_2
+	 75 patch09_3
+	 76 patch09_4
+	 77 patch09_5
+	 78 patch09_6
+	 79 patch09_7
+	 80 patch0a_0
+	 81 patch0a_1
+	 82 patch0a_2
+	 83 patch0a_3
+	 84 patch0a_4
+	 85 patch0a_5
+	 86 patch0a_6
+	 87 patch0a_7
+	 88 patch0b_0
+	 89 patch0b_1
+	 90 patch0b_2
+	 91 patch0b_3
+	 92 patch0b_4
+	 93 patch0b_5
+	 94 patch0b_6
+	 95 patch0b_7
+	 96 patch0c_0
+	 97 patch0c_1
+	 98 patch0c_2
+	 99 patch0c_3
+	100 patch0c_4
+	101 patch0c_5
+	102 patch0c_6
+	103 patch0c_7
+	104 patch0d_0
+	105 patch0d_1
+	106 patch0d_2
+	107 patch0d_3
+	108 patch0d_4
+	109 patch0d_5
+	110 patch0d_6
+	111 patch0d_7
+	112 patch0e_0
+	113 patch0e_1
+	114 patch0e_2
+	115 patch0e_3
+	116 patch0e_4
+	117 patch0e_5
+	118 patch0e_6
+	119 patch0e_7
+	120 patch0f_0
+	121 patch0f_1
+	122 patch0f_2
+	123 patch0f_3
+	124 patch0f_4
+	125 patch0f_5
+	126 patch0f_6
+	127 patch0f_7
+	128 patch10_0
+	129 patch10_1
+	130 patch10_2
+	131 patch10_3
+	132 patch10_4
+	133 patch10_5
+	134 patch10_6
+	135 patch10_7
+	136 patch11_0
+	137 patch11_1
+	138 patch11_2
+	139 patch11_3
+	140 patch11_4
+	141 patch11_5
+	142 patch11_6
+	143 patch11_7
+	144 patch12_0
+	145 patch12_1
+	146 patch12_2
+	147 patch12_3
+	148 patch12_4
+	149 patch12_5
+	150 patch12_6
+	151 patch12_7
+	152 patch13_0
+	153 patch13_1
+	154 patch13_2
+	155 patch13_3
+	156 patch13_4
+	157 patch13_5
+	158 patch13_6
+	159 patch13_7
+	160 patch14_0
+	161 patch14_1
+	162 patch14_2
+	163 patch14_3
+	164 patch14_4
+	165 patch14_5
+	166 patch14_6
+	167 patch14_7
+	168 patch15_0
+	169 patch15_1
+	170 patch15_2
+	171 patch15_3
+	172 patch15_4
+	173 patch15_5
+	174 patch15_6
+	175 patch15_7
+	176 patch16_0
+	177 patch16_1
+	178 patch16_2
+	179 patch16_3
+	180 patch16_4
+	181 patch16_5
+	182 patch16_6
+	183 patch16_7
+	184 patch17_0
+	185 patch17_1
+	186 patch17_2
+	187 patch17_3
+	188 patch17_4
+	189 patch17_5
+	190 patch17_6
+	191 patch17_7
+	192 patch18_0
+	193 patch18_1
+	194 patch18_2
+	195 patch18_3
+	196 patch18_4
+	197 patch18_5
+	198 patch18_6
+	199 patch18_7
+	200 patch19_0
+	201 patch19_1
+	202 patch19_2
+	203 patch19_3
+	204 patch19_4
+	205 patch19_5
+	206 patch19_6
+	207 patch19_7
+	208 patch1a_0
+	209 patch1a_1
+	210 patch1a_2
+	211 patch1a_3
+	212 patch1a_4
+	213 patch1a_5
+	214 patch1a_6
+	215 patch1a_7
+	216 patch1b_0
+	217 patch1b_1
+	218 patch1b_2
+	219 patch1b_3
+	220 patch1b_4
+	221 patch1b_5
+	222 patch1b_6
+	223 patch1b_7
+	224 patch1c_0
+	225 patch1c_1
+	226 patch1c_2
+	227 patch1c_3
+	228 patch1c_4
+	229 patch1c_5
+	230 patch1c_6
+	231 patch1c_7
+	232 patch1d_0
+	233 patch1d_1
+	234 patch1d_2
+	235 patch1d_3
+	236 patch1d_4
+	237 patch1d_5
+	238 patch1d_6
+	239 patch1d_7
+	240 patch1e_0
+	241 patch1e_1
+	242 patch1e_2
+	243 patch1e_3
+	244 patch1e_4
+	245 patch1e_5
+	246 patch1e_6
+	247 patch1e_7
+	248 patch1f_0
+	249 patch1f_1
+	250 patch1f_2
+	251 patch1f_3
+	252 patch1f_4
+	253 patch1f_5
+	254 patch1f_6
+	255 patch1f_7
+	  0 patch20_0
+	  1 patch20_1
+	  2 patch20_2
+	  3 patch20_3
+	  4 patch20_4
+	  5 patch20_5
+	  6 patch20_6
+	  7 patch20_7
+	  8 patch21_0
+	  9 patch21_1
+	 10 patch21_2
+	 11 patch21_3
+	 12 patch21_4
+	 13 patch21_5
+	 14 patch21_6
+	 15 patch21_7
+	 16 patch22_0
+	 17 patch22_1
+	 18 patch22_2
+	 19 patch22_3
+	 20 patch22_4
+	 21 patch22_5
+	 22 patch22_6
+	 23 patch22_7
+	 24 patch23_0
+	 25 patch23_1
+	 26 patch23_2
+	 27 patch23_3
+	 28 patch23_4
+	 29 patch23_5
+	 30 patch23_6
+	 31 patch23_7
+	 32 patch24_0
+	 33 patch24_1
+	 34 patch24_2
+	 35 patch24_3
+	 36 patch24_4
+	 37 patch24_5
+	 38 patch24_6
+	 39 patch24_7
+	 40 patch25_0
+	 41 patch25_1
+	 42 patch25_2
+	 43 patch25_3
+	 44 patch25_4
+	 45 patch25_5
+	 46 patch25_6
+	 47 patch25_7
+	 48 patch26_0
+	 49 patch26_1
+	 50 patch26_2
+	 51 patch26_3
+	 52 patch26_4
+	 53 patch26_5
+	 54 patch26_6
+	 55 patch26_7
+	 56 patch27_0
+	 57 patch27_1
+	 58 patch27_2
+	 59 patch27_3
+	 60 patch27_4
+	 61 patch27_5
+	 62 patch27_6
+	 63 patch27_7
+	 64 patch28_0
+	 65 patch28_1
+	 66 patch28_2
+	 67 patch28_3
+	 68 patch28_4
+	 69 patch28_5
+	 70 patch28_6
+	 71 patch28_7
+	 72 patch29_0
+	 73 patch29_1
+	 74 patch29_2
+	 75 patch29_3
+	 76 patch29_4
+	 77 patch29_5
+	 78 patch29_6
+	 79 patch29_7
+	 80 patch2a_0
+	 81 patch2a_1
+	 82 patch2a_2
+	 83 patch2a_3
+	 84 patch2a_4
+	 85 patch2a_5
+	 86 patch2a_6
+	 87 patch2a_7
+	 88 patch2b_0
+	 89 patch2b_1
+	 90 patch2b_2
+	 91 patch2b_3
+	 92 patch2b_4
+	 93 patch2b_5
+	 94 patch2b_6
+	 95 patch2b_7
+	 96 patch2c_0
+	 97 patch2c_1
+	 98 patch2c_2
+	 99 patch2c_3
+	100 patch2c_4
+	101 patch2c_5
+	102 patch2c_6
+	103 patch2c_7
+	104 patch2d_0
+	105 patch2d_1
+	106 patch2d_2
+	107 patch2d_3
+	108 patch2d_4
+	109 patch2d_5
+	110 patch2d_6
+	111 patch2d_7
+	112 patch2e_0
+	113 patch2e_1
+	114 patch2e_2
+	115 patch2e_3
+	116 patch2e_4
+	117 patch2e_5
+	118 patch2e_6
+	119 patch2e_7
+	120 patch2f_0
+	121 patch2f_1
+	122 patch2f_2
+	123 patch2f_3
+	124 patch2f_4
+	125 patch2f_5
+	126 patch2f_6
+	127 patch2f_7
+	128 patch30_0
+	129 patch30_1
+	130 patch30_2
+	131 patch30_3
+	132 patch30_4
+	133 patch30_5
+	134 patch30_6
+	135 patch30_7
+	136 patch31_0
+	137 patch31_1
+	138 patch31_2
+	139 patch31_3
+	140 patch31_4
+	141 patch31_5
+	142 patch31_6
+	143 patch31_7
+	144 patch32_0
+	145 patch32_1
+	146 patch32_2
+	147 patch32_3
+	148 patch32_4
+	149 patch32_5
+	150 patch32_6
+	151 patch32_7
+	152 patch33_0
+	153 patch33_1
+	154 patch33_2
+	155 patch33_3
+	156 patch33_4
+	157 patch33_5
+	158 patch33_6
+	159 patch33_7
+	160 patch34_0
+	161 patch34_1
+	162 patch34_2
+	163 patch34_3
+	164 patch34_4
+	165 patch34_5
+	166 patch34_6
+	167 patch34_7
+	168 patch35_0
+	169 patch35_1
+	170 patch35_2
+	171 patch35_3
+	172 patch35_4
+	173 patch35_5
+	174 patch35_6
+	175 patch35_7
+	176 patch36_0
+	177 patch36_1
+	178 patch36_2
+	179 patch36_3
+	180 patch36_4
+	181 patch36_5
+	182 patch36_6
+	183 patch36_7
+	184 patch37_0
+	185 patch37_1
+	186 patch37_2
+	187 patch37_3
+	188 patch37_4
+	189 patch37_5
+	190 patch37_6
+	191 patch37_7
+	192 patch38_0
+	193 patch38_1
+	194 patch38_2
+	195 patch38_3
+	196 patch38_4
+	197 patch38_5
+	198 patch38_6
+	199 patch38_7
+	200 patch39_0
+	201 patch39_1
+	202 patch39_2
+	203 patch39_3
+	204 patch39_4
+	205 patch39_5
+	206 patch39_6
+	207 patch39_7
+	208 patch3a_0
+	209 patch3a_1
+	210 patch3a_2
+	211 patch3a_3
+	212 patch3a_4
+	213 patch3a_5
+	214 patch3a_6
+	215 patch3a_7
+	216 patch3b_0
+	217 patch3b_1
+	218 patch3b_2
+	219 patch3b_3
+	220 patch3b_4
+	221 patch3b_5
+	222 patch3b_6
+	223 patch3b_7
+	224 patch3c_0
+	225 patch3c_1
+	226 patch3c_2
+	227 patch3c_3
+	228 patch3c_4
+	229 patch3c_5
+	230 patch3c_6
+	231 patch3c_7
+	232 patch3d_0
+	233 patch3d_1
+	234 patch3d_2
+	235 patch3d_3
+	236 patch3d_4
+	237 patch3d_5
+	238 patch3d_6
+	239 patch3d_7
+	240 patch3e_0
+	241 patch3e_1
+	242 patch3e_2
+	243 patch3e_3
+	244 patch3e_4
+	245 patch3e_5
+	246 patch3e_6
+	247 patch3e_7
+	248 patch3f_0
+	249 patch3f_1
+	250 patch3f_2
+	251 patch3f_3
+	252 patch3f_4
+	253 patch3f_5
+	254 patch3f_6
+	255 patch3f_7
+
+)
+(
+	0x8000 core_chipid
+	0x8003 core_kick
+	0x8004 core_write_wdt
+	0x8005 core_lpm_wr
+	0x8006 core_misc_ctrl
+	0x8007 core_efuse_rdata
+	0x800a core_ccm_ctrl
+	0x800b core_write_wdt2
+	0x8010 core_reset
+	0x8011 core_encrypt
+	0x8012 core_lpm_wr2
+	0x8013 core_mpu_s0_saddr
+	0x8015 core_mpu_s0_eaddr
+	0x8017 core_mpu_s1_saddr
+	0x8019 core_mpu_s1_eaddr
+	0x8022 core_ucode_hi
+	0x8023 core_ucode_ctrl
+	0x8024 core_ucode_low
+	0x8025 core_ucode_data
+
+	0x8040 core_halfslot
+	0x8042 core_clksel
+	0x8043 core_uart_clksel
+	0x8043 core_config
+	0x8044 core_xtal_stable_time
+	0x8045 core_efuse_addr
+	0x8046 core_bist_ctrl
+	0x8047 core_efuse_ctrl
+	0x8048 core_ac_ctrl
+	0x804a core_ac_saddr
+	0x804c core_lpm_reg
+	0x804f core_lpm_isogate
+	0x8050 core_clkoff
+	0x8052 core_uart_baud
+	0x8053 core_sum_en
+	0x8054 core_uart_rsaddr
+	0x8056 core_uart_readdr
+	0x8058 core_uart_rrptr
+	0x805a core_uart_tsaddr
+	0x805c core_uart_teaddr
+	0x805e core_uart_twptr
+	0x8060 core_uart_ctrl
+	0x8061 core_uartb_ctrl
+	0x8062 core_uartb_baud
+	0x8064 core_uartb_rsaddr
+	0x8066 core_uartb_readdr
+	0x8068 core_uartb_rrptr
+	0x806a core_uartb_tsaddr
+	0x806c core_uartb_teaddr
+	0x806e core_uartb_twptr
+	0x8070 core_gpio_conf
+	0x8084 core_pwm_en
+	0x8085 core_aes_en
+	0x8086 core_spid_ctrl
+	0x8087 core_spid_delay
+	0x8088 core_spid_txlen
+	0x808a core_spid_txaddr
+	0x808c core_spid_rxaddr
+	0x808e core_spid_rxlen
+	0x8090 core_iicd_ctrl
+	0x8091 core_iicd_scl_low
+	0x8092 core_iicd_scl_high
+	0x8093 core_iicd_start_setup
+	0x8094 core_iicd_start_hold
+	0x8095 core_iicd_stop_setup
+	0x8096 core_iicd_data_setup
+	0x8097 core_iicd_data_hold
+	0x8098 core_iicd_txlen
+	0x809a core_iicd_txaddr
+	0x809c core_iicd_rxaddr
+	0x809e core_iicd_rxlen
+	0x80a0 core_pwm_pcnt0
+	0x80a2 core_pwm_ncnt0
+	0x80a4 core_pwm_pcnt1
+	0x80a6 core_pwm_ncnt1
+	0x80a8 core_pwm_pcnt2
+	0x80aa core_pwm_ncnt2
+	0x80ac core_pwm_pcnt3
+	0x80ae core_pwm_ncnt3
+	0x80b0 core_pwm_pcnt4
+	0x80b2 core_pwm_ncnt4
+	0x80b4 core_pwm_pcnt5
+	0x80b6 core_pwm_ncnt5
+	0x80b8 core_pwm_pcnt6
+	0x80ba core_pwm_ncnt6
+	0x80bc core_pwm_pcnt7
+	0x80be core_pwm_ncnt7
+	0x80c0 core_spid2_ctrl
+	0x80c1 core_spid2_delay
+	0x80c2 core_spid2_txlen
+	0x80c4 core_spid2_txaddr
+	0x80c6 core_spid2_rxaddr
+	0x80c8 core_spid2_rxlen
+	0x80ca core_nec_start_addr
+	0x80cc core_nec_end_addr
+	0x80ce core_nec_rptr
+	0x80d0 core_nec_control
+	0x80d1 core_ccm_input_playload_addr
+	0x80d3 core_ccm_output_playload_addr
+	0x80d5 core_ccm_aad0
+	0x80d6 core_ccm_aad1
+	0x80d7 core_ccm_aad2
+	0x80d8 core_pwm_init
+	0x80d9 core_ac_buf_len
+	0x80da core_ccm_inptr
+	0x80dc core_sum_ctrl
+	0x80dd core_pwm_srst
+	0x8108 core_misc_status
+	0x8109 core_qdec_cntx
+	0x810a core_watchdog_cnt
+	0x810b core_uart_status
+	0x810c core_uart_rbaud
+	0x810e core_uart_txitems
+	0x8110 core_uart_trptr
+	0x8112 core_uart_rxitems
+	0x8114 core_uart_rdptr
+	0x8116 core_uart_rwptr
+	0x8118 core_debug_baud
+	0x811a core_ccm_outptr
+	0x811c core_gpio_in
+	0x811d core_gpio_in1
+	0x8120 core_ucode_flag
+	0x8121 core_peripheral_lock
+	0x8122 core_nec_wptr
+	0x8124 core_current_efuse_addr
+	0x8126 core_spid2_remain
+	0x8128 core_spid_remain
+	0x812a core_iicd_remain
+	0x812c core_dma_status
+	0x812d core_perf_status
+	0x812e core_adc_in
+	0x8130 core_nec_rxitem
+	0x8134 core_lpm_ctrl2
+	0x8138 core_lpm_ctrl
+	0x813c core_lpm_xtalcnt
+	0x813d core_lpm_buckcnt
+	0x813e core_lpm_ldocnt
+	0x813f core_lpm_latch
+	0x8140 core_gpio_wakeup_low
+	0x8144 core_gpio_wakeup_high
+	0x8149 core_clk_counter
+	0x8150 core_adc_sum
+	0x8152 core_uartb_status
+	0x8152 core_uartb_rbaud
+	0x8154 core_uartb_txitems
+	0x8156 core_uartb_trptr
+	0x8158 core_uartb_rxitems
+	0x815a core_uartb_rdptr
+	0x815c core_uartb_rwptr
+
+	0x8203 core_ice_ctrl
+	0x8204 core_ice_status
+	0x8205 core_ice_break0
+	0x8207 core_ice_break1
+  
+	0x8280 core_docd_ctrl
+	0x8288 core_docd_paddr
+	0x828a core_docd_pdata
+
+	0x8900 modem_en
+	0x8938 mod_value_scale1
+	0x8960 core_rf_rx_agc_ctrl
+	0x8961 core_rf_rx_gain_fix
+	0x8968 core_agc_wb_sat_th
+	0x8969 core_agc_nb_sat_th
+	0x89a0 modem_rssi
+	0x89a1 modem_wb_pow
+	0x89a2 modem_nb_pow
+	0x89a3 modem_gain
+	0x89a4 modem_status
+
+	0x89f0 fpga_rf_gain
+	0x89f1 fpga_rf_gain_ctrl
+	0x89f2 fpga_uart_ctrl
+	0x89f3 fpga_uart_wdata
+	0x89f4 fpga_uart_rdata
+	0x89f5 fpga_uart_status
+
+	0x8921 core_rx_ctrl1
+	0x8a00 core_clkpll_ctrl0              
+	0x8a01 core_clkpll_ctrl1              
+	0x8a02 core_clkpll_ctrl2              
+	0x8a03 core_clkpll_cfg0               
+	0x8a04 core_clkpll_cfg1               
+	0x8a05 core_clkpll_cfg2               
+	0x8a06 core_clkpll_cfg3               
+	0x8a07 core_clkpll_cfg4               
+	0x8a08 core_clkpll_cfg5               
+	0x8a09 core_clkpll_cfg6               
+	0x8a0a core_rf_ldo_en0                
+	0x8a0b core_rf_ldo_en1                
+	0x8a0c core_rf_ldo_cfg0               
+	0x8a0d core_rf_ldo_cfg1               
+	0x8a0e core_rf_ldo_cfg2               
+	0x8a0f core_rf_ldo_cfg3               
+	0x8a10 core_rf_ldo_cfg4               
+	0x8a11 core_rf_ldo_cfg5               
+	0x8a12 core_rf_ldo_cfg6               
+	0x8a13 core_rf_ldo_cfg7               
+	0x8a14 core_rf_ldo_cfg8               
+	0x8a15 core_rf_ldo_cfg9               
+	0x8a16 core_syn_en                    
+	0x8a17 core_rx_en0                    
+	0x8a18 core_rx_en1                    
+	0x8a19 core_tx_en0                    
+	0x8a1a core_tx_en1                    
+	0x8a1b core_force_ctrl                
+	0x8a1c core_rx_lna_gc_gc0             
+	0x8a1d core_rx_lna_gc_gc1             
+	0x8a1e core_rx_lna_gc_gc2             
+	0x8a1f core_rx_lna_gc_gc3             
+	0x8a20 core_rx_lna_gc_gc4             
+	0x8a21 core_rx_lna_gc_gc5             
+	0x8a22 core_rx_lna_gc_gc6             
+	0x8a23 core_rx_lna_gc_gc7             
+	0x8a24 core_rx_lna_gc_gc8             
+	0x8a25 core_rx_lna_hg_isel_gc6        
+	0x8a26 core_rx_lna_hg_isel_gc7        
+	0x8a27 core_rx_lna_hg_isel_gc8        
+	0x8a28 core_rx_lna_lg_isel_gc0        
+	0x8a29 core_rx_lna_lg_isel_gc1        
+	0x8a2a core_rx_lna_lg_isel_gc2        
+	0x8a2b core_rx_lna_lg_isel_gc3        
+	0x8a2c core_rx_lna_lg_isel_gc4        
+	0x8a2d core_rx_lna_lg_isel_gc5        
+	0x8a2e core_rx_bq_gc_gc0              
+	0x8a2f core_rx_bq_gc_gc1              
+	0x8a30 core_rx_bq_gc_gc2              
+	0x8a31 core_rx_bq_gc_gc3              
+	0x8a32 core_rx_bq_gc_gc4              
+	0x8a33 core_rx_bq_gc_gc5              
+	0x8a34 core_rx_bq_gc_gc6              
+	0x8a35 core_rx_bq_gc_gc7              
+	0x8a36 core_rx_bq_gc_gc8              
+	0x8a37 core_rx_gain_force             
+	0x8a38 core_rx_lna_isel_force         
+	0x8a39 core_tx_pwr_ctrl0              
+	0x8a3a core_tx_pwr_ctrl1              
+	0x8a3b core_tx_pwr_ctrl2              
+	0x8a3c core_tx_pwr_ctrl3              
+	0x8a3d core_syn_top_ctrl              
+	0x8a3e core_syn_mmd_cp_ctrl           
+	0x8a3f core_syn_divr_int              
+	0x8a40 core_syn_divr_frac2            
+	0x8a41 core_syn_divr_frac1            
+	0x8a42 core_syn_divr_frac0            
+	0x8a43 core_syn_cal_ctrl              
+	0x8a44 core_rx_tiai_dcoc_gc0          
+	0x8a45 core_rx_tiaq_dcoc_gc0          
+	0x8a46 core_rx_tiai_dcoc_gc1          
+	0x8a47 core_rx_tiaq_dcoc_gc1          
+	0x8a48 core_rx_tiai_dcoc_gc2          
+	0x8a49 core_rx_tiaq_dcoc_gc2          
+	0x8a4a core_rx_tiai_dcoc_gc3          
+	0x8a4b core_rx_tiaq_dcoc_gc3          
+	0x8a4c core_rx_tiai_dcoc_gc4          
+	0x8a4d core_rx_tiaq_dcoc_gc4          
+	0x8a4e core_rx_tiai_dcoc_gc5          
+	0x8a4f core_rx_tiaq_dcoc_gc5          
+	0x8a50 core_rx_tiai_dcoc_gc6          
+	0x8a51 core_rx_tiaq_dcoc_gc6          
+	0x8a52 core_rx_tiai_dcoc_gc7          
+	0x8a53 core_rx_tiaq_dcoc_gc7          
+	0x8a54 core_rx_tiai_dcoc_gc8          
+	0x8a55 core_rx_tiaq_dcoc_gc8          
+	0x8a56 core_rx_bq_daci_gc0            
+	0x8a57 core_rx_bq_dacq_gc0            
+	0x8a58 core_rx_bq_daci_gc1            
+	0x8a59 core_rx_bq_dacq_gc1            
+	0x8a5a core_rx_bq_daci_gc2            
+	0x8a5b core_rx_bq_dacq_gc2            
+	0x8a5c core_rx_bq_daci_gc3            
+	0x8a5d core_rx_bq_dacq_gc3            
+	0x8a5e core_rx_bq_daci_gc4            
+	0x8a5f core_rx_bq_dacq_gc4            
+	0x8a60 core_rx_bq_daci_gc5            
+	0x8a61 core_rx_bq_dacq_gc5            
+	0x8a62 core_rx_bq_daci_gc6            
+	0x8a63 core_rx_bq_dacq_gc6            
+	0x8a64 core_rx_bq_daci_gc7            
+	0x8a65 core_rx_bq_dacq_gc7            
+	0x8a66 core_rx_bq_daci_gc8            
+	0x8a67 core_rx_bq_dacq_gc8            
+	0x8a68 core_rx_tiai_dcoc_force        
+	0x8a69 core_rx_tiaq_dcoc_force        
+	0x8a6a core_rx_bq_daci_force          
+	0x8a6b core_rx_bq_dacq_force          
+	0x8a6c core_rx_bq_bw_cal              
+	0x8a6d core_rx_bq_cfg0                
+	0x8a6e core_rx_bq_cfg1                
+	0x8a6f core_rx_bq_cfg2                
+	0x8a70 core_rx_bq_cfg3                
+	0x8a71 core_rx_bq_cfg4                
+	0x8a72 core_rx_lna_cfg0               
+	0x8a73 core_rx_lna_cfg1               
+	0x8a74 core_rx_lna_cfg2               
+	0x8a75 core_rx_lna_cfg3               
+	0x8a76 core_rx_mixer_cfg0             
+	0x8a77 core_rx_mixer_cfg1             
+	0x8a78 core_rx_mixer_cfg2             
+	0x8a79 core_rx_adc_clk_cfg            
+	0x8a7a core_rx_iqadc_cfg              
+	0x8a7b core_rx_rssiadc_cfg            
+	0x8a7c core_syn_state0                
+	0x8a7d core_syn_state1                
+	0x8a7e core_syn_bias_cfg              
+	0x8a7f core_syn_cdb_cfg0              
+	0x8a80 core_syn_cdb_cfg1              
+	0x8a81 core_syn_cdb_cfg2              
+	0x8a82 core_syn_cdb_cfg3              
+	0x8a83 core_syn_pfd_lkd_cfg           
+	0x8a84 core_syn_cp_lpf_cfg            
+	0x8a85 core_syn_loopdiv_dsm_cfg       
+	0x8a86 core_syn_afc_cfg0              
+	0x8a87 core_syn_afc_cfg1              
+	0x8a88 core_syn_afc_cfg2              
+	0x8a89 core_syn_afc_cfg3              
+	0x8a8a core_syn_aac_cfg0              
+	0x8a8b core_syn_aac_cfg1              
+	0x8a8c core_logen_process_cal0        
+	0x8a8d core_logen_process_cal1        
+	0x8a8e core_logen_process_cal2        
+	0x8a8f core_logen_process_cal3        
+	0x8a90 core_logen_process_cal4        
+	0x8a91 core_logen_process_cal5        
+	0x8a92 core_logen_process_cal6        
+	0x8a93 core_logen_process_cal7        
+	0x8a94 core_logen_process_cal8        
+	0x8a95 core_logen_process_ca9         
+	0x8a96 core_logen_process_ca10        
+	0x8a97 core_gpadc_ctrl                
+	0x8a98 core_tx_abb_cfg                
+	0x8a99 core_tx_mixer_cfg0             
+	0x8a9a core_tx_mixer_cfg1             
+	0x8a9b core_tx_mixer_cfg2             
+	0x8a9c core_tx_pa_cfg                 
+	0x8a9d core_syn_tst_ctrl              
+	0x8a9e core_ana_test_control0         
+	0x8a9f core_ana_test_control1         
+
+
+	0x8c00 core_usb_config
+	0x8c01 core_usb_int_mask
+	0x8c02 core_usb_addr
+	0x8c03 core_usb_rx_saddr
+	0x8c05 core_usb_rx_eaddr
+	0x8c07 core_usb_rxptr
+	0x8c09 core_usb_tx_saddr0
+	0x8c0b core_usb_tx_saddr1
+	0x8c0d core_usb_tx_saddr2
+	0x8c0f core_usb_tx_saddr3
+	0x8c11 core_usb_hmode
+	0x8c18 core_usb_trig
+	0x8c19 core_usb_stall
+	0x8c1a core_usb_clear		//7bit reset   
+	0x8c20 core_usb_rx_wptr
+	0x8c22 core_usb_stall_status
+	0x8c23 core_usb_status
+	0x8c24 core_usb_txbusy
+	0x8c25 core_usb_sof_cntl
+	0x8c26 core_usb_sof_cnth
+	
+)
+(
+4 rx_freq_offset
+2 tx_freq_offset
+)
+(
+/* bit difinitions */
+  4 whiteoff_bit
+  6 clksel_rc
+  1 clksel_dpll_24M
+  5 clksel_dpll
+  4 clksel_xtal
+  5 adc_rccal
+  0 bpf_rccal
+  1 demod_clkoff
+)
+(
+  2 reload_code
+  3 gpio_latch
+  4 enable_retmem
+  7 cold_wake
+  0xef isogate_mask
+  0xe0 cs_mask
+)
+(
+  0x01 spid2_start
+  0x02 spid_start
+  0x04 iicd_start
+  0x08 lock_otp
+  0x10 x_sethi
+  0x20 y_sethi
+  0x40 z_sethi
+  0x80 ccnt_start
+)
+(
+  0 otpd_crcok
+  1 otpd_done
+  2 spid_crcok
+  3 spid_done
+  4 iicd_crcok
+  5 iicd_done
+  6 iicd_ack
+)
+(
+1 UART_STATUS_TX_BUSY
+2 UART_STATUS_RX_FIFO_EMPTY
+3 UART_STATUS_RX_FIFO_FULL
+4 UARTB_STATUS_TX_BUSY
+5 UARTB_STATUS_RX_FIFO_EMPTY
+6 UARTB_STATUS_RX_FIFO_FULL
+)
+(//core_uart_clksel
+0 UART_CLOCK_SELECT_BIT
+0xFE UART_CLOCK_SELECT_CRYSTAL
+0x01 UART_CLOCK_SELECT_DPLL
+
+24000000 uart_clock_freq_24M
+48000000 uart_clock_freq_48M
+)
+(//bit map of core_uart_ctrl
+0 BIT_UART_CONTROL_ENABLE
+1 BIT_UART_CONTROL_PARITY
+2 BIT_UART_CONTROL_DATA_LENGTH
+3 BIT_UART_CONTROL_STOP_BIT_SIZE
+4 BIT_UART_CONTROL_FLOW_CONTROL
+5 BIT_UART_CONTROL_7816_SMART_CARD_PROTOCOL
+6 BIT_UART_CONTROL_HALF_DUPLEX_SINGLE_LINE_UART
+7 BIT_UART_CONTROL_RATE_BAUD_SETTING
+)
+(//FUN of core_uart_ctrl
+0x01 FUN_UART_CONTROL_ENABLE
+0x06 FUN_UART_CONTROL_PARITY_ODD
+0x04 FUN_UART_CONTROL_PARITY_EVEN
+0x08 FUN_UART_CONTROL_STOP_2BIT
+0x00 FUN_UART_CONTROL_STOP_1BIT
+0x10 FUN_UART_CONTROL_FLOW_CONTROL_ENABLE
+0x20 FUN_UART_CONTROL_7816_SMART_CARD_PROTOCOL
+0x40 FUN_UART_CONTROL_HALF_DUPLEX_SINGLE_LINE_UART
+0x80 FUN_UART_CONTROL_SETTING_RATE_BAUD
+)
+(//bit map of core_nec_control
+0x00 BIT_NEC_ENABLE
+0x01 BIT_NEC_CLK_DIVIDE_NUM
+)
+(//FUN  of core_nec_control
+0x01 FUN_NEC_ENABLE
+0x30 FUN_NEC_CLK_DIVIDE_24	//24M , 
+)
+0x8b uart_ctrl_default //BCSP
+0x81 uart_ctrl_h4 //H4
+0x81 uart_ctrl_normal
+0x91 uart_ctrl_5line
+0x81 uart_ctrl_57600
+2 uart_baud_len
+0x00 uartclk_crystal
+0x01 uartclk_dpll
+0x1a0 uart_baud_115200
+0xbb uart_baud_256000
+0x340 uart_baud_57600
+0x34 uart_baud_921600
+0x9c4 uart_baud_9600
+(
+	0 CLOCK_OFF_AUTH_ROM
+	1 CLOCK_OFF_UC_ROM
+	2 CLOCK_OFF_DEBUG_UART
+	3 CLOCK_OFF_SCHED_RAM
+	4 CLOCK_OFF_TRANCE_FIFO
+	5 CLOCK_OFF_CORDIC
+	6 CLOCK_OFF_OTPD
+	7 CLOCK_OFF_I2C
+	8 CLICK_OFF_8051
+	9 CLOCK_OFF_KEYSCAN
+	0x0a CLOCK_OFF_USB
+	0x0b CLOCK_OFF_QDECODER
+	0x0c CLOCK_OFF_SPI
+	0x0d CLOCK_OFF_PWM
+	0x0e CLOCK_OFF_UARTB
+	0x0f CLOCK_OFF_UART
+)
+(
+  0 gpcfg_input
+  2 gpcfg_qspi_ncs
+  3 gpcfg_qspi_sck
+  4 gpcfg_qspi_io0
+  5 gpcfg_qspi_io1
+  6 gpcfg_qspi_io2
+  7 gpcfg_qspi_io3
+  8 gpcfg_uart_txd
+  9 gpcfg_uart_rxd
+  10 gpcfg_uart_rts
+  11 gpcfg_uart_cts
+  12 gpcfg_uartb_txd
+  13 gpcfg_uartb_rxd
+  14 gpcfg_uartb_rts
+  15 gpcfg_uartb_cts
+  16 gpcfg_pwm_out0
+  17 gpcfg_pwm_out1
+  18 gpcfg_pwm_out2
+  19 gpcfg_pwm_out3
+  20 gpcfg_pwm_out4
+  21 gpcfg_pwm_out5
+  22 gpcfg_pwm_out6
+  23 gpcfg_pwm_out7
+  24 gpcfg_nec_input
+  25 gpcfg_ac_input
+  31 gpcfg_spid_miso
+  32 gpcfg_spid_ncs
+  33 gpcfg_spid_sck
+  34 gpcfg_spid_mosi
+  35 gpcfg_spid_sdio
+  
+  39 gpcfg_spid2_miso
+  40 gpcfg_spid2_ncs
+  41 gpcfg_spid2_sck
+  42 gpcfg_spid2_mosi
+  43 gpcfg_spid2_sdio
+  44 gpcfg_iic_scl
+  45 gpcfg_iic_sda
+  62 gpcfg_output_low
+  63 gpcfg_output_high
+  
+  0x00 gpcfg_high_impedance
+  0x40 gpcfg_pullup
+  0x80 gpcfg_pulldown
+  0xc0 gpcfg_no_ie
+)
+(
+0 CREDIT_DISABLE
+1 CREDIT_ENABLE
+)
+  (
+    0 RFCOMM_IDLE           /* before the responsor HS receive SABM            */
+    1 RFCOMM_W4_DLCI0_OPEN
+    2 RFCOMM_W4_DLCI0_CLOSE
+    3 RFCOMM_START_DLCI0    /* After respond SABM frame (DLCI=0)               */
+    4 RFCOMM_W4_DLCI_OPEN
+    5 RFCOMM_W4_DLCI_CLOSE
+    6 RFCOMM_DLCI_OPENED    
+   
+  )
+  (
+    1000  RFCOMM_T1         /* Used by SABM and DISC frames,100*20ms = 20s     */     
+    1000  RFCOMM_T2         /* Used by commands send in UIH on DLCI0,          */
+    300   RFCOMM_T3_RINGON  /* 6s for ring fade time                           */
+  
+  )
+  (
+    0x3F RSP_RX_SABM        /*responsor expect SABM from initiator             */
+    0x3F INI_TX_SABM
+	
+    0x73 RSP_TX_UA          /*responsor send out UA command                    */
+    0x73 UA_WFBIT_SET	    /* UA control field with F bit set                 */
+	
+    0xEF RSP_RX_UIH         /*responsor expect UIH from initiator              */
+
+    0xEF RSP_TX_UIH         /*responsor send UIH to initiator                  */
+     
+    0x1F RSP_TX_DM          /*responsor send DM to initiator                   */
+    0x1F DM_WFBIT_SET       /* DM control field with F bit set                 */
+    0x0F DM_WFBIT_CLEAR     /* DM control field with F bit clear               */
+
+    0x53 RSP_RX_DISC        /*responsor expect DISC from initiator             */
+    0x53 INI_TX_DISC	    /*initiator send DISC control type command         */
+     
+    0xFF RSP_RX_UIH_WDATA   /*UIH data with credit flow control info           */
+    
+    
+  )
+  (
+    0x83 PN_COMMAND           /* Bit 0 EA C/R Type = 000001         */
+    0x81 PN_RESPONSOR         /* Bit 0 EA C/R Type = 000001         */
+    
+    0xE3 MSC_COMMAND          /* Bit 0 EA C/R Type = 000111         */
+    0xE1 MSC_RESPONSOR
+ 
+    0x13 NSC_COMMAND          /* Bit 0 EA C/R Type = 001000         */
+    0x11 NSC_RESPONSOR        /* Bit 0 EA C/R Type = 001000         */
+
+    0x23 TEST_COMMAND         /* Bit 0 EA C/R Type = 000111         */
+    0x21 TEST_RESPONSOR 
+    
+    0x93 RPN_COMMAND          /* Bit 0 EA C/R Type = 001001         */
+    0x91 RPN_RESPONSOR 
+    
+    0x53 RLS_COMMAND          /* Bit 0 EA C/R Type = 001010         */
+    0x51 RLS_RESPONSOR 
+
+    0xA3 FCON_COMMAND         /* Bit 0 EA C/R Type = 000101         */
+    0xA1 FCON_RESPONSOR 
+    
+    0x63 FCOFF_COMMAND        /* Bit 0 EA C/R Type = 000110         */
+    0x61 FCOFF_RESPONSOR 
+    	
+    0x03 RLS_OVERRUN
+    0x05 RLS_PARITY_ERROR
+    0x09 RLS_FRAMING_ERROR
+  )
+  (
+    0x01 RFCOMM_CREDIT
+  )
+  (
+  	0x007f RFCOMM_MAX_FRAME_SIZE
+  )
+  (
+    0  LENGTH_ZERO
+    
+    6  LENGTH_OK
+    7  LENGTH_HOT
+    8  LENGTH_RING
+    9  LENGTH_ERROR
+    9  LENGTH_AGVOL_ONEBYTE
+    10 LENGTH_AGVOL_TWOBYTE
+    10 LENGTH_VOL_ONEBYTE
+    11 LENGTH_VOL_TWOBYTE
+    12 LENGTH_BRSF
+    13 LENGTH_PLUS_CIEV
+    15 LENGTH_INBANDRING
+    14 LENGTH_CIEV_CALL
+    17 LENGTH_CRING
+    20 LENGTH_BRSF_OK
+    24 LENGTH_CIND0
+    28 LENGTH_CIEV_TWO
+    32 LENGTH_CIND_OK
+    59 LENGTH_CIND_OK2
+    100 LENGTH_DISCARD
+  )
+  (
+    0 RFCOMM_TX_W4BUF_FLAG    /* Wait for Tx buffer empty flag */
+    1 RFCOMM_CLOSE_LINK_FLAG
+  )
+  (
+    0 MSC_EA_BIT
+    1 MSC_FC_BIT
+    2 MSC_RTC_BIT
+    3 MSC_RTR_BIT
+    6 MSC_IC_BIT
+    7 MSC_DV_BIT
+  )
+  (
+    0x0C OVERRUN_ERROR
+    0x0A PARITY_ERROR
+    0x09 FRAMING_RERROR
+  )
+  (
+    0x00 BITS2400
+    0x01 BITS4800
+    0x02 BITS7200
+    0x03 BITS9600
+    0x04 BITS19200
+    0x05 BITS38400
+    0x06 BITS57600
+    0x07 BITS115200
+    0x08 BITS230400
+  )
+  (
+    0x00 DATABITS5
+    0x01 DATABITS6
+    0x02 DATABITS7
+    0x03 DATABITS8
+  )
+  (
+    0    ONESTOP
+    1    ONEHALFSTOP
+  )
+  (
+    0    ODDPARITY
+    1    EVENPARITY
+    2    MARKPARITY
+    3    SPACEPARITY
+    
+    7    PARITY_ENABLE_BIT
+  )
+  (
+     0   BIT_RATE_MASK_BIT
+     1   DATA_BITS_MASK_BIT
+     2   STOP_BITS_MASK_BIT
+     3   PARITY_MASK_BIT
+     4   PARITY_TYPE_MASK_BIT
+     5   XON_CHAR_MASK_BIT
+     6   XOFF_CHAR_MASK_BIT
+  )
+  (
+     0   XON_XOFF_INPUT_MASK_BIT
+     1   XON_XOFF_OUTPUT_MASK_BIT
+     2	 RTR_INPUT_MASK_BIT
+     3   RTR_OUTPUT_MASK_BIT
+     4   RTC_INPUT_MASK_BIT
+     5   RTC_OUTPUT_MASK_BIT
+
+  )
+  (
+    0 SEND_MSC_CMD_REQ_FLAG
+    1 SEND_AT_CKPD_REQ_FLAG
+    2 SEND_RING_REQ_FLAG
+    3 SEND_SABM_CMD
+  )
+  (
+    0 MSC_CDM_ALREADY_SEND_FLAG
+    1 CREDIT_FLOW_USED_FLAG
+    2 DONT_EMBEDDED_CREDIT_FLAG 
+    3 MSC_EXCHANGE_DONE_FLAG
+    4 FLOW_CONTROL_FCOFF_BIT            /* set when receive FCoff, clear when FCon   */
+  )
+  (
+    1 FLOW_CONTROL_FC_BIT		/* received MSC FC bits                      */
+  
+  )
+  (
+    0 ADDR_EA_BIT
+    1 ADDR_CR_BIT
+    2 ADDR_D_BIT
+  )
+(
+    1 SPP_SLAVE_CHANNEL
+    7 OBEX_SERVER_CHANNEL
+    8 HF_SERVER_CHANNEL 
+    9 HS_SERVER_CHANNEL
+)
+(
+	0 USING_HF_PROFILE
+	1 USING_HS_PROFILE
+	2 USING_SPP_PROFILE
+)
+(
+	0x3f RFCOMM_FRAME_TYPE_SABM
+	0x73 RFCOMM_FRAME_TYPE_UA
+	0xEF RFCOMM_FRAME_TYPE_UIH
+	0xFF RFCOMM_FRAME_TYPE_UIH_CREDITS
+	0x53 RFCOMM_FRAME_TYPE_DISCONN
+)
+(
+	0x41 UIH_PARAM_NEG_CMD
+	0x40 UIH_PARAM_NEG_RES
+	0x49 UIH_PARAM_CMD_REMOVE_PORT
+	0x71 UIH_MODEM_STATUS_CMD
+	0x70 UIH_MODEM_STATUS_RES
+)
+(
+	0 RFCOMM_ADDRESS_EXT_LEN
+	1 RFCOMM_ADDRESS_CR
+	2 RFCOMM_ADDRESS_DERECTION
+
+
+)
+	(                                   
+	0 RFCOMM_CHANNEL_STATE_PN_CMD
+	1 RFCOMM_CHANNEL_STATE_PN_RES
+	2 RFCOMM_CHANNEL_STATE_SABM
+	3 RFCOMM_CHANNEL_STATE_UA
+	4 RFCOMM_CHANNEL_STATE_SND_MS_CMD
+	5 RFCOMM_CHANNEL_STATE_RCV_MS_CMD
+	6 RFCOMM_CHANNEL_STATE_SND_MS_RES
+	7 RFCOMM_CHANNEL_STATE_RCV_MS_RES
+	0xff RFCOMM_CHANNEL_SETUP_COMPLETE
+	) 
+	(
+	1 MORE_PKT_MSC_CMD_HF
+	2 MORE_PKT_MSC_CMD_HS
+	3 MORE_PKT_MSC_CMD_SPP
+	4 MORE_PKT_MSC_CMD_OBEX
+	)
+	(
+	127 RFCOMM_MALLOC_SIZE
+	)(
+0 AGORHS_SERVICE
+1 GENAUDIO_SERVICE
+2 HANDSFREE_SERVICE
+)
+(
+0 ATTRIBUTEID_0000
+1 ATTRIBUTEID_0001
+2 ATTRIBUTEID_0004
+3 ATTRIBUTEID_0009
+4 ATTRIBUTEID_0100
+5 ATTRIBUTEID_0302
+6 ATTRIBUTEID_0006
+7 ATTRIBUTEID_0311
+)
+(
+0x01 SDP_ERROR_RES
+0x02 SDP_SEARCH_REQ
+0x03 SDP_SEARCH_RES
+0x04 SDP_ATTRIBUTE_REQ
+0x05 SDP_ATTRIBUTE_RES
+0x06 SDP_SEARCHATTRIB_REQ
+0x07 SDP_SEARCHATTRIB_RES
+)
+0x2600 sdp_max_amount
+250 SDP_MALLOC_SIZE
+0x6e sdp_tid_spp //any number
+(
+0x1f11 SDP_UUID_HS_AUDIO_GATEWAY
+)
+(
+0X09 SDP_ATTRIBUTE_ID
+0x0a SDP_ATTRIBUTE_RANGE
+)
+(//mem_sdp_handle_list
+7 SDP_MAX_HANDLE_NUMBER
+)
+(
+  0x00   SP_FLAG_STANDBY
+  0x01   SP_FLAG_COMMIT
+  0x02   LE_SP_FLAG_COMMIT_256
+
+)
+(
+  0x00   SP_CALC_STANDBY
+  0x01   SP_CALC_PUBKEY
+  0x02   SP_CALC_DHKEY
+  0x03   SP_CALC_PUBKEY_256
+  0x04   SP_CALC_DHKEY_256
+)
+(
+  0x00   SP_STAT_NULL
+  0x01   SP_STAT_KEY_RECV
+  0x02   SP_STAT_KEY_GENERATE
+  0x03   SP_STAT_KEY_SEND
+  0x04   SP_STAT_COMMIT_CALC
+  0x05   SP_STAT_COMMIT_SEND
+  0x06   SP_STAT_RANDOM_RECV
+  0x07   SP_STAT_RANDOM_SEND
+  0x08   SP_STAT_CONFIRM_RECV
+  0x09   SP_STAT_CONFIRM_CHECK
+  0x0A   SP_STAT_CONFIRM_CALC
+  0x0B   SP_STAT_CONFIRM_SEND
+  0x0C   SP_STAT_LINK_KEY_CALC
+  0x0F   SP_STAT_DONE
+  0x10   SP_STAT_FEATURE_EXT_SEND
+  0x11   SP_STAT_GKEY_CALC
+  /*simple pairing master only*/
+  0x12   SP_MASTER_STAT_START_SKIP
+  0x13   SP_MASTER_STAT_START_DONE
+  0x14   SP_STAT_COMMITMENT_COMPARE
+  0x15   SP_STATE_END
+)
+(
+  0x00   SP_KEY_INVALID
+  0x01   SP_KEY_VALID
+  0x03   SP_KEY_VALID_256
+
+)
+(
+  0x01  ENCAPSULATED_MAJOR_TYPE
+  0x02  ENCAPSULATED_MINOR_TYPE_P256
+  0x40  ENCAPSULATED_LEN_P256
+)
+(
+  0x01  ENCAPSULATED_MAJOR_TYPE_P192
+  0x01  ENCAPSULATED_MINOR_TYPE_P192
+  0x30  ENCAPSULATED_LEN_P192
+)
+(
+  0x00  SIMPLE_PAIRING_ENABLE
+  0x01  ENCRYPTION_PAUSE_ENABLE
+  0x02  EXTENDED_INQUIRY_RESPOSE_ENABLE
+  0x03  SNIFF_SUBRATING_ENABLE
+)
+(
+  0x00 DEFAULT_STATEMACHINE
+  0x01 LOCAL_STATEMACHINE
+)
+(
+ 0x00 DEFALT_PAIRING_AUTH
+ 0x01 PAIRING_AUTH
+)
+(
+0 SECURE_CONNECTIONS_LE_BIT
+1 SECURE_CONNECTIONS_BR_BIT
+)
+(
+1 SSP_MODE_SSP_PIN_FLAG
+2 SSP_MODE_PASSKEY_ENTRY_FLAG
+3 SSP_MODE_JUST_WORK_FLAG
+)
+(
+7 FLAG_MODE_SSP_PIN_REVICEVE_COMPARISON_BIT
+6 FLAG_MODE_SSP_PIN_RECIEVE_DHKEY_BIT
+0 FLAG_MODE_SSP_PIN_COMPARISON_RESULT_BIT
+)
+(
+1 FLAG_PAIRING_STATE_PAIRING
+0 FLAG_PAIRING_STATE_NOT_PAIRING
+)
+(//LMP_IO_CAP_REQ & LMP_IO_CAP_RES
+//IO capability
+0x00 IO_CAPABILITY_DISPLAY_ONLY
+0x01 IO_CAPABILITY_DISPLAY_YESNO
+0x02 IO_CAPABILITY_KEYBOARD_ONLY
+0x03 IO_CAPABILITY_NO_INPUT_NO_OUTPUT
+
+//oob data Present
+0x00 OOB_DATA_PRESENT_NOT_PRESENT
+0x01 OOB_DATA_PRESENT_P192_DATA
+0x02 OOB_DATA_PRESENT_P256_DATA
+0x03 OOB_DATA_PRESENT_P192_P256_DATA
+// authentication requirements
+0x00 AUTH_REQ_MITM_PROTECTION_NOT_REQUIRED_NO_BONDING
+0x01 AUTH_REQ_MITM_PROTECTION_REQUIRED_NO_BONDING
+0x02 AUTH_REQ_MITM_PROTECTION_NOT_REQUIRED_DEDICATED_BONDING
+0x03 AUTH_REQ_MITM_PROTECTION_REQUIRED_DEDICATED_BONDING
+0x04 AUTH_REQ_MITM_PROTECTION_NOT_REQUIRED_GENERAL_BONDING
+0x05 AUTH_REQ_MITM_PROTECTION_REQUIRED_GENERAL_BONDING
+)
+(
+0 UI_STATE_BT_CONNECTED
+1 UI_STATE_BT_SETUP_COMPLETE
+2 UI_STATE_BT_HID_CONN
+3 UI_STATE_BT_HID_HANDSHAKE
+4 UI_STATE_BT_SPP_CONN
+5 UI_STATE_BT_SNIFF
+6 UI_STATE_BT_DISCOVERY
+7 UI_STATE_BT_RECONNECT
+8 UI_STATE_BT_SLAVE_ROLE
+9 UI_STATE_BLE_CONNECTED
+10 UI_STATE_BLE_WRITE_RCV
+11 UI_STATE_BLE_ADV
+12 UI_STATE_BTN_DOWN
+)
+(
+1 UI_STATE_SPP_NL_AUTO_DISCOVER
+
+)
+   (
+    0 UI_HEADSET_DISCONNECT
+    1 UI_HEADSET_IDLE                   /* before the responsor HS receive SABM      */
+    2 UI_HEADSET_W4CONNECT
+    3 UI_HEADSET_RINGING
+    4 UI_HEADSET_CONNECTED
+    5 UI_HEADSET_PARING
+  )
+(
+  0 UI_BB_OFF
+  1 UI_BB_IDLE
+  2 UI_BB_DISCOVERY
+  3 UI_BB_CONNECTED_ACTIVE_NO_SCO
+  4 UI_BB_CONNECTED_ACTIVE_WITH_SCO
+  5 UI_BB_CONNECTED_ACTIVE_WAIT_SNIFF
+  6 UI_BB_CONNECTED_SNIFF
+  7 UI_BB_RECONNECT
+  8 UI_BB_CONNECTED_SNIFF_WITH_SCO
+)
+  (
+    5 NO_IDLE_TURN_OFF
+    7 ANSWER_RING_FLAG               /* 1 Answer,0 no*/
+  )
+  (
+    0  UI_HS_PAIRING 
+    2  UI_REQ_CLOSE_RFCOMM
+    3  UI_LINK_LOST
+    4  UI_REQ_OPEN_SCO
+    6  UI_REQ_CLOSE_SCO
+  )
+  (
+    0  ANSWER_RING_BIT
+    0  AG_SEND_RING_BIT
+    1  VOL_UP_BIT
+    2  VOL_DOWN_BIT
+    3  INI_CALL_BIT
+    4  DAIL_LAST_CALL
+    5  END_CALL_BIT
+    6  NOKIA_VOICE_ACTIVE 
+    7  REJECT_CALL_BIT
+  )
+(
+  0 NO_RECONNECTION
+  1 RECONNECT_HID
+  2 RECONNECT_HF
+  3 RECONNECT_HS
+  4 RECONNECT_HID_HF
+  5 RECONNECT_HID_HS
+)
+(
+0 BT_CMD_STANDBY
+1 BT_CMD_START_DISCOVERY
+2 BT_CMD_STOP_DISCOVERY
+3 BT_CMD_RECONNECT
+4 BT_CMD_DISCONNECT
+5 BT_CMD_ENTER_SNIFF
+6 BT_CMD_EXIT_SNIFF
+7 BT_CMD_ENTER_SNIFF_SUBRATING
+8 BT_CMD_EXIT_SNIFF_SUBRATING
+9 BT_CMD_SNIFF_TEST
+10 BT_CMD_SET_PIN_CODE
+11 BT_CMD_START_INQUIRY
+12 BT_CMD_STOP_INQUIRY
+13 BT_CMD_START_ADV
+14 BT_CMD_STOP_ADV
+15 BT_CMD_START_DIRECT_ADV
+16 BT_CMD_STOP_DIRECT_ADV
+17 BT_CMD_LE_DISCONNECT
+18 BT_CMD_LE_UPDATE_CONN
+19 BT_CMD_LED_OFF
+20 BT_CMD_LED_ON
+21 BT_CMD_LED_BLINK
+22 BT_CMD_LE_START_CONN
+23 BT_CMD_LE_START_SCAN
+24 BT_CMD_LE_STOP_SCAN
+25 BT_CMD_ENTER_HIBERNATE
+27 BT_CMD_LE_SMP_SECURITY_REQUEST
+29 BT_CMD_ROLE_SWITCH
+30 BT_CMD_BB_RECONN_CANCEL
+31 BT_CMD_STORE_RECONN_INFO_LE
+32 BT_CMD_STORE_RECONN_INFO_BT
+33 BT_CMD_DHKEY_NOT_ACCEPT
+34 BT_CMD_START_24G
+35 BT_CMD_STOP_24G
+36 BT_CMD_PAIR_24G
+37 BT_CMD_STORE_RECONN_INFO
+)
+(
+0x00 BT_EVT_NULL
+0x01 BT_EVT_BB_CONNECTED
+0x02 BT_EVT_BB_DISCONNECTED
+0x03 BT_EVT_RECONN_STARTED
+0x04 BT_EVT_RECONN_FAILED
+0x05 BT_EVT_SETUP_COMPLETE
+0x06 BT_EVT_HID_CONNECTED
+0x07 BT_EVT_HID_DISCONNECTED
+0x08 BT_EVT_SPP_CONNECTED
+0x09 BT_EVT_SPP_DISCONNECTED
+0x0A BT_EVT_PINCODE_REQ
+0x0B BT_EVT_ENTER_SNIFF
+0x0C BT_EVT_EXIT_SNIFF
+0x0D BT_EVT_ENTER_SNIFF_SUB
+0x0E BT_EVT_EXIT_SNIFF_SUB
+0x0F BT_EVT_DISCOVERY_STOPED
+0x10 BT_EVT_BUTTON_LONG_PRESSED
+0x12 BT_EVT_HID_HANDSHAKE
+0X13 BT_EVT_RECONN_PAGE_TIMEOUT
+0x14 BT_EVT_LE_CONNECTED
+0X15 BT_EVT_LE_DISCONNECTED
+0x16 BT_EVT_ML2CAP_CONN_REFUSED
+0x17 BT_EVT_BUTTON_ENTER_HIBERNATE
+0x18 BT_EVT_LINKKEY_GENERATE
+0x19 BT_EVT_SWITCH_NOT_ACCEPT
+0x20 BT_EVT_SWITCH_ACCEPT
+0x21 BT_EVT_SNIFF_NOT_ACCEPT
+0x22 BT_EVT_SNIFF_ACCEPT
+0x23 BT_EVT_UNSNIFF_ACCEPT
+0x24 BT_EVT_UNSNIFF_NOT_ACCEPT
+0x25 BT_EVT_BUTTON_ADJUST_DPI
+0x26 BT_EVT_SEND_UNSNIFF_ACCEPT
+0x27 BT_EVT_VIRTUAL_CABLE_UNPLUG
+0x28 BT_EVT_LE_WRITE_REQUEST
+0x29 BT_EVT_LE_ENC_INFO
+0x2a BT_EVT_SWITCH_FAIL_MASTER
+0x2b BT_EVT_SWITCH_SUCCESS_MASTER
+0x2c BT_EVT_BUTTON_DOWN
+0x2d BT_EVT_BUTTON_UP
+0x2e BT_EVT_REMOTE_UNSNIFF
+0x30 BT_EVT_LE_PAIRING_FAIL
+0x31 BT_EVT_LE_PAIRING_SUCCESS
+0x32 BT_EVT_LE_START_ENC
+0X33 BT_EVT_LE_PAUSE_ENC
+0X34 BT_EVT_LE_TK_GENERATE
+0x35 BT_EVT_BT_GKEY_GENERATE
+0x36 BT_EVT_BT_GET_PASSKEY
+0x37 BT_EVT_BT_PAIRING_FAIL
+0x38 BT_EVT_BT_PAIRING_SUCCESS
+0x39 BT_EVT_24G_PAIRING_COMPLETE
+0x3a BT_EVT_24G_ATTEMPT_FAIL
+0x3b BT_EVT_LE_GKEY_GENERATE
+0x3c BT_EVT_24G_ATTEMPT_SUCCESS
+0x3d BT_EVT_STORE_NVRAM
+0x3e BT_EVT_LE_PAIRING_COMPLETE
+0x3F BT_EVT_LE_RECONNECT_COMPLETE
+0x40 BT_EVT_LE_PARSE_CONN_PAPA_UPDATE_RSP
+0x41 BT_EVT_LE_LTK_LOST
+0x42 BT_EVT_LE_UPDATE_PHY
+0x43 BT_EVT_LE_GET_PASSKEY
+0x44 BT_EVT_LE_PARSE_CONN_PARAM_ACCEPTED
+)
+(
+0 OFF
+1 ON
+)
+(
+    0 MEM_UNLOCK
+    1 MEM_LOCK
+)
+(
+    0 UI_USER_DATA_FLAG
+    1 UI_WII_WAITING_SLEEP
+    2 UI_KEYBOARD_SNIFF_SKIP
+)
+(
+    0 MTYPE_HID_DEFAULT
+    1 MTYPE_HID_SSP
+    2 MTYPE_SPP
+)
+	(	
+	0x01 RECIEVE_SDP_CONN_RES
+	0x02 RECIEVE_SDP_CFG_REQ
+	0x03 RECIEVE_SDP_CFG_RES
+	0x04 RECIEVE_RFCOMM_CONN_RES
+	0x05 RECIEVE_RFCOMM_CFG_REQ
+	0x06 RECIEVE_RFCOMM_CFG_RES
+	0x07 RECIEVE_HID_CTRL_CONN_RES
+	0x08 RECIEVE_HID_CTRL_CFG_REQ
+	0x09 RECIEVE_HID_CTRL_CFG_RES
+	0x0A RECIEVE_HID_INT_CONN_RES
+	0x0B RECIEVE_HID_INT_CFG_REQ
+	0x0C RECIEVE_HID_INT_CFG_RES
+	0x0D RECIEVE_AVCTP_CONN_RES
+	0x0E RECIEVE_AVCTP_CFG_REQ
+	0x0F RECIEVE_AVCTP_CFG_RES
+	0x10 RECIEVE_AVDTP_SIGNAL_CONN_RES
+	0x11 RECIEVE_AVDTP_SIGNAL_CFG_REQ
+	0x12 RECIEVE_AVDTP_SIGNAL_CFG_RES
+	0x13 RECIEVE_AVDTP_MEDIA_CONN_RES
+	0x14 RECIEVE_AVDTP_MEDIA_CFG_REQ
+	0x15 RECIEVE_AVDTP_MEDIA_CFG_RES
+	0x16 RECIEVE_SS_REASULT_HS                  
+	0x17 RECIEVE_SS_REASULT_HF                  
+	0x18 RECIEVE_SS_REASULT_AVTARG		          
+	0x19 RECIEVE_SS_REASULT_OBEX		            
+	0x1A RECIEVE_DLCI0_UA
+	0x1B RECIEVE_HS_PARAM_NEG_RES
+	0x1C RECIEVE_HS_UA
+	0x1D RECIEVE_HS_MODEM_STATUS_RES
+	0x1E RECIEVE_HS_MODEm_STATUS_CMD
+	0x1F RECIEVE_HF_PARAM_NEG_RES   
+	0x20 RECIEVE_HF_UA              
+	0x21 RECIEVE_HF_MODEM_STATUS_RES
+	0x22 RECIEVE_HF_MODEm_STATUS_CMD 
+	0x23 RECIEVE_OBEX_PARAM_NEG_RES     
+	0x24 RECIEVE_OBEX_UA              
+	0x25 RECIEVE_OBEX_MODEM_STATUS_RES
+	0x26 RECIEVE_OBEX_MODEm_STATUS_CMD    
+	0x27 RECIEVE_SPP_PARAM_NEG_RES   
+	0x28 RECIEVE_SPP_UA              
+	0x29 RECIEVE_SPP_MODEM_STATUS_RES
+	0x2A RECIEVE_SPP_MODEm_STATUS_CMD
+	0x2b RECIEVE_SDP_DISCONN_RES
+	)
+	(
+	0 UPPERSM_RP_IDLE
+	1 UPPERSM_RP_SDP_CONN
+	2 UPPERSM_RP_SDP_CONN_WAIT
+	3 UPPERSM_RP_SDP_CFG
+	4 UPPERSM_RP_SDP_CFG_WAIT
+	5 UPPERSM_RP_SS_AVTARG
+	6 UPPERSM_RP_SS_AVTARG_WAIT
+	7 UPPERSM_RP_SS_OBEX
+	8 UPPERSM_RP_SS_OBEX_WAIT
+	9 UPPERSM_RP_SDP_DISCONN
+	10 UPPERSM_RP_SDP_DISCONN_WAIT
+	11 UPPERSM_RP_AVDTP_CONN_WAIT
+	12 UPPERSM_RP_AVCTP_CONN
+	13 UPPERSM_RP_AVCTP_CONN_WAIT
+	14 UPPERSM_RP_AVCTP_CFG
+	15 UPPERSM_RP_AVCTP_CFG_WAIT
+	16 UPPERSM_RP_OBEX_CMD_PN
+	17 UPPERSM_RP_OBEX_CMD_PN_WAIT
+	18 UPPERSM_RP_OBEX_SABM
+	19 UPPERSM_RP_OBEX_SABM_WAIT
+	20 UPPERSM_RP_OBEX_CMD_MS
+	21 UPPERSM_RP_OBEX_CMD_MS_WAIT
+	)
+	(		/*mem_upper_sm_reconn*/
+	0 UPPERSM_RECONN_IDLE		
+	1 UPPERSM_RECONN_SDP_CONN		
+	2 UPPERSM_RECONN_SDP_CONN_WAIT		
+	3 UPPERSM_RECONN_SDP_CFG		
+	4 UPPERSM_RECONN_SDP_CFG_WAIT		
+	5 UPPERSM_RECONN_SS_HS
+	6 UPPERSM_RECONN_SS_HS_WAIT
+	7 UPPERSM_RECONN_SS_HF
+	8 UPPERSM_RECONN_SS_HF_WAIT
+	9 UPPERSM_RECONN_SS_AVTARG		
+	10 UPPERSM_RECONN_SS_AVTARG_WAIT		    
+	11 UPPERSM_RECONN_SS_OBEX		            
+	12 UPPERSM_RECONN_SS_OBEX_WAIT		      
+	13 UPPERSM_RECONN_SDP_DISCONN		        
+	14 UPPERSM_RECONN_SDP_DISCONN_WAIT      
+	15 UPPERSM_RECONN_HID_CTRL_CONN		      
+	16 UPPERSM_RECONN_HID_CTRL_CONN_WAIT		
+	17 UPPERSM_RECONN_HID_CTRL_CFG		      
+	18 UPPERSM_RECONN_HID_CTRL_CFG_WAIT     
+	19 UPPERSM_RECONN_HID_INT_CONN		      
+	20 UPPERSM_RECONN_HID_INT_CONN_WAIT		  
+	21 UPPERSM_RECONN_HID_INT_CFG		        
+	22 UPPERSM_RECONN_HID_INT_CFG_WAIT      
+	23 UPPERSM_RECONN_RFCOMM_CONN		        
+	24 UPPERSM_RECONN_RFCOMM_CONN_WAIT		  
+	25 UPPERSM_RECONN_RFCOMM_CFG		        
+	26 UPPERSM_RECONN_RFCOMM_CFG_WAIT       
+	27 UPPERSM_RECONN_RFCOMM_SABM		        
+	28 UPPERSM_RECONN_RFCOMM_SABM_WAIT		  
+	29 UPPERSM_RECONN_SPP_CMD_PN		        
+	30 UPPERSM_RECONN_SPP_CMD_PN_WAIT		    
+	31 UPPERSM_RECONN_SPP_SABM		          
+	32 UPPERSM_RECONN_SPP_SABM_WAIT		      
+	33 UPPERSM_RECONN_SPP_CMD_MS		        
+	34 UPPERSM_RECONN_SPP_CMD_MS_WAIT       
+	35 UPPERSM_RECONN_HF_CMD_PN		          
+	36 UPPERSM_RECONN_HF_CMD_PN_WAIT		    
+	37 UPPERSM_RECONN_HF_SABM		            
+	38 UPPERSM_RECONN_HF_SABM_WAIT		      
+	39 UPPERSM_RECONN_HF_CMD_MS		          
+	40 UPPERSM_RECONN_HF_CMD_MS_WAIT        
+	41 UPPERSM_RECONN_AVDTPs_CONN		        
+	42 UPPERSM_RECONN_AVDTPs_CONN_WAIT		  
+	43 UPPERSM_RECONN_AVDTPs_CFG		        
+	44 UPPERSM_RECONN_AVDTPs_CFG_WAIT       
+	45 UPPERSM_RECONN_AVDTPm_CONN		        
+	46 UPPERSM_RECONN_AVDTPm_CONN_WAIT		  
+	47 UPPERSM_RECONN_AVDTPm_CFG		        
+	48 UPPERSM_RECONN_AVDTPm_CFG_WAIT       
+	49 UPPERSM_RECONN_AVCTP_CONN		        
+	50 UPPERSM_RECONN_AVCTP_CONN_WAIT		    
+	51 UPPERSM_RECONN_AVCTP_CFG		          
+	52 UPPERSM_RECONN_AVCTP_CFG_WAIT		    
+	53 UPPERSM_RECONN_OBEX_CMD_PN		        
+	54 UPPERSM_RECONN_OBEX_CMD_PN_WAIT		  
+	55 UPPERSM_RECONN_OBEX_SABM		          
+	56 UPPERSM_RECONN_OBEX_SABM_WAIT		    
+	57 UPPERSM_RECONN_OBEX_CMD_MS		        
+	58 UPPERSM_RECONN_OBEX_CMD_MS_WAIT     
+	59 UPPERSM_RECONN_SS_SPP
+	60 UPPERSM_RECONN_SS_SPP_WAIT
+	)
+	(/*mem_UI_profile_supported*/
+	0 support_HID
+	1 support_A2DP
+	2 support_AVRCP
+	3 support_HF
+	4 support_HS
+	5 support_PBAP
+	6 support_SPP
+	)
+	(
+	0 UPPERSM_SS_HS
+	1 UPPERSM_SS_HF
+	2 UPPERSM_SS_AVTARG
+	3 UPPERSM_SS_OBEX
+	)
+	(
+	160 UI_HUNDRED_MILLISECOND_TIME
+	0XFF UI_BUTTON_GPIO_DISABLE
+	)
+	(
+	0x01 UI_BB_INCONNECT
+	0x10 UI_BB_DISCONNECT
+	)
+(
+0x00 UI_BUTTON_STATE_DOWN
+0x01 UI_BUTTON_STATE_UP
+)
+(
+	0 IPC_CONTINUE_PROCESS
+	1 IPC_SKIP_CONTINUE_PROCESS
+)
+(//led style struct 
+0 		LED_OFFSET_LED_TYPE
+1 		LED_OFFSET_BLINK_COUNT
+2		LED_OFFSET_LED_GPIO
+3		LED_OFFSET_ON_TIME
+5		LED_OFFSET_OFF_TIME
+7 		LED_OFFSET_CB_LEDON
+9		LED_OFFSET_CB_LEDOFF
+11		LED_OFFSET_LENGTH
+)
+(//LED state
+0 UI_LED_STATE_BLINK_STOP
+1 UI_LED_STATE_BLINK_START
+2 UI_LED_STATE_LIGHTING
+3 UI_LED_STATE_DARKING
+4 UI_LED_STATE_BLINK_LIGHTING
+5 UI_LED_STATE_BLINK_DARKING
+
+0xFF LED_INFINITE_FLASH_NUM
+
+)
+(
+0x00 STANDARD_REQ
+0x01 CLASS_REQ
+0x02 MANUFACTURER_REQ
+)
+(
+0x00 GET_STATUS                // Code for Get Status
+0x01 CLEAR_FEATURE             // Code for Clear Feature
+0x03 SET_FEATURE              // Code for Set Feature
+0x05 SET_ADDRESS              // Code for Set Address
+0x06 GET_DESCRIPTOR           // Code for Get Descriptor
+0x07 SET_DESCRIPTOR           // Code for Set Descriptor(not used)
+0x08 GET_CONFIGURATION        // Code for Get Configuration
+0x09 SET_CONFIGURATION        // Code for Set Configuration
+0x0A GET_INTERFACE            // Code for Get Interface
+0x0B SET_INTERFACE            // Code for Set Interface
+0x0C SYNCH_FRAME              // Code for Synch Frame(not used)
+)
+(
+0x01 DSC_DEVICE               // Device Descriptor
+0x02 DSC_CONFIG               // Configuration Descriptor
+0x03 DSC_STRING               // String Descriptor
+0x04 DSC_INTERFACE            // Interface Descriptor
+0x05 DSC_ENDPOINT             // Endpoint Descriptor
+)
+(
+0x21 DSC_HID			      // HID Class Descriptor
+0x22 DSC_HID_REPORT			  // HID Report Descriptor
+)
+(
+0x80 IN_DEVICE                // Request made to device,
+                              // direction is IN
+0x00 OUT_DEVICE               // Request made to device,
+                              // direction is OUT
+0x81 IN_INTERFACE             // Request made to interface,
+                              // direction is IN
+0x01 OUT_INTERFACE            // Request made to interface,
+                              // direction is OUT
+0x82 IN_ENDPOINT              // Request made to endpoint,
+                              // direction is IN
+0x02 OUT_ENDPOINT             // Request made to endpoint,
+)
+(
+0x01 GET_REPORT 		       // Code for Get Report
+0x02 GET_IDLE				   // Code for Get Idle
+0x03 GET_PROTOCOL			   // Code for Get Protocol
+0x09 SET_REPORT				   // Code for Set Report
+0x0A SET_IDLE				   // Code for Set Idle
+0x0B SET_PROTOCOL			   // Code for Set Protocol
+0xF2 HID_REPORT_ID           
+64 EP0_PACKET_SIZE         
+6 EP1_PACKET_SIZE         
+16 HID_REPORT_SIZE         
+0x001B HID_REPORT_DESCRIPTOR_SIZE    
+)
+(
+0 TYPE_SIN		
+1 TYPE_ATAN	
+2 TYPE_MULT	
+3 TYPE_DIV		
+4 TYPE_ASIN	
+5 TYPE_SQRT	
+6 TYPE_COS		
+7 TYPE_TAN		 
+)
+(
+0 DFIFO0_IN_EMPTY
+1 DFIFO1_IN_EMPTY
+2 DFIFO2_IN_EMPTY
+3 DFIFO3_IN_EMPTY
+4 DFIFO0_OUT_EMPTY
+5 DFIFO1_OUT_EMPTY
+6 DFIFO2_OUT_EMPTY
+7 DFIFO3_OUT_EMPTY
+)
+(
+)
+(
+0 USB_STATUS_SETUP
+1 USB_STATUS_SUSPEND
+2 USB_STATUS_NAK
+3 USB_STATUS_RESET
+4 USB_STATUS_ACK
+5 USB_STATUS_RXREADY
+6 USB_STATUS_TXEMPTY
+6 USB_STATUS_RXEMPTY
+)
+(
+1 USB_GOT_REPORT_REQ
+2 USB_CONNECTED
+3 USB_SLEEP
+4 USB_RESUME
+5 USB_SETIDLE_1
+)
+(
+0x10 USB_EP1_KB
+0x20 USB_EP2_MS
+0x21 USB_EP2_MULTIKEY
+0x22 USB_EP2_SYSTEMKEY
+0x01 MAC_BOOT_MODE
+0x02 R_KEY
+0x03 LR_KEY
+)
+(
+0x01ba PC_GET_REPORT
+0x02ba PC_SET_REPORT
+0x0200 PC_SET_REPORT_bValue
+0x0000 PC_SET_REPORT_wIndex
+0x0001 PC_SET_REPORT_bLength
+0xba PC_REPORT_ID
+
+0x01 PC_GET_DATA
+0x00 PC_GET_NONDATA
+)
+(
+//--------------------------------------------------
+// Define device states
+0x00 DEV_ATTACHED	// Device is in Attached State
+0x01 DEV_POWERED	// Device is in Powered State
+0x02 DEV_DEFAULT		// Device is in Default State
+0x03 DEV_ADDRESS	// Device is in Addressed State
+0x04 DEV_CONFIGURED	// Device is in Configured State
+0x05 DEV_SUSPENDED	// Device is in Suspended State
+)
+(
+// Define wIndex bitmaps
+0x81 IN_EP1                    // Index values used by Set and Clear
+0x01 OUT_EP1                   // commands for Endpoint_Halt
+0x82 IN_EP2              
+0x02 OUT_EP2             
+0x83 IN_EP3              
+0x03 OUT_EP3             
+)
+(
+0 EP0_STALL
+1 EP1_IN_STALL
+2 EP1_OUT_STALL
+3 EP2_IN_STALL
+4 EP2_OUT_STALL
+5 EP3_IN_STALL
+6 EP3_OUT_STALL
+)
+(
+// Define wValue bitmaps for Standard Feature Selectors
+0x00 ENDPOINT_HALT             // Endpoint_Halt feature selector
+0x01 DEVICE_REMOTE_WAKEUP      // Remote wakeup feature(not used)
+0x00 BOOT_PROTOCOL
+0x01 REPORT_PROTOCOL
+0x01 USB_MAX_NUM_CFG
+)
+(
+0 TIMER_NAK
+640 TIMER_NAK_DELAY
+15 TIMER_WAKEUP
+5000 TIMER_WAKEUP_DELAY
+)
+(
+/*mem_util_timer_flag0_7*/
+    0   UTIL_TIMER_0_USED
+    1   UTIL_TIMER_1_USED
+    2   UTIL_TIMER_2_USED
+    3   UTIL_TIMER_3_USED
+    4   UTIL_TIMER_4_USED
+    5   UTIL_TIMER_5_USED
+    6   UTIL_TIMER_6_USED
+    7   UTIL_TIMER_7_USED
+/*mem_util_timer_flag8_15*/
+    0   UTIL_TIMER_8_USED
+    1   UTIL_TIMER_9_USED
+    2   UTIL_TIMER_10_USED
+    3   UTIL_TIMER_11_USED
+    4   UTIL_TIMER_12_USED
+    5   UTIL_TIMER_13_USED
+    6   UTIL_TIMER_14_USED
+    7   UTIL_TIMER_15_USED
+)
+(
+6 dlen_24g
+14 plen_24g
+90 blen_tx_24g
+106 blen_rx_24g
+42 blen_txack_24g
+58 blen_rxack_24g
+0xaaf08e acc_24g
+0x15c4 crc_data_3byte
+0xbb81 crc_data_6byte
+0x4160 crc_ack
+)
+(
+
+8 UTIL_FIFO_LEN
+-1 UTIL_FIFO_OFFSET
+)
+(
+	0xAA DEBUGLOG_HEAD
+	0x00 DEBUGLOG_TYPE
+	0x04 DEBUGLOG_LEN
+	0xBB DEBUGLOG_TAIL
+)
+(
+	0x1000 DEBUGLOG_DTYPE_CALLBACK
+	0x1001 DEBUGLOG_DTYPE_EVENT
+	0x1002 DEBUGLOG_DTYPE_CMD
+	0x1003 DEBUGLOG_DTYPE_STATUS
+	0x1004 DEBUGLOG_DTYPE_MISC
+	0x1005 DEBUGLOG_DTYPE_PARSE_LMP
+	0x1006 DEBUGLOG_DTYPE_SEND_LMP
+	0x1007 DEBUGLOG_DTYPE_CONN_SM
+	0x1008 DEBUGLOG_DTYPE_UPPER_SM
+)
+(
+	0x0000 CALLBACK_24G_DATA
+	0x0001 CALLBACK_LE_PROCESS
+	0x0002 CALLBACK_BT_PROCESS
+	0x0003 CALLBACK_BEFORE_LPM
+	0x0004 CALLBACK_BB_EVENT_PROCESS
+	0x0005 CALLBACK_IDLE_PROCESS
+	0x0006 CALLBACK_BEFORE_HIBERNATE
+	0x0007 CALLBACK_ATT_WRITE
+	0x0008 CALLBACK_EVENT_TIMER
+	0x0009 CALLBACK_SLAVE_LOOP
+	0x000a CALLBACK_SDP_PROCESS
+)
+(
+	0x0000 STATUS_CODE_WAKE
+	0x0001 STATUS_LPM_WAKE
+	0x0002 STATUS_INQUIRY_SCAN
+	0x0003 STATUS_SEND_EIR
+	0x0004 STATUS_PAGE_SCAN
+	0x0005 STATUS_PAGE_SCAN_RECV_ID_PACK
+	0x0006 STATUS_PAGE_SCAN_WAIT_FHS
+	0x0007 STATUS_PAGE_SCAN_CONNECTED
+	0x0008 STATUS_START_DISCOVER
+	0x0009 STATUS_STOP_DISCOVER
+)
+(
+	0x0000 MISC_LE_RETRANSMIT
+	0x0001 MISC_LOST_MOUSEDATA
+	0x0002 MISC_TXPOWER_0
+	0x0003 MISC_TXPOWER_1
+	0x0004 MISC_TXPOWER_2
+	0x0005 MISC_BT_RETRANSMIT
+	0x0006 MISC_BT_UPPER_SM_ERR
+	0x0007 MISC_BT_CONN_SM_ERR
+)
+(
+	0x55 CREAT_MOUSE_DATA_OK
+	0x00 CREAT_MOUSE_DATA_FAIL
+
+(
+  0x02 FHS_PACKET 
+  0x03 DM1_PACKET 
+  0x03 DM1_LMP_PACKET 
+  0x04 DH1_PACKET 
+  0x05 HV1_PACKET 
+  0x06 HV2_PACKET 
+  0x07 HV3_PACKET 
+  0x08 DV_PACKET 
+  0x09 AUX1_PACKET 
+  0x0a DM3_PACKET 
+  0x0b DH3_PACKET 
+  0x0e DM5_PACKET 
+  0x0f DH5_PACKET 
+)
+(
+  0 RESPOND_TO_ALL
+  1 PASS_EVERYTHING
+  2 PASS_ONLY_UNKNOWNS
+  3 RESPOND_TO_LMPS
+)
+(
+  0 ULAW
+  1 ALAW
+  2 CVSD
+)
+(
+  0 NO_ENCRYPTION
+  1 PT_PT_ENCRYPTION
+  2 PT_BROADCAST_ENCRYPTION
+)
+(
+  0 LMP_STATE_DETACH
+  1 LMP_STATE_HOLD
+  2 LMP_STATE_SNIFF
+  3 LMP_STATE_PARK
+  4 LMP_STATE_WAIT_SCO_CREATE
+  5 LMP_STATE_WAIT_SCO_KILL
+  6 LMP_STATE_SCO3
+  7 LMP_STATE_WAIT_SCO_START
+)
+(
+  0 LMP_WAIT_FOR_SNIFF_ACCEPT
+  1 LMP_WAIT_FOR_PARK_ACCEPT
+  2 LMP_SEND_UNPARK_ACCEPTED
+  3 LMP_SEND_ENCRYPTION_START
+  4 LMP_SEND_ENCRYPTION_STOP
+  5 MESSAGE_QUEUE
+  7 LMP_STATE_WAIT_BEACON
+)
+(
+ 0 INQUIRY_STATE_CHECK
+ 1 HOST_DELAY_MESSAGE
+ 2 VARIABLE_DELAY
+ 3 TEST_MODE_START_LOOPBACK
+ 4 TEST_MODE_START_PATTERN
+ 5 PARSE_TEST_CONTROL_MESSAGE
+ 6 H_AUTH_SEND_COMB_KEY
+)
+(
+  0 FROM_MASTER
+)
+(
+  0 MS_RECEIVE_SWITCH_REQ
+  1 MS_SEND_SETUP_COMPLATE
+)
+(
+  0 CONN_SM_STANDBY
+  1 CONN_SM_WAIT_PAGE
+  2 CONN_SM_SEND_FEATURES
+  3 CONN_SM_WAIT_FEATURES_RES
+  4 CONN_SM_SEND_CONN_REQ
+  5 CONN_SM_WAIT_CONN_ACCEPT
+  6 CONN_SM_AUTH_PAIR
+  7 CONN_SM_AUTH_PAIR_WAIT
+  8 CONN_SM_WAIT_MUTAL_AUTH
+  9 CONN_SM_ENCRYPT
+  0xa CONN_SM_ENCRYPT_WAIT
+  0xb CONN_SM_ENCRYPT_WAIT_CLEAR
+  0xc CONN_SM_SEND_SETUP_COMPLETE
+  0xd CONN_SM_WAIT_SETUP_COMPLETE 
+  0xe CONN_SM_SEND_SWITCH
+  0xf CONN_SM_DETACH_DELAY
+  0x10 CONN_SM_WAIT_SWITCH_AFTER_HOST_CONNECTION
+  0x11 CONN_SM_DELAY_RESTART_CONNECTION
+  0x12 CONN_SM_SEND_VERSION
+  0X13 CONN_SM_WAIT_VERSION
+  0x14 CONN_SM_SEND_FEATURES_EXT
+  0x15 CONN_SM_WAIT_FEATURES_EXT
+  0x16 CONN_SM_PAIRING
+  0x17 CONN_SM_AUTH
+  0x18 CONN_SM_PAIRING_WAIT
+  0x19 CONN_SM_AUTH_WAIT
+  0x1a CONN_SM_DONE
+  0x1b CONN_SM_WAIT_DONE
+)
+(
+  0 CONN_STANDBY
+  1 CONN_MASTER_SEND_CONN_REQ
+  2 CONN_MASTER_WAIT_FOR_CONN_ACCEPTED
+  3 CONN_MASTER_AUTH
+  4 CONN_MASTER_WAIT_FOR_FEATURES
+  5 CONN_MASTER_WAIT_FOR_SETUP_COMPLETE
+  6 CONN_MASTER_WAIT_FOR_MAX_SLOT
+  7 CONN_SLAVE_CONN_REQUESTED
+  8 CONN_SLAVE_WAIT_FOR_SETUP_COMPLETE
+  9 CONN_SLAVE_AUTH
+  10 CONN_USING_HOST_OPCODE
+  11 CONN_SLAVE_AUTH_WAIT
+  12 CONN_SLAVE_ENCRYPT_WAIT
+)
+(
+  0 RECEIVED_CONN_REQ
+  1 SENT_CONN_REQ
+  2 RECEIVED_SETUP_COMPLETE
+  3 SENT_SETUP_COMPLETE
+  4 HOST_CONNECTION_MADE
+  6 INIT_COMPLETE
+  7 SNIFF_NEGOTIATE
+)
+(
+  0 WAIT_FOR_KINIT
+  1 WAIT_FOR_LKA
+  2 WAIT_FOR_LKB
+  3 WAIT_FOR_SRES
+  4 EXAMINE_RECEIVED_SRES
+  5 SEND_AU_RAND
+  6 WAIT_FOR_KC
+  7 DELAYED_ENCRYPT_RESPONSE
+)
+(
+  0 SENT_SRES
+  1 RECEIVED_IN_RAND
+  2 SENT_AU_RAND
+  3 AUTHENTICATION_FAILED
+  4 AUTHENTICATION_PASSED
+  5 STARTED_AUTH
+  6 SENT_COMB_KEY
+  7 SENT_IN_RAND
+)
+(
+  0 RECEIVED_AU_RAND
+  1 RECEIVED_SRES
+  2 MUTUALLY_AUTHENTICATE
+)
+(
+  0 H_AUTH_STARTED
+  2 H_ENCRYPTION_MODE_REQ_PT
+  3 H_ENCRYPTION_KEY_SIZE
+  4 H_ENCRYPTION_START
+  5 H_ENCRYPTION_STOP
+  6 H_AUTH_SECOND_TRY
+)
+(
+  0 RECEIVED_ENCRYPT_MODE_REQ_PT
+  1 RECEIVED_ENCRYPT_KEY_SIZE
+  2 RECEIVED_ENCRYPT_START
+  3 RECEIVED_ENCRYPT_STOP
+  4 STARTED_ENCRYPT_START
+)
+(
+  0x00 MS_STANDBY
+  0x11 M_MINIT_1
+  0x12 M_MINIT_2
+  0x20 M_SINIT_0
+  0x30 S_MINIT_0
+  0x31 S_MINIT_1
+  0x32 S_MINIT_2
+  0x41 S_SINIT_1
+  0x42 S_SINIT_2
+  0x43 S_SINIT_3
+)
+(
+  0 TEST_MODE_ALLOWED
+  1 TEST_MODE_ACTIVE
+)
+(
+  0x00 NO_TEST_MODE
+  0x00 CONTINUOUS_TRANSMIT
+  0x10 TRANSMIT_TEST
+  0x08 LOOPBACK
+)
+(
+  1 SEND_TX_ADDR
+)
+(
+  5 PAGE_MODE_END
+)
+(
+  0x00 HOST_RETURN_SUCCESS
+  0x01 HOST_RETURN_SLAVE_CANT_ISSUE
+  0x02 HOST_RETURN_NO_CONNECTION
+  0x04 HOST_RETURN_PAGE_TIMEOUT
+  0x05 HOST_RETURN_INQUIRY_TIMEOUT
+  0x08 HOST_RETURN_CONNECTION_TIMEOUT
+  0x09 HOST_RETURN_MAX_NUM_CONNECTIONS
+  0x0a HOST_RETURN_MAX_NUM_SCO
+  0x0b HOST_RETURN_MAX_NUM_ACL
+  0x0c HOST_RETURN_SECURITY_REASONS
+  0x10 HOST_RETURN_HOST_TIMEOUT
+  0x11 HOST_RETURN_UNSUPPORTED_FEATURE_PARAMETER
+  0x13 HOST_RETURN_OTHER_END_USER
+  0x14 HOST_RETURN_OTHER_END_LOW_RESOURCE
+  0x15 HOST_RETURN_OTHER_END_POWER_OFF
+  0x16 HOST_RETURN_LOCAL_HOST
+  0x18 HOST_RETURN_PAIRING_NOT_ALLOWED
+  0x19 HOST_RETURN_UNKNOWN_PDU
+  0x1a HOST_RETURN_UNSUPPORTED_REMOTE_FEATURE
+  0x1d HOST_RETURN_SCO_AIR_MODE_REJECTED
+  0x20 HOST_RETURN_UNSUPPORTED_LMP_VALUE
+  0x21 HOST_RETURN_AUTHENTICATION_FAILURE
+  0x22 HOST_RETURN_CHANGED_EXISTING_SCO
+  0x23 HOST_RETURN_HOST_REJECTED
+  0x24 HOST_RETURN_UNSPECIFIED_ERROR
+  0x25 HOST_RESET
+  0x26 HOST_RETURN_BAD_HANDLE
+
+  0x00 HOST_RETURN_ACCEPT_COMMAND
+  0x01 HOST_RETURN_REJECT_COMMAND
+)
+(
+  0 HOST_IS_PRESENT
+  1 BCI_IS_PRESENT
+  2 DONT_INIT_RADIO
+)
+(
+  0 MASTER_STATE_STANDBY
+  1 MASTER_INQUIRY
+)
+(
+  92 SECOND_SWITCH_REQ
+  93 SLAVE_DELAY_DETACH
+  94 MASTER_DELAY_DETACH
+  95 UNSNIFF_DELAY_DETACH
+  0 WE_STARTED_AS_MASTER
+  1 WE_STARTED_AS_SLAVE
+)
+(
+  0x01 HOST_INQUIRY
+  0x02 HOST_INQUIRY_CANCEL
+  0x03 HOST_CREATE_CONNECTION
+  0x04 HOST_DISCONNECT_CONNECTION
+  0x05 HOST_ADD_SCO_REQUEST
+  0x06 HOST_REMOTE_NAME_REQUEST
+  0x07 HOST_WRITE_SUPPORTED_FEATURES
+  0x08 HOST_SET_TX_LEVEL
+  0x09 HOST_SET_RX_LEVEL
+  0x0a HOST_SNIFF_REQUEST
+  0x0b HOST_UNSNIFF_REQUEST
+  0x0c HOST_WRITE_LINK_SUPERVISION_TIMEOUT
+  0x0e HOST_WRITE_SCAN_ENABLE
+  0x0f HOST_READ_AUDIO_QUALITY
+  0x10 HOST_ENABLE_DEVICE_UNDER_TEST
+  0x14 HOST_BUTTON_CONFIGURE
+  0x15 HOST_SET_LOW_BATTERY_LEVEL
+  0x16 HOST_WRITE_LOCAL_NAME
+  0x17 HOST_WRITE_LOCAL_PIN
+  0x18 HOST_KILL_SCO_REQUEST
+  0x19 HOST_QOS_REQ
+
+  0x1a HOST_FEATURES_REQUEST
+  0x1b HOST_VERSION_REQUEST
+  0x1c HOST_TIMING_REQUEST
+  0x1d HOST_CLK_OFFSET_REQUEST
+  0x1e HOST_AUTHENTICATE
+  0x1f HOST_START_ENCRYPTION
+  0x20 HOST_STOP_ENCRYPTION
+  0x21 HOST_HOLD_REQUEST
+  0x22 HOST_HOLD_FORCE
+  0x23 HOST_PARK_REQUEST
+  0x24 HOST_MOD_BEACON
+  0x25 HOST_SET_BROADCAST_SCAN_WINDOW
+  0x26 HOST_UNPARK_PM_REQUEST
+  0x27 HOST_UNPARK_BD_REQUEST
+  0x28 HOST_SLAVE_REQUEST_UNPARK
+  0x29 HOST_DECREASE_POWER_REQUEST
+  0x2a HOST_INCREASE_POWER_REQUEST
+  0x2b HOST_SEND_PREFERRED_RATE
+  0x2c HOST_MAX_SLOT_REQ
+  0x2d HOST_MAX_SLOT_FORCE
+  0x2e HOST_PAGE_MODE_REQUEST
+  0x2f HOST_PAGE_SCAN_MODE_REQUEST
+  0x30 HOST_MASTER_SLAVE_SWITCH
+  0x31 HOST_SEND_AUTO_RATE
+  0x32 HOST_PAGE_CANCEL
+  0x33 HOST_CHANGE_LINK_KEY
+  0x34 HOST_RADIO_READ
+  0x35 HOST_RADIO_WRITE
+  0x36 HOST_REMOTE_SLAVE_INIT_UNPARK_REQUESTED
+
+  0x40 HOST_REMOTE_CONNECTION_REQUESTED
+  0x41 HOST_REMOTE_DETACH
+  0x42 HOST_REMOTE_SCO_CREATE_REQUESTED
+  0x43 HOST_REMOTE_SCO_KILL_REQUESTED
+  0x44 HOST_REMOTE_PARK_REQUESTED
+  0x45 HOST_REMOTE_UNPARK_REQUESTED
+  0x46 HOST_REMOTE_SNIFF_REQUESTED
+  0x47 HOST_REMOTE_UNSNIFF_REQUESTED
+  0x48 HOST_REMOTE_HOLD_REQUESTED
+  0x49 HOST_REMOTE_AUTHENTICATION
+  0x4a HOST_REMOTE_START_ENCRYPTION_REQUESTED
+  0x4b HOST_REMOTE_STOP_ENCRYPTION_REQUESTED
+  0x4c HOST_MODE_CHANGE_EVENT
+  0x4d HOST_REMOTE_TEST_ACTIVATE
+  0x4e HOST_REMOTE_TEST_CONTROL
+  0x4f HOST_REMOTE_TIMING_REQUEST
+)
+(
+  0x01 BCI_INQUIRY
+  0x02 BCI_INQUIRY_CANCEL
+  0x03 BCI_CREATE_CONNECTION
+  0x04 BCI_DISCONNECT
+  0x05 BCI_ADD_SCO_CONNECTION
+  0x06 BCI_REMOTE_NAME_REQUEST
+  0x07 BCI_WRITE_SUPPORTED_FEATURES
+  0x08 BCI_SET_TX_POWER_LEVEL
+  0x09 BCI_SET_RX_POWER_LEVEL
+  0x0a BCI_SNIFF_MODE
+  0x0b BCI_EXIT_SNIFF_MODE
+  0x0c BCI_WRITE_LINK_SUPERVISION_TIMEOUT
+  0x0d BCI_WRITE_PAGE_TIMEOUT
+  0x0e BCI_WRITE_SCAN_ENABLE
+  0x0f BCI_GET_AUDIO_QUALITY
+  0x10 BCI_ENABLE_DEVICE_UNDER_TEST
+  0x11 BCI_SEND_DATA
+  0x12 BCI_REGISTER_SERVICE_RECORD
+  0x13 BCI_SERVICE_SEARCH_ATTRIB_REQ
+  0x14 BCI_BUTTON_CONFIGURE
+  0x15 BCI_SET_LOW_BATTERY_LEVEL
+  0x16 BCI_WRITE_LOCAL_NAME
+  0x17 BCI_WRITE_LOCAL_PIN
+  0x18 BCI_REMOVE_SCO_CONNECTION
+  0x19 BCI_QUALITY_OF_SERVICE
+  0x40 BCI_REMOTE_CONNECTION_REQUEST
+  0x41 BCI_REMOTE_DETACH
+  0x42 BCI_REMOTE_ADD_SCO_REQUEST
+  0x43 BCI_REMOTE_REMOVE_SCO_REQUEST
+  0x44 BCI_REMOTE_PARK_REQUEST
+  0x45 BCI_REMOTE_UNPARK_REQUEST
+  0x46 BCI_REMOTE_SNIFF_REQUEST
+  0x47 BCI_REMOTE_UNSNIFF_REQUEST
+  0x48 BCI_REMOTE_HOLD_REQUEST
+  0x49 BCI_REMOTE_AUTHENTICATION_PAIRING_REQUEST
+  0x4a BCI_REMOTE_START_ENCRYPTION_REQUEST
+  0x4b BCI_REMOTE_STOP_ENCRYPTION_REQUEST
+  0x4c BCI_MODE_CHANGE_EVENT
+)
+(
+  0 MODE_CHANGE_ACTIVE
+  1 MODE_CHANGE_SNIFFING
+  2 MODE_CHANGE_PARKED
+  3 MODE_CHANGE_HOLDING
+  4 MODE_CHANGE_SCO_ADDED
+  5 MODE_CHANGE_SCO_REMOVED
+  6 MODE_CHANGE_ACL_CONNECTION
+  7 MODE_CHANGE_DISCONNECT
+  8 MODE_CHANGE_SCO_CHANGED
+  9 MODE_CHANGE_ENCRYPTING
+  10 MODE_CHANGE_NOT_ENCRYPTING
+  11 MODE_CHANGE_BUTTON_UP
+  12 MODE_CHANGE_BUTTON_DOWN
+  13 MODE_CHANGE_BATTERY_LOW
+  14 MODE_CHANGE_RESET
+  15 MODE_CHANGE_INQUIRY_CANCELED_RMTCMD
+  16 MODE_ACTIVE_MSSWITCH_PASSED
+  17 MODE_ACTIVE_MSSWITCH_FAILED
+)
+(
+  6 BATTERY_CHECK_LEVEL
+  7 BATTERY_SENT_STATUS
+)
+(
+  0x02 RADIO_2001
+  0x12 RADIO_2002
+  0x32 RADIO_2002_DDM
+  0x42 RADIO_1008A1
+  0x52 RADIO_1018A0
+)
+(
+  0 SLAVE_INIT_AUTHENTICATION
+  1 SLAVE_INIT_ENCRYPTION
+  2 SLAVE_INIT_MASTER_SLAVE_SWITCH
+)
+(
+  0 CONNECTION_AUTH
+  1 CONNECTION_ENCRYPT
+  2 CONNECTION_SWITCH
+  3 CONNECTION_ACL
+  4 CONNECTION_FEATURE_EXT
+)
+(
+  7 AA_INSERTION
+)
+memalloc(
+/* 00-0f most frequently used area  */
+1 mem_le_adv_transmit
+1 mem_le_adv_waitcnt
+1 mem_le_adv_rcv
+1 mem_le_req_rcv
+1 mem_le_scanrsp_rcv
+1 mem_le_conn_rcv
+
+1 mem_inquiryscan_waitcnt
+1 mem_inquiryscan_rcvcnt
+1 mem_pagescan_waitcnt
+1 mem_pagescan_rcvcnt
+1 mem_pagescan_rcvfhscnt
+1 mem_slave_rcvcnt
+1 mem_page_transmit
+1 mem_page_rcv
+1 mem_page_rcv_fhs
+1 mem_master_rcvcnt
+
+/* 10-1f debug area */
+1 mem_fhs_wait_counter
+1 mem_newconnto_counter
+1 mem_inquiry_transmit
+1 mem_inquiry_rcv
+1 mem_fw_ver
+1 mem_current_context
+1 mem_le_ch_mapped
+1 mem_last_freq
+1 mem_rssi
+1 mem_rx_type
+2 mem_rx_hec_err
+2 mem_rx_crc_err
+2 mem_context_ptr
+8 mem_display
+8 mem_bcd
+
+		/* context swappable area */
+1 mem_state
+1 mem_mode
+2 mem_tsniff
+4 mem_sniff_anchor
+6 mem_clk_offset
+2 mem_rx_window
+3 mem_plap
+1 mem_puap
+2 mem_pnap
+1 mem_conn_handle
+1 mem_arq
+1 mem_lmp_to_send
+1 mem_lmi_opcode
+1 mem_lmo_reason
+1 mem_op
+1 mem_state_map
+4 mem_supervision_timer
+2 mem_supervision_to
+1 mem_name_offset
+1 mem_key_size
+1 mem_conn_sm
+12 mem_aco
+16 mem_kc
+1 mem_conn_timer
+1 mem_sniff_attempt
+1 mem_sniff_timeout
+2 mem_dsniff
+1 mem_amaddr
+1 mem_lmo_opcode1
+1 mem_lmi_opcode1
+1 mem_lmo_reason1
+1 mem_lmo_tid1
+1 mem_lmo_opcode2
+1 mem_lmi_opcode2
+1 mem_lmo_reason2
+1 mem_lmo_tid2
+8 mem_bt_context_reserve
+	/*context ending*/
+
+/*above param can not be modified*/
+
+1 mem_current_sniff_attempt
+1 mem_current_sniff_timeout
+1 mem_nfreq_index_inq
+1 mem_nfreq_index_page
+1 mem_ninqy_index
+1 mem_fhs_misc
+
+
+
+/* lpo related */
+4 mem_subsniff_instant
+1 mem_subsniff_rate
+2 mem_subsniff_tcmax
+1 mem_subsniff_tsniff
+1 mem_lpm_adjust
+6 mem_sync_clke
+1 mem_lpm_current_mult
+4 mem_gpio_wakeup_low
+4 mem_gpio_wakeup_high
+
+
+//page
+1 mem_npage_index
+1 mem_page_mode
+4 mem_page_clk
+
+
+
+/*temp mem*/
+1 mem_temp_am_addr
+1 mem_temp_arq
+
+//
+2 mem_len
+4 mem_clkn_bt
+4 mem_clke_bt
+4 mem_dpll_clkn
+1 mem_connection_options
+
+1 mem_nameres_cnt
+2 mem_txptr
+2 mem_slot_offset
+
+//extm
+1 extm_fhs_misc
+1 extm_newconn_am_addr
+3 extm_class
+3 extm_lap
+1 extm_uap
+3 extm_nap
+
+21 mem_rxbuf
+
+//debug
+1 mem_debug_config
+1 mem_lch_code
+1 mem_fhs_am_addr
+1 mem_select_list_item
+0 mem_temp_reconn_record
+1 mem_record_bt_mode
+6 mem_temp_lap
+2 mem_list_item_ptr
+
+100 mem_eir
+1 mem_rssi_hex
+
+
+2 mem_param_tx_setup
+2 mem_param_rf_setup
+2 mem_param_conn_access
+2 mem_param_clke_cal
+2 mem_param_pll_setup
+2 mem_param_rx_setup
+2 mem_param_dpll_start_delay
+2 mem_param_rt_rthalfslot
+2 mem_param_clke_cal_le_1m
+2 mem_param_clke_cal_le_2m
+2 mem_param_clke_cal_le_coded
+
+)
+memalloc(
+260 mem_le_rxbuf
+
+/* security temp */
+4 mem_le_mic
+4 mem_le_peer_mic
+//8 mem_le_skdm
+//8 mem_le_skds
+16 mem_le_mrand
+
+
+/* ========= le context =========== */
+1 mem_le_state
+1 mem_le_mode
+2 mem_le_tsniff
+4 mem_le_anchor
+6 mem_le_clk_offset
+2 mem_le_receive_window
+6 mem_le_plap
+1 mem_le_conn_handle
+1 mem_le_arq
+1 mem_le_ch
+1 mem_le_hop
+2 mem_le_event_count
+4 mem_le_supervision_timer
+2 mem_le_instant
+1 mem_le_channels
+1 mem_le_op
+
+	/* these 3 should NOT be seperated */
+4 mem_le_access
+3 mem_le_crcinit
+1 mem_le_window_size
+
+	/* these 3 should NOT be seperated */
+2 mem_le_slave_latency
+2 mem_le_superto
+5 mem_le_channel_map
+
+
+1 mem_le_rx_phy
+1 mem_le_tx_phy
+
+9 mem_le_update_new_param
+
+16 mem_le_sk
+
+1 mem_le_peer_sca
+1 mem_le_err_code
+1 mem_le_ll_pairing_fail_reason
+
+5 mem_le_context_reserve
+/* ========= le context ending =========== */
+
+/* test */
+1 mem_le_testtype
+1 mem_cmd_le_create_conn
+
+)
+memalloc(
+
+/* load code */
+1 mem_ucode_status
+1 mem_spid_tbuf				/* spid buf: 03 addr[23:16] addr[15:8] addr[7:0] */
+0 mem_iicd_tbuf				/* iicd buf: iic_adr addr[15:8] addr[7:0] iic_adr */
+1 mem_addr_hi
+1 mem_addr_mi
+1 mem_addr_lo
+1 mem_iicd_addr
+4 mem_spid_rbuf
+2 mem_ucode_buf
+2 mem_ucode_len
+2 mem_sched_addr
+2 mem_ucode_ptr
+16 mem_ucode_keybuf
+
+1 mem_spid2_tbuf
+1 mem_addr_hi2
+1 mem_addr_mi2
+1 mem_addr_lo2
+4 mem_spid2_rbuf
+1 mem_reconnect_flag
+1 mem_switch_fail_master_count
+1 mem_app_evt_timer_count
+)
+memalloc(
+0 mem_l2cap_mem_start
+// L2CAP RX 
+2 mem_l2cap_rxbuff1_len
+2 mem_l2cap_rxbuff2_len
+2 mem_l2cap_rxbuff_new
+1 mem_l2cap_rxbuff_inuse
+2 mem_l2cap_payload_ptr
+2 mem_l2cap_rx_pkt_length
+2 mem_l2cap_rx_cid
+1 mem_l2cap_rx_done
+
+
+
+// L2CAP TX Signal channel
+2 mem_l2cap_signal_tx_buff_ptr
+2 mem_l2cap_signal_tx_payload_ptr
+2 mem_l2cap_signal_tx_length
+// L2CAP TX SDP channel
+2 mem_sdp_tx_buff_ptr
+2 mem_sdp_tx_payload_ptr
+2 mem_sdp_tx_pkt_length
+// L2CAP TX RFCOMM channel
+2 mem_rfcomm_tx_buff_ptr
+2 mem_rfcomm_tx_payload_ptr
+2 mem_rfcomm_tx_pkt_length
+
+
+
+//L2CAP Util
+
+2 memL2CAP_T1
+
+1 mem_CONTROL_tasks
+1 mem_send_config_req
+
+
+1 mem_config_identifier
+2 mem_config_req_dest_CID
+1 mem_rfcomm_malloc_fail_flag
+
+//L2CAP STATE MACHINE
+1 mem_message_to_uppersm
+1 mem_upper_sm_remote_page
+1 mem_upper_sm_reconn
+1 mem_upper_sm_ss
+
+
+64 mem_tx_malloc_log
+0 mem_l2cap_mem_end
+
+
+2 mem_scid
+2 mem_cmd_length
+2 mem_tt2
+2 mem_tt3
+2 mem_id
+2 mem_psm
+
+
+4 mem_l2cap_sdpres_delay_time
+)
+memalloc(
+
+1 mem_lmo_header_length
+1 mem_lmo_header_opcode
+17 mem_lmo_payload
+1 mem_lmi_accepted_opcode
+1 mem_disconn_reason_send
+1 mem_tx_fixed_freq
+1 mem_rx_fixed_freq
+1 mem_ext_features_page
+2 mem_lmpext_ssp_enable
+1 mem_remote_sppcap
+
+1 mem_lmp_conn_state
+2 mem_soft_timer
+1 mem_pincode_state
+
+1 mem_sres_tid
+1 mem_accptsco_tid
+
+1 mem_wait_encryption
+
+16 mem_sniff_payload
+4 mem_aurand_send_delay_time
+)
+memalloc(
+1 memRemoteRPNBitRate
+1 memRemotePRNDataBits
+1 memRemotePRNStopBit
+1 memRemotePRNParity
+1 memRemotePRNFlowControl
+1 memRemotePRNXon
+1 memRemotePRNXoff
+
+
+3 mem_mod2div_temp
+2 mem_contw_temp
+2 mem_attrib_list
+
+//rfcomm head
+1 mem_current_adss
+1 mem_current_channel
+1 mem_current_frame_type
+1 mem_current_fcs
+2 mem_current_length
+2 mem_rfcomm_uih_payload_ptr
+
+//rfcomm uih
+1 mem_uih_cmd_type
+2 mem_uih_length
+2 mem_param_payload_ptr
+
+
+//rfcomm modem status
+1 mem_ms_param
+
+//rfcomm pn
+1 mem_pn_credit_flow_type_info
+1 mem_pn_priority
+1 mem_pn_acknowledg_timer
+1 mem_pn_max_retrans
+
+1 mem_rfcomm_send_adss
+1 mem_rfcomm_send_frame_type
+1 mem_rfcomm_send_fcs
+1 mem_rfcomm_send_offset
+
+)
+memalloc(
+0 mem_sdp_mem_start
+8 mem_sdp_uuid_search_ptr
+2 mem_sdp_continue_byte
+1 mem_sdp_pduid
+2 mem_sdp_transactionid
+2 mem_sdp_transactionid_local
+2 mem_sdp_attribute_maxbyte
+2 mem_sdp_record_maxcnt
+4 mem_sdp_record_handle
+1 mem_sdp_LACAP_found
+1 mem_sdp_RFCOMM_found
+0 mem_sdp_handle_list
+32 mem_sdp_attrib_list
+2 mem_sdp_error_code
+2 mem_sdp_all_length
+1 mem_handle_humber
+2 mem_search_uuid
+0 mem_sdp_mem_end
+)
+memalloc (
+
+
+16 mem_random_number
+16 mem_round_key
+16 mem_kinit
+
+16 mem_input_store
+16 mem_x
+15 mem_y
+1 mem_y15
+17 mem_key_store
+1 mem_key_store_end
+2 memp_ar_key
+2 memp_ar_input
+10 mem_ar_hround
+
+
+1 mem_ec_infinite
+2 mem_ec_loopc
+1 mem_aes_cmac_data_length
+
+0 memdat
+/* ecc calculation */
+
+24 mem_ax
+24  mem_ay
+24  mem_az
+24 mem_bx
+0 mem_ax_256 //32 bytes
+24 mem_by
+8 mem_bz
+16 mem_ay_256 // 32 bytes
+16 mem_cx
+8 mem_az_256 // 32 bytes
+23 mem_cy
+1 mem_cy5
+0 mem_bx_256 // 32 bytes
+24 mem_cz
+8  mem_k
+16 mem_by_256 // 31 bytes
+16 mem_align
+
+0 mem_bz_256  //32 bytes
+0 mem_tmp1
+24 memahbak
+8 mem_tmp5
+0 mem_cx_256  //32 bytes
+16 memahsave
+16  mem_tmp2
+0 mem_cy_256  // 32 bytes
+0  memahsave_end 
+1  mem_addr_padding 
+7   mem_addr_value         /* 12 bytes     */ 
+0 mem_tmp3
+5 mem_t1
+3  mem_addr_value_end   
+15 mem_addr_iocap_end
+1 mem_cy5_256 // 1 byte
+0 mem_cz_256 // 32 bytes
+0 mem_tmp0
+8 mem_t0
+16 mem_tmp0a
+8  mem_t2
+16 mem_k_256 //32 bytes
+16 mem_t3
+8  mem_tmp1_256 //32 bytes
+24 mem_t7
+
+
+32 mem_tmp5_256
+32  mem_tmp2_256
+0 mem_tmp3_256
+32 mem_t1_256
+0 mem_tmp0_256
+32 mem_t0_256
+32 mem_t2_256
+32 mem_t3_256
+32 mem_t7_256
+
+24 mem_p		
+24 mem_a
+24 mem_b
+24 mem_gx
+24 mem_gy
+32 memh0
+
+
+32 mem_p_256		
+32 mem_a_256
+32 mem_gx_256
+32 mem_gy_256
+16 mem_le_slat
+
+)
+memalloc(
+
+//4 mem_hci_ssp_mode
+0 mem_sp_state_start
+1 mem_sp_state
+1 mem_master_sp_state
+1 mem_sp_flag
+1 mem_master_sp_flag
+1 mem_sp_calc
+1 mem_sp_dh_ready
+1 mem_sp_localsm
+1 mem_pairing_auth
+
+1 mem_sp_local_key_send_count
+1 mem_sp_remote_key_recv_count
+1 mem_sp_remote_key_invalid
+1 mem_sp_dhkey_invalid
+4 mem_gkey
+0 mem_sp_state_end
+
+8 mem_le_pubkey_remote_x_256
+0 mem_sp_pubkey_remote
+24 mem_sp_pubkey_remote_x
+0 mem_sp_pubkey_remote_x_end
+8 mem_le_pubkey_remote_y_256
+24 mem_sp_pubkey_remote_y
+
+8 mem_le_dhkey_256
+24 mem_sp_dhkey
+0 mem_sp_dhkey_end
+
+16 mem_sp_random_local
+0 mem_sp_random_local_end
+16 mem_sp_random_remote
+0 mem_sp_random_remote_end
+0 memresult
+0 mem_sp_calc_result
+4 memh
+4 memg
+4 memf
+4 meme
+0 mem_sp_calc_result_high
+4 memd
+4 memc
+4 memb
+4 mema
+16 mem_sp_check_result
+16 mem_sp_confirm_remote
+16 mem_sp_prarm_stack
+)
+memalloc(
+2 mem_UI_data_txbuff_length
+
+1 mem_ipc_skip_continue_proc
+0 mem_ui_timer_temp  //length 4
+4 mem_ipc_rega_temp
+) 
+memalloc(
+
+/*
+    temp parameter
+*/
+2 mem_hold_contr
+2 mem_hold_contw
+1 mem_fifo_temp
+
+8 mem_pdatatemp
+8 mem_temp //8 bytes
+4 mem_timeup // 4 bytes
+4 mem_rega //4 bytes
+4 mem_regb //4 bytes
+3 mem_regc //3 bytes
+2 mem_contr //2 bytes
+2 mem_contw //2 bytes
+2 mem_contus
+2 mem_contue
+2 mem_contu
+2 mem_queue
+2 mem_loopcnt
+
+
+1 mem_wakup_from_power_flag
+4 mem_saved_gpio_in
+
+0 mem_module_rx_error_data_buffer
+0 mem_shutter_random_mac_data_temp
+0 mem_shutter_config_data_temp
+0 mem_le_adv_channel_map_temp
+0 mem_le_data_len_temp	//1byte
+0 mem_tx_fifo_map_temp
+0 mem_rpn_dlci		//1byte
+0 mem_event_cmd_response_content	//2byte
+0 mem_le_prand		//16byte
+0 mem_AES_CMAC_k	 //16 bytes
+0 mem_regext_index 	//1 bytes
+1 mem_temp_block0
+0 mem_le_data_temp	//15bytes
+15 mem_temp_block1
+0 mem_le_aes_128	//16byte
+0 mem_regext   //64 bytes
+0 mem_AES_CMAC_k1  //16 bytes
+16 mem_temp_block2
+0 mem_AES_CMAC_k2  //16 bytes
+16 mem_temp_block3
+0 mem_AES_CMAC_temp  // 16 bytes
+16 mem_temp_block4
+0 mem_AES_CMAC_M_last // 16 bytes
+1 mem_module_uart_cmd
+1 mem_module_uart_opcode
+1 mem_module_uart_len
+1 mem_module_temp_nl_discard_packet
+12 mem_temp_block5
+0 mem_le_mackey //16 bytes
+0 mem_app_receive_temp
+2 mem_key_value_temp
+2 mem_key_value
+1 mem_key_value_temp1
+1 mem_key_value_temp2
+1 mem_key_value_temp3
+1 mem_key_value_temp4
+1 mem_key_value_temp5
+1 mem_key_value_temp6
+6 mem_temp_block6
+
+3 mem_scale_ratio
+3 mem_xcnt
+2 mem_scale_ratio_temp
+)
+memalloc iqcal (
+2 mem_vdk
+4 mem_vok
+6 mem_omega
+4 mem_b1
+4 mem_b2
+16 mem_u1
+16 mem_u2
+16 mem_q
+)
+memalloc test (
+/* test related */
+2 mem_tst_pktcnt_sync
+2 mem_tst_pktcnt_hec
+2 mem_tst_pktcnt_crc
+2 mem_tst_pktcnt_dmh
+3 mem_tmp_buffer_head
+80 mem_tmp_buffer
+
+
+1 mem_tester_emulate
+0 mem_temp_payload
+1 test_mode_scenario
+1 test_mode_hopping_mode
+1 test_mode_tx_freq
+1 test_mode_rx_freq
+1 test_mode_power_mode
+1 test_mode_poll_period
+1 test_mode_packet_type
+2 test_mode_data_length
+1 mem_test_mode_old_debug_config
+1 mem_tester_cnt
+
+)
+memalloc ali_mesh(
+	1 mem_mesh_receive_model_message_payload_len
+	1 mem_mesh_receive_model_message_payload_opcode
+	23 mem_mesh_receive_model_message_payload
+
+	1 mem_mesh_access_layer_payload_len
+	0 mem_mesh_access_layer_payload
+	50 mem_mesh_access_payload
+	50 mem_mesh_access_payload_padding	//ÎªÁËÍ¸´«Ä£¿éÔ¤Áô
+)
+memalloc ali_mesh(
+	0 mem_mesh_queue_ele_temp
+	1 mem_mesh_queue_ele_duration
+	1 mem_mesh_queue_ele_gatt_msg_id
+	1 mem_mesh_queue_ele_len
+	31 mem_mesh_queue_ele_payload
+	1 mem_mesh_queue_ele_padding
+)
+memalloc ali_mesh(
+	39 mem_le_txheader_mesh_temp
+	
+)
+memalloc ali_mesh(
+	// sha256
+	0 mem_mesh_sha256_chunk_start
+	64 mem_mesh_sha256_chunk1
+	64 mem_mesh_sha256_chunk2
+	64 mem_mesh_sha256_chunk3
+	64 mem_mesh_sha256_chunk4
+
+	//obfuscation network PDU Header
+	0 mem_mesh_Privacy_Plaintext
+	5 mem_mesh_Privacy_Plaintext_Zero_String
+	4 mem_mesh_Privacy_Plaintext_IV_Index
+	0 mem_mesh_Privacy_Plaintext_Privacy_Random
+	2 mem_mesh_Privacy_Plaintext_Privacy_Random_EncDST
+	5 mem_mesh_Privacy_Plaintext_Privacy_Random_EncTransportPDU_or_NetMIC
+	16 mem_mesh_PECB
+
+	//basic function
+	//aes-ccm
+	2 mem_nonce_ptr
+	1 mem_ccm_data_len
+	2 mem_ccm_data_ptr
+	8 mem_ccm_mic
+	1 mem_ccm_type
+
+
+)
+memalloc ali_mesh(
+
+	16 mem_mesh_Device_UUID
+	
+	1 mem_mesh_receive_VID
+
+)
+memalloc ali_mesh(
+	2 mem_mesh_mic_cache_ptr
+)
+memalloc ali_mesh(
+	1 mem_mesh_lower_transport_layer_payload_len
+
+)
+memalloc ali_mesh(
+	2 mem_mesh_loopcnt_tmep
+	2 mem_mesh_rega_temp
+	2 mem_mesh_regb_temp
+	2 mem_mesh_regc_temp
+	2 mem_mesh_alarm_temp
+	
+)
+memalloc ali_mesh(
+	1 mem_mesh_message_Transport_NetMIC_length
+
+	1 mem_mesh_message_NID
+	1 mem_mesh_message_TTL
+	3 mem_mesh_message_SEQ
+	2 mem_mesh_message_SRC
+	2 mem_mesh_message_DST
+	0 mem_mesh_message_Transport_NetMIC
+	1 mem_mesh_message_Transport_Head
+	//unsegmented access message
+	0 mem_mesh_message_Transport_unsegmented_access_messagePDU
+	//segmented access message
+	0 mem_mesh_message_Transport_segmented_access_messagePDU
+	3 mem_mesh_message_segment_access_SZMIC_SeqZero_SegO_SegN
+	0 mem_mesh_message_Transport_segmented_access_messagePDU_Segment
+	16 mem_mesh_message_Transport_NetMIC_end
+
+	13 mem_mesh_nonce_struct
+
+	2 mem_mesh_send_message_DST
+	3 mem_mesh_last_message_SEQ
+	1 mem_mesh_network_packet_type
+
+)
+memalloc ali_mesh(
+	2 mem_mesh_upper_transport_layer_payload_ptr
+	1 mem_mesh_segmented_upper_transport_layer_payload_len
+	2 mem_mesh_segmented_lower_transport_layer_SegZero
+	1 mem_mesh_segmented_lower_transport_layer_SegO
+	1 mem_mesh_segmented_lower_transport_layer_SegN
+	1 mem_mesh_segmented_last_packet_upper_teansport_payload_len
+
+	0 mem_mesh_upper_tran_layer_queue_temp
+	1 mem_mesh_upper_tran_layer_temp_packet_flag
+	2 mem_mesh_upper_tran_layer_temp_packet_transmit_delay
+	1 mem_mesh_upper_tran_layer_temp_packet_TID
+	1 mem_mesh_upper_tran_layer_temp_packet_header_IVI_NID
+	1 mem_mesh_upper_tran_layer_temp_packet_header_CTL_TTL
+	3 mem_mesh_upper_tran_layer_temp_packet_header_SEQ
+	2 mem_mesh_upper_tran_layer_temp_packet_header_SRC
+	2 mem_mesh_upper_tran_layer_temp_packet_header_DST
+	1 mem_mesh_upper_tran_layer_temp_packet_length
+	108 mem_mesh_upper_tran_layer_temp_packet_payload
+
+)
+memalloc usb_dongle(
+256 mem_dg_rssi_noise_buffer
+256 mem_dg_rssi_noise_dg_buffer
+256 mem_dg_rssi_noise_ms_buffer
+256 mem_dg_rssi_noise_kb_buffer
+
+)
+memalloc module(
+	//ble
+	2 mem_module_le_rx_data_len
+	2 mem_module_le_rx_data_address
+	2 mem_module_le_rx_data_handle
+
+ifdef COMPILE_WECHAT
+	0 mem_wechat_tx_buffer
+	1 mem_wechat_tx_bMagicNumber
+	1 mem_wechat_tx_bVer
+	2 mem_wechat_tx_nLength
+	2 mem_wechat_tx_nCmdId
+	2 mem_wechat_tx_nSeq1
+	255 mem_wechat_tx_payload
+
+	0 mem_wechat_rx_buffer
+	1 mem_wechat_rx_bMagicNumber
+	1 mem_wechat_rx_bVer
+	2 mem_wechat_rx_nLength
+	2 mem_wechat_rx_nCmdId
+	2 mem_wechat_rx_nSeq
+	255 mem_wechat_rx_payload
+
+	255 mem_module_wechat_local_data_buffer
+
+endif
+)
+memalloc mouse(
+2 mem_init_cnt
+2 mem_data_pre
+2 mem_data_current
+3 mem_data_sum
+2 mem_data_value
+
+)
+memalloc usb_mouse(
+16 mem_usb_mem_temp
+)
+
+
+amemalloc mem_le_update_new_param(
+//update connection parameter
+	0 mem_le_new_param
+	1 mem_le_new_transmitwindowsize
+	2 mem_le_new_transmitwindowoffset
+	2 mem_le_new_conninterval
+	2 mem_le_new_connslavelatency
+	2 mem_le_new_connsupervisiontimeout
+)
+amemalloc mem_le_update_new_param(
+//update map parameter
+	5 mem_le_new_map
+)
+amemalloc mem_le_update_new_param(
+//update phy parameter
+	1 mem_le_new_m2s_phy
+	1 mem_le_new_s2m_phy
+)
+amemalloc mem_le_rxbuf(
+//data channel PDU
+	1 mem_le_rxbuf_data_header
+	1 mem_le_rxbuf_data_length
+	255 mem_le_rxbuf_data_payload
+)
+amemalloc mem_le_rxbuf(
+//data channel LL control PDU
+	1 mem_le_rxbuf_data_ll_header
+	1 mem_le_rxbuf_data_ll_length
+	1 mem_le_rxbuf_data_ll_opcode
+	26 mem_le_rxbuf_data_ll_control_data
+)
+amemalloc mem_le_rxbuf(
+//advertising channel PDU
+	1 mem_le_rxbuf_adv_header
+	1 mem_le_rxbuf_adv_length
+	255 mem_le_rxbuf_adv_payload
+)
+amemalloc mem_le_rxbuf(
+//advertising channel PDU
+//Scan Req
+	1 mem_le_rxbuf_adv_scan_req_header
+	1 mem_le_rxbuf_adv_scan_req_length
+	6 mem_le_rxbuf_adv_scan_req_scan_address
+	6 mem_le_rxbuf_adv_scan_req_adv_address
+)
+amemalloc mem_le_rxbuf(
+//advertising channel PDU
+//Connect IND
+	1 mem_le_rxbuf_adv_connect_ind_header
+	1 mem_le_rxbuf_adv_connect_ind_length
+	6 mem_le_rxbuf_adv_connect_ind_init_address
+	6 mem_le_rxbuf_adv_connect_ind_adv_address
+	4 mem_le_rxbuf_adv_connect_ind_access_address
+	3 mem_le_rxbuf_adv_connect_ind_crc_init
+	1 mem_le_rxbuf_adv_connect_ind_win_size
+	2 mem_le_rxbuf_adv_connect_ind_win_offset
+	2 mem_le_rxbuf_adv_connect_ind_interval
+	2 mem_le_rxbuf_adv_connect_ind_latency
+	2 mem_le_rxbuf_adv_connect_ind_timeout
+	5 mem_le_rxbuf_adv_connect_ind_channel_map
+	1 mem_le_rxbuf_adv_connect_ind_hop_and_sca
+)
+amemalloc mem_temp_block2(
+	2 mem_le_search_handle_start
+	2 mem_le_search_handle_end
+	0 mem_le_att_offset
+	1 mem_le_search_att_type_length
+	16 mem_le_search_att_type
+
+	1 mem_le_curr_att_len
+
+	2 mem_le_cur_attlist_start_ptr
+	2 mem_le_cur_handle_start
+	2 mem_le_cur_handle_end
+	1 mem_le_cur_uuid_length
+	16 mem_le_cur_uuid
+)
+amemalloc mem_le_rxbuf(
+//data channel ATT start PDU
+	1 mem_le_rxbuf_data_att_header
+	1 mem_le_rxbuf_data_att_length
+	2 mem_le_rxbuf_data_att_l2cap_length
+	2 mem_le_rxbuf_data_att_cid
+	1 mem_le_rxbuf_data_att_opcode
+	250 mem_le_rxbuf_data_att_payload
+)
+amemalloc mem_le_rxbuf(
+//data channel ATT continue PDU
+	1 mem_le_rxbuf_data_continue_header
+	1 mem_le_rxbuf_data_continue_length
+	255 mem_le_rxbuf_data_continue_payload
+)
+amemalloc mem_le_rxbuf(
+//data channel ATT write request PDU
+	1 mem_le_rxbuf_data_att_write_header
+	1 mem_le_rxbuf_data_att_write_length
+	2 mem_le_rxbuf_data_att_write_l2cap_length
+	2 mem_le_rxbuf_data_att_write_cid
+	1 mem_le_rxbuf_data_att_write_opcode
+	2 mem_le_rxbuf_data_att_write_handle
+	248 mem_le_rxbuf_data_att_write_payload
+)
+amemalloc mem_le_rxbuf(
+//data channel ATT prepare write request PDU
+	1 mem_le_rxbuf_data_prepare_att_write_header
+	1 mem_le_rxbuf_data_prepare_att_write_length
+	2 mem_le_rxbuf_data_prepare_att_write_l2cap_length
+	2 mem_le_rxbuf_data_prepare_att_write_cid
+	1 mem_le_rxbuf_data_prepare_att_write_opcode
+	2 mem_le_rxbuf_data_prepare_att_write_handle
+	2 mem_le_rxbuf_data_prepare_att_write_offset
+	246 mem_le_rxbuf_data_prepare_att_write_payload
+)
+memalloc hci_boot(
+2 mem_hci_opcode_ocf
+1 mem_hci_opcode_ogf
+
+//event head
+1 mem_hci_event_head_type
+1 mem_hci_event_head_event_code
+1 mem_hci_event_para_total_length
+
+//command complete
+1 mem_hci_command_complete_num_hci_command_packet
+0 mem_hci_command_complete_command_opcode
+2 mem_hci_opcode
+0 mem_hci_command_complete_return_parameter
+1 mem_hci_command_complete_return_parameter_status
+0 mem_hci_command_complete_return_parameter_chip_id
+
+)
+memalloc usb(
+1 mem_usb_status
+1 mem_usb_fifo_empty
+2 mem_usb_read_len
+65 mem_usb_txbuf
+10 mem_usb_txbuf1
+10 mem_usb_txbuf2
+64 mem_usb_rxbuf
+1 mem_usb_rxbuf_end
+2 mem_bufptr
+1 mem_remain
+2 mem_hidreportdesc_kb
+2 mem_hidreportdesc_m
+19 mem_devicedesc
+60 mem_confdesc
+5 mem_string0
+30 mem_string1
+30 mem_string2
+30 mem_string3
+2 mem_cb_usb_config
+
+1 mem_usb_tx_interval
+9 mem_usb_vid_pid
+2 mem_usb_zero_packet
+2 mem_usb_ones_packet
+2 mem_usb_two_packet
+1 mem_usb0_state
+1 mem_usb_offline_check_gpio
+
+0 mem_usb_clear_mem_start
+0 mem_usb_setup
+1 mem_usb_setup_bmRequestType
+1 mem_usb_setup_bRequest
+1 mem_usb_setup_bValue
+1 mem_usb_setup_bValueH
+2 mem_usb_setup_wIndex
+1 mem_usb_setup_bLength
+1 mem_usb_setup_bLengthH
+64 mem_usb0_set_report_data
+64 mem_usb0_get_report_data
+2 mem_usb_setup_bValue_temp
+1 mem_usb0_get_set_report
+1 mem_usb0_data_ready_report
+1 mem_usb_tx_win_enable
+1 mem_usb_tx_mac_enable
+1 mem_usb_idle_flag
+1 mem_usb_idle_rate
+1 mem_usb_get_protocol_flag
+1 mem_usb_set_protocol_status
+1 mem_usb_set_protocol_value
+1 mem_usb_state
+1 mem_usb_remote_wakeup
+1 mem_usb_clear_remote_wakeup
+1 mem_sdsystem_wakeup_flag
+1 mem_usb_ep0_stall_status
+1 mem_usb_ep1_stall_status
+1 mem_usb_ep2_stall_status
+1 mem_usb_ep3_stall_status
+2 mem_dsc_info_data_pointer
+1 mem_dsc_info_len
+1 mem_usb_ep1_data
+1 mem_usb_ep2_data
+1 mem_usb_tx_enable
+1 mem_usb_device_enumeration_endflag
+1 mem_usb_wakestate_onetime_flag
+1 mem_usb_mac_wakeup_trig
+1 mem_usb_set_high_addr_flag
+1 mem_usb_clear_halt
+16 mem_usb_mouse_data
+16 mem_usb_kb_data
+16 mem_usb_kb_multikey
+16 mem_usb_kb_system
+2 mem_usb_test_cnt
+10 mem_usb_test_kb
+0 mem_usb_clear_mem_end
+
+)
+amemalloc mem_mesh_receive_model_message_payload(
+	3 mem_mesh_NETKeyindex_and_APPKeyindex
+	16 mem_mesh_receive_application_key
+)
+amemalloc mem_mesh_receive_model_message_payload(
+	2 mem_mesh_vendor_message_cid
+	1 mem_mesh_vendor_message_tid
+	2 mem_mesh_vendor_message_attr_type
+)
+amemalloc mem_mesh_receive_model_message_payload(
+	5 mem_mesh_vendor_message_header
+	0 mem_mesh_vendor_attr_parameter
+)
+amemalloc mem_mesh_receive_model_message_payload(
+	5 mem_mesh_vendor_message_delay_close_time_header
+	2 mem_mesh_vendor_delay_close_time
+)
+amemalloc mem_mesh_receive_model_message_payload(
+	5 mem_mesh_vendor_message_night_light_onoff_header
+	1 mem_mesh_vendor_night_light_onoff
+)
+amemalloc mem_mesh_receive_model_message_payload(
+	5 mem_mesh_vendor_message_color_header
+	2 mem_mesh_vendor_color_lightness
+	2 mem_mesh_vendor_color_hue
+	2 mem_mesh_vendor_color_saturation
+)
+amemalloc mem_mesh_receive_model_message_payload(
+	5 mem_mesh_vendor_message_back_light_onoff_header
+	1 mem_mesh_vendor_back_light_onoff
+)
+amemalloc mem_mesh_receive_model_message_payload(
+	5 mem_mesh_vendor_message_main_light_onoff_header
+	1 mem_mesh_vendor_main_light_onoff
+)
+amemalloc mem_mesh_receive_model_message_payload(
+	5 mem_mesh_vendor_message_standby_brightness_header
+	2 mem_mesh_vendor_standby_brightness
+)
+amemalloc mem_mesh_receive_model_message_payload(
+	5 mem_mesh_vendor_message_current_time_header
+	4 mem_mesh_vendor_message_current_time
+)
+amemalloc mem_mesh_receive_model_message_payload(
+	5 mem_mesh_vendor_message_timer_header
+	1 mem_mesh_vendor_timer_timing_index
+	0 mem_mesh_vendor_timer_timing_index1
+	4 mem_mesh_vendor_timer_timing_time
+	2 mem_mesh_vendor_timer_timing_attr_type
+	1 mem_mesh_vendor_timer_timing_attr_para
+)
+amemalloc mem_mesh_receive_model_message_payload(
+	5 mem_mesh_vendor_message_timer_cyclic_header
+	1 mem_mesh_vendor_timer_timing_index_cyclic
+	2 mem_mesh_vendor_timer_timing_time_cyclic
+	1 mem_mesh_vendor_timer_timing_weekdays_cyclic
+	2 mem_mesh_vendor_timer_timing_attr_type_cyclic
+	1 mem_mesh_vendor_timer_timing_attr_para_cyclic
+	1 mem_mesh_vendor_timer_timing_cyclic_flag
+)
+amemalloc mem_mesh_access_layer_payload(
+	//ali mesh vendor struct
+	1 mem_mesh_access_layer_payload_vendor_command
+	2 mem_mesh_access_layer_payload_vendor_CID
+	1 mem_mesh_access_layer_payload_vendor_tid
+	2 mem_mesh_access_layer_payload_vendor_attr_type
+	1 mem_mesh_access_layer_payload_vendor_attr_parameter
+)
+amemalloc mem_temp_block0(
+	64 mem_mesh_subscription_eep_temp
+)
+amemalloc mem_mesh_queue_ele_temp(
+	2 mem_mesh_gatt_package_receive_msg_buffer_ptr
+	0 mem_mesh_gatt_package_receive_msg_buffer_temp
+	2 mem_mesh_gatt_package_receive_msg_id
+	0 mem_mesh_gatt_package_receive_MAC
+	1 mem_mesh_gatt_package_receive_msg_num
+	1 mem_mesh_gatt_package_receive_msg_total_length
+	29 mem_mesh_gatt_package_receive_msg_payload
+)
+amemalloc mem_mesh_Device_UUID(
+	2 mem_mesh_receive_service_uuid_company_id
+	1 mem_mesh_receive_service_uuid_vid
+	1 mem_mesh_receive_service_uuid_provisioning_type
+	2 mem_mesh_receive_service_uuid_mac
+	1 mem_mesh_receive_service_uuid_msg_id
+	1 mem_mesh_receive_service_uuid_package_num
+	1 mem_mesh_receive_service_uuid_length
+	7 mem_mesh_receive_service_uuid_payload_data
+)
+amemalloc mem_mesh_Device_UUID(
+	2 mem_mesh_receive_service_uuid_ios_data_company_id
+	1 mem_mesh_receive_service_uuid_ios_data_vid
+	1 mem_mesh_receive_service_uuid_ios_data_provisioning_type
+	1 mem_mesh_receive_service_uuid_ios_data_NID
+	1 mem_mesh_receive_service_uuid_ios_data_msg_id
+	1 mem_mesh_receive_service_uuid_ios_data_package_num
+	1 mem_mesh_receive_service_uuid_ios_data_length
+	8 mem_mesh_receive_service_uuid_ios_data_payload_data
+)
+amemalloc mem_mesh_receive_model_message_payload(
+	1 mem_mesh_configuration_health_message_opcode
+)
+amemalloc mem_mesh_receive_model_message_payload(
+	1 mem_mesh_configuration_health_message_opcode_config_model_subscription
+	2 mem_mesh_subscription_element_address
+	2 mem_mesh_subscription_value_address
+	2 mem_mesh_subscription_model_identifier
+)
+amemalloc mem_mesh_send_access_lower_transport_layer(
+	//bit7 is SEQ 0=Unsegment Message
+	//bit6 is AKF
+	//bit5-bit0 is AID
+	1 mem_mesh_unsegmented_access_lower_transport_layer_head
+	11 mem_mesh_unsegmented_access_lower_transport_layer_parameters
+	4 mem_mesh_unsegmented_access_lower_transport_layer_mic
+)
+amemalloc mem_mesh_send_access_lower_transport_layer(
+	//bit7 is SEQ 1=segment Message
+	//bit6 is AKF
+	//bit5-bit0 is AID
+	1 mem_mesh_segmented_access_lower_transport_layer_head
+	//bit23 is SZMIC size of transMIC
+	//bit22-bit10 is SeqZero Least significant bits of SeqAuth
+	//bit9-bit5 is SegO Segment offset number
+	//bit4-bit0 is SegN Last Segment number
+	3 mem_mesh_segmented_access_lower_transport_layer_SZMIC_SeqZero_SegO_SegN
+	8 mem_mesh_segmented_access_lower_transport_layer_parameters
+	4 mem_mesh_segmented_access_lower_transport_layer_mic
+)
+amemalloc mem_mesh_receive_model_message_payload(
+	1 mem_mesh_module_message_opcode
+)
+amemalloc mem_mesh_receive_model_message_payload(
+	//generic OnOff Set
+	1 mem_mesh_module_message_opcode_onoff_set
+	1 mem_mesh_generic_onoff_set_payload_OnOff
+	1 mem_mesh_generic_onoff_set_payload_TID
+	1 mem_mesh_generic_onoff_set_payload_Transition_Time
+	1 mem_mesh_generic_onoff_set_payload_Delay
+
+)
+amemalloc mem_mesh_receive_model_message_payload(
+	//Scene recall Ä£Ê½ÉèÖÃ
+	1 mem_mesh_module_message_opcode_scene_recall
+	2 mem_mesh_scene_recall_payload_scene_number
+	1 mem_mesh_scene_recall_payload_TID
+	1 mem_mesh_scene_recall_payload_Transition_Time
+	1 mem_mesh_scene_recall_payload_Delay
+
+)
+amemalloc mem_mesh_receive_model_message_payload(
+	//light lightness
+	1 mem_mesh_module_message_opcode_set_light_lightness
+	2 mem_mesh_light_lightness_set_payload_lightness
+	1 mem_mesh_light_lightness_set_payload_TID
+	1 mem_mesh_light_lightness_set_payload_Transition_Time
+	1 mem_mesh_light_lightness_set_payload_Delay
+	1 mem_mesh_light_lightness_calc_lightness
+)
+amemalloc mem_mesh_receive_model_message_payload(
+	//light CTL
+	1 mem_mesh_module_message_opcode_set_light_ctl
+	2 mem_mesh_CTL_Lightness
+	2 mem_mesh_CTL_Temperature
+	2 mem_mesh_CTL_Delta_UV
+	1 mem_mesh_CTL_lightness_TID
+	1 mem_mesh_CTL_lightness_Transition_Time
+	1 mem_mesh_CTL_lightness_Delay	
+	1 mem_mesh_CTL_calc_lightness
+	1 mem_mesh_CTL_calc_temperature
+
+)
+amemalloc mem_le_txheader_mesh_temp(
+	1 mem_mesh_network_packet_type_temp
+	29 mem_mesh_message_NID_temp
+)
+amemalloc mem_k2_T2(
+	16 mem_k2_EncryptionKey
+)
+amemalloc mem_k2_T3(
+	16 mem_k2_PrivacyKey
+)
+amemalloc mem_mesh_nonce_struct(
+	//DST and TransportPDU encryption
+	0 mem_mesh_Network_Nonce
+	1 mem_mesh_Network_Nonce_nonce_type
+	1 mem_mesh_Network_Nonce_CTL_and_TTL
+	3 mem_mesh_Network_Nonce_SEQ
+	2 mem_mesh_Network_Nonce_SRC
+	2 mem_mesh_Network_Nonce_Pad	//0x0000
+	4 mem_mesh_Network_Nonce_IV_Index
+
+)
+amemalloc mem_mesh_nonce_struct(
+	//application payload encryption
+	0 mem_mesh_Application_Nonce
+	1 mem_mesh_Application_Nonce_Nonce_Type
+	//bit7 is ASZMIC
+	1 mem_mesh_Application_Nonce_ASZMIC_and_Pad	//
+	3 mem_mesh_Application_Nonce_SEQ
+	2 mem_mesh_Application_Nonce_SRC
+	2 mem_mesh_Application_Nonce_DST
+	4 mem_mesh_Application_Nonce_IV_Index
+)
+amemalloc mem_mesh_nonce_struct(
+	//application payload encryption
+	0 mem_mesh_Device_Nonce
+	1 mem_mesh_Device_Nonce_Nonce_Type
+	1 mem_mesh_Device_Nonce_ASZMIC_and_Pad	//
+	3 mem_mesh_Device_Nonce_SEQ
+	2 mem_mesh_Device_Nonce_SRC
+	2 mem_mesh_Device_Nonce_DST
+	4 mem_mesh_Device_Nonce_IV_Index
+)
+amemalloc mem_mesh_access_layer_payload_len(
+	1 mem_mesh_upper_transport_layer_payload_len
+)
+amemalloc mem_mesh_upper_tran_layer_temp_packet_payload(
+//unsegment access message
+	0 mem_mesh_upper_tran_layer_temp_pakcet_AKF_AID
+	1 mem_mesh_upper_tran_layer_temp_unsegmented_pakcet_AKF_AID
+	4 mem_mesh_upper_tran_layer_temp_unsegmented_packet_fill
+	0 mem_mesh_upper_tran_layer_temp_pakcet_upper_tran_access_pdu
+	15 mem_mesh_upper_tran_layer_temp_unsegmented_pakcet_upper_tran_access_pdu
+)
+amemalloc mem_mesh_upper_tran_layer_temp_packet_payload(
+//segment access message
+	1 mem_mesh_upper_tran_layer_temp_segmented_pakcet_AKF_AID
+	2 mem_mesh_upper_tran_layer_temp_segmented_pakcet_SeqZero
+	1 mem_mesh_upper_tran_layer_temp_segmented_pakcet_SegO
+	1 mem_mesh_upper_tran_layer_temp_segmented_pakcet_SegN
+	104 mem_mesh_upper_tran_layer_temp_segmented_pakcet_upper_tran_access_pdu
+)
+xmemalloc(
+/* patch enable 0x4000-0x403f  */
+
+1 mem_patch00
+1 mem_patch01
+1 mem_patch02
+1 mem_patch03
+1 mem_patch04
+1 mem_patch05
+1 mem_patch06
+1 mem_patch07
+1 mem_patch08
+1 mem_patch09
+1 mem_patch0a
+1 mem_patch0b
+1 mem_patch0c
+1 mem_patch0d
+1 mem_patch0e
+1 mem_patch0f
+1 mem_patch10
+1 mem_patch11
+1 mem_patch12
+1 mem_patch13
+1 mem_patch14
+1 mem_patch15
+1 mem_patch16
+1 mem_patch17
+1 mem_patch18
+1 mem_patch19
+1 mem_patch1a
+1 mem_patch1b
+1 mem_patch1c
+1 mem_patch1d
+1 mem_patch1e
+1 mem_patch1f
+1 mem_patch20
+1 mem_patch21
+1 mem_patch22
+1 mem_patch23
+1 mem_patch24
+1 mem_patch25
+1 mem_patch26
+1 mem_patch27
+1 mem_patch28
+1 mem_patch29
+1 mem_patch2a
+1 mem_patch2b
+1 mem_patch2c
+1 mem_patch2d
+1 mem_patch2e
+1 mem_patch2f
+1 mem_patch30
+1 mem_patch31
+1 mem_patch32
+1 mem_patch33
+1 mem_patch34
+1 mem_patch35
+1 mem_patch36
+1 mem_patch37
+1 mem_patch38
+1 mem_patch39
+1 mem_patch3a
+1 mem_patch3b
+1 mem_patch3c
+1 mem_patch3d
+1 mem_patch3e
+1 mem_patch3f
+
+	/* 3 device contexts  */
+88 mem_context
+1 mem_current_amaddr
+1 mem_lpm_mode
+1 mem_device_option
+1 mem_scan_mode
+4 mem_last_clkn
+
+	/* parameters */
+8 mem_features
+3 mem_lap
+1 mem_uap
+2 mem_nap
+1 mem_npage
+3 mem_glap
+3 mem_class
+2 mem_iscan_window
+2 mem_iscan_interval
+2 mem_pscan_window
+2 mem_pscan_interval
+2 mem_page_interval
+2 mem_page_window
+2 mem_page_to
+2 mem_inq_window
+1 mem_fcomp_div
+2 mem_rx_window_init
+2 mem_rx_window_sniff
+2 mem_rf_init_ptr
+
+	/* connection related */
+1 mem_last_type
+1 mem_last_type_esco
+1 mem_last_type_saved
+2 mem_retransmission_cnt
+4 mem_next_btclk
+
+1 mem_rf_rccal
+1 mem_handle_num
+1 mem_max_slot
+1 mem_eir_enable
+
+/* AFH related */
+4 mem_afh_instant
+2 mem_afh_error_total
+1 mem_afh_cfg
+1 mem_afh_new_mod
+5 mem_afh_map_lo
+5 mem_afh_map_hi
+1 mem_afh_used
+2 mem_afh_index
+11 mem_afh_map_new
+80 mem_afh_map
+4 mem_afh_timer
+10 mem_afh_classify_channel_map
+
+
+	/* lpm related */
+2 mem_lpm_wake_lock
+2 mem_lpm_interval
+1 mem_lpm_overhead
+1 mem_lpm_hibernate_switch
+1 mem_esco_addr
+1 mem_sniff_unint_lost
+1 mem_ptt
+4 mem_sleep_counter   //should be 0x41fc in REVC
+4 mem_sleep_counter_all
+6 mem_sleep_clkn
+3 mem_sniff_rcv
+3 mem_sniff_lost
+3 mem_clks_per_lpo
+
+1 mem_lpm_mult
+1 mem_lpm_mult_timeout
+1 mem_lpm_mult_cnt
+
+/* 8139-813b lpm_ctrl[31:12] */
+0 mem_lpm_config				
+1 mem_lpm_xtal_ib
+1 mem_lpm_ctrim
+1 mem_lpm_padding
+
+1 mem_lpm_xtalcnt
+1 mem_lpm_buckcnt
+1 mem_lpm_ldocnt
+1 mem_lpm_isogate
+1 mem_lpm_isogate_final
+4 mem_lpm_ctrl3
+20 mem_saved_gpio	// should be 0x421e in REVC
+3 mem_saved_gsel
+8 mem_saved_mark
+1 mem_saved_spidctrl
+2 mem_patch_ptr
+2 mem_patch_len
+
+32 mem_timers
+
+/*LINK KEY*/
+1 mem_link_key_exists
+16 mem_link_key
+
+
+/* HCI */
+1 mem_hci_cmd
+1 mem_hci_conn_handle
+3 mem_hci_plap
+1 mem_hci_puap
+2 mem_hci_pnap
+
+
+1 mem_loadcode_times
+1 mem_llid
+
+1 mem_tx_lch
+2 mem_tx_len
+
+1 mem_tx_power
+1 mem_modem_rssi
+1 mem_gain_fix
+3 mem_gain_table
+1 mem_gain_second_agc_en
+
+ifdef DEBUG_RF_INIT
+1 mem_rf_init_data
+endif
+1 mem_system_clk
+)
+xmemalloc(
+2 mem_le_dsniff
+
+2 mem_le_conn_interval
+
+1 mem_le_txheader
+1 mem_le_txlen
+256 mem_le_txpayload
+
+//modified name
+1 mem_le_name_len
+30 mem_le_name
+
+
+/* smp related */
+
+16 mem_le_ltk
+1 mem_ltk_exists
+16 mem_le_rconfirm
+16 mem_le_srand
+1 mem_le_iat
+1 mem_le_rat
+1 mem_le_preq
+1 mem_le_preq_iocap
+1 mem_le_preq_oob
+1 mem_le_preq_auth
+1 mem_le_preq_max_keysize
+1 mem_le_preq_init_key_distribution
+1 mem_le_preq_resp_key_distribution
+1 mem_le_pres
+1 mem_le_pres_iocap
+1 mem_le_pres_oob
+1 mem_le_pres_auth
+1 mem_le_pres_max_keysize
+1 mem_le_pres_init_key_distribution
+1 mem_le_pres_resp_key_distribution
+
+/* att related */
+
+2 mem_le_notify_handle
+1 mem_le_search_uuid_length
+16 mem_le_search_uuid
+
+
+
+//START of LE conn parameter structure
+0 mem_le_conn_param
+1 mem_le_conn_peer_addr_type
+6 mem_le_conn_peer_addr
+1 mem_le_conn_own_addr_type
+2 mem_le_interval_min
+2 mem_le_interval_max
+2 mem_le_latency
+2 mem_le_timeout
+//START of LE conn parameter structure
+
+
+3 mem_le_lap
+1 mem_le_uap
+2 mem_le_nap
+
+
+2 mem_le_local_mtu
+2 mem_le_remote_mtu
+
+8 mem_le_skdm
+8 mem_le_skds
+
+2 mem_le_init_superto
+2 mem_ui_le_uuid_table
+
+1 mem_le_secure_connect_flag
+1 mem_le_secure_connect_state
+1 mem_le_sc_confirm_gkey_flag
+
+
+1 mem_le_pairing_state
+1 mem_le_enc_state
+1 mem_le_pairing_mode
+4 mem_le_tk
+2 mem_le_ediv
+8 mem_le_rand
+16 mem_le_irk
+
+//LE attribute list
+4 mem_le_transmit_window
+
+//ble General configuration 
+1 mem_le_configuration
+16 mem_le_fixed_ltk
+2 mem_le_pairing_handle
+
+
+1 mem_le_packet_llid
+
+//for continue
+2 mem_le_l2cap_size
+2 mem_le_packet_len_recved
+2 mem_le_payload_ptr
+
+
+//ble gatt signaling
+1 mem_le_signaling_identifier
+2 mem_le_l2cap_signaling_conn_param_update_rsp_result
+
+1 mem_le_md_count
+
+2 mem_ble_l2cap_tx_buff0_ptr
+2 mem_ble_l2cap_tx_buff_size_ptr
+)
+xmemalloc(
+// parameters
+1 mem_le_scan_enable
+2 mem_le_scan_interval
+2 mem_le_scan_window
+
+
+1 mem_le_adv_data_len
+31 mem_le_adv_data
+1 mem_le_scan_data_len
+31 mem_le_scan_data
+
+//START of LE adv parameter structure
+1 mem_le_adv_enable
+0 mem_le_adv_param
+2 mem_le_adv_interval
+1 mem_le_adv_type
+1 mem_le_adv_own_addr_type
+6 mem_le_adv_direct_addr
+1 mem_le_adv_channel_map
+//END of LE adv parameter structure
+
+//START of LE scan parameter structure
+0 mem_le_scan_params
+1 mem_le_scan_type
+1 mem_le_scan_own_addr_type
+//END of LE scan parameter structure
+)
+xmemalloc(
+	1 mem_le_l2cap_att_states
+
+	/* should be together */
+	1 mem_le_att_opcode
+	2 mem_le_att_handle
+	1 mem_le_search_res
+
+)
+xmemalloc(
+8 mem_le_local_feature
+1 mem_le_tx_phys
+1 mem_le_rx_phys
+
+2 mem_remote_rx_max_octets
+2 mem_remote_rx_max_time
+2 mem_remote_tx_max_octets
+2 mem_remote_tx_max_time
+2 mem_local_rx_max_octets
+2 mem_local_rx_max_time
+2 mem_local_tx_max_octets
+2 mem_local_tx_max_time
+
+)
+xmemalloc(
+1 mem_app_handshake_flag
+2 mem_sniff_param_interval
+2 mem_sniff_param_attempt
+2 mem_sniff_param_timeout
+
+/*App Callback Functons*/
+2 mem_cb_check_wakelock
+2 mem_cb_before_hibernate
+2 mem_cb_before_lpm
+2 mem_cb_le_process
+2 mem_cb_bt_process
+2 mem_cb_idle_process
+2 mem_cb_bb_event_process
+2 mem_cb_discovry_timeout
+2 mem_cb_att_write
+2 mem_cb_ble_transmit
+2 mem_cb_event_timer
+2 mem_cb_bt_set_mult
+2 mem_cb_spi_flash_write_complate
+2 mem_cb_spi2_flash_write_complate
+2 mem_cb_bt_slave_match
+2 mem_cb_before_lpm_sleep
+
+2 mem_eeprom_base
+
+1 mem_unsniff2sniff_timer_count
+//lpm mode
+1 mem_wake_up_delay_timer
+
+1 mem_app_connection_options
+
+//
+2 mem_app_disconn_reason
+2 mem_app_disconn_reason_flag
+1 mem_xrecord_mode
+
+1 mem_eeprom_block_size
+1 mem_spi_init_clk
+1 mem_spi_init_delay_time
+1 mem_spi_ncs_gpio
+
+2 mem_nv_data_ptr
+1 mem_nv_data_number
+
+2 mem_queue_ptr
+
+1 mem_ui_led_struct_num
+2 mem_ui_led_struct_ptr
+
+//adc
+1 mem_adc_wait_count
+2 mem_3v_adc_io_data
+2 mem_2v_adc_hvin_data
+2 mem_2v_adc_vinlpm_data
+2 mem_1v_adc_io_data
+2 mem_3v_adc_hvin_data
+2 mem_3v_adc_vinlpm_data
+1 mem_app_adc_read_count
+1 mem_start_adc_clkn
+2 mem_reference_voltage
+1 mem_adc_config_flag
+1 mem_adc_channel
+2 mem_adc_current_value
+1 mem_adc_power_flag	//bit0:low power falg ; bit1:no power flag
+
+3 mem_spi_write_addr
+2 mem_spi_write_ptr
+2 mem_spi_write_len
+1 mem_spi_write_flash_sm
+3 mem_spi2_write_addr
+2 mem_spi2_write_ptr
+2 mem_spi2_write_len
+1 mem_spi2_write_flash_sm
+
+1 mem_spi_cs_gpio
+1 mem_spi_si_gpio
+1 mem_spi_so_gpio
+1 mem_spi_sclk_gpio
+1 mem_spi_wp_gpio
+1 mem_spi_hold_gpio
+1 mem_spi2_cs_gpio
+1 mem_spi2_si_gpio
+1 mem_spi2_so_gpio
+1 mem_spi2_sclk_gpio
+1 mem_spi2_wp_gpio
+1 mem_spi2_hold_gpio
+
+1 mem_eeprom_wp_gpio
+1 mem_eeprom_scl_gpio
+1 mem_eeprom_sda_gpio
+2 mem_kscan_ptr
+0 mem_key_num_ptr
+2 mem_keyscan_ptr
+2 mem_key_value_retention
+2 mem_power_param_ptr
+3 mem_efuse_header
+
+1 mem_seqi
+
+1 mem_dig_aon_vsel
+1 mem_syn_afc_cfg1
+1 mem_rf_ldo_cfg1
+1 mem_rc_cal
+
+1 mem_nec_decode_error_value
+
+ifdef AC_50HZ
+1 mem_ac_detect_gpio
+0 mem_ac_detect_control
+1 mem_ac_detect_div
+1 mem_ac_detect_window
+endif
+
+)
+xmemalloc(
+
+1 mem_rf_debug_rx_gpio
+1 mem_rf_debug_tx_gpio
+)
+xmemalloc(
+0 mem_l2cap_xmem_start
+//*******************L2CAP TX MULTI-PACKET*********************//
+2 mem_l2cap_tx_multi_offset //0 means single packet
+
+//*******************CHANNEL ID*********************//
+2 mem_sdp_remote_cid
+2 mem_rfcomm_remote_cid
+2 mem_hid_ctrl_remote_cid
+2 mem_hid_int_remote_cid
+//*******************CHANNEL STATE*********************//
+1 mem_sdp_state
+1 mem_rfcomm_state
+1 mem_hid_control_state
+1 mem_hid_interrupt_state
+1 mem_spp_state
+1 mem_ML2CAP_comm_id
+
+//*******************L2CAP malloc********************//
+1 mem_used_map
+0 mem_tx_fifo0
+1 mem_tx_fifo0_map
+2 mem_tx_fifo0_ptr
+0 mem_tx_fifo1
+1 mem_tx_fifo1_map
+2 mem_tx_fifo1_ptr
+0 mem_tx_fifo2
+1 mem_tx_fifo2_map
+2 mem_tx_fifo2_ptr
+0 mem_tx_fifo3
+1 mem_tx_fifo3_map
+2 mem_tx_fifo3_ptr
+0 mem_tx_fifo_end
+256 mem_l2cap_lpm_txbuf
+//*******************MISC*********************//
+1 mem_l2cap_flow_ctrl_flag
+1 mem_l2cap_pending_item
+1 mem_l2cap_rcv_hidtype
+0 mem_l2cap_xmem_end
+
+)
+xmemalloc(
+1 mem_lmo_header_opcode_x
+1 mem_lmp_version
+2 mem_lmp_compid
+2 mem_lmp_subversion
+1 mem_local_name_length
+3 mem_local_name
+64 mem_local_name2
+1 mem_local_name_end
+1 mem_unsniff2sniff_timer
+1 mem_switch_flag
+1 mem_classic_bt_flag
+1 mem_encapsulated_major_type
+1 mem_encapsulated_minor_type
+1 mem_encapsulated_len
+1 mem_remote_br_sc_support
+)
+xmemalloc(
+1 mem_pn_dlci
+2 mem_pn_max_frame_size
+
+1 memFCStemp1
+1 memFCStemp2
+1 memFCStemp3
+
+1 mem_rfcomm_initiator
+
+1 mem_remote_spp_channel
+
+1 mem_HIUfcs_SPP
+1 mem_HIUfcs_SPP_WCredits
+
+1 mem_rfcomm_send_more_pkt
+
+1 mem_remote_credits
+1 mem_credit_given
+
+//rfcomm modem status
+1 mem_ms_channel
+
+1 mem_rfcomm_credit_flag
+
+2 mem_rfcomm_max_frame_size
+1 mem_rfcomm_credit_init_data
+
+2 mem_cb_receive_spp_data
+
+2 mem_nl_rx_data_src
+2 mem_nl_rx_len_all
+)
+xmemalloc(
+2 mem_ui_uuid_table
+22 mem_all_uuid_16bits
+34 mem_all_uuid_128bits
+2 mem_sdp_l2capch_ptr
+)
+xmemalloc(
+5 mem_ccm_pcnt_tx
+5 mem_ccm_pcnt_rx
+4 mem_ccm_last_mic
+0 mem_ccm_iv
+4 mem_ccm_ivm
+4 mem_ccm_ivs
+2 mem_ccm_len
+2 mem_ccm_rx_ptr
+)
+xmemalloc(
+1 mem_sc_only_mode
+1 mem_sp_debug_mode
+1 mem_secure_connections_enable
+1 mem_sp_local_key_invalid
+1 mem_sc_calc
+1 mem_sc_local_key_invalid
+
+
+32 mem_sc_private_key_256
+32 mem_sc_pubkey_local_x_256
+32 mem_sc_pubkey_local_y_256
+
+24 mem_sp_private_key
+0 mem_sp_pubkey_local
+24 mem_sp_pubkey_local_x
+0 mem_sp_pubkey_local_x_end
+24 mem_sp_pubkey_local_y
+
+1 mem_ssp_enable
+1 mem_lmp_io_cap_payload_iocap
+1 mem_lmp_io_cap_payload_oob_auth_data
+1 mem_lmp_io_cap_payload_auth_req
+
+0 mem_sp_state_xmem
+3 mem_sp_iocap_remote
+1 mem_flag_mode_ssp_pin
+1 mem_ssp_mode_flag
+1 mem_authentication_passkey_times
+1 mem_passkey_1bit
+1 mem_flag_pairing_state
+0 mem_sp_state_xmem_end
+)
+xmemalloc(
+//UI Work area
+1 mem_ipc_lock_bt
+1 mem_ipc_lock_c51
+8 mem_ipc_fifo_bt2c51
+8 mem_ipc_fifo_c512bt
+
+1 mem_ui_button_timer
+1 mem_ui_button_last_state
+4 mem_ui_timer_last_btclk
+2 mem_discovery_timeout_timer_count
+1 mem_hid_handshake_timer_count
+1 memui_reconnect_mode
+2 mem_ui_state_map
+
+//UI Config area
+1 mem_ui_profile_supported
+1 mem_ui_button_timeout
+1 mem_ui_button_gpio
+2 mem_discovery_timeout
+1 mem_pin_length
+16 mem_pin
+
+)
+omemalloc (
+3 mem_dummy
+1 mem_seq
+1 mem_context_cnt
+1 mem_context_map
+768 mem_context_new
+1 mem_att_cmd_len
+15 mem_att_cmd
+1 mem_att_resp_handle
+1 mem_att_resp_len
+30 mem_att_resp
+600 mem_meter_att_list
+)
+xmemalloc g24(
+34 mem_24g_rxbuf
+32 mem_24g_txbuf
+36 mem_24g_txpayload
+32 mem_24g_rxpayload
+1 mem_24g_rxdata_length
+1 mem_24g_pid
+1 mem_24g_no_ack
+3 mem_24g_sta_crc
+3 mem_24g_last_crc
+1 mem_24g_sta_pid
+1 mem_24g_last_pid
+1 mem_24g_datalen
+1 mem_24g_data_type
+1 mem_24g_txlen
+2 mem_24g_rx_window
+1 mem_24g_ch
+1 mem_24g_current_ch_number
+4 mem_24g_addr
+4 mem_24g_ch_map1
+4 mem_24g_ch_map2
+4 mem_24g_ch_map3
+4 mem_24g_ch_map4
+4 mem_24g_tx_btclk
+1 mem_24g_interval
+1 mem_24g_interval_min
+1 mem_24g_interval_max
+2 mem_24g_syncword
+1 mem_24g_syncword_crc8
+1 mem_24g_get_syncword_crc8
+1 mem_24g_pair_switch
+8 mem_24g_enter_hibernate
+
+1 mem_24g_rx_phy
+1 mem_24g_tx_phy
+
+1 mem_24g_ch_map_update
+4 mem_24g_ch_update_map1
+4 mem_24g_ch_update_map2
+4 mem_24g_ch_update_map3
+4 mem_24g_ch_update_map4
+
+1 mem_24g_disable_fec1
+)
+xmemalloc g24_tx(
+1 mem_rssi_hex_received
+
+)
+xmemalloc g24(
+4 mem_24g_pair_addr
+1 mem_24g_pair_ch
+1 mem_24g_pair_tx_power
+
+)
+xmemalloc g24_tx(
+1 mem_24g_pair_sm
+1 mem_24g_pair_no_ack
+2 mem_24g_pair_timeout_init
+2 mem_24g_pair_timeout
+
+)
+xmemalloc g24_rx(
+1 mem_24g_device1_bind_step
+1 mem_24g_device2_bind_step
+1 mem_24g_bind_device_status
+8 mem_24g_bind_payload
+
+)
+xmemalloc g24_rx(
+2 mem_cb_24g_receive_process
+2 mem_cb_24g_ackpayload
+2 mem_cb_24g_data_device1
+2 mem_cb_24g_data_device2
+34 mem_24g_rxdata_temp
+1 mem_24g_abort_packet
+4 mem_24g_hop_btclk
+1 mem_24g_hop_interval
+1 mem_24g_pair_mode
+1 mem_24g_ackpayload_enable
+1 mem_24g_hop_packet
+1 mem_24g_mode_switch
+1 mem_24g_nodata_timer_enable
+
+1 mem_24g_mode_init
+1 mem_24g_work_mode
+1 mem_24g_time_slice
+1 mem_24g_self_last_ch
+1 mem_24g_self_ch_number
+1 mem_24g_self_config_ch_once
+1 mem_24g_device1_last_ch
+1 mem_24g_device1_ch_number
+1 mem_24g_device1_config_ch_once
+1 mem_24g_device2_last_ch
+1 mem_24g_device2_ch_number
+1 mem_24g_device2_config_ch_once
+1 mem_24g_led_status
+1 mem_24g_bind_mode_continue
+
+1 mem_tx_power_temp
+
+1 mem_24g_mode_B_S_switch
+1 mem_24g_mode_B_S_switch_init
+2 mem_24g_mode_B_S_switch_cnt
+1 mem_24g_mode_B_S_switch_exit
+1 mem_24g_B_S_time_slice
+1 mem_24g_B_S_mode_switch_disable
+
+1 mem_24g_bind_device_living
+)
+xmemalloc g24_tx(
+2 mem_24g_reconn_timeout_init
+2 mem_24g_reconn_timeout
+2 mem_24g_reconn_count
+1 mem_24g_reconn_type
+1 mem_24g_fast_conn_enable
+4 mem_24g_fast_conn_addr
+4 mem_24g_receiver_addr
+1 mem_24g_fast_conn_temp_ch
+1 mem_24g_receiver_temp_ch
+1 mem_24g_device_temp_ch
+
+)
+xmemalloc g24_rx(
+4 mem_24g_transmitter_addr
+4 mem_24g_device1_addr
+4 mem_24g_device2_addr
+
+)
+xmemalloc g24(
+1 mem_rssi_buff_index
+)
+xmemalloc g24_tx(
+1 mem_rssi_signal_index
+2 mem_rssi_signal_buf_ptr
+
+)
+xmemalloc g24_rx(
+1 mem_rssi_noise_avg
+1 mem_rssi_noise_index
+
+1 mem_rssi_noise_self_avg
+1 mem_rssi_noise_device1_avg
+1 mem_rssi_noise_device2_avg
+1 mem_rssi_noise_self_index
+1 mem_rssi_noise_device1_index
+1 mem_rssi_noise_device2_index
+
+2 mem_rssi_noise_buffer_ptr
+2 mem_rssi_noise_self_buffer_ptr
+2 mem_rssi_noise_device1_buffer_ptr
+2 mem_rssi_noise_device2_buffer_ptr
+
+)
+xmemalloc g24_tx(
+2 mem_cb_24g_transmit_data
+2 mem_cb_24g_search_receiver
+2 mem_cb_24g_lpm_before
+
+1 mem_24g_conn_sm
+
+1 mem_24g_ensure
+2 mem_24g_txfail_cnt
+1 mem_24g_attempt_fail_flag
+
+1 mem_24g_retry
+1 mem_24g_abort_pac
+1 mem_24g_max_retry
+4 mem_24g_device_addr
+3 mem_24g_short_sleep_set
+8 mem_24g_long_sleep_set
+4 mem_24g_long_sleep_set1
+
+1 mem_24g_pac_index
+1 mem_24g_transmit_by_interrupt
+2 mem_24g_transmit_by_interrupt_exit_count
+2 mem_24g_transmit_by_interrupt_exit_count_init
+2 mem_24g_long_sleep_param_update_timer_init
+2 mem_24g_long_sleep_param_update_timer
+
+1 mem_24g_fast_hop_count
+)
+xmemalloc g24_tx(
+1 mem_rssi_avg_received
+1 mem_power_ctrl_level
+1 mem_power_ctrl_pac_succ_cnt
+1 mem_power_ctrl_pac_succ_cnt_init
+
+1 mem_rssi_dis_min_24g
+1 mem_rssi_dis_max_24g
+1 mem_rssi_hex_received_max_value
+
+1 mem_rssi_dis_min_ble
+1 mem_rssi_dis_max_ble
+)
+xmemalloc ali_mesh(
+	1 mem_mesh_vendor_mesh_receive_tid
+	1 mem_mesh_vendor_mesh_send_tid
+
+	4 mem_mesh_vendor_timer_current_time
+	4 mem_system_time
+)
+xmemalloc ali_mesh(
+
+	
+	1 mem_mesh_adv_data_len
+	31 mem_mesh_adv_data
+
+	1 mem_mesh_adv_scan_channel
+)
+xmemalloc ali_mesh(
+	1 mem_mesh_advertising_unprovisioned_device_beacon_switch
+	//Î´ÅäÍø¹ã²¥¼ä¸ô
+	2 mem_mesh_advertising_unprovisioned_device_beacon_timer
+
+	//¹ã²¥Éú´æÖÜÆÚ
+	1 mem_mesh_advertising_unprovisioned_device_beacon_duration
+	//¹ã²¥ÖÜÆÚÖ®¼äµÄ¼ä¸ô
+	1 mem_mesh_advertising_unprovisioned_device_beacon_interval
+
+)
+xmemalloc ali_mesh(
+
+	0 mem_mesh_calc_ConfirmationCloud_data
+	8 mem_mesh_ConfirmationCloud_RandomB
+	8 mem_mesh_ConfirmationCloud_RandomA
+	16 mem_mesh_AuthValueProv
+	16 mem_mesh_ConfirmationCloud
+
+
+	//provisioning random  / provisioning_confirmation
+	0 mem_mesh_ConfirmationDevice
+	0 mem_mesh_calc_ConfirmationDevice_data
+	8 mem_mesh_provisioning_random_A
+	8 mem_mesh_provisioning_random_B
+	16 mem_mesh_AuthValueDevice
+
+	16 mem_mesh_Device_Key
+
+
+// CMAC Key
+	16 mem_mesh_Confirmationkey
+
+	//sha256 init data
+	15 mem_mesh_sha256_ConfirmationKey_ascii
+	10 mem_mesh_sha256_SessionKey_ascii
+	9 mem_mesh_sha256_DeviceKey_ascii
+
+	//sha256
+	1 mem_mesh_sha256_load_first_data_flag
+
+	8 mem_mesh_sha256_data_len_byte
+	8 mem_mesh_sha256_data_len_bit
+	2 mem_mesh_sha256_data_end_addr
+	2 mem_mesh_sha256_data_len_addr
+	1 mem_mesh_sha256_chunk_count
+	2 mem_mesh_sha256_chunk_data_ptr
+	2 mem_mesh_sha256_chunk_ptr
+
+
+	//function K2
+	//f2 input
+	1 mem_k2_P_len
+	16 mem_k2_P
+	16 mem_k2_N
+	//f2 init data
+	16 mem_k2_SALT
+	//f2 output
+	16 mem_k2_T
+	0 mem_k2_T0
+	16 mem_k2_T1
+	1 mem_k2_NID
+	16 mem_k2_T3
+	16 mem_k2_T2
+
+
+	//k4 function
+	16 mem_k4_SALT
+	16 mem_k4_T
+	16 mem_k4_id6_01
+	16 mem_k4_k4N
+	1 mem_mesh_transport_AID
+
+	16 mem_k3_SALT
+	16 mem_k3_T
+	5 mem_k3_id64_01
+	8 mem_k3_k4N
+	8 mem_mesh_network_id
+
+
+)
+xmemalloc ali_mesh(
+
+	// provisioning flag ±êÖ¾ÊÇ·ñÈëÍø
+	1 mem_mesh_provisioned_flag
+
+	//ÈëÍøÊ±µÄ×´Ì¬»ú
+	1 mem_mesh_Provisioning_State_Flag
+	
+	1 mem_mesh_Device_PID
+	1 mem_mesh_UUID_FeatureFlag
+	2 mem_mesh_PDU_RFU
+	2 mem_mesh_OOB_information
+
+	//Provisioning_Data
+	0 mem_mesh_Encrypt_Provisioning_Data
+	2 mem_mesh_provisioning_data_Mac_addr
+	1 mem_mesh_KeyFresh_and_Update_flag
+	16 mem_mesh_Network_Key
+	1 mem_mesh_last_IV_Index_byte
+	2 mem_mesh_Unicast_Address
+
+	4 mem_mesh_adv_last_time
+	2 mem_mesh_send_packet_timeout
+
+	1 mem_mesh_gatt_package_send_msg_id
+
+)
+xmemalloc ali_mesh(
+//GATT Ð­Òé
+	1 mem_mesh_gatt_receive_msg_timer
+	//fast pairing 
+	//APP control 
+
+	GATT_RECEIVE_MSG_BUFFER_SIZE mem_mesh_gatt_packet_receive_msg_buffer1
+	GATT_RECEIVE_MSG_BUFFER_SIZE mem_mesh_gatt_packet_receive_msg_buffer2
+
+)
+xmemalloc ali_mesh(
+	// three tuple °¢ÀïÔÆÆ½Ì¨·ÖÅäµÄÈýÔª×é
+	4 mem_mesh_three_tuple_ProductID
+	6 mem_mesh_three_tuple_MAC
+	16 mem_mesh_three_tuple_secret
+
+	//ble ºËÐÄÐ­ÒéÕ»£¬scanµ½Êý¾ÝµÄ»Øµ÷
+	2 mem_mesh_cb_receive_advertising
+
+	//alarm¼Ä´æÆ÷²»ÄÜÐÞ¸Ä
+	//meshºËÐÄ¹æ·¶½ÓÊÕµ½ÈÎºÎTMALLÖ¸Áî
+	2 mem_mesh_cb_receive_access_message
+
+	//½ÓÊÕµ½ÅäÖÃapplication keyÖ¸Áî(¿ÉÒÔÈÏÎªÈëÍø³É¹¦)
+	2 mem_mesh_cb_receive_config_appkey_add
+
+	//¸÷ÖÖÔ­ÒòÅäÍøÊ§°Ü»Øµ÷
+	2 mem_mesh_cb_pairing_fail
+
+	//ali vendor message cb
+	2 mem_mesh_cb_recv_vendor
+
+	2 mem_mesh_scan_selete_next_ch
+	
+	2 mem_mesh_cb_generic_onoff_get
+	2 mem_mesh_cb_generic_onoff_set
+	2 mem_mesh_cb_scene_recall
+	2 mem_mesh_cb_light_lightness_set
+	2 mem_mesh_cb_light_lightness_get
+	2 mem_mesh_cb_light_ctl_set
+
+	2 mem_mesh_cb_main_light_onoff_set
+	2 mem_mesh_cb_background_onoff_set
+	2 mem_mesh_cb_color_set
+
+	//relay µÄ¹¦ÄÜ»Øµ÷
+	2 mem_mesh_cb_network_relay
+
+	//Ä£¿é¸´Î»µÄ»Øµ÷£¬ÐèÒª3sÖ®ºó¸´Î»
+	2 mem_mesh_cb_receive_node_reset
+
+	//seq¸Ä±äÊ±µÄ»Øµ÷£¬ÐèÒª´æµ½¶ÔÓ¦µÄ´æ´¢Æ÷ÖÐ
+	2 mem_mesh_cb_seq_changed
+
+	2 mem_mesh_cb_subscriptuion_list_changed
+
+	//Timer ¶¨Ê±Æ÷¸Ä±äÊ±£¬ÐèÒª´æµ½¶ÔÓ¦µÄ´æ´¢Æ÷ÖÐ
+	2 mem_mesh_cb_vendor_timing_changed
+	
+
+	2 mem_mesh_core_feature
+
+	1 mem_mesh_element_number
+	2 mem_mesh_element_device_ptr
+	2 mem_mesh_element_device_length
+
+)
+xmemalloc ali_mesh_element(
+	0 mem_mesh_element_device
+	2 mem_mesh_element_device_group_addr
+	2 mem_mesh_element_device_queue_buffer_ptr
+	2 mem_mesh_element_device_timing_ptr
+	16 mem_mesh_element_device_element_subscription_label
+	1 mem_mesh_element_upper_adv_flag
+	2 mem_mesh_element_upper_queue_buffer_ptr
+	1 mem_mesh_element_tran_package_tid
+	1 mem_mesh_element_tran_package_type
+
+	SIZEOF_ELEMENT_DEVICE mem_mesh_element_device1
+	SIZEOF_ELEMENT_DEVICE mem_mesh_element_device2
+)
+xmemalloc ali_mesh_element(
+	MESH_SEGMENT_SIZE mem_mesh_segmented_access_message_Segment
+)
+xmemalloc ali_mesh_element(
+	1 mem_mesh_element_device_queue_each_size
+	1 mem_mesh_element_device_queue_length
+	1 mem_mesh_element_device_queue_current_num
+	1 mem_mesh_element_device_queue_read_ptr
+	1 mem_mesh_element_device_queue_write_ptr
+	136 mem_mesh_element_device_queue_ele
+
+	1 mem_mesh_element_device_upper_queue_each_size
+	1 mem_mesh_element_device_upper_queue_length
+	1 mem_mesh_element_device_upper_queue_current_num
+	1 mem_mesh_element_device_upper_queue_read_ptr
+	1 mem_mesh_element_device_upper_queue_write_ptr
+	//ÔªËØ³¤¶ÈÎª47
+	188 mem_mesh_element_device_upper_queue_ele
+
+)
+xmemalloc ali_mesh(
+	//current segmented access message head
+	1 mem_mesh_segmented_access_message_SZMIC
+	2 mem_mesh_segmented_access_message_SeqZero
+	1 mem_mesh_segmented_access_message_SegO
+	1 mem_mesh_segmented_access_message_SegN
+
+	4 mem_mesh_segmented_access_message_BlockAck
+	1 mem_mesh_segmented_access_message_receive_finish
+	1 mem_mesh_segmented_access_message_current_length
+
+	1 mem_mesh_segmented_access_message_SegN_upper_limit
+	2 mem_mesh_segmented_access_message_Segment_ptr
+)
+xmemalloc ali_mesh(
+	2 mem_mesh_last_CTL_Temperature
+)
+xmemalloc ali_mesh(
+	1 mem_mesh_receive_group_address
+	1 mem_mesh_receive_element_number
+)
+xmemalloc ali_mesh(
+	4 mem_mesh_IV_Index
+
+
+
+// mesh SRC/SEQ  cache
+	0 mem_mesh_TMALL_cache_start
+	2 mem_mesh_TMALL_SRC1
+	3 mem_mesh_TMALL_SEQ1
+	45 mem_mesh_TMALL_cache
+	0 mem_mesh_TMALL_cache_end
+
+	0 mem_mesh_transport_message_mic_cache
+	4 mem_mesh_transport_message_mic_cache_buff1
+	36 mem_mesh_transport_message_mic_cache_buff2_10
+
+	0 mem_mesh_network_relay_queue
+	1 mem_mesh_network_relay_queue_each_size
+	1 mem_mesh_network_relay_queue_length
+	1 mem_mesh_network_relay_queue_current_num
+	1 mem_mesh_network_relay_queue_read_ptr
+	1 mem_mesh_network_relay_queue_write_ptr
+	136 mem_mesh_network_relay_queue_ele
+
+)
+xmemalloc ali_mesh_element(
+	152 mem_mesh_le_att_list
+)
+xmemalloc ali_mesh(
+	16 mem_mesh_application_key
+	1 mem_mesh_ASZMIC
+
+	0 mem_mesh_access_message_mic_cache
+	4 mem_mesh_access_message_mic_cache_buff1
+	36 mem_mesh_access_message_mic_cache_buff2_10
+
+	3 mem_mesh_send_message_SEQ
+
+	2 mem_mesh_send_message_SRC
+
+	1 mem_mesh_send_message_TTL
+
+	//Upper transport access PDU
+	1 mem_mesh_send_upper_layer_IVI_and_NID
+	1 mem_mesh_send_upper_layer_CTL_and_TTL
+	3 mem_mesh_send_upper_layer_SEQ
+	2 mem_mesh_send_upper_layer_SRC
+	2 mem_mesh_send_upper_layer_DST
+	16 mem_mesh_send_access_lower_transport_layer
+	4 mem_mesh_send_network_layer_NetMIC
+
+)
+xmemalloc antilost(
+// memblock for cover the variables portion at shutter.format
+2 mem_antl_lpm_interval
+2 mem_antl_adv_interval
+2 mem_antl_slow_adv_lpm_interval
+2 mem_antl_slow_adv_adv_interval
+0 mem_antl_led_style
+1 mem_antl_led_type
+1 mem_antl_led_blink_count
+1 mem_antl_led_gpio
+2 mem_antl_led_on_time
+2 mem_antl_led_off_time
+2 mem_antl_led_cb_on
+2 mem_antl_led_cb_off
+
+0 mem_antl_buzzer_style
+1 mem_antl_buzzer_type
+1 mem_antl_buzzer_blink_count
+1 mem_antl_buzzer_gpio
+2 mem_antl_buzzer_on_time
+2 mem_antl_buzzer_off_time
+2 mem_antl_buzzer_cb_on
+2 mem_antl_buzzer_cb_off
+
+0 mem_antl_fast_adv_led_style
+1 mem_antl_fast_adv_led_type
+1 mem_antl_fast_adv_led_blink_count
+1 mem_antl_fast_adv_led_gpio
+2 mem_antl_fast_adv_led_on_time
+2 mem_antl_fast_adv_led_off_time
+
+0 mem_antl_slow_adv_led_style
+1 mem_antl_slow_adv_led_type
+1 mem_antl_slow_adv_led_blink_count
+1 mem_antl_slow_adv_led_gpio
+2 mem_antl_slow_adv_led_on_time
+2 mem_antl_slow_adv_led_off_time
+
+0 mem_antl_power_starting_led_style
+1 mem_antl_power_starting_led_type
+1 mem_antl_power_starting_led_blink_count
+1 mem_antl_power_starting_led_gpio
+2 mem_antl_power_starting_led_on_time
+2 mem_antl_power_starting_led_off_time
+
+7 mem_antl_power_starting_buzzer_style
+
+0 mem_antl_power_off_led_style
+1 mem_antl_power_off_led_type
+1 mem_antl_power_off_led_link_count
+1 mem_antl_power_off_led_gpio
+2 mem_antl_power_off_led_on_time
+2 mem_antl_power_off_led_off_time
+
+0 mem_antl_power_off_buzzer_style
+1 mem_antl_power_off_buzzer_type
+1 mem_antl_power_off_buzzer_link_count
+1 mem_antl_power_off_buzzer_gpio
+2 mem_antl_power_off_buzzer_on_time
+2 mem_antl_power_off_buzzer_off_time
+
+7 mem_antl_alert_led_stlye
+
+0 mem_antl_alert_buzzer_stlye
+1 mem_antl_alert_buzzer_type
+1 mem_antl_alert_buzzer_blink_count
+1 mem_antl_alert_buzzer_gpio
+2 mem_antl_alert_buzzer_on_time
+2 mem_antl_alert_buzzer_off_time
+
+0 mem_antl_key_led_style
+1 mem_antl_key_led_type
+1 mem_antl_key_led_blink_count
+1 mem_antl_key_led_gpio
+2 mem_antl_key_led_on_time
+2 mem_antl_key_led_off_time
+
+7 mem_antl_key_buzzer_style
+
+1 mem_antl_queue_width
+1 mem_antl_queue_depth
+1 mem_antl_queue_curr_num
+1 mem_antl_queue_read_ptr
+1 mem_antl_queue_write_ptr
+80 mem_antl_queue_buff
+
+1 mem_antl_key_scan_enable
+1 mem_antl_led_num
+4 mem_antl_led_gpio_map
+
+0 mem_antl_power_param
+1 mem_antl_power_state
+1 mem_antl_power_timer
+1 mem_antl_power_off_timeout
+1 mem_antl_power_starting_timeout
+2 mem_antl_power_off_cb
+2 mem_antl_power_starting_cb
+2 mem_antl_power_standby_cb
+2 mem_event_button_up_cb
+
+1 mem_antl_key_num
+2 mem_cb_antl_key
+4 mem_antl_key_conf0
+
+15 mem_antl_key0_press
+15 mem_antl_key0_release
+
+///////
+1 mem_antl_conn_updata_procedure_state
+2 mem_client_characteristic_configuration_descriptor
+///////
+
+
+//100ms timer
+2 mem_adc_timer
+1 mem_antl_conn_update_timer
+1 mem_antl_send_updata_le_param_timer
+////
+
+2 mem_antl_le_sleep_timer
+2 mem_antl_fast_adv_timer
+2 mem_antl_fast_adv_timeout
+2 mem_antl_le_sleep_timeout
+1 mem_double_click_timer
+1 mem_butten_click_cnt
+
+//1 mem_dvc_seq
+/////////anti lost alarm state/////
+1 mem_antl_led_state
+1 mem_antl_buzzer_state
+1 mem_antl_key_state
+1 mem_antl_lost_mode
+1 mem_alarm_config
+1 mem_alarm_config_notfy_cnt
+
+6 mem_buzzer_pwm_conf
+
+
+/////////anti lost battery adc read////////
+2 mem_adc_timeout
+1 mem_voltage_remain_percent
+
+0 mem_battery_calculate_set
+2 mem_battery_full_voltage
+2 mem_battery_empty_voltage
+2 mem_battery_low_voltage
+2 mem_battery_current_voltage
+
+
+2 mem_rx_window_sniff_inc
+2 mem_interval_increment
+
+2 mem_antl_le_interval_min
+2 mem_antl_le_interval_max
+2 mem_antl_le_latency
+2 mem_antl_le_timeout
+2 mem_antl_le_unnormal_interval_min
+2 mem_antl_le_unnormal_interval_max
+2 mem_antl_le_unnormal_latency
+2 mem_antl_le_unnormal_timeout
+
+400 mem_AntiLost_le_att_list
+1 mem_lestate_update_param_flag
+1 mem_antilost_conn_battery_send_timer
+
+2 mem_antl_disconn_buzzer_on_timer
+2 mem_antl_disconn_buzzer_on_timeout
+)
+xmemalloc g24_rx_car(
+1 mem_car_hard_soft_switch
+1 mem_car_queue_each_size
+1 mem_car__queue_length
+
+1 mem_car_queue_curr_num
+1 mem_car_queue_read_ptr
+1 mem_car_queue_write_ptr
+120 mem_car_queue_ele
+
+20 mem_car_pop_queue_buff
+
+1 mem_car_led_num
+10 mem_car_led_map
+
+1 mem_car_style1_led_type
+1 mem_car_style1_blink_count
+1 mem_car_style1_struct_led_gpio
+2 mem_car_style1_on_time
+2 mem_car_style1_off_time
+2 mem_car_style1_cb_ledon
+2 mem_car_style1_cb_ledoff
+
+1 mem_car_style2_led_type
+1 mem_car_style2_blink_count
+1 mem_car_style2_struct_led_gpio
+2 mem_car_style2_on_time
+2 mem_car_style2_off_time
+2 mem_car_style2_cb_ledon
+2 mem_car_style2_cb_ledoff
+
+//////motor
+0 mem_le_receive_data
+2 mem_le_receive_packet_head
+1 mem_le_receive_cmd
+2 mem_le_receive_length
+10 mem_le_receive_payload
+1 mem_le_receive_checksum
+1 mem_motor1_status
+1 mem_motor1_speed
+1 mem_motor2_status
+1 mem_motor2_speed
+1 mem_motor3_status
+1 mem_motor3_speed
+
+0 mem_motor1_pwm_set
+1 mem_motor1_pwm_pin1_set
+1 mem_motor1_pwm_pin2_set
+1 mem_motor1_pwm_pin_set
+1 mem_motor1_pwm_channel_set
+3 mem_motor1_pwm_freq_set
+1 mem_motor1_pwm_dute_set
+0 mem_motor2_pwm_set
+1 mem_motor2_pwm_pin1_set
+1 mem_motor2_pwm_pin2_set
+1 mem_motor2_pwm_pin_set
+1 mem_motor2_pwm_channel_set
+3 mem_motor2_pwm_freq_set
+1 mem_motor2_pwm_dute_set
+0 mem_motor3_pwm_set
+1 mem_motor3_pwm_pin1_set
+1 mem_motor3_pwm_pin2_set
+1 mem_motor3_pwm_pin_set
+1 mem_motor3_pwm_channel_set
+3 mem_motor3_pwm_freq_set
+1 mem_motor3_pwm_dute_set
+
+1 mem_motor_select_p_n
+1 mem_car_motor_status
+1 mem_car_motor_speed
+0 mem_motor_pwm_set
+1 mem_motor_pwm_pin1_set
+1 mem_motor_pwm_pin2_set
+1 mem_motor_pwm_pin_set
+1 mem_motor_pwm_channel_set
+3 mem_motor_pwm_freq_set
+1 mem_motor_pwm_dute_set
+
+1 mem_ir_rx_gpio
+2 mem_ir_data
+2 mem_ir_rx_buf
+4 mem_ir_receive_clkn
+
+3 mem_ir_notify_data
+5 mem_ir_notify_data_head
+2 mem_ir_notify_data_payload
+1 mem_ir_notify_data_check_sum
+1 mem_car_ir_breakdown_check_timer
+1 mem_car_ir_breakdown_flag
+
+0 mem_car_led_control
+1 mem_car_led1_status
+1 mem_car_led2_status
+1 mem_car_led3_status
+1 mem_car_led4_status
+1 mem_car_led5_status
+1 mem_car_led6_status
+1 mem_car_led7_status
+1 mem_car_led8_status
+1 mem_car_led_control_timer
+1 mem_car_led_blink_status
+1 mem_car_led_no
+
+3 mem_car_info_request
+5 mem_car_info_request_head
+8 mem_car_info_request_payload
+1 mem_car_info_request_checksum
+
+0 mem_car_config_param
+1 mem_car_config_setting_flag
+1 mem_car_config_device_select
+1 mem_car_config_motor_layout
+1 mem_car_config_ir_enable
+1 mem_car_config_ir_rx_gpio
+1 mem_car_config_pairing_led_conn_status
+1 mem_car_config_pairing_led_gpio
+1 mem_car_config_led_num
+0 mem_car_config_blood_led_gpio
+1 mem_car_config_blood_led1_gpio
+1 mem_car_config_blood_led2_gpio
+1 mem_car_config_blood_led3_gpio
+1 mem_car_config_blood_led4_gpio
+1 mem_car_config_blood_led5_gpio
+1 mem_car_config_blood_led6_gpio
+1 mem_car_config_blood_led7_gpio
+1 mem_car_config_blood_led8_gpio
+1 mem_car_config_bat_notify_enable
+1 mem_car_config_low_voltage_led_gpio
+1 mem_car_config_low_voltage_percent
+1 mem_car_config_soft_switch_enable
+1 mem_car_config_soft_switch_gpio
+
+1 mem_car_notify_vdd_count
+1 mem_car_notify_vdd_timer
+1 mem_car_notify_vdd_value_last
+1 mem_car_notify_vdd_percent
+1 mem_car_working_flag
+1 mem_low_bat_flag
+
+3 mem_notify_bat_packet
+5 mem_notify_bat_head
+1 mem_notify_bat_payload
+1 mem_notify_bat_check_sum
+
+1 mem_vdd_notify_flag
+2 mem_car_current_vdd_value_temp
+2 mem_car_last_vdd_value
+
+0 mem_vdd_calculate_set
+2 mem_vdd_full_vol
+2 mem_vdd_empty_vol
+2 mem_vdd_low_vol
+2 mem_vdd_now_vol
+
+
+1 mem_car_24g_status
+2 mem_car_24g_no_data_timeout_count
+2 mem_car_24g_no_data_timeout_timer
+
+1 mem_car_24g_ir_receive_attack_count
+1 mem_car_24g_go_die_flag
+1 mem_car_attack_shake_timer
+1 mem_car_attack_shake_flag
+
+0 mem_car_soft_power
+1 mem_car_power_state
+1 mem_car_power_timer
+1 mem_car_power_off_timeout
+1 mem_car_power_starting_timeout
+2 mem_car_power_off_cb
+2 mem_car_power_starting_cb
+2 mem_car_power_standby_cb
+2 mem_car_ui_button_up_cb
+
+
+500 mem_car_le_att_list
+
+1 mem_car_moto1_blank_timer
+1 mem_car_moto2_blank_timer
+1 mem_car_moto3_blank_timer
+
+1 mem_car_motor_gpio_num
+0 mem_car_motor_gpio_map
+1 mem_car_motor_left_gpio
+1 mem_car_motor_right_gpio
+1 mem_car_motor_front_gpio
+1 mem_car_motor_back_gpio
+1 mem_car_gpio
+1 mem_car_app_send_speed
+
+2 mem_rssi_sum
+2 mem_check_rssi_high_count
+8 mem_rssi_data
+
+1 mem_car_24g_received_pac
+1 mem_car_24g_bind_enable_delay_count
+
+0 mem_car_keyscan
+1 mem_car_key_num
+2 mem_cb_car_keyscan
+
+2 mem_car_enter_lpm_timer_count
+2 mem_car_enter_lpm_timer
+1 mem_car_enter_lpm_flag
+
+1 mem_car_24g_ch_polling
+
+8 mem_car_rssi_noise_buffer
+8 mem_car_rssi_noise_car_buffer
+8 mem_car_rssi_noise_remote_buffer
+
+
+)
+xmemalloc g24_rx_dongle(
+1 mem_dg_kb_bind_flag
+8 mem_dg_kb_data_sta_data
+8 mem_dg_kb_data_last_data
+3 mem_dg_kb_multikey_sta_data
+3 mem_dg_kb_multikey_last_data
+3 mem_dg_kb_system_sta_data
+3 mem_dg_kb_system_last_data
+1 mem_dg_kb_blank_data_enable
+1 mem_dg_kb_mul_blank_data_enable
+1 mem_dg_ms_blank_data_enable
+
+1 mem_dg_sys_config
+9 mem_dg_usb_vid_pid
+1 mem_dg_usb_tx_interval
+30 mem_dg_usb_device_name
+1 mem_dg_kb_bind_success
+1 mem_dg_pc_sleep_flag
+
+1 mem_test_blank_data
+)
+xmemalloc module(	
+	2 mem_soft_version_num
+	1 mem_module_wake_up_gpio
+	1 mem_module_state_gpio
+	1 mem_module_connect_state_gpio
+
+	2 mem_current_packet_length
+	1 mem_module_state
+	
+	1 mem_module_mcu_wake_pin
+	4 mem_module_mcu_wake_delay_us
+
+	1 mem_module_spp_lpm_mult
+	1 mem_module_le_lpm_mult	
+	1 mem_module_bluetooth_stauts_by_command
+
+	//uart
+	2 mem_module_uart_rx_buffer
+	2 mem_module_uart_rx_buffer_end
+	2 mem_module_uart_tx_buffer
+	2 mem_module_uart_tx_buffer_end
+	2 mem_module_uarta_baud_rate
+
+	//ADC
+	1 mem_module_read_vdd_flag
+	1 mem_module_read_vdd_count
+	1 mem_module_vdd_quotient
+	1 mem_module_vdd_remainder
+
+	//ble
+	1 mem_module_ble_data_uart_max_length
+
+	//flag
+	2 mem_module_flag
+
+	1 mem_module_hci_notify_len
+	2 mem_module_hci_notify_handle
+	2 mem_module_hci_nofiy_addr
+	1 mem_module_hci_notify_type
+
+	4 mem_last_transmite_clock
+
+ifdef COMPILE_WECHAT
+	1 mem_module_wechat_indication_handle
+	1 mem_module_wechat_write_handle
+	2 mem_module_wechat_tx_buffer_ptr
+	2 mem_module_wechat_rx_buffer_ptr
+	2 mem_module_wechat_rx_push_data_cb
+	2 mem_module_wechat_tx_nSeq
+	2 mem_module_wechat_tx_len
+	2 mem_module_wechat_tx_address
+	2 mem_module_wechat_rx_len
+	2 mem_module_wechat_rx_address
+	1 mem_module_wechat_receive_push_data
+endif
+	
+	300 mem_module_uuid_list
+	0 mem_module_uuid_list_end
+	600 mem_module_le_att_list
+	0 mem_module_le_att_list_end
+	0 mem_module_nv_data
+	34 mem_module_nv_data0
+	34 mem_module_nv_data1
+	34 mem_module_nv_data2
+	34 mem_module_nv_data3
+	34 mem_module_nv_data4
+	0 mem_module_nv_data_end
+)
+xmemalloc g24_tx_mouse(
+// Mouse Work Area
+1 mem_mouse_key
+2 mem_mouse_x
+2 mem_mouse_y
+1 mem_mouse_z
+1 mem_mouse_tz
+1 mem_mouse_xy_h
+1 mem_mouse_key_last
+
+//mouse wheel
+1 mem_wheel_tb_old_pinlevel
+1 mem_wheel_tb_new_pinlevel
+1 mem_wheel_tog 
+1 mem_mouse_tz_data
+1 mem_mwheel_b_old_pinlevel
+1 mem_mwheel_b_new_pinlevel
+1 mem_mwheel_tog 
+1 mem_mouse_z_data
+1 mem_mouse_wheel_trigger
+1 mem_mouse_wheel_trigger_timer
+
+// adc
+//adc struct
+0 mem_mouse_vdd_calculate_set
+2 mem_mouse_vdd_full_vol
+2 mem_mouse_vdd_empty_vol
+2 mem_mouse_vdd_low_vol
+2 mem_mouse_vdd_now_vol
+
+2 mem_mouse_vdd_button_press_vol
+2 mem_mouse_vdd_switch_gnd_24g_vol
+2 mem_mouse_vdd_switch_gnd_full_vol
+2 mem_mouse_vdd_switch_gnd_shutdown_voltage
+2 mem_mouse_vdd_switch_gnd_low_voltage
+1 mem_adc_mux_status
+1 mem_adc_read_timer
+1 mem_adc_read_time_init
+1 mem_adc_low_volatage_led_timer_count
+1 mem_adc_low_volatage_led_blink_enable
+1 mem_mouse_adc_last_low_voltage_flag
+1 mem_mouse_adc_button_press_flag
+1 mem_adc_channel_gpio
+
+1 mem_adc_config_flag_init
+
+//efuse configured start		26byte
+2 mem_mouse_discovery_timeout
+2 mem_mouse_24g_pair_timeout_init
+1 mem_mouse_direct_timeout
+1 mem_mouse_24g_reconn_timeout_init
+1 mem_mouse_24g_pair_tx_power
+1 mem_rssi_dis_min_24g_init
+1 mem_rssi_dis_max_24g_init
+1 mem_rssi_hex_received_max_value_init
+1 mem_rssi_dis_min_ble_init
+1 mem_rssi_dis_max_ble_init
+1 mem_mouse_enable_flag
+1 mem_mouse_global_setup
+1 mem_mouse_global_setup1
+
+1 mem_bk_button_gpio
+1 mem_fw_button_gpio
+1 mem_dpi_button_gpio
+1 mem_matrix_public_gpio
+1 mem_sensor_motion_gpio
+1 mem_customer_key_gpio
+1 mem_whee_a_data_gpio
+1 mem_whee_b_data_gpio
+1 mem_config_device_24g_led_gpio
+1 mem_select_sensor_angle_gpio
+1 mem_mouse_reuse_2ice_gpio
+
+//efuse configured end
+
+1 mem_lbutton_gpio
+1 mem_rbutton_gpio
+1 mem_mbutton_gpio
+1 mem_config_select_device_button_gpio
+1 mem_whee_ta_data_gpio
+1 mem_whee_tb_data_gpio
+1 mem_device_switch_gpio
+1 mem_mouse_sensor_sclk_gpio
+1 mem_mouse_sensor_sdio_gpio
+1 mem_config_low_voltage_alarm_gpio
+1 mem_config_device_bt1_led_gpio
+1 mem_config_device_bt2_led_gpio	
+1 mem_dpi_led_gpio 
+
+
+1 mem_sensor_angle_default
+1 mem_sensor_angle_switch
+1 mem_config_sensor_dpi
+1 mem_config_sensor_type
+1 mem_config_sensor_angle
+
+
+// usb
+1 mem_wire_usb_interval
+1 mem_usb_addr
+1 mem_mouse_usb_vdd_status
+1 mem_mouse_usb_keyboard_flag
+
+
+//led struct
+1 mem_mouse_led_type
+1 mem_mouse_blink_count
+1 mem_mouse_struct_led_gpio
+2 mem_mouse_on_time
+2 mem_mouse_off_time
+2 mem_mouse_cb_ledon
+2 mem_mouse_cb_ledoff
+
+//three devices param
+//eeprom/flash
+0 mem_mouse_information_start
+1 mem_device_flag
+1 mem_device1_type
+6 mem_device1_addr
+16 mem_device1_link_key
+6 mem_device1_locall_addr
+
+1 mem_device2_type
+6 mem_device2_addr
+16 mem_device2_link_key
+6 mem_device2_locall_addr
+
+1 mem_device3_type
+0 mem_mouse_compare_addr_ff
+6 mem_device3_addr
+16 mem_device3_link_key
+6 mem_device3_locall_addr
+2 mem_store_flag
+1 mem_mouse_dpi
+4 mem_mouse_24g_addr
+2 mem_random_addr_increase_count
+1 mem_mouse_24g_report
+30 mem_mouse_retention
+0 mem_mouse_information_end
+
+3 mem_flash_base
+4 mem_write_flash_head_temp
+1 mem_store_information_delay_timer
+1 mem_store_information_delay_timer_init
+
+//sensor param
+1 mem_sensor_id1
+1 mem_sensor_id2
+
+1 mem_sensor_shutter_hi
+1 mem_sensor_shutter_lo
+1 mem_sensor_smart_flag
+1 mem_sensor_squal_reg
+1 mem_sensor_iqc
+1 mem_mouse_move_flag
+
+1 mem_mouse_asm_flag
+2 mem_mouse_x_pre
+2 mem_mouse_y_pre
+1 mem_mouse_data_xtemp
+1 mem_mouse_data_ytemp
+
+0 mem_mouse_dpi_seting
+1 mem_320x_dpi_0
+1 mem_320x_dpi_1
+1 mem_320x_dpi_2
+1 mem_320x_dpi_3
+1 mem_3212_dpi_0
+1 mem_3212_dpi_1
+1 mem_3212_dpi_2
+1 mem_3212_dpi_3
+1 mem_ka8g2_dpi_0
+1 mem_ka8g2_dpi_1
+1 mem_ka8g2_dpi_2
+1 mem_ka8g2_dpi_3
+1 mem_mouse_cpi_count
+1 mem_mouse_dpi_button_state
+1 mem_mouse_dpi_long_press_flag
+
+10 mem_sensor_3212_init
+10 mem_sensor_3204_init
+10 mem_sensor_3205_init
+26 mem_sensor_32xx_init
+34 mem_sensor_32xx_init_1
+38 mem_sensor_8650_init
+30 mem_sensor_ka8ul_init
+16 mem_sensor_8009_init
+22 mem_sensor_ka8g2_init
+12 mem_sensor_p6520_init
+8 mem_sensor_poweron_init
+
+1 mem_sensor_reset_gpio
+1 mem_mouse_clear_sensor_data_flag
+1 mem_bluetooth_125hz_cnt
+
+//no motion pin
+1 mem_mouse_long_mult_flag
+1 mem_mouse_current_mult_timer
+
+1 mem_reconn_times
+1 mem_reconn_times_init
+2 mem_mouse_no_data_timer
+1 mem_device_flag_temp
+8 mem_mouse_rssi_signal_buf				
+4 mem_btclk_sensor
+1 mem_mouse_bluetooth_fast_conn_flag
+2 mem_mouse_discovery_timer
+1 mem_mouse_bluetooth_reconnect_timeout
+1 mem_mouse_need_soft_reset
+
+// le
+1 mem_mouse_le_bb_connected_flag
+1 mem_mouse_le_reconnect_flag
+1 mem_mouse_send_secutiry_request_timer
+
+3 mem_mouse_le_lap_temp
+3 mem_le_adv_ind
+3 mem_le_adv_direct_ind
+20 mem_le_adv_swift_pair
+1 mem_le_data_len
+2 mem_le_keyboard_handle
+2 mem_le_multimedia_handle
+2 mem_le_systemctrl_handle
+2 mem_le_battery_level_handle
+1 mem_le_battery_level_percentage
+2 mem_le_battery_level_updata_timer_init
+2 mem_le_battery_level_updata_timer
+1 mem_mouse_le_conn_param_reject
+32 mem_le_tx_buffer0_omemalloc
+32 mem_le_tx_buffer1_omemalloc
+32 mem_le_tx_buffer2_omemalloc
+32 mem_le_tx_buffer3_omemalloc
+1 mem_le_connect_status_flag
+1 mem_le_start_encrypt_timer
+1 mem_mouse_direct_timer
+
+//bt
+7 mem_device_addr_temp
+1 mem_mouse_enter_sniff_count
+1 mem_mouse_bt_boot_mode
+5 mem_mouse_bt_boot_data
+1 mem_bt_send_max_slot_req_accept_after_switch
+1 mem_mouse_bt_send_first_package_timer
+1 mem_mouse_bt_send_first_package_flag
+1 mem_lmi_opcode_temp 
+1 mem_lpm_mult_init
+
+// mouse key
+1 mem_customer_key
+1 mem_customer_data_trigger
+1 mem_customer_data_trigger_last
+
+1 mem_mouse_lkey_press_status
+1 mem_mouse_rkey_press_status
+1 mem_mouse_mkey_press_status
+1 mem_mouse_bkkey_press_status
+1 mem_mouse_fwkey_press_status
+1 mem_mouse_dpikey_press_status
+1 mem_mouse_pbkey_press_status
+1 mem_mouse_customerkey_press_status
+1 mem_mouse_key_temp
+1 mem_mouse_key_status
+
+1 mem_mouse_matrix_key_cow_count
+1 mem_mouse_matrix_key_row_count
+1 mem_mouse_ghost_flag
+1 mem_bt_discovery_count
+1 mem_select_device_count
+1 mem_mouse_commbination_key
+1 mem_select_device_button_statue
+1 mem_commbination_key_statue
+1 mem_combination_ui_button_count
+
+// 2.4G
+1 mem_mouse_search_dongle_interval
+1 mem_mouse_search_dongle_ch
+1 mem_mouse_search_dongle_count
+1 mem_mouse_search_dongle_action
+1 mem_24g_enter_lpm_timer
+1 mem_mouse_24g_enter_lpm_enable
+
+//led
+1 mem_mouse_device_poweron_timer_count
+1 mem_mouse_dpi_led_delay_count
+1 mem_mouse_led_off_4_led
+1 mem_24g_device_led_status
+
+// mouse configured param
+8 mem_mouse_flag 
+1 mem_mouse_bluetooth_type
+1 mem_device_number
+2 mem_mouse_page_to
+1 mem_mouse_fast_direct_timeout
+2 mem_mouse_fast_page_to
+2 mem_mouse_24g_power_on_fast_conn_timer
+2 mem_mouse_24g_search_dongle_time_init
+2 mem_mouse_no_data_timeout
+
+1 mem_mouse_device_poweron_timer_count_init
+1 mem_mouse_dpi_led_delay_count_init
+2 mem_mouse_dpi_led_blink_time
+2 mem_mouse_disconvey_led_blink_time
+2 mem_mouse_low_v_led_blink_time
+2 mem_adc_low_volatage_led_blink_timer
+
+1 mem_mouse_commbination_key_bt
+1 mem_mouse_commbination_key_24g
+
+9 mem_customer_key_press
+9 mem_customer_key_release
+3 mem_mouse_set_high_impedance_bit_set
+
+1 mem_sensor_shutdown_flag
+1 mem_24g_long_sleep_set_level
+
+// patch area
+1 mem_power_on_flag
+
+8 mem_ka8g2_sensor_poweron_init
+2 mem_24g_pair_count
+
+1 mem_le_name_patch_len
+19 mem_le_name_patch
+
+1 mem_mouse_logo_led_gpio
+2 mem_mouse_logo_led_on_time_init
+
+// 24g repotr rate area start
+4 mem_24g_tsniff
+1 mem_tx_count
+6 mem_tx_time_last
+4 mem_tx_time_last_delt
+5 mem_tx_time_sum
+1 mem_tx_time_sum_count
+1 mem_tx_time_offset
+
+3 mem_24g_short_sleep_set_init
+2 mem_retransmit
+1 mem_sleep_miss
+1 mem_long_sleep_flag
+4 mem_sleep_miss_temp
+0 mem_mouse_end
+// 24g repotr rate area end
+
+16 mem_mouse_rssi_signal_buf_patch
+16 mem_mouse_rssi_signal_buf_temp
+
+1 mem_g24_fast_conn_enable
+1 mem_xtal_cache
+
+//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
+
+//rssi log start
+1 mem_24g_paccnt
+1 mem_rssi_mouse
+4 mem_clkn_bt_patch
+2 mem_txpower_print
+//rssi log end
+
+1 mem_sensor_read_count
+1 mem_sensor_param_change_count
+
+//le conn param update
+1 mem_mouse_le_send_conn_param_update
+1 mem_mouse_le_send_conn_param_update_timer
+
+1 mem_soft_agc_en
+
+//tx power
+1 mem_normal_tx_power
+
+0 mem_3212_dpi_new
+1 mem_3212_dpi_0_new
+1 mem_3212_dpi_1_new
+1 mem_3212_dpi_2_new
+1 mem_3212_dpi_3_new
+1 mem_3212_dpi_4_new
+
+1 mem_24g_reconn_pairing_switch
+
+
+//usb retention
+1 mem_usb_offline_gpio_retention
+1 mem_usb_tx_interval_retention
+9 mem_usb_vid_pid_retention
+30 mem_usb_device_name_retention
+1 mem_usb_mode_enable
+
+//led parm
+1 mem_mouse_led_new_interface_enable
+1 mem_mouse_multi_led_blink_enable
+1 mem_mouse_multi_led_type
+1 mem_mouse_multi_led_state
+1 mem_mouse_le_reconn_led_fuction_enable
+1 mem_mouse_led_multi_type
+
+1 mem_mouse_multi_led_powon_timer
+1 mem_mouse_multi_led_blink_timer_init
+1 mem_mouse_multi_led_blink_timer
+
+1 mem_mouse_1io2led_multi_24gled		//io confige
+1 mem_mouse_1io2led_multi_bt1led
+1 mem_mouse_1io2led_multi_bt2led
+1 mem_mouse_1io2led_dpi_led
+1 mem_mouse_1io2led_low_led
+
+1 mem_mouse_pair_success
+1 mem_mouse_dpi_led_blink_enable
+1 mem_mouse_dpi_blink_count
+1 mem_mouse_dpi_blink_time
+
+//g24 buff
+70 mem_24g_rxbuf_new
+70 mem_24g_txbuf_new
+70 mem_24g_txpayload_new
+70 mem_24g_rxpayload_new
+
+//zcode
+1 mem_zcode_temp_param0	//zcode num
+2 mem_zcode_temp_param1	//patch ram func addr
+2 mem_zcode_temp_param2	//patch ram func addr
+
+1 mem_zcode_current_number
+3 mem_xip_flash_offset
+3 mem_flash_start_addr
+3 mem_flash_address
+4 mem_zcode_head
+
+//pack type
+1 mem_24g_rf_data_flag
+1 mem_device_tx_protocol_data_type
+1 mem_device_tx_dpi_data_flag
+1 mem_device_tx_dpi_data_delay_timer
+1 mem_device_tx_battery_data_flag
+1 mem_device_tx_heart_data_flag
+10 mem_mouse_temp_buff
+//le service
+60 mem_ui_le_uuid_table_new
+2 mem_le_protocol_tx_handle
+2 mem_le_protocol_rx_handle
+3 mem_le_protocol_rx_data
+1 mem_le_service_change_flag
+//g24 repair pack
+1 mem_retransmit_flag
+1 mem_device_pair_flag
+1 mem_mouse_repair_pack_flag
+1 mem_mouse_g24_pack_conut
+)
+xmemalloc g24_tx_remote(
+1 mem_remote_car_hard_soft_switch
+
+1 mem_remote_car_queue_each_size
+1 mem_remote_car_queue_length
+
+1 mem_remote_car_queue_curr_num
+1 mem_remote_car_queue_read_ptr
+1 mem_remote_car_queue_write_ptr
+90 mem_remote_car_queue_ele
+
+1 mem_remote_style_led_type
+1 mem_remote_style_blink_count
+1 mem_remote_style_struct_led_gpio
+2 mem_remote_style_on_time
+2 mem_remote_style_off_time
+2 mem_remote_style_cb_ledon
+2 mem_remote_style_cb_ledoff
+
+
+1 mem_remote_car_led_num
+8 mem_remote_car_led_map
+
+0 mem_remote_car_keyscan
+1 mem_remote_car_key_num
+2 mem_cb_remote_car_keyscan
+
+0 mem_remote_car_key_conf0
+1 mem_remote_car_key_conf0_pin
+0 mem_remote_car_key_conf1
+1 mem_remote_car_key_conf1_pin
+0 mem_remote_car_key_conf2
+1 mem_remote_car_key_conf2_pin
+0 mem_remote_car_key_conf3
+1 mem_remote_car_key_conf3_pin
+0 mem_remote_car_key_conf4
+1 mem_remote_car_key_conf4_pin
+0 mem_remote_car_key_conf5
+1 mem_remote_car_key_conf5_pin
+0 mem_remote_car_key_conf6
+1 mem_remote_car_key_conf6_pin
+
+
+//rocker
+1 mem_rocker_negative_flag
+1 mem_rocker_work_status
+2 mem_current_vdd_value_default_mid_x
+2 mem_current_vdd_value_default_mid_y
+2 mem_current_vdd_value_default_mid_temp
+2 mem_current_vdd_default_range
+2 mem_rocker_last_status
+0 mem_rocker_status
+1 mem_rocker_x_status
+1 mem_rocker_y_status
+
+0 mem_remote_car_config_param
+1 mem_remote_car_config_setting_flag
+1 mem_remote_car_config_key_map
+1 mem_remote_car_config_layout
+1 mem_remote_car_config_connect_led_gpio
+1 mem_remote_car_config_check_way
+1 mem_remote_car_config_soft_switch_enable
+1 mem_remote_car_config_soft_switch_gpio
+1 mem_remote_car_config_timeout_shutdown_enable
+
+0 mem_remote_car_24g_motor_packet
+1 mem_remote_car_24g_motor_packet_lenght
+2 mem_remote_car_24g_motor_send_packet_head
+1 mem_remote_car_24g_motor_send_cmd
+2 mem_remote_car_24g_motor_send_length
+0 mem_remote_car_24g_motor_send_payload
+2 mem_remote_car_24g_motor1_payload
+2 mem_remote_car_24g_motor2_payload
+2 mem_remote_car_24g_motor3_payload
+1 mem_remote_car_24g_motor_send_checksum
+
+0 mem_remote_car_24g_fire_packet
+1 mem_remote_car_24g_fire_packet_lenght
+2 mem_remote_car_24g_fire_send_packet_head
+1 mem_remote_car_24g_fire_send_cmd
+2 mem_remote_car_24g_fire_send_length
+2 mem_remote_car_24g_fire_send_payload
+1 mem_remote_car_24g_fire_send_checksum
+
+15 mem_remote_car_24g_tx_temp
+
+2 mem_remote_car_no_data_timeout
+2 mem_remote_car_no_data_timer
+
+0 mem_remote_car_soft_power
+1 mem_remote_car_power_state
+1 mem_remote_car_power_timer
+1 mem_remote_car_power_off_timeout
+1 mem_remote_car_power_starting_timeout
+2 mem_remote_car_power_off_cb
+2 mem_remote_car_power_starting_cb
+2 mem_remote_car_power_standby_cb
+
+1 mem_remote_key_status
+1 mem_remote_car_24g_status
+
+1 mem_remote_car_24g_auto_work_step
+1 mem_remote_car_24g_pair_success_flag
+1 mem_remote_car_empty_packet
+
+1 mem_remote_car_motor1_key0_press_state
+1 mem_remote_car_motor1_key1_press_state
+1 mem_remote_car_motor2_key2_press_state
+1 mem_remote_car_motor2_key3_press_state
+1 mem_remote_car_motor1_rel_state
+1 mem_remote_car_motor2_rel_state
+
+1 mem_remote_car_no_data_check
+)
+xmemalloc shutter(
+
+////////////////////////////////////
+//shutter common config
+1 mem_shutter_bluetooth_type
+////////////////////////////////////
+
+2 mem_shutter_config_eeprom_offset_addr
+
+////////
+2 mem_shutter_config_eeprom_start_flag
+1 mem_shutter_config_user_size
+///////
+1 mem_shutter_config_label
+2 mem_shutter_config_otp_addr
+///////////////////////////////////
+
+////////////////////////////////////
+//classic shutter config
+1 mem_classic_shutter_cable_unplug_conut
+1 mem_classic_shutter_hid_disconn_count
+2 mem_classic_shutter_random_mac_offset_addr
+////////////////////////////////////
+
+////////////////////////////////////
+//ble shutter config
+1 mem_ble_shutter_enable_notify
+2 mem_ble_shutter_reconn_adv_interval
+2 mem_ble_shutter_discovery_adv_interval
+2 mem_ble_shutter_reconn_timeout
+2 mem_ble_shutter_reconn_timer
+2 mem_ble_shutter_reconn_blink_on_time
+2 mem_ble_shutter_reconn_blink_off_time
+2 mem_ble_shutter_discovery_blink_on_time
+2 mem_ble_shutter_discovery_blink_off_time
+
+2 mem_ble_shutter_interval_min
+2 mem_ble_shutter_interval_max
+2 mem_ble_shutter_latency
+2 mem_ble_shutter_timeout
+
+2 mem_ble_shutter_interval_min_new
+2 mem_ble_shutter_interval_max_new
+2 mem_ble_shutter_latency_new
+2 mem_ble_shutter_timeout_new
+
+//////////////////shutter sleep timeout//////////////////
+2 mem_classic_shutter_discovery_timeout
+2 mem_classic_shutter_connect_timeout
+2 mem_ble_shutter_discovery_timeout
+2 mem_ble_shutter_connect_timeout
+2 mem_shutter_sleep_timeout
+2 mem_shutter_sleep_timer
+
+/////////////////////////////////////////////////////////////////
+1 mem_shutter_hard_soft_switch_case
+1 mem_shutter_soft_switch_button_gpio
+1 mem_shutter_soft_switch_power_state
+1 mem_shutter_soft_switch_poweron_time
+1 mem_shutter_soft_switch_poweroff_time
+2 mem_shutter_soft_switch_poweron_callback_function
+2 mem_shutter_soft_switch_poweroff_callback_function
+
+
+0 mem_shutter_keyscan
+1 mem_shutter_key_num
+2 mem_cb_shutter_keycan
+1 mem_shutter_key_conf0
+1 mem_shutter_key_conf1
+1 mem_shutter_key_conf2
+1 mem_shutter_key_conf3
+1 mem_shutter_key_conf4
+1 mem_shutter_key_conf5
+1 mem_shutter_key_conf6
+1 mem_shutter_key_conf7
+
+
+5 mem_key0_press
+5 mem_key1_press
+5 mem_key2_press
+5 mem_key3_press
+5 mem_key4_press
+5 mem_key5_press
+5 mem_key6_press
+5 mem_key7_press
+
+5 mem_key0_release	
+5 mem_key1_release
+5 mem_key2_release
+5 mem_key3_release
+5 mem_key4_release
+5 mem_key5_release
+5 mem_key6_release
+5 mem_key7_release
+
+5 mem_ble_data_buffer1
+5 mem_ble_data_buffer2
+5 mem_ble_data_buffer3
+5 mem_ble_data_buffer4
+5 mem_ble_data_buffer5
+5 mem_ble_data_buffer6
+5 mem_ble_data_buffer7
+5 mem_ble_data_buffer8
+50 mem_ble_data_buffer9_58
+
+5 mem_classic_data_buffer
+
+5 mem_classic_data_buffer1
+5 mem_classic_data_buffer2
+5 mem_classic_data_buffer3
+5 mem_classic_data_buffer4
+5 mem_classic_data_buffer5
+5 mem_classic_data_buffer6
+5 mem_classic_data_buffer7
+5 mem_classic_data_buffer8
+50 mem_classic_data_buffer9_58
+
+1 mem_queue_each_size
+1 mem_queue_length
+1 mem_queue_curr_num
+1 mem_queue_read_ptr
+1 mem_queue_write_ptr
+32 mem_queue_ele
+
+
+170 mem_shutter_nv_data
+
+0 mem_shutter_led_struct_app_led
+1 mem_shutter_led_struct_app_led_type
+1 mem_shutter_led_struct_app_led_blink_count
+1 mem_shutter_led_struct_app_led_gpio
+2 mem_shutter_led_struct_app_led_on_time
+2 mem_shutter_led_struct_app_led_off_time
+2 mem_shutter_led_struct_app_led_on_callback
+2 mem_shutter_led_struct_app_led_off_callback
+
+0 mem_shutter_power_off_led_style
+1 mem_shutter_power_off_led_style_type
+1 mem_shutter_power_off_led_style_blink_count
+1 mem_shutter_power_off_led_style_gpio
+2 mem_shutter_power_off_led_style_on_time
+2 mem_shutter_power_off_led_style_off_time
+2 mem_shutter_power_off_led_style_on_callback
+2 mem_shutter_power_off_led_style_off_callback
+
+1 mem_shutter_soft_swtich_botton_down
+11 mem_shutter_soft_swtich_led_struct_temp
+1 mem_shutter_power_off_timeout
+1 mem_shutter_power_off_timer
+
+//continue address
+2 mem_shutter_key_conf0_temp
+1 mem_shutter_led_struct_app_led_gpio_temp
+1 mem_shutter_hard_soft_switch_case_temp
+1 mem_shutter_soft_switch_button_gpio_temp
+//modified name
+1 mem_shutter_le_name_len
+30 mem_shutter_le_name
+
+)
+xmemalloc hci_boot(
+1 mem_hci_uart_tx_gpio
+1 mem_hci_uart_rx_gpio
+1 mem_hci_uart_rts_gpio
+1 mem_hci_uart_cts_gpio
+1 mem_hci_pwm_12mhz_gpio
+)
Index: output/eeprom.dat
===================================================================
--- /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/output/eeprom.dat	(nonexistent)
+++ /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/output/eeprom.dat	(working copy)
@@ -0,0 +1,10382 @@
+00
+02
+aa
+55
+ca
+1c
+20
+20
+00
+40
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+c2
+84
+00
+5f
+c0
+00
+01
+9b
+c0
+41
+01
+c4
+c0
+41
+81
+cb
+c0
+45
+01
+de
+c0
+45
+81
+d9
+c0
+51
+05
+fa
+c0
+52
+01
+6e
+c0
+56
+81
+e8
+c0
+61
+83
+94
+c0
+63
+03
+80
+c0
+63
+83
+87
+c0
+64
+06
+f5
+c0
+64
+84
+92
+c0
+66
+86
+86
+c0
+67
+04
+da
+c0
+67
+84
+e1
+c0
+68
+06
+b6
+c0
+69
+04
+6a
+c0
+69
+84
+7a
+c0
+6a
+84
+f3
+c0
+6c
+03
+95
+c0
+6e
+84
+99
+c0
+6f
+01
+8e
+c0
+70
+01
+77
+c0
+70
+81
+74
+c0
+6b
+06
+00
+c0
+6c
+86
+fb
+c0
+6d
+05
+5f
+c0
+6e
+04
+63
+20
+20
+13
+7e
+c0
+0f
+81
+f2
+c0
+42
+85
+fc
+c0
+6e
+81
+7e
+c0
+6f
+01
+10
+c0
+6f
+81
+29
+c0
+70
+80
+84
+c0
+71
+05
+62
+c0
+71
+85
+8d
+c0
+74
+85
+a6
+c0
+75
+02
+2c
+c0
+76
+05
+f1
+c0
+4f
+86
+14
+c0
+50
+86
+1e
+c0
+5f
+06
+20
+c0
+6c
+86
+73
+20
+20
+13
+7e
+6f
+e0
+c8
+38
+1f
+e0
+fe
+03
+67
+e0
+c8
+3a
+6f
+e0
+c8
+5c
+67
+e0
+cd
+41
+6f
+e0
+c8
+39
+1f
+e9
+fe
+00
+68
+48
+c8
+2e
+18
+41
+04
+03
+18
+43
+84
+00
+98
+41
+fe
+00
+68
+48
+c8
+2f
+98
+40
+fe
+00
+e7
+e0
+80
+05
+6f
+e0
+c8
+38
+e7
+e0
+80
+05
+6f
+e0
+c8
+38
+98
+00
+72
+00
+d8
+c0
+4c
+fb
+20
+40
+7d
+d4
+20
+20
+22
+5d
+6f
+e0
+c8
+68
+20
+40
+16
+37
+6f
+e2
+48
+3f
+98
+00
+12
+00
+20
+40
+21
+81
+20
+40
+21
+f5
+79
+20
+2a
+00
+78
+2e
+fc
+00
+78
+30
+7c
+00
+78
+50
+fc
+00
+20
+40
+4d
+13
+78
+5d
+7c
+00
+19
+31
+7e
+00
+1f
+ec
+fe
+00
+1f
+f1
+fe
+00
+08
+00
+86
+28
+78
+23
+fc
+00
+78
+24
+fc
+00
+6f
+e0
+c8
+3a
+98
+00
+72
+00
+d8
+c0
+4d
+41
+20
+20
+22
+15
+20
+40
+00
+9d
+24
+74
+00
+00
+20
+20
+00
+6f
+6f
+e1
+48
+9f
+20
+40
+7e
+7a
+20
+34
+00
+d5
+6f
+e3
+cc
+fc
+20
+7a
+00
+00
+20
+20
+7e
+c5
+70
+48
+ab
+00
+1a
+20
+fe
+01
+67
+e0
+c8
+38
+20
+40
+26
+49
+67
+e0
+cc
+fb
+20
+20
+26
+46
+da
+60
+4d
+e3
+da
+40
+00
+ac
+20
+20
+31
+fc
+6f
+e0
+c9
+3d
+c0
+80
+00
+b0
+70
+4d
+e2
+01
+20
+60
+00
+00
+da
+20
+00
+02
+68
+49
+4e
+2c
+20
+40
+1e
+5f
+6f
+e0
+c9
+97
+e7
+e0
+80
+05
+58
+00
+00
+00
+e7
+e0
+80
+05
+20
+60
+00
+00
+da
+20
+00
+02
+68
+49
+4e
+2c
+20
+40
+1e
+5f
+6f
+e0
+c9
+97
+e7
+e0
+80
+05
+58
+00
+00
+01
+e7
+e0
+80
+05
+20
+60
+00
+00
+20
+40
+00
+c4
+6f
+e0
+cd
+e1
+20
+7a
+00
+00
+20
+20
+7e
+c5
+6f
+e0
+cd
+e2
+24
+3a
+00
+cc
+6f
+e0
+cd
+e4
+24
+3a
+00
+d0
+20
+60
+00
+00
+6f
+e0
+cd
+e1
+79
+20
+7e
+05
+20
+20
+00
+d3
+70
+4d
+e2
+00
+6f
+e0
+cd
+e1
+79
+20
+7e
+06
+20
+20
+00
+d3
+70
+4d
+e4
+00
+6f
+e0
+cd
+e1
+79
+20
+7e
+07
+67
+e0
+cd
+e1
+20
+60
+00
+00
+70
+48
+ab
+00
+6f
+e0
+cd
+e1
+c0
+00
+00
+a3
+c2
+83
+00
+db
+c2
+83
+80
+ec
+20
+60
+00
+00
+6f
+e0
+cd
+e0
+20
+3a
+00
+e5
+6f
+e0
+c8
+39
+79
+20
+7e
+06
+67
+e0
+cd
+e6
+6f
+e0
+c9
+97
+67
+e0
+cd
+e7
+d8
+40
+00
+02
+da
+20
+4d
+e6
+20
+20
+01
+06
+70
+48
+38
+02
+6f
+e0
+c8
+39
+79
+20
+7e
+06
+67
+e0
+cc
+fb
+6f
+e0
+c9
+97
+67
+e0
+cc
+fc
+20
+60
+00
+00
+6f
+e0
+cd
+e0
+20
+3a
+00
+f6
+6f
+e0
+c8
+39
+79
+20
+7e
+07
+67
+e0
+cd
+e6
+6f
+e0
+cb
+00
+67
+e0
+cd
+e7
+d8
+40
+00
+02
+da
+20
+4d
+e6
+20
+20
+01
+06
+70
+48
+38
+02
+6f
+e0
+c8
+39
+79
+20
+7e
+07
+67
+e0
+cc
+fb
+6f
+e0
+cb
+00
+67
+e0
+cc
+fc
+20
+60
+00
+00
+70
+48
+ab
+00
+70
+48
+39
+01
+20
+40
+26
+49
+70
+48
+38
+01
+6f
+e0
+c8
+39
+79
+20
+7e
+05
+67
+e0
+cc
+fb
+20
+40
+00
+6f
+20
+20
+02
+d9
+18
+40
+fe
+08
+67
+e0
+c8
+38
+20
+40
+26
+49
+67
+e0
+cc
+fb
+6f
+e3
+c8
+d4
+67
+e3
+cc
+fc
+18
+42
+72
+00
+1a
+22
+0c
+00
+d8
+a0
+4d
+03
+20
+20
+7d
+d4
+6f
+e0
+c8
+67
+20
+40
+16
+37
+6f
+e2
+48
+3f
+98
+00
+12
+00
+20
+40
+10
+ac
+20
+40
+11
+5d
+68
+48
+c8
+3d
+20
+40
+16
+74
+20
+40
+21
+81
+c5
+97
+81
+1d
+78
+3c
+fc
+00
+20
+00
+00
+1e
+20
+40
+21
+81
+78
+57
+fc
+00
+78
+26
+fc
+00
+78
+30
+fc
+00
+78
+50
+7c
+00
+78
+28
+7c
+00
+6f
+e1
+48
+3b
+98
+00
+36
+00
+37
+c1
+84
+00
+24
+2c
+21
+ef
+20
+40
+4d
+0d
+c5
+17
+a1
+a4
+20
+20
+21
+a4
+20
+40
+21
+ec
+67
+e0
+cc
+b5
+c5
+13
+81
+31
+6f
+e0
+cc
+b5
+1f
+e9
+7e
+00
+68
+48
+c8
+39
+a8
+40
+0e
+00
+24
+20
+a1
+f1
+20
+40
+21
+ec
+e7
+e0
+80
+05
+1f
+e6
+7c
+44
+24
+21
+21
+f1
+1f
+e2
+72
+00
+20
+22
+a1
+c3
+20
+20
+21
+c0
+20
+40
+01
+60
+6f
+e0
+c8
+2d
+20
+7a
+00
+00
+6f
+e1
+4d
+87
+c0
+7a
+81
+45
+c0
+7a
+01
+52
+20
+60
+00
+00
+da
+20
+00
+00
+ef
+e0
+80
+06
+9a
+20
+a2
+00
+c2
+00
+01
+40
+1a
+21
+22
+ff
+20
+60
+00
+00
+6f
+e0
+cd
+89
+c0
+00
+81
+4a
+c0
+01
+81
+4e
+c0
+02
+01
+50
+20
+60
+00
+00
+70
+49
+97
+02
+20
+20
+04
+e2
+70
+49
+97
+03
+20
+20
+04
+e2
+70
+49
+97
+00
+20
+20
+04
+e2
+70
+49
+97
+01
+20
+20
+04
+e2
+6f
+e0
+cd
+89
+c0
+00
+81
+58
+c0
+01
+01
+5a
+c0
+01
+81
+5c
+c0
+02
+01
+5e
+20
+60
+00
+00
+70
+49
+9e
+01
+20
+20
+46
+2e
+70
+49
+9e
+02
+20
+20
+46
+2e
+70
+49
+9e
+03
+20
+20
+46
+2e
+70
+49
+9e
+04
+20
+20
+46
+2e
+6f
+e0
+cd
+e1
+2f
+ef
+fe
+07
+20
+40
+81
+6a
+2f
+ef
+fe
+06
+20
+40
+81
+68
+2f
+ef
+fe
+05
+20
+40
+81
+6c
+20
+60
+00
+00
+79
+3f
+fe
+06
+20
+20
+00
+d3
+79
+3f
+fe
+07
+20
+20
+00
+d3
+79
+3f
+fe
+05
+20
+20
+00
+d3
+20
+40
+14
+36
+6f
+e1
+c1
+74
+20
+7a
+00
+00
+6f
+e0
+cc
+b2
+c1
+00
+80
+00
+20
+20
+14
+b0
+18
+46
+7c
+ff
+c1
+02
+80
+00
+20
+20
+49
+7d
+18
+46
+7c
+ff
+c1
+02
+80
+00
+20
+20
+49
+79
+6f
+e0
+cb
+c0
+24
+7a
+00
+00
+70
+44
+8e
+00
+20
+60
+00
+00
+c5
+13
+a3
+e1
+c6
+93
+00
+00
+6f
+e0
+c8
+a5
+c2
+80
+a2
+f6
+c2
+81
+25
+89
+6f
+e0
+c8
+c1
+c0
+00
+81
+86
+20
+20
+02
+2c
+6f
+e4
+4b
+bc
+c2
+8d
+01
+8a
+c2
+8c
+81
+8a
+20
+20
+26
+cd
+20
+40
+22
+a0
+24
+74
+00
+00
+20
+40
+26
+e2
+20
+20
+26
+28
+6f
+e0
+cb
+c5
+c1
+00
+80
+00
+20
+40
+03
+d8
+20
+40
+47
+00
+60
+48
+c9
+3d
+70
+41
+ca
+00
+20
+40
+47
+18
+20
+40
+43
+56
+20
+40
+31
+e6
+20
+20
+46
+fb
+6f
+e0
+c1
+7b
+67
+e0
+cc
+58
+20
+60
+00
+00
+20
+80
+00
+00
+70
+80
+86
+73
+24
+55
+81
+98
+20
+40
+31
+66
+24
+55
+81
+7a
+20
+55
+c1
+a8
+20
+40
+3c
+b3
+20
+40
+12
+46
+70
+80
+42
+04
+6f
+e0
+c0
+c5
+c0
+0c
+01
+a7
+70
+80
+42
+05
+6f
+e0
+cc
+58
+67
+e0
+c1
+7b
+58
+00
+0f
+0f
+d8
+a0
+0f
+ff
+98
+a1
+0a
+00
+6f
+e0
+c1
+7a
+1f
+e1
+7e
+f0
+1f
+ed
+7e
+00
+98
+a1
+fe
+00
+79
+3f
+fe
+02
+67
+f1
+00
+4c
+ef
+e1
+00
+06
+e7
+e1
+00
+05
+58
+00
+00
+01
+37
+d9
+82
+00
+67
+f0
+80
+05
+70
+41
+7b
+08
+20
+20
+08
+05
+6f
+f2
+01
+38
+79
+20
+7e
+02
+67
+f2
+00
+4c
+58
+00
+00
+01
+37
+d9
+82
+00
+67
+f0
+80
+05
+37
+d9
+82
+00
+37
+d9
+82
+00
+37
+d9
+82
+00
+20
+00
+27
+10
+20
+60
+00
+00
+6f
+e0
+c1
+ea
+67
+e0
+89
+64
+20
+40
+11
+4c
+70
+8a
+0a
+00
+6f
+e0
+89
+64
+67
+e0
+c1
+ea
+20
+60
+00
+00
+70
+89
+00
+05
+20
+00
+00
+02
+70
+89
+00
+00
+6f
+e0
+c0
+c5
+c0
+0c
+11
+64
+70
+8a
+87
+29
+20
+20
+11
+79
+6f
+f0
+8a
+0a
+79
+20
+7e
+03
+67
+f0
+8a
+0a
+20
+00
+00
+f0
+79
+3f
+fe
+03
+67
+f0
+8a
+0a
+20
+60
+00
+00
+70
+41
+ea
+ff
+70
+8a
+85
+00
+70
+89
+21
+40
+20
+40
+01
+d2
+20
+20
+12
+52
+6f
+e0
+c1
+e8
+c0
+55
+01
+e2
+c0
+4a
+81
+e5
+20
+20
+12
+37
+70
+8a
+39
+0a
+70
+8a
+3a
+00
+20
+20
+12
+26
+70
+8a
+39
+0a
+70
+8a
+3a
+00
+20
+20
+12
+26
+20
+40
+6e
+5e
+20
+40
+06
+ec
+20
+40
+06
+fd
+20
+40
+41
+e7
+20
+75
+80
+00
+20
+40
+04
+e3
+20
+40
+47
+66
+20
+40
+06
+ef
+20
+40
+04
+84
+20
+20
+3c
+7f
+6f
+e0
+c9
+23
+20
+20
+5b
+56
+6f
+e0
+cb
+ff
+20
+7a
+00
+00
+1f
+e0
+f2
+01
+d8
+c0
+4b
+ff
+d8
+a0
+42
+f7
+20
+20
+7d
+d4
+6f
+e0
+cc
+72
+67
+e0
+c1
+e8
+20
+60
+00
+00
+c6
+93
+00
+00
+20
+40
+3f
+b0
+20
+40
+00
+c0
+24
+74
+00
+00
+6f
+e0
+cc
+32
+70
+4c
+32
+00
+24
+5a
+04
+90
+6f
+e4
+4b
+bc
+c3
+0a
+82
+08
+6f
+e0
+cb
+9c
+24
+3a
+48
+c1
+20
+40
+02
+20
+6f
+e0
+c8
+39
+c2
+80
+82
+17
+68
+48
+cc
+fc
+6f
+e0
+c8
+d4
+98
+41
+fe
+00
+67
+e0
+c8
+d4
+68
+48
+cd
+01
+6f
+e0
+c8
+d9
+98
+40
+fe
+00
+67
+e0
+c8
+d9
+68
+48
+cd
+02
+6f
+e0
+c8
+da
+98
+40
+fe
+00
+67
+e0
+c8
+da
+70
+48
+39
+01
+da
+20
+00
+07
+da
+40
+48
+d4
+6f
+e4
+4b
+bc
+c2
+8c
+a6
+e8
+c2
+8d
+26
+e8
+6f
+e1
+48
+d9
+20
+7a
+00
+00
+20
+20
+26
+e8
+6f
+e0
+cd
+e0
+20
+7a
+00
+00
+20
+20
+43
+0d
+6f
+e2
+48
+95
+68
+4a
+48
+91
+98
+46
+7c
+00
+20
+22
+82
+29
+70
+41
+ea
+ff
+20
+60
+00
+00
+70
+41
+ea
+00
+70
+41
+e8
+aa
+20
+60
+00
+00
+20
+40
+00
+9a
+24
+34
+05
+1d
+20
+40
+02
+d9
+20
+40
+02
+23
+6f
+e0
+cb
+f2
+24
+3a
+02
+36
+6f
+e4
+48
+b4
+67
+e4
+48
+5f
+6f
+e1
+48
+c6
+67
+e1
+48
+c8
+20
+40
+26
+c2
+24
+74
+00
+00
+20
+40
+7f
+52
+6f
+e0
+ce
+36
+20
+3a
+02
+6f
+6f
+e0
+cc
+31
+70
+4c
+31
+00
+1f
+e6
+7c
+00
+24
+22
+82
+44
+68
+49
+4c
+2f
+18
+46
+7c
+00
+20
+22
+82
+6f
+6f
+e2
+4c
+21
+20
+3a
+02
+6f
+68
+4a
+4c
+33
+28
+4f
+fe
+1f
+20
+20
+82
+6a
+6f
+e2
+4c
+21
+98
+40
+fe
+00
+68
+4a
+4c
+16
+98
+46
+04
+00
+60
+4a
+4c
+33
+24
+21
+02
+72
+6f
+e1
+c8
+b1
+98
+46
+7e
+00
+24
+21
+02
+79
+d8
+40
+06
+00
+98
+46
+7c
+00
+24
+21
+02
+79
+20
+40
+7e
+1f
+60
+4a
+41
+60
+6f
+e0
+c0
+c5
+c0
+04
+02
+59
+58
+00
+00
+00
+67
+f1
+8a
+00
+70
+4c
+2b
+fa
+20
+40
+12
+d1
+6f
+e2
+41
+64
+98
+40
+fe
+00
+67
+e2
+41
+64
+18
+02
+7e
+00
+67
+e4
+41
+9d
+d8
+c0
+80
+70
+d8
+a0
+41
+86
+20
+40
+7d
+74
+6f
+f0
+80
+86
+67
+e0
+c1
+a5
+20
+40
+14
+10
+6f
+f0
+80
+42
+1f
+e1
+fe
+14
+67
+f0
+80
+42
+20
+20
+14
+6d
+df
+ff
+ff
+ff
+98
+46
+5e
+00
+6f
+e2
+4c
+21
+9d
+e6
+7e
+00
+20
+20
+02
+49
+20
+40
+02
+76
+6f
+e1
+c8
+b1
+20
+20
+02
+53
+18
+46
+04
+00
+6f
+e1
+c8
+b1
+98
+40
+fe
+00
+20
+20
+02
+53
+58
+00
+00
+00
+67
+e2
+4c
+33
+20
+60
+00
+00
+70
+4c
+31
+01
+20
+60
+00
+00
+6f
+e0
+ce
+35
+20
+7a
+00
+00
+6f
+e0
+ce
+36
+24
+7a
+00
+00
+6f
+e0
+ce
+37
+1f
+e0
+fe
+01
+67
+e0
+ce
+37
+c1
+85
+00
+00
+70
+4e
+37
+00
+70
+4e
+36
+01
+20
+60
+00
+00
+70
+4e
+37
+09
+70
+4e
+36
+00
+20
+60
+00
+00
+6f
+e4
+4b
+bc
+c3
+8c
+80
+00
+c3
+8d
+00
+00
+6f
+e0
+c8
+c1
+c0
+00
+82
+86
+6f
+e0
+ce
+36
+20
+3a
+02
+ac
+6f
+e0
+cc
+1a
+20
+3a
+02
+d5
+1b
+22
+7e
+00
+68
+4b
+4c
+1b
+67
+e3
+4c
+1b
+20
+40
+7e
+0a
+67
+e2
+4c
+21
+6f
+e0
+cc
+31
+24
+7a
+00
+00
+6f
+e1
+4c
+2f
+24
+7a
+00
+00
+6f
+e2
+4c
+33
+24
+7a
+00
+00
+6f
+e2
+4c
+21
+68
+4a
+4c
+16
+18
+43
+84
+00
+98
+46
+7c
+00
+20
+21
+02
+ac
+68
+4a
+cc
+25
+98
+40
+fe
+00
+67
+e2
+cc
+25
+68
+48
+cc
+1a
+6f
+e0
+cc
+2a
+98
+46
+7c
+00
+20
+22
+82
+b0
+18
+40
+84
+01
+60
+48
+cc
+1a
+20
+60
+00
+00
+58
+00
+00
+00
+67
+e0
+cc
+1a
+67
+e2
+cc
+25
+20
+60
+00
+00
+70
+4c
+1a
+01
+d8
+40
+00
+00
+6f
+e2
+cc
+25
+60
+4a
+cc
+25
+68
+48
+cc
+2a
+98
+46
+fc
+00
+20
+40
+7e
+64
+18
+07
+a2
+00
+6f
+e2
+4c
+16
+68
+48
+cc
+2b
+98
+46
+04
+00
+1a
+22
+7e
+00
+98
+46
+7e
+00
+20
+21
+02
+c9
+1f
+e6
+7e
+00
+1f
+eb
+7e
+00
+68
+49
+c8
+b1
+98
+40
+84
+00
+6f
+e1
+cc
+2c
+da
+20
+18
+00
+9a
+20
+fe
+00
+98
+46
+7c
+00
+24
+21
+02
+d3
+60
+49
+c8
+b1
+20
+60
+00
+00
+1f
+eb
+04
+00
+6f
+e1
+c8
+b1
+98
+46
+04
+00
+6f
+e1
+cc
+2c
+da
+20
+18
+00
+9a
+26
+7e
+00
+98
+46
+7c
+00
+20
+21
+02
+d3
+60
+49
+c8
+b1
+20
+60
+00
+00
+67
+e1
+c8
+b1
+20
+60
+00
+00
+70
+4c
+1a
+01
+1b
+22
+7e
+00
+67
+e3
+4c
+1b
+20
+60
+00
+00
+58
+00
+00
+00
+67
+e0
+c8
+aa
+67
+e1
+4c
+2f
+67
+e0
+ce
+34
+20
+40
+26
+62
+24
+2c
+03
+04
+24
+37
+83
+04
+20
+40
+02
+89
+20
+40
+02
+ef
+20
+40
+01
+38
+20
+40
+03
+70
+20
+40
+27
+27
+20
+40
+05
+ca
+20
+40
+05
+cd
+6f
+e0
+c8
+2e
+1f
+e0
+fe
+01
+67
+e0
+c8
+2e
+20
+40
+02
+ec
+20
+20
+26
+5e
+6f
+e0
+c8
+39
+c4
+02
+00
+00
+20
+20
+03
+48
+20
+40
+02
+f6
+6f
+e0
+c8
+2d
+20
+7a
+00
+00
+98
+00
+72
+00
+d8
+c0
+4c
+b7
+d8
+a0
+4d
+87
+20
+20
+7d
+d4
+6f
+e0
+cc
+b6
+67
+e0
+c8
+2d
+1f
+e0
+fe
+01
+d8
+c0
+4c
+b6
+98
+c0
+8c
+00
+ef
+e1
+80
+06
+67
+e1
+c8
+30
+6f
+e0
+cc
+b5
+1f
+e3
+04
+00
+18
+41
+04
+03
+60
+48
+c8
+36
+1f
+e9
+7e
+00
+67
+e0
+cc
+b5
+20
+60
+00
+00
+6f
+e0
+ca
+d6
+24
+7a
+00
+00
+20
+40
+03
+14
+6f
+e0
+c8
+ab
+24
+7a
+00
+00
+6f
+e1
+48
+a7
+1f
+e0
+fe
+01
+67
+e1
+48
+a7
+6f
+e1
+48
+a7
+c2
+84
+26
+80
+20
+40
+03
+2c
+6f
+e1
+4c
+2f
+1f
+e0
+fe
+01
+67
+e1
+4c
+2f
+20
+40
+03
+1b
+20
+20
+02
+dd
+d8
+e0
+00
+0c
+20
+40
+7d
+e9
+24
+7a
+00
+00
+20
+40
+03
+60
+d8
+e0
+00
+0c
+58
+00
+00
+a0
+20
+20
+7d
+db
+6f
+e1
+4c
+2f
+1f
+e6
+7c
+14
+20
+61
+00
+00
+20
+40
+03
+27
+6f
+e1
+4c
+2f
+1f
+e6
+7c
+32
+20
+61
+00
+00
+6f
+e0
+ce
+34
+24
+7a
+00
+00
+70
+4e
+34
+01
+70
+4e
+37
+00
+70
+4e
+36
+00
+6f
+e0
+c9
+cd
+20
+7a
+00
+00
+70
+4a
+bf
+01
+70
+49
+cd
+00
+20
+60
+00
+00
+68
+48
+c8
+aa
+6f
+e0
+c8
+ca
+98
+46
+7c
+00
+24
+21
+03
+59
+18
+40
+84
+01
+60
+48
+c8
+aa
+6f
+e0
+c8
+ca
+c0
+02
+83
+44
+c0
+04
+83
+40
+c0
+07
+83
+3c
+c0
+0f
+03
+38
+20
+60
+00
+00
+6f
+e0
+c8
+aa
+c0
+0a
+03
+48
+c0
+0f
+03
+48
+20
+60
+00
+00
+6f
+e0
+c8
+aa
+c0
+05
+03
+48
+c0
+07
+83
+48
+20
+60
+00
+00
+6f
+e0
+c8
+aa
+c0
+03
+03
+48
+c0
+04
+83
+48
+20
+60
+00
+00
+6f
+e0
+c8
+aa
+c0
+01
+83
+48
+c0
+02
+83
+48
+20
+60
+00
+00
+6f
+e0
+c8
+39
+79
+3f
+fe
+04
+67
+e0
+c8
+39
+20
+40
+03
+4d
+20
+20
+26
+a1
+1f
+e9
+fe
+00
+68
+48
+c8
+2e
+18
+41
+04
+03
+18
+43
+84
+00
+98
+41
+fe
+00
+68
+48
+c8
+2f
+98
+40
+fe
+00
+c5
+17
+83
+57
+67
+e0
+cd
+42
+20
+60
+00
+00
+67
+e0
+cd
+43
+20
+60
+00
+00
+20
+40
+03
+5b
+20
+20
+22
+81
+6f
+e0
+c8
+a7
+1f
+e6
+7c
+80
+20
+61
+00
+00
+df
+20
+00
+28
+20
+20
+7d
+86
+6f
+e0
+c9
+1f
+c1
+7f
+80
+00
+da
+20
+00
+00
+70
+4b
+a7
+06
+68
+48
+c9
+1f
+20
+40
+46
+a8
+67
+e0
+cb
+a5
+6f
+e0
+c9
+14
+c0
+7f
+83
+6d
+20
+40
+41
+a8
+1a
+22
+7e
+00
+c2
+83
+46
+cb
+20
+20
+46
+be
+68
+48
+c9
+1f
+20
+40
+3f
+96
+20
+20
+03
+6a
+6f
+e0
+cb
+f2
+24
+5a
+03
+74
+70
+4b
+f2
+00
+20
+60
+00
+00
+20
+40
+04
+6c
+70
+4a
+bf
+01
+70
+4b
+03
+0a
+70
+4d
+e3
+05
+68
+48
+c9
+15
+20
+40
+3f
+96
+6f
+e4
+4b
+bc
+c4
+1e
+00
+00
+68
+48
+c9
+17
+20
+40
+3f
+96
+68
+48
+c9
+18
+20
+20
+3f
+96
+58
+00
+00
+06
+20
+40
+5d
+65
+c2
+81
+83
+85
+20
+40
+04
+8b
+20
+40
+04
+84
+20
+40
+06
+f5
+20
+20
+32
+89
+6f
+f2
+01
+38
+79
+20
+7e
+1a
+67
+f2
+00
+4c
+20
+40
+15
+4c
+20
+40
+6e
+62
+20
+40
+49
+5b
+20
+40
+40
+55
+20
+40
+3e
+6a
+20
+40
+46
+6d
+68
+48
+c9
+15
+20
+40
+3f
+96
+68
+48
+c9
+15
+20
+20
+60
+e6
+20
+20
+06
+f1
+20
+40
+22
+e1
+20
+40
+25
+5f
+20
+40
+03
+a9
+20
+40
+02
+7b
+20
+40
+00
+a9
+20
+40
+03
+cd
+20
+40
+03
+b3
+20
+40
+40
+bc
+20
+40
+04
+b5
+20
+40
+04
+19
+20
+40
+45
+3f
+20
+40
+04
+30
+20
+40
+45
+52
+20
+40
+04
+34
+20
+40
+45
+55
+20
+40
+04
+3f
+20
+40
+45
+75
+20
+40
+40
+62
+20
+40
+04
+4a
+20
+20
+04
+42
+da
+60
+48
+c8
+da
+40
+03
+ac
+20
+20
+31
+fc
+20
+40
+03
+af
+70
+4d
+e5
+01
+20
+20
+48
+0e
+6f
+e4
+4b
+bc
+c2
+8c
+a6
+d7
+c2
+8d
+26
+d7
+20
+60
+00
+00
+6f
+e0
+cc
+b2
+20
+7a
+00
+00
+6f
+e0
+cc
+b4
+1f
+e0
+fe
+01
+67
+e0
+cc
+b4
+c0
+01
+83
+bb
+c0
+03
+03
+bf
+20
+60
+00
+00
+6f
+e0
+cc
+a8
+c2
+80
+03
+e0
+68
+48
+cc
+af
+20
+20
+61
+0d
+70
+4c
+b4
+00
+6f
+e0
+cc
+b3
+1f
+e0
+ff
+ff
+67
+e0
+cc
+b3
+24
+3a
+03
+c5
+70
+4c
+b2
+00
+6f
+e0
+cc
+a8
+c2
+80
+03
+e6
+68
+48
+cc
+af
+20
+20
+61
+09
+20
+40
+03
+f2
+20
+40
+03
+f4
+20
+40
+03
+f6
+20
+20
+03
+c5
+6f
+e0
+cc
+a4
+20
+7a
+00
+00
+6f
+e0
+cc
+a5
+c0
+00
+83
+da
+6f
+e0
+cc
+a9
+20
+3a
+03
+d6
+1f
+e0
+ff
+ff
+67
+e0
+cc
+a9
+20
+20
+03
+e0
+70
+4c
+b1
+01
+70
+4c
+a9
+00
+70
+4c
+a4
+00
+20
+20
+03
+e6
+da
+60
+4c
+ab
+da
+40
+03
+dd
+20
+20
+31
+fc
+20
+40
+03
+f8
+6f
+e0
+cc
+a6
+c0
+00
+83
+e6
+70
+4c
+a6
+01
+6f
+e0
+c9
+3d
+c0
+00
+03
+ec
+c0
+00
+83
+ee
+c0
+01
+03
+f0
+20
+60
+00
+00
+70
+4c
+a6
+00
+6f
+e0
+c9
+3d
+c0
+00
+03
+f2
+c0
+00
+83
+f4
+c0
+01
+03
+f6
+20
+60
+00
+00
+68
+48
+cc
+ac
+20
+20
+61
+0d
+68
+48
+cc
+ad
+20
+20
+61
+0d
+68
+48
+cc
+ae
+20
+20
+61
+0d
+68
+48
+cc
+ac
+20
+20
+61
+09
+68
+48
+cc
+ad
+20
+20
+61
+09
+68
+48
+cc
+ae
+20
+20
+61
+09
+6f
+e0
+cc
+aa
+67
+e0
+cc
+ab
+20
+60
+00
+00
+6f
+e0
+cc
+a3
+20
+7a
+00
+00
+70
+4c
+a9
+14
+70
+4c
+a5
+00
+70
+4c
+a4
+01
+20
+60
+00
+00
+6f
+e0
+cc
+a3
+20
+7a
+00
+00
+6f
+e2
+49
+98
+68
+4a
+49
+79
+98
+46
+7c
+00
+20
+22
+84
+0b
+6f
+e0
+cc
+a3
+20
+7a
+00
+00
+70
+4c
+aa
+05
+20
+20
+04
+0e
+6f
+e0
+cc
+a3
+20
+7a
+00
+00
+70
+4c
+aa
+02
+70
+4c
+a6
+00
+70
+4c
+ab
+03
+70
+4c
+a4
+01
+70
+4c
+a5
+01
+20
+20
+03
+e0
+6f
+e0
+cc
+a3
+20
+7a
+00
+00
+6f
+e0
+cc
+a7
+20
+7a
+00
+00
+70
+4c
+aa
+05
+20
+20
+04
+0e
+6f
+e0
+c9
+3d
+c0
+00
+04
+1f
+6f
+e4
+4b
+bc
+c4
+1a
+80
+00
+68
+48
+cb
+db
+20
+20
+04
+22
+6f
+e4
+4b
+bc
+c4
+19
+00
+00
+68
+48
+cb
+dc
+60
+48
+cb
+ae
+20
+40
+41
+55
+1f
+e1
+7e
+07
+68
+48
+cb
+ae
+98
+46
+7c
+00
+20
+22
+84
+29
+20
+20
+45
+2b
+20
+40
+04
+2e
+6f
+e0
+cb
+b0
+c1
+00
+80
+00
+70
+4b
+b0
+01
+20
+60
+00
+00
+da
+40
+05
+4d
+20
+20
+45
+37
+da
+60
+4b
+88
+da
+40
+45
+4a
+20
+40
+31
+fc
+20
+20
+45
+47
+6f
+e4
+4b
+bc
+c4
+0a
+00
+00
+da
+60
+4b
+03
+da
+40
+04
+39
+20
+20
+31
+fc
+6f
+e1
+4b
+01
+67
+e1
+4b
+03
+6f
+e0
+c9
+3d
+c0
+80
+44
+0b
+70
+4d
+e4
+01
+20
+60
+00
+00
+da
+60
+4c
+70
+da
+40
+43
+ac
+20
+20
+31
+fc
+da
+60
+4a
+c3
+da
+40
+04
+45
+20
+20
+32
+03
+6f
+e0
+c9
+2f
+c3
+83
+80
+00
+6f
+e0
+c9
+3d
+c0
+80
+43
+5b
+20
+20
+05
+0f
+da
+60
+49
+c4
+da
+40
+04
+4d
+20
+20
+31
+fc
+68
+48
+c9
+15
+20
+40
+60
+fd
+20
+20
+c6
+2e
+20
+40
+04
+57
+20
+40
+04
+63
+20
+40
+04
+5b
+6f
+e0
+ca
+d6
+20
+7a
+00
+00
+20
+40
+01
+b9
+20
+20
+46
+fe
+68
+48
+c9
+23
+20
+40
+3f
+96
+68
+48
+c9
+24
+20
+20
+3f
+96
+68
+48
+c4
+b7
+20
+40
+3f
+96
+68
+48
+c4
+ba
+20
+40
+3f
+96
+68
+48
+c4
+b8
+20
+40
+3f
+96
+68
+48
+c4
+b9
+20
+20
+3f
+96
+6f
+e4
+4b
+bc
+c2
+89
+c6
+7f
+20
+40
+5d
+af
+20
+40
+46
+4a
+20
+40
+46
+5f
+20
+40
+5d
+b4
+20
+20
+46
+46
+20
+40
+3f
+a5
+20
+75
+80
+00
+20
+40
+42
+76
+20
+40
+41
+f5
+c0
+18
+04
+74
+c0
+18
+c2
+57
+c0
+2c
+42
+60
+20
+40
+41
+f2
+20
+00
+1a
+f4
+20
+20
+04
+6d
+6f
+e0
+c9
+c7
+1f
+e1
+7e
+f0
+1f
+e6
+7c
+c0
+20
+22
+c2
+5e
+6f
+e0
+c9
+c7
+20
+20
+41
+fc
+20
+40
+3f
+a5
+6f
+e0
+c9
+2c
+c0
+05
+84
+81
+20
+40
+42
+72
+da
+60
+4a
+b4
+20
+40
+42
+6b
+20
+20
+04
+e3
+20
+40
+04
+8e
+da
+60
+4b
+f5
+20
+20
+04
+7f
+20
+40
+41
+e7
+20
+40
+3f
+a5
+6f
+e0
+c9
+2c
+c0
+05
+84
+89
+20
+20
+42
+7e
+58
+00
+1f
+06
+20
+20
+5d
+5e
+6f
+e0
+c9
+2c
+c0
+05
+84
+8e
+20
+20
+42
+72
+58
+00
+97
+06
+20
+20
+42
+73
+20
+40
+7f
+52
+20
+20
+15
+5d
+20
+40
+7f
+52
+68
+48
+c9
+14
+20
+40
+61
+0d
+68
+48
+c9
+14
+20
+40
+60
+e6
+20
+40
+03
+7c
+20
+20
+3e
+81
+20
+40
+49
+dd
+20
+40
+79
+a1
+20
+40
+04
+b8
+20
+40
+04
+a1
+20
+40
+04
+a4
+20
+40
+47
+14
+20
+40
+3f
+c8
+20
+60
+00
+00
+6f
+e0
+cc
+a2
+24
+7a
+00
+00
+20
+20
+46
+93
+6f
+e0
+cc
+a2
+24
+7a
+00
+00
+6f
+e4
+4b
+bc
+c4
+15
+00
+00
+68
+48
+c9
+22
+20
+40
+3f
+96
+68
+48
+c9
+22
+20
+40
+60
+fd
+20
+20
+c6
+ef
+6f
+e0
+c9
+3d
+c1
+00
+80
+00
+70
+49
+3d
+01
+20
+20
+46
+fe
+6f
+e0
+c9
+3d
+c1
+00
+00
+00
+70
+49
+3d
+00
+20
+20
+46
+fe
+6f
+e0
+cc
+a2
+24
+7a
+00
+00
+20
+20
+45
+0c
+6f
+e4
+4b
+bc
+c2
+97
+40
+76
+6f
+e0
+c9
+13
+c1
+7f
+80
+00
+da
+20
+00
+00
+70
+4b
+a7
+05
+68
+48
+c9
+13
+20
+40
+04
+cf
+67
+e0
+cb
+a4
+6f
+e0
+c9
+14
+c0
+7f
+84
+cc
+20
+40
+41
+a8
+1a
+22
+7e
+00
+c2
+82
+c0
+92
+6f
+e0
+c9
+e2
+c1
+00
+00
+00
+70
+49
+e2
+00
+20
+40
+46
+2e
+70
+4d
+e3
+01
+20
+20
+40
+9c
+68
+48
+c9
+13
+20
+40
+3f
+96
+20
+20
+04
+c4
+6f
+e4
+4b
+bc
+c2
+96
+40
+88
+6f
+e0
+cb
+a4
+1f
+e2
+26
+00
+6f
+e0
+c9
+14
+c0
+7f
+84
+d6
+20
+20
+40
+7f
+6f
+e0
+c9
+13
+20
+40
+06
+e9
+68
+48
+c9
+13
+20
+20
+41
+d5
+20
+40
+40
+b2
+20
+74
+00
+00
+6f
+e0
+c9
+97
+1f
+e0
+fe
+01
+1f
+e1
+7e
+03
+67
+e0
+c9
+97
+20
+20
+04
+e1
+20
+40
+40
+cf
+20
+40
+04
+e4
+20
+20
+40
+d8
+6f
+e0
+cc
+b1
+20
+7a
+00
+00
+6f
+e0
+c9
+97
+c0
+00
+04
+ed
+c0
+00
+84
+ef
+c0
+01
+04
+eb
+20
+60
+00
+00
+58
+00
+00
+01
+20
+20
+04
+f0
+58
+00
+00
+02
+20
+20
+04
+f0
+58
+00
+00
+03
+67
+e0
+cc
+b3
+70
+4c
+b2
+01
+20
+60
+00
+00
+1a
+62
+7e
+00
+c0
+1e
+06
+f7
+c0
+1c
+86
+f3
+c0
+1d
+05
+06
+c0
+19
+05
+50
+c0
+0a
+86
+f9
+c0
+0a
+05
+5c
+c0
+20
+05
+57
+c0
+01
+04
+fd
+20
+20
+43
+76
+70
+4b
+90
+00
+70
+4b
+99
+00
+20
+40
+44
+33
+20
+40
+44
+49
+6f
+e0
+cc
+a2
+24
+7a
+00
+00
+20
+20
+44
+42
+20
+40
+02
+27
+20
+20
+01
+fa
+70
+4c
+b1
+00
+20
+40
+05
+04
+6f
+e0
+c8
+a9
+24
+3a
+05
+0f
+6f
+e0
+c8
+8f
+c0
+01
+05
+40
+c0
+00
+85
+40
+c0
+02
+c8
+83
+20
+20
+48
+76
+70
+48
+a9
+00
+20
+40
+02
+e5
+5f
+ff
+ff
+ff
+67
+e4
+48
+5f
+58
+00
+00
+00
+67
+e3
+c8
+d4
+67
+e0
+c8
+ab
+67
+e1
+4e
+36
+67
+e0
+cb
+03
+67
+e0
+cd
+e3
+70
+4b
+f2
+01
+20
+40
+04
+84
+20
+40
+03
+af
+20
+20
+05
+24
+6f
+e0
+c8
+ab
+20
+5a
+05
+2e
+6f
+e0
+cd
+e5
+24
+5a
+00
+fd
+6f
+e0
+c8
+c1
+c1
+00
+80
+00
+20
+40
+26
+a6
+20
+40
+26
+c2
+24
+74
+00
+00
+20
+40
+26
+cb
+70
+4c
+31
+00
+70
+4c
+32
+01
+20
+40
+02
+ac
+6f
+e0
+cb
+f2
+24
+5a
+06
+f5
+6f
+e4
+48
+5f
+20
+20
+26
+bf
+6f
+e0
+cd
+e5
+24
+7a
+00
+00
+70
+48
+39
+01
+6f
+e0
+cb
+f2
+79
+40
+7e
+00
+67
+e0
+c8
+ab
+20
+40
+26
+49
+67
+e0
+cc
+fb
+58
+00
+00
+00
+67
+e3
+cc
+fc
+6f
+e2
+48
+ad
+67
+e2
+4d
+03
+70
+48
+38
+0c
+6f
+e0
+c8
+39
+79
+20
+7e
+03
+67
+e0
+c8
+39
+20
+40
+00
+6f
+20
+20
+02
+2e
+6f
+e4
+4b
+bc
+c2
+97
+85
+49
+c2
+98
+05
+49
+c3
+1d
+48
+45
+6f
+e2
+49
+98
+68
+4a
+49
+79
+98
+46
+7c
+00
+20
+22
+85
+4d
+20
+20
+48
+45
+6f
+e1
+48
+85
+67
+e1
+48
+8b
+70
+48
+8f
+05
+20
+20
+25
+62
+70
+48
+8f
+00
+20
+40
+04
+0b
+20
+20
+48
+66
+6f
+e0
+ca
+d8
+c0
+00
+85
+54
+70
+4b
+87
+14
+20
+20
+43
+b3
+20
+40
+43
+ac
+70
+4b
+87
+0a
+20
+20
+43
+b3
+6f
+e0
+cc
+6f
+24
+7a
+00
+00
+70
+4c
+6f
+01
+70
+4c
+70
+1e
+20
+60
+00
+00
+70
+4d
+e3
+05
+20
+40
+03
+fb
+20
+20
+43
+90
+58
+00
+00
+00
+67
+e1
+4a
+d3
+20
+20
+45
+b7
+70
+48
+8f
+00
+6f
+e1
+4b
+fd
+1f
+e0
+fe
+01
+67
+e1
+4b
+fd
+6f
+e0
+cb
+fd
+1f
+e1
+7e
+ff
+c0
+00
+05
+6a
+20
+60
+00
+00
+6f
+e0
+c8
+83
+c0
+7f
+a3
+44
+c0
+00
+85
+71
+c0
+01
+05
+73
+c0
+01
+85
+79
+c0
+02
+05
+7f
+20
+60
+00
+00
+70
+4c
+fb
+ff
+20
+20
+05
+80
+6f
+e0
+c8
+5e
+20
+3a
+05
+77
+6f
+e2
+48
+ad
+20
+40
+22
+92
+70
+4c
+fb
+aa
+20
+20
+05
+80
+70
+4c
+fb
+55
+6f
+e0
+c8
+5e
+20
+3a
+05
+80
+6f
+e2
+48
+95
+67
+e2
+4c
+fd
+20
+20
+05
+82
+70
+4c
+fb
+22
+6f
+e2
+48
+ad
+67
+e2
+4c
+fd
+6f
+e0
+c8
+39
+1f
+e1
+7e
+07
+67
+e0
+cc
+fc
+70
+4d
+01
+00
+70
+48
+38
+07
+20
+40
+00
+6f
+20
+40
+26
+62
+24
+6c
+00
+00
+24
+77
+80
+00
+20
+40
+05
+ca
+20
+40
+02
+ef
+6f
+e0
+c8
+83
+c1
+7f
+80
+00
+c0
+01
+05
+92
+c0
+02
+05
+98
+20
+20
+23
+1d
+6f
+e0
+c8
+5e
+20
+3a
+23
+2d
+6f
+e2
+4d
+89
+20
+7a
+00
+00
+67
+e2
+48
+95
+20
+20
+23
+2d
+6f
+e0
+c8
+5e
+20
+3a
+05
+9e
+6f
+e2
+4d
+89
+68
+4a
+48
+95
+98
+46
+7c
+00
+24
+62
+80
+00
+70
+48
+83
+ff
+70
+09
+5b
+39
+20
+40
+78
+dc
+58
+00
+00
+00
+67
+e1
+48
+87
+6f
+e2
+4d
+89
+20
+40
+22
+92
+20
+20
+23
+44
+6f
+e1
+48
+8d
+d8
+40
+01
+f8
+98
+41
+7e
+00
+20
+3a
+05
+b2
+6f
+e1
+48
+8d
+1f
+e0
+fe
+01
+67
+e1
+48
+8d
+20
+60
+00
+00
+6f
+e4
+4b
+bc
+c2
+98
+48
+6d
+c2
+97
+c8
+6d
+20
+20
+25
+77
+20
+40
+05
+db
+20
+40
+26
+62
+24
+2c
+05
+e2
+24
+37
+85
+e2
+20
+40
+02
+ef
+6f
+e0
+c8
+2d
+20
+3a
+05
+d0
+6f
+e2
+48
+7b
+68
+4a
+48
+3f
+98
+46
+7c
+00
+20
+22
+85
+ae
+6f
+e2
+48
+ad
+68
+4a
+48
+3f
+98
+46
+7c
+00
+20
+42
+85
+d7
+6f
+e0
+c8
+a5
+79
+3f
+fe
+02
+67
+e0
+c8
+a5
+58
+00
+00
+00
+67
+e1
+48
+87
+67
+e1
+48
+8d
+67
+e1
+48
+8b
+70
+09
+5b
+3c
+20
+40
+78
+dc
+df
+20
+00
+04
+d8
+a0
+4c
+fb
+20
+20
+7d
+8c
+df
+20
+00
+02
+d8
+a0
+4d
+87
+20
+20
+7d
+8c
+6f
+e2
+48
+91
+68
+4a
+48
+3f
+98
+46
+7c
+00
+20
+22
+85
+b9
+6f
+e2
+4d
+89
+20
+7a
+00
+00
+20
+20
+05
+b9
+6f
+e2
+4d
+89
+20
+7a
+00
+00
+67
+e2
+48
+95
+20
+20
+25
+87
+70
+4c
+fb
+ff
+6f
+e0
+c8
+39
+67
+e0
+cc
+fc
+6f
+e2
+48
+ad
+67
+e2
+4c
+fd
+70
+48
+38
+06
+20
+20
+00
+6f
+6f
+e0
+c8
+90
+20
+3a
+22
+81
+6f
+e1
+48
+8d
+1f
+e0
+fe
+01
+67
+e1
+48
+8d
+2f
+ef
+fe
+09
+6f
+e0
+c8
+8f
+c0
+02
+85
+ec
+c0
+01
+05
+ee
+20
+20
+25
+b1
+20
+20
+a5
+77
+20
+20
+22
+ef
+20
+20
+a5
+7e
+70
+41
+e8
+aa
+20
+20
+25
+71
+78
+34
+7c
+00
+20
+40
+14
+36
+6f
+e1
+c1
+74
+20
+3a
+7e
+c7
+6f
+e0
+c0
+99
+20
+3a
+7e
+c7
+6f
+e0
+c8
+c1
+c0
+00
+fe
+c7
+20
+60
+00
+00
+20
+40
+12
+d1
+20
+20
+14
+68
+6f
+e0
+cb
+f4
+24
+5a
+78
+cc
+70
+4b
+f4
+00
+20
+20
+78
+bc
+20
+40
+1b
+24
+24
+7a
+00
+00
+6f
+e0
+ca
+d2
+c0
+7f
+86
+07
+6f
+e0
+cb
+86
+1f
+e1
+7e
+03
+c1
+81
+80
+00
+6f
+e0
+ca
+bd
+20
+5a
+43
+08
+6f
+e4
+4b
+bc
+c2
+80
+c4
+11
+c2
+80
+44
+11
+c2
+82
+c4
+11
+c2
+83
+44
+11
+20
+40
+3f
+b0
+20
+40
+43
+64
+24
+74
+00
+00
+20
+40
+43
+71
+20
+40
+02
+20
+20
+20
+43
+f3
+6f
+e0
+c3
+dd
+1f
+e0
+fe
+01
+67
+e0
+c3
+dd
+c0
+06
+16
+06
+20
+40
+18
+c7
+20
+40
+19
+16
+6f
+e0
+82
+bd
+20
+40
+16
+37
+20
+40
+17
+e4
+20
+20
+16
+01
+20
+40
+0e
+7c
+20
+20
+16
+0d
+ef
+e1
+00
+06
+c0
+02
+06
+23
+20
+20
+19
+90
+ef
+e1
+80
+06
+67
+e1
+c4
+36
+c0
+05
+06
+2a
+c0
+09
+06
+39
+c0
+08
+06
+57
+c0
+04
+06
+66
+20
+20
+1c
+7f
+6f
+e4
+4b
+bc
+c3
+1d
+9d
+93
+20
+40
+1e
+39
+68
+49
+44
+37
+6f
+e0
+c3
+c0
+c2
+81
+86
+34
+6f
+e1
+44
+37
+c0
+18
+1e
+74
+68
+49
+44
+37
+20
+20
+1d
+97
+6f
+e1
+43
+d1
+98
+46
+7c
+00
+24
+22
+86
+30
+24
+34
+06
+30
+20
+20
+1d
+bc
+18
+c2
+22
+00
+6f
+e1
+43
+d4
+1f
+e0
+a5
+fd
+20
+40
+19
+d1
+68
+49
+44
+37
+6f
+e0
+ce
+2e
+98
+46
+7c
+00
+20
+42
+86
+4c
+6f
+e0
+ca
+d2
+c0
+7f
+9e
+1f
+6f
+e0
+ca
+d8
+20
+3a
+1e
+1f
+6f
+e0
+cb
+86
+c2
+80
+9e
+1f
+58
+00
+00
+1a
+68
+49
+44
+37
+98
+46
+7c
+00
+24
+22
+9e
+1f
+20
+20
+1d
+bc
+ef
+e1
+80
+11
+67
+e1
+ce
+30
+6f
+e1
+4e
+30
+c0
+7a
+86
+53
+c0
+7a
+06
+55
+c0
+79
+80
+b8
+20
+60
+00
+00
+6f
+e0
+ce
+32
+20
+20
+01
+46
+6f
+e0
+ce
+32
+20
+20
+01
+53
+20
+40
+1e
+b0
+18
+c2
+04
+00
+20
+40
+06
+5d
+18
+42
+0c
+00
+20
+40
+1e
+bd
+20
+20
+1d
+db
+6f
+e1
+09
+9e
+1f
+e6
+7c
+33
+20
+61
+00
+00
+6f
+e0
+ce
+33
+24
+7a
+00
+00
+70
+4e
+33
+01
+58
+00
+4d
+f0
+67
+e1
+43
+96
+20
+60
+00
+00
+20
+40
+1e
+b0
+18
+c2
+04
+00
+20
+40
+06
+6d
+20
+40
+06
+5d
+18
+42
+0c
+00
+20
+40
+1e
+bd
+20
+20
+1d
+18
+6f
+e0
+ce
+33
+20
+7a
+00
+00
+70
+4e
+33
+00
+58
+00
+97
+32
+67
+e1
+43
+96
+20
+60
+00
+00
+20
+40
+1b
+24
+24
+7a
+00
+00
+6f
+e0
+c3
+9b
+c0
+06
+06
+78
+20
+20
+20
+2e
+6f
+e0
+c3
+4f
+68
+48
+c3
+56
+98
+41
+7e
+00
+2f
+ec
+00
+01
+20
+20
+a0
+5e
+70
+43
+9b
+0d
+20
+20
+06
+7f
+18
+00
+22
+11
+20
+40
+20
+b6
+58
+00
+00
+08
+e7
+e0
+80
+05
+df
+20
+00
+10
+d8
+c0
+43
+16
+20
+20
+7d
+d4
+78
+54
+7c
+00
+58
+00
+00
+00
+67
+e3
+48
+d5
+20
+40
+06
+9a
+58
+00
+00
+89
+20
+40
+5d
+5e
+20
+40
+04
+e3
+20
+40
+3f
+be
+20
+40
+3f
+c3
+20
+40
+06
+b3
+6f
+e0
+c8
+d4
+1f
+e1
+7e
+1f
+67
+e0
+c8
+d4
+24
+34
+06
+98
+70
+4d
+e5
+00
+70
+4d
+e0
+01
+20
+40
+06
+a9
+20
+20
+45
+84
+70
+4d
+e0
+00
+20
+20
+47
+66
+6f
+e0
+c4
+ae
+c1
+80
+00
+00
+6f
+e0
+c9
+2c
+c0
+05
+86
+9f
+20
+20
+42
+83
+20
+40
+43
+04
+6f
+e0
+c9
+15
+c0
+7f
+86
+a5
+68
+48
+c9
+15
+20
+40
+60
+fd
+24
+60
+80
+00
+58
+00
+00
+00
+20
+40
+5d
+65
+c0
+ac
+41
+f2
+20
+20
+42
+b9
+6f
+e4
+4b
+bc
+c3
+8c
+80
+00
+c3
+8d
+00
+00
+c3
+8f
+00
+00
+c3
+8f
+80
+00
+6f
+e0
+c9
+2c
+c1
+01
+80
+00
+c1
+05
+80
+00
+20
+40
+47
+58
+20
+60
+00
+00
+20
+40
+06
+b6
+20
+40
+41
+2d
+20
+20
+41
+1e
+6f
+e0
+cb
+f2
+24
+5a
+41
+61
+da
+20
+00
+00
+20
+40
+06
+bd
+20
+40
+06
+cc
+20
+40
+06
+d9
+20
+20
+41
+5e
+6f
+e0
+c9
+1c
+20
+40
+06
+e6
+20
+40
+41
+64
+68
+48
+c9
+1c
+20
+40
+3f
+96
+6f
+e0
+c9
+1d
+20
+40
+06
+e6
+20
+40
+41
+6a
+68
+48
+c9
+1d
+20
+40
+3f
+96
+6f
+e0
+c9
+1e
+20
+40
+06
+e6
+20
+40
+41
+70
+68
+48
+c9
+1e
+20
+20
+3f
+96
+6f
+e0
+c9
+11
+c1
+7f
+80
+00
+70
+4b
+a7
+03
+6f
+e0
+cb
+a2
+1f
+e2
+26
+00
+68
+48
+c9
+11
+6f
+e0
+c9
+14
+c0
+7f
+86
+d5
+20
+20
+41
+7e
+6f
+e0
+c9
+11
+20
+40
+06
+e9
+68
+48
+c9
+11
+20
+20
+41
+8b
+6f
+e0
+c9
+12
+c1
+7f
+80
+00
+70
+4b
+a7
+04
+6f
+e0
+cb
+a3
+1f
+e2
+26
+00
+68
+48
+c9
+12
+6f
+e0
+c9
+14
+c0
+7f
+86
+e2
+20
+20
+41
+97
+6f
+e0
+c9
+12
+20
+40
+06
+e9
+68
+48
+c9
+12
+20
+20
+41
+a4
+c1
+7f
+80
+00
+d8
+40
+00
+3f
+20
+20
+61
+2c
+c1
+7f
+80
+00
+d8
+40
+00
+3e
+20
+20
+61
+2c
+20
+75
+80
+00
+70
+4d
+cd
+00
+20
+20
+07
+00
+70
+4d
+cd
+01
+20
+20
+07
+00
+70
+4d
+cd
+10
+20
+20
+07
+00
+70
+4d
+cd
+11
+20
+20
+07
+00
+70
+4d
+cd
+20
+20
+20
+07
+00
+70
+4d
+cd
+21
+20
+20
+07
+00
+70
+4d
+cd
+30
+20
+20
+07
+00
+70
+4d
+cd
+31
+20
+20
+07
+00
+20
+75
+80
+00
+70
+4d
+cd
+40
+20
+20
+07
+00
+68
+48
+cd
+cd
+18
+51
+84
+00
+6f
+e0
+cd
+d2
+98
+46
+7c
+00
+20
+22
+87
+1c
+60
+48
+cd
+d2
+18
+40
+84
+01
+58
+00
+01
+00
+98
+4f
+84
+00
+6f
+e1
+cd
+d3
+98
+46
+7e
+00
+68
+49
+cd
+d6
+98
+40
+fe
+00
+67
+e1
+cd
+d9
+20
+40
+07
+1e
+20
+40
+07
+2a
+20
+40
+07
+21
+24
+22
+87
+0e
+6f
+e2
+0e
+00
+68
+4a
+4d
+dc
+98
+46
+7c
+00
+24
+22
+87
+0e
+58
+00
+0e
+00
+67
+e1
+41
+a6
+70
+41
+a8
+40
+20
+40
+5c
+a3
+58
+00
+00
+00
+67
+e2
+41
+a6
+6f
+e0
+cd
+cd
+20
+20
+00
+01
+d8
+a0
+0e
+00
+df
+20
+01
+00
+20
+20
+7d
+9b
+d8
+c0
+0e
+00
+da
+20
+00
+00
+df
+20
+00
+3f
+ef
+e2
+00
+06
+9a
+20
+a2
+00
+c2
+00
+07
+24
+ef
+e2
+00
+06
+9a
+26
+7c
+00
+20
+60
+00
+00
+20
+40
+5d
+af
+20
+40
+46
+4a
+6f
+e1
+cd
+d9
+d8
+40
+01
+00
+da
+20
+0e
+00
+20
+40
+5d
+d2
+20
+40
+46
+51
+20
+20
+3f
+a5
+34
+70
+aa
+55
+40
+00
+00
+40
+01
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+0c
+0c
+00
+00
+14
+20
+00
+00
+c8
+e3
+6d
+77
+03
+00
+00
+00
+00
+00
+00
+80
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+20
+00
+00
+80
+02
+00
+00
+40
+00
+00
+00
+e2
+0e
+16
+00
+00
+aa
+55
+01
+00
+9a
+40
+08
+aa
+55
+03
+00
+7a
+41
+88
+16
+ce
+aa
+55
+01
+00
+c5
+40
+18
+aa
+55
+01
+00
+ef
+41
+ff
+aa
+55
+02
+00
+ca
+40
+ef
+41
+aa
+55
+01
+00
+7d
+41
+38
+aa
+55
+01
+00
+d2
+44
+00
+aa
+55
+05
+00
+ea
+41
+ff
+04
+00
+00
+08
+aa
+55
+08
+00
+bc
+4b
+04
+09
+06
+00
+00
+12
+82
+1f
+aa
+55
+0c
+00
+02
+49
+08
+07
+58
+02
+64
+64
+95
+75
+85
+63
+75
+80
+aa
+55
+08
+00
+11
+49
+0d
+0e
+0f
+07
+03
+ff
+0c
+0b
+aa
+55
+0b
+00
+1a
+49
+ff
+ff
+0d
+0a
+0e
+0a
+ff
+ff
+ff
+05
+04
+aa
+55
+03
+00
+29
+49
+03
+03
+00
+aa
+55
+01
+00
+a3
+4c
+01
+aa
+55
+01
+00
+a8
+4c
+01
+aa
+55
+01
+00
+a7
+4c
+01
+aa
+55
+05
+00
+ac
+4c
+02
+01
+00
+ff
+ff
+aa
+55
+03
+00
+13
+4c
+ff
+58
+02
+aa
+55
+12
+00
+dd
+4b
+00
+05
+00
+04
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+aa
+55
+01
+00
+99
+40
+01
+aa
+55
+02
+00
+c4
+4b
+02
+03
+aa
+55
+08
+00
+3d
+49
+00
+34
+ff
+ff
+ff
+ff
+ff
+ff
+aa
+55
+07
+00
+5b
+49
+34
+ff
+ff
+ff
+ff
+ff
+ff
+aa
+55
+17
+00
+78
+49
+33
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+aa
+55
+0b
+00
+c6
+4b
+00
+40
+0a
+60
+06
+0a
+00
+64
+00
+70
+17
+aa
+55
+02
+00
+db
+4b
+07
+07
+aa
+55
+01
+00
+c5
+49
+01
+aa
+55
+01
+00
+01
+49
+02
+aa
+55
+01
+00
+a3
+44
+02
+aa
+55
+06
+00
+e7
+48
+0f
+01
+a2
+00
+b4
+00
+aa
+55
+01
+00
+fb
+48
+0a
+aa
+55
+03
+00
+ef
+4b
+00
+00
+00
+aa
+55
+01
+00
+bc
+4a
+ff
+aa
+55
+01
+00
+f4
+4b
+01
+aa
+55
+01
+00
+77
+41
+20
+aa
+55
+01
+00
+9b
+4b
+20
+aa
+55
+01
+00
+7f
+44
+06
+aa
+55
+06
+00
+a8
+40
+21
+56
+71
+52
+08
+53
+aa
+55
+0c
+00
+ff
+45
+0b
+42
+54
+33
+2e
+30
+20
+4d
+6f
+75
+73
+65
+aa
+55
+05
+00
+55
+44
+0e
+00
+01
+00
+02
+aa
+55
+01
+00
+44
+46
+0a
+aa
+55
+01
+00
+67
+47
+00
+aa
+55
+01
+00
+7b
+46
+00
+aa
+55
+01
+00
+5f
+41
+00
+aa
+55
+03
+00
+68
+47
+03
+00
+04
+aa
+55
+01
+00
+91
+47
+01
+aa
+55
+01
+00
+d8
+40
+01
+aa
+55
+0c
+00
+e7
+43
+1f
+02
+01
+05
+03
+03
+12
+18
+03
+19
+c2
+03
+aa
+55
+14
+00
+e3
+4a
+06
+ff
+06
+00
+03
+00
+80
+0c
+09
+42
+54
+35
+2e
+33
+20
+4d
+6f
+75
+73
+65
+aa
+55
+0e
+00
+07
+44
+1f
+0c
+09
+42
+54
+35
+2e
+33
+20
+4d
+6f
+75
+73
+65
+aa
+55
+0c
+00
+f7
+42
+0b
+42
+54
+35
+2e
+33
+20
+4d
+6f
+75
+73
+65
+aa
+55
+0c
+00
+ff
+4b
+0b
+42
+54
+35
+2e
+33
+20
+4d
+6f
+75
+73
+65
+aa
+55
+06
+00
+7a
+43
+03
+b1
+2a
+4e
+8e
+ed
+aa
+55
+08
+00
+72
+43
+06
+00
+09
+00
+20
+00
+2c
+01
+aa
+55
+06
+00
+dd
+4a
+03
+12
+18
+ff
+00
+00
+aa
+55
+04
+00
+28
+44
+00
+00
+00
+00
+aa
+55
+01
+00
+32
+44
+07
+aa
+55
+08
+00
+4c
+44
+fb
+00
+48
+08
+fb
+00
+48
+08
+aa
+55
+02
+00
+f8
+4a
+15
+00
+aa
+55
+02
+00
+57
+43
+19
+00
+aa
+55
+06
+00
+fa
+4a
+1d
+00
+21
+00
+30
+00
+aa
+55
+02
+00
+d1
+43
+2d
+00
+aa
+55
+01
+00
+01
+4b
+96
+aa
+55
+01
+00
+88
+44
+ff
+aa
+55
+0c
+00
+d5
+49
+03
+04
+01
+02
+20
+2a
+3f
+15
+14
+1b
+11
+0e
+aa
+55
+05
+00
+73
+4c
+2a
+35
+3f
+15
+20
+aa
+55
+c0
+00
+e4
+49
+09
+5a
+26
+34
+19
+04
+09
+00
+ff
+ff
+09
+5a
+0d
+f0
+1d
+e3
+7d
+d2
+ff
+ff
+09
+5a
+0d
+10
+1d
+ed
+7d
+80
+ff
+ff
+1b
+35
+28
+b4
+29
+46
+2a
+96
+2b
+8c
+2c
+6e
+2d
+64
+38
+5f
+39
+0f
+3a
+32
+3b
+47
+42
+10
+ff
+ff
+54
+2e
+55
+f2
+61
+f4
+63
+70
+75
+52
+76
+41
+77
+ed
+78
+23
+79
+46
+7a
+e5
+7c
+48
+7e
+77
+7f
+01
+0b
+00
+7f
+00
+09
+00
+ff
+ff
+09
+5a
+ff
+27
+ab
+40
+b3
+56
+9b
+e6
+a8
+12
+a9
+c0
+be
+e6
+a5
+af
+a0
+21
+a1
+02
+b8
+10
+b9
+0b
+a7
+ff
+b5
+d0
+b6
+00
+ff
+00
+09
+00
+ff
+ff
+09
+5a
+0d
+10
+0e
+c5
+5b
+9a
+10
+38
+11
+42
+28
+28
+41
+23
+49
+39
+4a
+b0
+4b
+a0
+4c
+90
+4d
+70
+09
+00
+ff
+ff
+09
+5a
+06
+02
+09
+69
+0d
+48
+0e
+9f
+0f
+ba
+09
+00
+ff
+ff
+09
+a5
+26
+34
+19
+04
+60
+07
+69
+04
+7d
+20
+7e
+00
+09
+00
+ff
+ff
+aa
+55
+08
+00
+b4
+4a
+09
+5a
+0b
+f3
+09
+00
+ff
+ff
+aa
+55
+08
+00
+f5
+4b
+09
+a5
+0b
+f3
+09
+00
+ff
+ff
+aa
+55
+01
+00
+7a
+48
+01
+aa
+55
+01
+00
+68
+48
+01
+aa
+55
+01
+00
+67
+48
+01
+aa
+55
+01
+00
+39
+48
+01
+aa
+55
+01
+00
+ac
+48
+06
+aa
+55
+02
+00
+3b
+48
+c0
+12
+aa
+55
+03
+00
+57
+48
+19
+19
+1c
+aa
+55
+01
+00
+5e
+48
+00
+aa
+55
+05
+00
+7b
+48
+20
+15
+10
+05
+4e
+aa
+55
+05
+00
+90
+48
+01
+0f
+0f
+0f
+0f
+aa
+55
+06
+00
+b1
+48
+0c
+f8
+00
+00
+77
+01
+aa
+55
+03
+00
+5f
+48
+00
+48
+60
+aa
+55
+01
+00
+81
+48
+0f
+aa
+55
+02
+00
+9d
+48
+37
+4c
+aa
+55
+01
+00
+ce
+48
+80
+aa
+55
+02
+00
+c6
+48
+14
+00
+aa
+55
+02
+00
+c4
+48
+50
+00
+aa
+55
+03
+00
+bc
+48
+00
+a6
+0e
+aa
+55
+03
+00
+bd
+49
+00
+50
+00
+aa
+55
+02
+00
+7b
+44
+80
+1f
+aa
+55
+01
+00
+85
+44
+80
+aa
+55
+01
+00
+e8
+41
+0a
+aa
+55
+01
+00
+2a
+4c
+10
+aa
+55
+04
+00
+d2
+4d
+ff
+00
+00
+00
+aa
+55
+04
+00
+dc
+4d
+20
+20
+00
+40
+aa
+55
+01
+00
+bc
+44
+ff
+aa
+55
+02
+00
+8f
+44
+32
+49
+aa
+55
+01
+00
+8e
+44
+00
+aa
+55
+01
+00
+93
+47
+ff
+aa
+55
+01
+00
+92
+47
+1e
+aa
+55
+01
+00
+58
+0b
+ff
+aa
+55
+09
+00
+7b
+4c
+01
+53
+31
+30
+10
+53
+31
+30
+30
+aa
+55
+01
+00
+7a
+4c
+01
+aa
+55
+11
+00
+84
+4c
+10
+77
+69
+72
+65
+64
+5f
+6d
+6f
+73
+75
+65
+5f
+31
+33
+30
+38
+aa
+55
+01
+00
+2f
+49
+00
+aa
+55
+01
+00
+79
+4c
+ff
+aa
+55
+01
+00
+19
+49
+ff
+aa
+55
+02
+00
+26
+49
+ff
+ff
+aa
+55
+01
+00
+25
+49
+ff
+aa
+55
+01
+00
+28
+49
+ff
+aa
+55
+0a
+00
+d1
+4b
+14
+0a
+90
+01
+e8
+03
+90
+01
+64
+00
+aa
+55
+0a
+00
+ef
+48
+10
+00
+52
+00
+35
+00
+21
+00
+25
+00
+aa
+55
+04
+00
+2c
+4e
+36
+00
+39
+00
+aa
+55
+2e
+00
+f0
+4d
+34
+00
+02
+00
+28
+02
+00
+ff
+35
+00
+02
+03
+28
+01
+10
+36
+00
+02
+01
+ff
+01
+00
+37
+00
+02
+02
+29
+02
+00
+00
+38
+00
+02
+03
+28
+01
+0c
+39
+00
+02
+02
+ff
+01
+00
+00
+00
+aa
+55
+03
+00
+d3
+4d
+88
+28
+00
+55
+aa
+aa
+55
+b7
+ac
+ff
+20
+20
+00
+40
+20
+60
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+40
+80
+00
+40
+20
+20
+00
+40
+c0
+20
+00
+03
+20
+60
+00
+00
+6f
+e0
+c9
+9e
+c0
+00
+80
+09
+c0
+01
+00
+0e
+c0
+01
+80
+15
+c0
+02
+00
+1b
+20
+60
+00
+00
+58
+01
+77
+00
+67
+e1
+cc
+16
+70
+48
+ca
+1e
+58
+01
+0d
+88
+20
+20
+00
+12
+58
+00
+bb
+80
+67
+e1
+cc
+16
+70
+48
+ca
+0f
+58
+00
+4c
+f4
+67
+e1
+c8
+b1
+67
+e1
+cc
+2c
+20
+60
+00
+00
+70
+48
+ca
+09
+58
+08
+06
+06
+67
+e1
+c8
+57
+58
+00
+5c
+1c
+67
+e1
+cc
+16
+20
+20
+26
+e8
+70
+48
+ca
+05
+58
+01
+01
+01
+67
+e1
+c8
+57
+58
+00
+2e
+e0
+67
+e1
+cc
+16
+20
+20
+26
+e8
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+c7
+e3
+b7
+34
+20
+20
+00
+40
+c0
+18
+00
+04
+c0
+18
+80
+0e
+20
+60
+00
+00
+58
+00
+00
+00
+67
+e1
+4b
+03
+67
+e0
+cd
+e3
+67
+e0
+cc
+6f
+67
+e0
+cc
+70
+67
+e0
+ca
+d7
+70
+4b
+05
+00
+70
+4a
+bd
+00
+20
+40
+1a
+c8
+20
+20
+04
+fd
+20
+40
+00
+18
+6f
+e1
+47
+8f
+2f
+ef
+fe
+0b
+20
+40
+c5
+c1
+6f
+e1
+47
+8f
+2f
+ef
+fe
+07
+20
+40
+c3
+62
+58
+00
+00
+00
+67
+e1
+4b
+03
+20
+20
+45
+94
+6f
+e0
+cc
+a3
+20
+7a
+00
+00
+70
+4c
+aa
+02
+20
+20
+04
+0e
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+d5
+35
+03
+73
+20
+20
+00
+40
+c0
+10
+00
+04
+c0
+10
+80
+20
+20
+60
+00
+00
+20
+40
+43
+29
+20
+40
+7f
+52
+20
+40
+40
+55
+6f
+e0
+c9
+24
+20
+40
+06
+e6
+20
+40
+04
+92
+20
+40
+3e
+72
+20
+40
+03
+c9
+20
+40
+00
+12
+20
+40
+00
+16
+68
+48
+c9
+15
+20
+40
+3f
+94
+68
+48
+c9
+15
+20
+20
+60
+e6
+6f
+e0
+c9
+22
+c1
+7f
+80
+00
+68
+48
+c9
+22
+20
+20
+61
+21
+6f
+e4
+4b
+bc
+c4
+1e
+00
+00
+68
+48
+c9
+17
+20
+40
+60
+e6
+68
+48
+c9
+18
+20
+40
+60
+e6
+68
+48
+c9
+17
+20
+40
+3f
+94
+68
+48
+c9
+18
+20
+20
+3f
+94
+6f
+e2
+48
+3f
+67
+e2
+48
+95
+67
+e2
+49
+98
+20
+40
+25
+87
+20
+40
+45
+84
+20
+40
+43
+0a
+70
+4a
+bf
+01
+70
+48
+a5
+00
+70
+48
+8f
+00
+6f
+e2
+48
+95
+68
+4a
+48
+91
+98
+46
+7c
+00
+20
+62
+80
+00
+70
+4e
+35
+01
+70
+4b
+03
+0a
+70
+4d
+e3
+05
+20
+40
+03
+fb
+20
+40
+05
+04
+20
+20
+48
+61
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+96
+22
+68
+74
+20
+20
+00
+40
+c0
+08
+00
+04
+c0
+08
+80
+2a
+20
+60
+00
+00
+6f
+e4
+4b
+bc
+c2
+97
+80
+23
+6f
+e0
+c9
+3d
+c0
+00
+00
+15
+20
+40
+04
+13
+20
+40
+43
+54
+6f
+e0
+c9
+3d
+c0
+00
+80
+0e
+c0
+01
+00
+10
+20
+60
+00
+00
+6f
+e3
+49
+3f
+20
+20
+00
+11
+6f
+e3
+49
+5c
+68
+4b
+49
+79
+98
+46
+7c
+00
+20
+22
+c3
+2b
+20
+20
+3e
+1c
+6f
+e4
+4b
+bc
+c3
+08
+c8
+42
+20
+40
+04
+01
+20
+40
+3e
+28
+20
+34
+48
+45
+6f
+e4
+4b
+bc
+c2
+98
+00
+25
+c3
+18
+80
+25
+20
+40
+41
+50
+1a
+21
+7e
+07
+68
+48
+cb
+dc
+98
+46
+7c
+00
+20
+22
+85
+4d
+20
+20
+48
+4b
+20
+40
+3e
+28
+20
+34
+48
+55
+70
+49
+3d
+00
+6f
+e1
+4b
+cb
+67
+e1
+48
+8b
+70
+48
+8f
+01
+20
+20
+25
+62
+70
+4e
+35
+01
+70
+4b
+03
+0a
+70
+4d
+e3
+05
+20
+40
+05
+04
+20
+40
+45
+84
+20
+40
+03
+fb
+20
+20
+48
+96
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+93
+88
+01
+78
+20
+20
+00
+40
+c0
+00
+00
+04
+c0
+00
+80
+3a
+20
+60
+00
+00
+20
+40
+26
+0e
+20
+40
+22
+b5
+20
+40
+02
+ac
+20
+40
+3f
+60
+20
+40
+01
+f4
+20
+40
+3d
+d6
+20
+40
+00
+36
+20
+40
+00
+33
+20
+40
+1a
+c2
+20
+40
+00
+14
+20
+40
+1a
+de
+20
+40
+1a
+ca
+6f
+e4
+4b
+bc
+c2
+89
+c6
+75
+c2
+89
+00
+1a
+20
+60
+00
+00
+59
+00
+03
+02
+67
+e2
+43
+50
+58
+03
+00
+10
+67
+e1
+c3
+54
+70
+43
+9d
+01
+20
+60
+00
+00
+20
+40
+5d
+af
+20
+40
+46
+4a
+20
+40
+46
+3d
+20
+40
+5d
+d2
+20
+40
+46
+51
+20
+40
+00
+21
+20
+20
+3f
+a5
+6f
+e1
+49
+95
+d8
+40
+aa
+55
+98
+46
+7c
+00
+20
+22
+c6
+22
+20
+40
+00
+27
+20
+20
+46
+18
+6f
+e4
+4b
+bc
+c2
+8c
+00
+2d
+c2
+8c
+80
+2f
+c2
+8d
+00
+31
+70
+49
+9e
+01
+20
+60
+00
+00
+70
+49
+9e
+02
+20
+60
+00
+00
+70
+49
+9e
+03
+20
+60
+00
+00
+70
+49
+9e
+04
+20
+60
+00
+00
+6f
+e0
+c1
+e8
+67
+e0
+cc
+72
+20
+60
+00
+00
+70
+4c
+a4
+00
+70
+4c
+b2
+00
+70
+4c
+b4
+00
+20
+20
+03
+c9
+58
+00
+01
+fd
+67
+e1
+48
+9f
+20
+20
+3c
+89
+00
+00
+00
+00
+00
+00
+00
+00
+bb
+2c
+09
+15
+00
+00
+00
+00
+de
+2e
Index: output/flash.dat
===================================================================
--- /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/output/flash.dat	(nonexistent)
+++ /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/output/flash.dat	(working copy)
@@ -0,0 +1,10382 @@
+00
+02
+aa
+55
+ca
+1c
+20
+20
+00
+40
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+20
+00
+00
+01
+c2
+84
+00
+5f
+c0
+00
+01
+9b
+c0
+41
+01
+c4
+c0
+41
+81
+cb
+c0
+45
+01
+de
+c0
+45
+81
+d9
+c0
+51
+05
+fa
+c0
+52
+01
+6e
+c0
+56
+81
+e8
+c0
+61
+83
+94
+c0
+63
+03
+80
+c0
+63
+83
+87
+c0
+64
+06
+f5
+c0
+64
+84
+92
+c0
+66
+86
+86
+c0
+67
+04
+da
+c0
+67
+84
+e1
+c0
+68
+06
+b6
+c0
+69
+04
+6a
+c0
+69
+84
+7a
+c0
+6a
+84
+f3
+c0
+6c
+03
+95
+c0
+6e
+84
+99
+c0
+6f
+01
+8e
+c0
+70
+01
+77
+c0
+70
+81
+74
+c0
+6b
+06
+00
+c0
+6c
+86
+fb
+c0
+6d
+05
+5f
+c0
+6e
+04
+63
+20
+20
+13
+7e
+c0
+0f
+81
+f2
+c0
+42
+85
+fc
+c0
+6e
+81
+7e
+c0
+6f
+01
+10
+c0
+6f
+81
+29
+c0
+70
+80
+84
+c0
+71
+05
+62
+c0
+71
+85
+8d
+c0
+74
+85
+a6
+c0
+75
+02
+2c
+c0
+76
+05
+f1
+c0
+4f
+86
+14
+c0
+50
+86
+1e
+c0
+5f
+06
+20
+c0
+6c
+86
+73
+20
+20
+13
+7e
+6f
+e0
+c8
+38
+1f
+e0
+fe
+03
+67
+e0
+c8
+3a
+6f
+e0
+c8
+5c
+67
+e0
+cd
+41
+6f
+e0
+c8
+39
+1f
+e9
+fe
+00
+68
+48
+c8
+2e
+18
+41
+04
+03
+18
+43
+84
+00
+98
+41
+fe
+00
+68
+48
+c8
+2f
+98
+40
+fe
+00
+e7
+e0
+80
+05
+6f
+e0
+c8
+38
+e7
+e0
+80
+05
+6f
+e0
+c8
+38
+98
+00
+72
+00
+d8
+c0
+4c
+fb
+20
+40
+7d
+d4
+20
+20
+22
+5d
+6f
+e0
+c8
+68
+20
+40
+16
+37
+6f
+e2
+48
+3f
+98
+00
+12
+00
+20
+40
+21
+81
+20
+40
+21
+f5
+79
+20
+2a
+00
+78
+2e
+fc
+00
+78
+30
+7c
+00
+78
+50
+fc
+00
+20
+40
+4d
+13
+78
+5d
+7c
+00
+19
+31
+7e
+00
+1f
+ec
+fe
+00
+1f
+f1
+fe
+00
+08
+00
+86
+28
+78
+23
+fc
+00
+78
+24
+fc
+00
+6f
+e0
+c8
+3a
+98
+00
+72
+00
+d8
+c0
+4d
+41
+20
+20
+22
+15
+20
+40
+00
+9d
+24
+74
+00
+00
+20
+20
+00
+6f
+6f
+e1
+48
+9f
+20
+40
+7e
+7a
+20
+34
+00
+d5
+6f
+e3
+cc
+fc
+20
+7a
+00
+00
+20
+20
+7e
+c5
+70
+48
+ab
+00
+1a
+20
+fe
+01
+67
+e0
+c8
+38
+20
+40
+26
+49
+67
+e0
+cc
+fb
+20
+20
+26
+46
+da
+60
+4d
+e3
+da
+40
+00
+ac
+20
+20
+31
+fc
+6f
+e0
+c9
+3d
+c0
+80
+00
+b0
+70
+4d
+e2
+01
+20
+60
+00
+00
+da
+20
+00
+02
+68
+49
+4e
+2c
+20
+40
+1e
+5f
+6f
+e0
+c9
+97
+e7
+e0
+80
+05
+58
+00
+00
+00
+e7
+e0
+80
+05
+20
+60
+00
+00
+da
+20
+00
+02
+68
+49
+4e
+2c
+20
+40
+1e
+5f
+6f
+e0
+c9
+97
+e7
+e0
+80
+05
+58
+00
+00
+01
+e7
+e0
+80
+05
+20
+60
+00
+00
+20
+40
+00
+c4
+6f
+e0
+cd
+e1
+20
+7a
+00
+00
+20
+20
+7e
+c5
+6f
+e0
+cd
+e2
+24
+3a
+00
+cc
+6f
+e0
+cd
+e4
+24
+3a
+00
+d0
+20
+60
+00
+00
+6f
+e0
+cd
+e1
+79
+20
+7e
+05
+20
+20
+00
+d3
+70
+4d
+e2
+00
+6f
+e0
+cd
+e1
+79
+20
+7e
+06
+20
+20
+00
+d3
+70
+4d
+e4
+00
+6f
+e0
+cd
+e1
+79
+20
+7e
+07
+67
+e0
+cd
+e1
+20
+60
+00
+00
+70
+48
+ab
+00
+6f
+e0
+cd
+e1
+c0
+00
+00
+a3
+c2
+83
+00
+db
+c2
+83
+80
+ec
+20
+60
+00
+00
+6f
+e0
+cd
+e0
+20
+3a
+00
+e5
+6f
+e0
+c8
+39
+79
+20
+7e
+06
+67
+e0
+cd
+e6
+6f
+e0
+c9
+97
+67
+e0
+cd
+e7
+d8
+40
+00
+02
+da
+20
+4d
+e6
+20
+20
+01
+06
+70
+48
+38
+02
+6f
+e0
+c8
+39
+79
+20
+7e
+06
+67
+e0
+cc
+fb
+6f
+e0
+c9
+97
+67
+e0
+cc
+fc
+20
+60
+00
+00
+6f
+e0
+cd
+e0
+20
+3a
+00
+f6
+6f
+e0
+c8
+39
+79
+20
+7e
+07
+67
+e0
+cd
+e6
+6f
+e0
+cb
+00
+67
+e0
+cd
+e7
+d8
+40
+00
+02
+da
+20
+4d
+e6
+20
+20
+01
+06
+70
+48
+38
+02
+6f
+e0
+c8
+39
+79
+20
+7e
+07
+67
+e0
+cc
+fb
+6f
+e0
+cb
+00
+67
+e0
+cc
+fc
+20
+60
+00
+00
+70
+48
+ab
+00
+70
+48
+39
+01
+20
+40
+26
+49
+70
+48
+38
+01
+6f
+e0
+c8
+39
+79
+20
+7e
+05
+67
+e0
+cc
+fb
+20
+40
+00
+6f
+20
+20
+02
+d9
+18
+40
+fe
+08
+67
+e0
+c8
+38
+20
+40
+26
+49
+67
+e0
+cc
+fb
+6f
+e3
+c8
+d4
+67
+e3
+cc
+fc
+18
+42
+72
+00
+1a
+22
+0c
+00
+d8
+a0
+4d
+03
+20
+20
+7d
+d4
+6f
+e0
+c8
+67
+20
+40
+16
+37
+6f
+e2
+48
+3f
+98
+00
+12
+00
+20
+40
+10
+ac
+20
+40
+11
+5d
+68
+48
+c8
+3d
+20
+40
+16
+74
+20
+40
+21
+81
+c5
+97
+81
+1d
+78
+3c
+fc
+00
+20
+00
+00
+1e
+20
+40
+21
+81
+78
+57
+fc
+00
+78
+26
+fc
+00
+78
+30
+fc
+00
+78
+50
+7c
+00
+78
+28
+7c
+00
+6f
+e1
+48
+3b
+98
+00
+36
+00
+37
+c1
+84
+00
+24
+2c
+21
+ef
+20
+40
+4d
+0d
+c5
+17
+a1
+a4
+20
+20
+21
+a4
+20
+40
+21
+ec
+67
+e0
+cc
+b5
+c5
+13
+81
+31
+6f
+e0
+cc
+b5
+1f
+e9
+7e
+00
+68
+48
+c8
+39
+a8
+40
+0e
+00
+24
+20
+a1
+f1
+20
+40
+21
+ec
+e7
+e0
+80
+05
+1f
+e6
+7c
+44
+24
+21
+21
+f1
+1f
+e2
+72
+00
+20
+22
+a1
+c3
+20
+20
+21
+c0
+20
+40
+01
+60
+6f
+e0
+c8
+2d
+20
+7a
+00
+00
+6f
+e1
+4d
+87
+c0
+7a
+81
+45
+c0
+7a
+01
+52
+20
+60
+00
+00
+da
+20
+00
+00
+ef
+e0
+80
+06
+9a
+20
+a2
+00
+c2
+00
+01
+40
+1a
+21
+22
+ff
+20
+60
+00
+00
+6f
+e0
+cd
+89
+c0
+00
+81
+4a
+c0
+01
+81
+4e
+c0
+02
+01
+50
+20
+60
+00
+00
+70
+49
+97
+02
+20
+20
+04
+e2
+70
+49
+97
+03
+20
+20
+04
+e2
+70
+49
+97
+00
+20
+20
+04
+e2
+70
+49
+97
+01
+20
+20
+04
+e2
+6f
+e0
+cd
+89
+c0
+00
+81
+58
+c0
+01
+01
+5a
+c0
+01
+81
+5c
+c0
+02
+01
+5e
+20
+60
+00
+00
+70
+49
+9e
+01
+20
+20
+46
+2e
+70
+49
+9e
+02
+20
+20
+46
+2e
+70
+49
+9e
+03
+20
+20
+46
+2e
+70
+49
+9e
+04
+20
+20
+46
+2e
+6f
+e0
+cd
+e1
+2f
+ef
+fe
+07
+20
+40
+81
+6a
+2f
+ef
+fe
+06
+20
+40
+81
+68
+2f
+ef
+fe
+05
+20
+40
+81
+6c
+20
+60
+00
+00
+79
+3f
+fe
+06
+20
+20
+00
+d3
+79
+3f
+fe
+07
+20
+20
+00
+d3
+79
+3f
+fe
+05
+20
+20
+00
+d3
+20
+40
+14
+36
+6f
+e1
+c1
+74
+20
+7a
+00
+00
+6f
+e0
+cc
+b2
+c1
+00
+80
+00
+20
+20
+14
+b0
+18
+46
+7c
+ff
+c1
+02
+80
+00
+20
+20
+49
+7d
+18
+46
+7c
+ff
+c1
+02
+80
+00
+20
+20
+49
+79
+6f
+e0
+cb
+c0
+24
+7a
+00
+00
+70
+44
+8e
+00
+20
+60
+00
+00
+c5
+13
+a3
+e1
+c6
+93
+00
+00
+6f
+e0
+c8
+a5
+c2
+80
+a2
+f6
+c2
+81
+25
+89
+6f
+e0
+c8
+c1
+c0
+00
+81
+86
+20
+20
+02
+2c
+6f
+e4
+4b
+bc
+c2
+8d
+01
+8a
+c2
+8c
+81
+8a
+20
+20
+26
+cd
+20
+40
+22
+a0
+24
+74
+00
+00
+20
+40
+26
+e2
+20
+20
+26
+28
+6f
+e0
+cb
+c5
+c1
+00
+80
+00
+20
+40
+03
+d8
+20
+40
+47
+00
+60
+48
+c9
+3d
+70
+41
+ca
+00
+20
+40
+47
+18
+20
+40
+43
+56
+20
+40
+31
+e6
+20
+20
+46
+fb
+6f
+e0
+c1
+7b
+67
+e0
+cc
+58
+20
+60
+00
+00
+20
+80
+00
+00
+70
+80
+86
+73
+24
+55
+81
+98
+20
+40
+31
+66
+24
+55
+81
+7a
+20
+55
+c1
+a8
+20
+40
+3c
+b3
+20
+40
+12
+46
+70
+80
+42
+04
+6f
+e0
+c0
+c5
+c0
+0c
+01
+a7
+70
+80
+42
+05
+6f
+e0
+cc
+58
+67
+e0
+c1
+7b
+58
+00
+0f
+0f
+d8
+a0
+0f
+ff
+98
+a1
+0a
+00
+6f
+e0
+c1
+7a
+1f
+e1
+7e
+f0
+1f
+ed
+7e
+00
+98
+a1
+fe
+00
+79
+3f
+fe
+02
+67
+f1
+00
+4c
+ef
+e1
+00
+06
+e7
+e1
+00
+05
+58
+00
+00
+01
+37
+d9
+82
+00
+67
+f0
+80
+05
+70
+41
+7b
+08
+20
+20
+08
+05
+6f
+f2
+01
+38
+79
+20
+7e
+02
+67
+f2
+00
+4c
+58
+00
+00
+01
+37
+d9
+82
+00
+67
+f0
+80
+05
+37
+d9
+82
+00
+37
+d9
+82
+00
+37
+d9
+82
+00
+20
+00
+27
+10
+20
+60
+00
+00
+6f
+e0
+c1
+ea
+67
+e0
+89
+64
+20
+40
+11
+4c
+70
+8a
+0a
+00
+6f
+e0
+89
+64
+67
+e0
+c1
+ea
+20
+60
+00
+00
+70
+89
+00
+05
+20
+00
+00
+02
+70
+89
+00
+00
+6f
+e0
+c0
+c5
+c0
+0c
+11
+64
+70
+8a
+87
+29
+20
+20
+11
+79
+6f
+f0
+8a
+0a
+79
+20
+7e
+03
+67
+f0
+8a
+0a
+20
+00
+00
+f0
+79
+3f
+fe
+03
+67
+f0
+8a
+0a
+20
+60
+00
+00
+70
+41
+ea
+ff
+70
+8a
+85
+00
+70
+89
+21
+40
+20
+40
+01
+d2
+20
+20
+12
+52
+6f
+e0
+c1
+e8
+c0
+55
+01
+e2
+c0
+4a
+81
+e5
+20
+20
+12
+37
+70
+8a
+39
+0a
+70
+8a
+3a
+00
+20
+20
+12
+26
+70
+8a
+39
+0a
+70
+8a
+3a
+00
+20
+20
+12
+26
+20
+40
+6e
+5e
+20
+40
+06
+ec
+20
+40
+06
+fd
+20
+40
+41
+e7
+20
+75
+80
+00
+20
+40
+04
+e3
+20
+40
+47
+66
+20
+40
+06
+ef
+20
+40
+04
+84
+20
+20
+3c
+7f
+6f
+e0
+c9
+23
+20
+20
+5b
+56
+6f
+e0
+cb
+ff
+20
+7a
+00
+00
+1f
+e0
+f2
+01
+d8
+c0
+4b
+ff
+d8
+a0
+42
+f7
+20
+20
+7d
+d4
+6f
+e0
+cc
+72
+67
+e0
+c1
+e8
+20
+60
+00
+00
+c6
+93
+00
+00
+20
+40
+3f
+b0
+20
+40
+00
+c0
+24
+74
+00
+00
+6f
+e0
+cc
+32
+70
+4c
+32
+00
+24
+5a
+04
+90
+6f
+e4
+4b
+bc
+c3
+0a
+82
+08
+6f
+e0
+cb
+9c
+24
+3a
+48
+c1
+20
+40
+02
+20
+6f
+e0
+c8
+39
+c2
+80
+82
+17
+68
+48
+cc
+fc
+6f
+e0
+c8
+d4
+98
+41
+fe
+00
+67
+e0
+c8
+d4
+68
+48
+cd
+01
+6f
+e0
+c8
+d9
+98
+40
+fe
+00
+67
+e0
+c8
+d9
+68
+48
+cd
+02
+6f
+e0
+c8
+da
+98
+40
+fe
+00
+67
+e0
+c8
+da
+70
+48
+39
+01
+da
+20
+00
+07
+da
+40
+48
+d4
+6f
+e4
+4b
+bc
+c2
+8c
+a6
+e8
+c2
+8d
+26
+e8
+6f
+e1
+48
+d9
+20
+7a
+00
+00
+20
+20
+26
+e8
+6f
+e0
+cd
+e0
+20
+7a
+00
+00
+20
+20
+43
+0d
+6f
+e2
+48
+95
+68
+4a
+48
+91
+98
+46
+7c
+00
+20
+22
+82
+29
+70
+41
+ea
+ff
+20
+60
+00
+00
+70
+41
+ea
+00
+70
+41
+e8
+aa
+20
+60
+00
+00
+20
+40
+00
+9a
+24
+34
+05
+1d
+20
+40
+02
+d9
+20
+40
+02
+23
+6f
+e0
+cb
+f2
+24
+3a
+02
+36
+6f
+e4
+48
+b4
+67
+e4
+48
+5f
+6f
+e1
+48
+c6
+67
+e1
+48
+c8
+20
+40
+26
+c2
+24
+74
+00
+00
+20
+40
+7f
+52
+6f
+e0
+ce
+36
+20
+3a
+02
+6f
+6f
+e0
+cc
+31
+70
+4c
+31
+00
+1f
+e6
+7c
+00
+24
+22
+82
+44
+68
+49
+4c
+2f
+18
+46
+7c
+00
+20
+22
+82
+6f
+6f
+e2
+4c
+21
+20
+3a
+02
+6f
+68
+4a
+4c
+33
+28
+4f
+fe
+1f
+20
+20
+82
+6a
+6f
+e2
+4c
+21
+98
+40
+fe
+00
+68
+4a
+4c
+16
+98
+46
+04
+00
+60
+4a
+4c
+33
+24
+21
+02
+72
+6f
+e1
+c8
+b1
+98
+46
+7e
+00
+24
+21
+02
+79
+d8
+40
+06
+00
+98
+46
+7c
+00
+24
+21
+02
+79
+20
+40
+7e
+1f
+60
+4a
+41
+60
+6f
+e0
+c0
+c5
+c0
+04
+02
+59
+58
+00
+00
+00
+67
+f1
+8a
+00
+70
+4c
+2b
+fa
+20
+40
+12
+d1
+6f
+e2
+41
+64
+98
+40
+fe
+00
+67
+e2
+41
+64
+18
+02
+7e
+00
+67
+e4
+41
+9d
+d8
+c0
+80
+70
+d8
+a0
+41
+86
+20
+40
+7d
+74
+6f
+f0
+80
+86
+67
+e0
+c1
+a5
+20
+40
+14
+10
+6f
+f0
+80
+42
+1f
+e1
+fe
+14
+67
+f0
+80
+42
+20
+20
+14
+6d
+df
+ff
+ff
+ff
+98
+46
+5e
+00
+6f
+e2
+4c
+21
+9d
+e6
+7e
+00
+20
+20
+02
+49
+20
+40
+02
+76
+6f
+e1
+c8
+b1
+20
+20
+02
+53
+18
+46
+04
+00
+6f
+e1
+c8
+b1
+98
+40
+fe
+00
+20
+20
+02
+53
+58
+00
+00
+00
+67
+e2
+4c
+33
+20
+60
+00
+00
+70
+4c
+31
+01
+20
+60
+00
+00
+6f
+e0
+ce
+35
+20
+7a
+00
+00
+6f
+e0
+ce
+36
+24
+7a
+00
+00
+6f
+e0
+ce
+37
+1f
+e0
+fe
+01
+67
+e0
+ce
+37
+c1
+85
+00
+00
+70
+4e
+37
+00
+70
+4e
+36
+01
+20
+60
+00
+00
+70
+4e
+37
+09
+70
+4e
+36
+00
+20
+60
+00
+00
+6f
+e4
+4b
+bc
+c3
+8c
+80
+00
+c3
+8d
+00
+00
+6f
+e0
+c8
+c1
+c0
+00
+82
+86
+6f
+e0
+ce
+36
+20
+3a
+02
+ac
+6f
+e0
+cc
+1a
+20
+3a
+02
+d5
+1b
+22
+7e
+00
+68
+4b
+4c
+1b
+67
+e3
+4c
+1b
+20
+40
+7e
+0a
+67
+e2
+4c
+21
+6f
+e0
+cc
+31
+24
+7a
+00
+00
+6f
+e1
+4c
+2f
+24
+7a
+00
+00
+6f
+e2
+4c
+33
+24
+7a
+00
+00
+6f
+e2
+4c
+21
+68
+4a
+4c
+16
+18
+43
+84
+00
+98
+46
+7c
+00
+20
+21
+02
+ac
+68
+4a
+cc
+25
+98
+40
+fe
+00
+67
+e2
+cc
+25
+68
+48
+cc
+1a
+6f
+e0
+cc
+2a
+98
+46
+7c
+00
+20
+22
+82
+b0
+18
+40
+84
+01
+60
+48
+cc
+1a
+20
+60
+00
+00
+58
+00
+00
+00
+67
+e0
+cc
+1a
+67
+e2
+cc
+25
+20
+60
+00
+00
+70
+4c
+1a
+01
+d8
+40
+00
+00
+6f
+e2
+cc
+25
+60
+4a
+cc
+25
+68
+48
+cc
+2a
+98
+46
+fc
+00
+20
+40
+7e
+64
+18
+07
+a2
+00
+6f
+e2
+4c
+16
+68
+48
+cc
+2b
+98
+46
+04
+00
+1a
+22
+7e
+00
+98
+46
+7e
+00
+20
+21
+02
+c9
+1f
+e6
+7e
+00
+1f
+eb
+7e
+00
+68
+49
+c8
+b1
+98
+40
+84
+00
+6f
+e1
+cc
+2c
+da
+20
+18
+00
+9a
+20
+fe
+00
+98
+46
+7c
+00
+24
+21
+02
+d3
+60
+49
+c8
+b1
+20
+60
+00
+00
+1f
+eb
+04
+00
+6f
+e1
+c8
+b1
+98
+46
+04
+00
+6f
+e1
+cc
+2c
+da
+20
+18
+00
+9a
+26
+7e
+00
+98
+46
+7c
+00
+20
+21
+02
+d3
+60
+49
+c8
+b1
+20
+60
+00
+00
+67
+e1
+c8
+b1
+20
+60
+00
+00
+70
+4c
+1a
+01
+1b
+22
+7e
+00
+67
+e3
+4c
+1b
+20
+60
+00
+00
+58
+00
+00
+00
+67
+e0
+c8
+aa
+67
+e1
+4c
+2f
+67
+e0
+ce
+34
+20
+40
+26
+62
+24
+2c
+03
+04
+24
+37
+83
+04
+20
+40
+02
+89
+20
+40
+02
+ef
+20
+40
+01
+38
+20
+40
+03
+70
+20
+40
+27
+27
+20
+40
+05
+ca
+20
+40
+05
+cd
+6f
+e0
+c8
+2e
+1f
+e0
+fe
+01
+67
+e0
+c8
+2e
+20
+40
+02
+ec
+20
+20
+26
+5e
+6f
+e0
+c8
+39
+c4
+02
+00
+00
+20
+20
+03
+48
+20
+40
+02
+f6
+6f
+e0
+c8
+2d
+20
+7a
+00
+00
+98
+00
+72
+00
+d8
+c0
+4c
+b7
+d8
+a0
+4d
+87
+20
+20
+7d
+d4
+6f
+e0
+cc
+b6
+67
+e0
+c8
+2d
+1f
+e0
+fe
+01
+d8
+c0
+4c
+b6
+98
+c0
+8c
+00
+ef
+e1
+80
+06
+67
+e1
+c8
+30
+6f
+e0
+cc
+b5
+1f
+e3
+04
+00
+18
+41
+04
+03
+60
+48
+c8
+36
+1f
+e9
+7e
+00
+67
+e0
+cc
+b5
+20
+60
+00
+00
+6f
+e0
+ca
+d6
+24
+7a
+00
+00
+20
+40
+03
+14
+6f
+e0
+c8
+ab
+24
+7a
+00
+00
+6f
+e1
+48
+a7
+1f
+e0
+fe
+01
+67
+e1
+48
+a7
+6f
+e1
+48
+a7
+c2
+84
+26
+80
+20
+40
+03
+2c
+6f
+e1
+4c
+2f
+1f
+e0
+fe
+01
+67
+e1
+4c
+2f
+20
+40
+03
+1b
+20
+20
+02
+dd
+d8
+e0
+00
+0c
+20
+40
+7d
+e9
+24
+7a
+00
+00
+20
+40
+03
+60
+d8
+e0
+00
+0c
+58
+00
+00
+a0
+20
+20
+7d
+db
+6f
+e1
+4c
+2f
+1f
+e6
+7c
+14
+20
+61
+00
+00
+20
+40
+03
+27
+6f
+e1
+4c
+2f
+1f
+e6
+7c
+32
+20
+61
+00
+00
+6f
+e0
+ce
+34
+24
+7a
+00
+00
+70
+4e
+34
+01
+70
+4e
+37
+00
+70
+4e
+36
+00
+6f
+e0
+c9
+cd
+20
+7a
+00
+00
+70
+4a
+bf
+01
+70
+49
+cd
+00
+20
+60
+00
+00
+68
+48
+c8
+aa
+6f
+e0
+c8
+ca
+98
+46
+7c
+00
+24
+21
+03
+59
+18
+40
+84
+01
+60
+48
+c8
+aa
+6f
+e0
+c8
+ca
+c0
+02
+83
+44
+c0
+04
+83
+40
+c0
+07
+83
+3c
+c0
+0f
+03
+38
+20
+60
+00
+00
+6f
+e0
+c8
+aa
+c0
+0a
+03
+48
+c0
+0f
+03
+48
+20
+60
+00
+00
+6f
+e0
+c8
+aa
+c0
+05
+03
+48
+c0
+07
+83
+48
+20
+60
+00
+00
+6f
+e0
+c8
+aa
+c0
+03
+03
+48
+c0
+04
+83
+48
+20
+60
+00
+00
+6f
+e0
+c8
+aa
+c0
+01
+83
+48
+c0
+02
+83
+48
+20
+60
+00
+00
+6f
+e0
+c8
+39
+79
+3f
+fe
+04
+67
+e0
+c8
+39
+20
+40
+03
+4d
+20
+20
+26
+a1
+1f
+e9
+fe
+00
+68
+48
+c8
+2e
+18
+41
+04
+03
+18
+43
+84
+00
+98
+41
+fe
+00
+68
+48
+c8
+2f
+98
+40
+fe
+00
+c5
+17
+83
+57
+67
+e0
+cd
+42
+20
+60
+00
+00
+67
+e0
+cd
+43
+20
+60
+00
+00
+20
+40
+03
+5b
+20
+20
+22
+81
+6f
+e0
+c8
+a7
+1f
+e6
+7c
+80
+20
+61
+00
+00
+df
+20
+00
+28
+20
+20
+7d
+86
+6f
+e0
+c9
+1f
+c1
+7f
+80
+00
+da
+20
+00
+00
+70
+4b
+a7
+06
+68
+48
+c9
+1f
+20
+40
+46
+a8
+67
+e0
+cb
+a5
+6f
+e0
+c9
+14
+c0
+7f
+83
+6d
+20
+40
+41
+a8
+1a
+22
+7e
+00
+c2
+83
+46
+cb
+20
+20
+46
+be
+68
+48
+c9
+1f
+20
+40
+3f
+96
+20
+20
+03
+6a
+6f
+e0
+cb
+f2
+24
+5a
+03
+74
+70
+4b
+f2
+00
+20
+60
+00
+00
+20
+40
+04
+6c
+70
+4a
+bf
+01
+70
+4b
+03
+0a
+70
+4d
+e3
+05
+68
+48
+c9
+15
+20
+40
+3f
+96
+6f
+e4
+4b
+bc
+c4
+1e
+00
+00
+68
+48
+c9
+17
+20
+40
+3f
+96
+68
+48
+c9
+18
+20
+20
+3f
+96
+58
+00
+00
+06
+20
+40
+5d
+65
+c2
+81
+83
+85
+20
+40
+04
+8b
+20
+40
+04
+84
+20
+40
+06
+f5
+20
+20
+32
+89
+6f
+f2
+01
+38
+79
+20
+7e
+1a
+67
+f2
+00
+4c
+20
+40
+15
+4c
+20
+40
+6e
+62
+20
+40
+49
+5b
+20
+40
+40
+55
+20
+40
+3e
+6a
+20
+40
+46
+6d
+68
+48
+c9
+15
+20
+40
+3f
+96
+68
+48
+c9
+15
+20
+20
+60
+e6
+20
+20
+06
+f1
+20
+40
+22
+e1
+20
+40
+25
+5f
+20
+40
+03
+a9
+20
+40
+02
+7b
+20
+40
+00
+a9
+20
+40
+03
+cd
+20
+40
+03
+b3
+20
+40
+40
+bc
+20
+40
+04
+b5
+20
+40
+04
+19
+20
+40
+45
+3f
+20
+40
+04
+30
+20
+40
+45
+52
+20
+40
+04
+34
+20
+40
+45
+55
+20
+40
+04
+3f
+20
+40
+45
+75
+20
+40
+40
+62
+20
+40
+04
+4a
+20
+20
+04
+42
+da
+60
+48
+c8
+da
+40
+03
+ac
+20
+20
+31
+fc
+20
+40
+03
+af
+70
+4d
+e5
+01
+20
+20
+48
+0e
+6f
+e4
+4b
+bc
+c2
+8c
+a6
+d7
+c2
+8d
+26
+d7
+20
+60
+00
+00
+6f
+e0
+cc
+b2
+20
+7a
+00
+00
+6f
+e0
+cc
+b4
+1f
+e0
+fe
+01
+67
+e0
+cc
+b4
+c0
+01
+83
+bb
+c0
+03
+03
+bf
+20
+60
+00
+00
+6f
+e0
+cc
+a8
+c2
+80
+03
+e0
+68
+48
+cc
+af
+20
+20
+61
+0d
+70
+4c
+b4
+00
+6f
+e0
+cc
+b3
+1f
+e0
+ff
+ff
+67
+e0
+cc
+b3
+24
+3a
+03
+c5
+70
+4c
+b2
+00
+6f
+e0
+cc
+a8
+c2
+80
+03
+e6
+68
+48
+cc
+af
+20
+20
+61
+09
+20
+40
+03
+f2
+20
+40
+03
+f4
+20
+40
+03
+f6
+20
+20
+03
+c5
+6f
+e0
+cc
+a4
+20
+7a
+00
+00
+6f
+e0
+cc
+a5
+c0
+00
+83
+da
+6f
+e0
+cc
+a9
+20
+3a
+03
+d6
+1f
+e0
+ff
+ff
+67
+e0
+cc
+a9
+20
+20
+03
+e0
+70
+4c
+b1
+01
+70
+4c
+a9
+00
+70
+4c
+a4
+00
+20
+20
+03
+e6
+da
+60
+4c
+ab
+da
+40
+03
+dd
+20
+20
+31
+fc
+20
+40
+03
+f8
+6f
+e0
+cc
+a6
+c0
+00
+83
+e6
+70
+4c
+a6
+01
+6f
+e0
+c9
+3d
+c0
+00
+03
+ec
+c0
+00
+83
+ee
+c0
+01
+03
+f0
+20
+60
+00
+00
+70
+4c
+a6
+00
+6f
+e0
+c9
+3d
+c0
+00
+03
+f2
+c0
+00
+83
+f4
+c0
+01
+03
+f6
+20
+60
+00
+00
+68
+48
+cc
+ac
+20
+20
+61
+0d
+68
+48
+cc
+ad
+20
+20
+61
+0d
+68
+48
+cc
+ae
+20
+20
+61
+0d
+68
+48
+cc
+ac
+20
+20
+61
+09
+68
+48
+cc
+ad
+20
+20
+61
+09
+68
+48
+cc
+ae
+20
+20
+61
+09
+6f
+e0
+cc
+aa
+67
+e0
+cc
+ab
+20
+60
+00
+00
+6f
+e0
+cc
+a3
+20
+7a
+00
+00
+70
+4c
+a9
+14
+70
+4c
+a5
+00
+70
+4c
+a4
+01
+20
+60
+00
+00
+6f
+e0
+cc
+a3
+20
+7a
+00
+00
+6f
+e2
+49
+98
+68
+4a
+49
+79
+98
+46
+7c
+00
+20
+22
+84
+0b
+6f
+e0
+cc
+a3
+20
+7a
+00
+00
+70
+4c
+aa
+05
+20
+20
+04
+0e
+6f
+e0
+cc
+a3
+20
+7a
+00
+00
+70
+4c
+aa
+02
+70
+4c
+a6
+00
+70
+4c
+ab
+03
+70
+4c
+a4
+01
+70
+4c
+a5
+01
+20
+20
+03
+e0
+6f
+e0
+cc
+a3
+20
+7a
+00
+00
+6f
+e0
+cc
+a7
+20
+7a
+00
+00
+70
+4c
+aa
+05
+20
+20
+04
+0e
+6f
+e0
+c9
+3d
+c0
+00
+04
+1f
+6f
+e4
+4b
+bc
+c4
+1a
+80
+00
+68
+48
+cb
+db
+20
+20
+04
+22
+6f
+e4
+4b
+bc
+c4
+19
+00
+00
+68
+48
+cb
+dc
+60
+48
+cb
+ae
+20
+40
+41
+55
+1f
+e1
+7e
+07
+68
+48
+cb
+ae
+98
+46
+7c
+00
+20
+22
+84
+29
+20
+20
+45
+2b
+20
+40
+04
+2e
+6f
+e0
+cb
+b0
+c1
+00
+80
+00
+70
+4b
+b0
+01
+20
+60
+00
+00
+da
+40
+05
+4d
+20
+20
+45
+37
+da
+60
+4b
+88
+da
+40
+45
+4a
+20
+40
+31
+fc
+20
+20
+45
+47
+6f
+e4
+4b
+bc
+c4
+0a
+00
+00
+da
+60
+4b
+03
+da
+40
+04
+39
+20
+20
+31
+fc
+6f
+e1
+4b
+01
+67
+e1
+4b
+03
+6f
+e0
+c9
+3d
+c0
+80
+44
+0b
+70
+4d
+e4
+01
+20
+60
+00
+00
+da
+60
+4c
+70
+da
+40
+43
+ac
+20
+20
+31
+fc
+da
+60
+4a
+c3
+da
+40
+04
+45
+20
+20
+32
+03
+6f
+e0
+c9
+2f
+c3
+83
+80
+00
+6f
+e0
+c9
+3d
+c0
+80
+43
+5b
+20
+20
+05
+0f
+da
+60
+49
+c4
+da
+40
+04
+4d
+20
+20
+31
+fc
+68
+48
+c9
+15
+20
+40
+60
+fd
+20
+20
+c6
+2e
+20
+40
+04
+57
+20
+40
+04
+63
+20
+40
+04
+5b
+6f
+e0
+ca
+d6
+20
+7a
+00
+00
+20
+40
+01
+b9
+20
+20
+46
+fe
+68
+48
+c9
+23
+20
+40
+3f
+96
+68
+48
+c9
+24
+20
+20
+3f
+96
+68
+48
+c4
+b7
+20
+40
+3f
+96
+68
+48
+c4
+ba
+20
+40
+3f
+96
+68
+48
+c4
+b8
+20
+40
+3f
+96
+68
+48
+c4
+b9
+20
+20
+3f
+96
+6f
+e4
+4b
+bc
+c2
+89
+c6
+7f
+20
+40
+5d
+af
+20
+40
+46
+4a
+20
+40
+46
+5f
+20
+40
+5d
+b4
+20
+20
+46
+46
+20
+40
+3f
+a5
+20
+75
+80
+00
+20
+40
+42
+76
+20
+40
+41
+f5
+c0
+18
+04
+74
+c0
+18
+c2
+57
+c0
+2c
+42
+60
+20
+40
+41
+f2
+20
+00
+1a
+f4
+20
+20
+04
+6d
+6f
+e0
+c9
+c7
+1f
+e1
+7e
+f0
+1f
+e6
+7c
+c0
+20
+22
+c2
+5e
+6f
+e0
+c9
+c7
+20
+20
+41
+fc
+20
+40
+3f
+a5
+6f
+e0
+c9
+2c
+c0
+05
+84
+81
+20
+40
+42
+72
+da
+60
+4a
+b4
+20
+40
+42
+6b
+20
+20
+04
+e3
+20
+40
+04
+8e
+da
+60
+4b
+f5
+20
+20
+04
+7f
+20
+40
+41
+e7
+20
+40
+3f
+a5
+6f
+e0
+c9
+2c
+c0
+05
+84
+89
+20
+20
+42
+7e
+58
+00
+1f
+06
+20
+20
+5d
+5e
+6f
+e0
+c9
+2c
+c0
+05
+84
+8e
+20
+20
+42
+72
+58
+00
+97
+06
+20
+20
+42
+73
+20
+40
+7f
+52
+20
+20
+15
+5d
+20
+40
+7f
+52
+68
+48
+c9
+14
+20
+40
+61
+0d
+68
+48
+c9
+14
+20
+40
+60
+e6
+20
+40
+03
+7c
+20
+20
+3e
+81
+20
+40
+49
+dd
+20
+40
+79
+a1
+20
+40
+04
+b8
+20
+40
+04
+a1
+20
+40
+04
+a4
+20
+40
+47
+14
+20
+40
+3f
+c8
+20
+60
+00
+00
+6f
+e0
+cc
+a2
+24
+7a
+00
+00
+20
+20
+46
+93
+6f
+e0
+cc
+a2
+24
+7a
+00
+00
+6f
+e4
+4b
+bc
+c4
+15
+00
+00
+68
+48
+c9
+22
+20
+40
+3f
+96
+68
+48
+c9
+22
+20
+40
+60
+fd
+20
+20
+c6
+ef
+6f
+e0
+c9
+3d
+c1
+00
+80
+00
+70
+49
+3d
+01
+20
+20
+46
+fe
+6f
+e0
+c9
+3d
+c1
+00
+00
+00
+70
+49
+3d
+00
+20
+20
+46
+fe
+6f
+e0
+cc
+a2
+24
+7a
+00
+00
+20
+20
+45
+0c
+6f
+e4
+4b
+bc
+c2
+97
+40
+76
+6f
+e0
+c9
+13
+c1
+7f
+80
+00
+da
+20
+00
+00
+70
+4b
+a7
+05
+68
+48
+c9
+13
+20
+40
+04
+cf
+67
+e0
+cb
+a4
+6f
+e0
+c9
+14
+c0
+7f
+84
+cc
+20
+40
+41
+a8
+1a
+22
+7e
+00
+c2
+82
+c0
+92
+6f
+e0
+c9
+e2
+c1
+00
+00
+00
+70
+49
+e2
+00
+20
+40
+46
+2e
+70
+4d
+e3
+01
+20
+20
+40
+9c
+68
+48
+c9
+13
+20
+40
+3f
+96
+20
+20
+04
+c4
+6f
+e4
+4b
+bc
+c2
+96
+40
+88
+6f
+e0
+cb
+a4
+1f
+e2
+26
+00
+6f
+e0
+c9
+14
+c0
+7f
+84
+d6
+20
+20
+40
+7f
+6f
+e0
+c9
+13
+20
+40
+06
+e9
+68
+48
+c9
+13
+20
+20
+41
+d5
+20
+40
+40
+b2
+20
+74
+00
+00
+6f
+e0
+c9
+97
+1f
+e0
+fe
+01
+1f
+e1
+7e
+03
+67
+e0
+c9
+97
+20
+20
+04
+e1
+20
+40
+40
+cf
+20
+40
+04
+e4
+20
+20
+40
+d8
+6f
+e0
+cc
+b1
+20
+7a
+00
+00
+6f
+e0
+c9
+97
+c0
+00
+04
+ed
+c0
+00
+84
+ef
+c0
+01
+04
+eb
+20
+60
+00
+00
+58
+00
+00
+01
+20
+20
+04
+f0
+58
+00
+00
+02
+20
+20
+04
+f0
+58
+00
+00
+03
+67
+e0
+cc
+b3
+70
+4c
+b2
+01
+20
+60
+00
+00
+1a
+62
+7e
+00
+c0
+1e
+06
+f7
+c0
+1c
+86
+f3
+c0
+1d
+05
+06
+c0
+19
+05
+50
+c0
+0a
+86
+f9
+c0
+0a
+05
+5c
+c0
+20
+05
+57
+c0
+01
+04
+fd
+20
+20
+43
+76
+70
+4b
+90
+00
+70
+4b
+99
+00
+20
+40
+44
+33
+20
+40
+44
+49
+6f
+e0
+cc
+a2
+24
+7a
+00
+00
+20
+20
+44
+42
+20
+40
+02
+27
+20
+20
+01
+fa
+70
+4c
+b1
+00
+20
+40
+05
+04
+6f
+e0
+c8
+a9
+24
+3a
+05
+0f
+6f
+e0
+c8
+8f
+c0
+01
+05
+40
+c0
+00
+85
+40
+c0
+02
+c8
+83
+20
+20
+48
+76
+70
+48
+a9
+00
+20
+40
+02
+e5
+5f
+ff
+ff
+ff
+67
+e4
+48
+5f
+58
+00
+00
+00
+67
+e3
+c8
+d4
+67
+e0
+c8
+ab
+67
+e1
+4e
+36
+67
+e0
+cb
+03
+67
+e0
+cd
+e3
+70
+4b
+f2
+01
+20
+40
+04
+84
+20
+40
+03
+af
+20
+20
+05
+24
+6f
+e0
+c8
+ab
+20
+5a
+05
+2e
+6f
+e0
+cd
+e5
+24
+5a
+00
+fd
+6f
+e0
+c8
+c1
+c1
+00
+80
+00
+20
+40
+26
+a6
+20
+40
+26
+c2
+24
+74
+00
+00
+20
+40
+26
+cb
+70
+4c
+31
+00
+70
+4c
+32
+01
+20
+40
+02
+ac
+6f
+e0
+cb
+f2
+24
+5a
+06
+f5
+6f
+e4
+48
+5f
+20
+20
+26
+bf
+6f
+e0
+cd
+e5
+24
+7a
+00
+00
+70
+48
+39
+01
+6f
+e0
+cb
+f2
+79
+40
+7e
+00
+67
+e0
+c8
+ab
+20
+40
+26
+49
+67
+e0
+cc
+fb
+58
+00
+00
+00
+67
+e3
+cc
+fc
+6f
+e2
+48
+ad
+67
+e2
+4d
+03
+70
+48
+38
+0c
+6f
+e0
+c8
+39
+79
+20
+7e
+03
+67
+e0
+c8
+39
+20
+40
+00
+6f
+20
+20
+02
+2e
+6f
+e4
+4b
+bc
+c2
+97
+85
+49
+c2
+98
+05
+49
+c3
+1d
+48
+45
+6f
+e2
+49
+98
+68
+4a
+49
+79
+98
+46
+7c
+00
+20
+22
+85
+4d
+20
+20
+48
+45
+6f
+e1
+48
+85
+67
+e1
+48
+8b
+70
+48
+8f
+05
+20
+20
+25
+62
+70
+48
+8f
+00
+20
+40
+04
+0b
+20
+20
+48
+66
+6f
+e0
+ca
+d8
+c0
+00
+85
+54
+70
+4b
+87
+14
+20
+20
+43
+b3
+20
+40
+43
+ac
+70
+4b
+87
+0a
+20
+20
+43
+b3
+6f
+e0
+cc
+6f
+24
+7a
+00
+00
+70
+4c
+6f
+01
+70
+4c
+70
+1e
+20
+60
+00
+00
+70
+4d
+e3
+05
+20
+40
+03
+fb
+20
+20
+43
+90
+58
+00
+00
+00
+67
+e1
+4a
+d3
+20
+20
+45
+b7
+70
+48
+8f
+00
+6f
+e1
+4b
+fd
+1f
+e0
+fe
+01
+67
+e1
+4b
+fd
+6f
+e0
+cb
+fd
+1f
+e1
+7e
+ff
+c0
+00
+05
+6a
+20
+60
+00
+00
+6f
+e0
+c8
+83
+c0
+7f
+a3
+44
+c0
+00
+85
+71
+c0
+01
+05
+73
+c0
+01
+85
+79
+c0
+02
+05
+7f
+20
+60
+00
+00
+70
+4c
+fb
+ff
+20
+20
+05
+80
+6f
+e0
+c8
+5e
+20
+3a
+05
+77
+6f
+e2
+48
+ad
+20
+40
+22
+92
+70
+4c
+fb
+aa
+20
+20
+05
+80
+70
+4c
+fb
+55
+6f
+e0
+c8
+5e
+20
+3a
+05
+80
+6f
+e2
+48
+95
+67
+e2
+4c
+fd
+20
+20
+05
+82
+70
+4c
+fb
+22
+6f
+e2
+48
+ad
+67
+e2
+4c
+fd
+6f
+e0
+c8
+39
+1f
+e1
+7e
+07
+67
+e0
+cc
+fc
+70
+4d
+01
+00
+70
+48
+38
+07
+20
+40
+00
+6f
+20
+40
+26
+62
+24
+6c
+00
+00
+24
+77
+80
+00
+20
+40
+05
+ca
+20
+40
+02
+ef
+6f
+e0
+c8
+83
+c1
+7f
+80
+00
+c0
+01
+05
+92
+c0
+02
+05
+98
+20
+20
+23
+1d
+6f
+e0
+c8
+5e
+20
+3a
+23
+2d
+6f
+e2
+4d
+89
+20
+7a
+00
+00
+67
+e2
+48
+95
+20
+20
+23
+2d
+6f
+e0
+c8
+5e
+20
+3a
+05
+9e
+6f
+e2
+4d
+89
+68
+4a
+48
+95
+98
+46
+7c
+00
+24
+62
+80
+00
+70
+48
+83
+ff
+70
+09
+5b
+39
+20
+40
+78
+dc
+58
+00
+00
+00
+67
+e1
+48
+87
+6f
+e2
+4d
+89
+20
+40
+22
+92
+20
+20
+23
+44
+6f
+e1
+48
+8d
+d8
+40
+01
+f8
+98
+41
+7e
+00
+20
+3a
+05
+b2
+6f
+e1
+48
+8d
+1f
+e0
+fe
+01
+67
+e1
+48
+8d
+20
+60
+00
+00
+6f
+e4
+4b
+bc
+c2
+98
+48
+6d
+c2
+97
+c8
+6d
+20
+20
+25
+77
+20
+40
+05
+db
+20
+40
+26
+62
+24
+2c
+05
+e2
+24
+37
+85
+e2
+20
+40
+02
+ef
+6f
+e0
+c8
+2d
+20
+3a
+05
+d0
+6f
+e2
+48
+7b
+68
+4a
+48
+3f
+98
+46
+7c
+00
+20
+22
+85
+ae
+6f
+e2
+48
+ad
+68
+4a
+48
+3f
+98
+46
+7c
+00
+20
+42
+85
+d7
+6f
+e0
+c8
+a5
+79
+3f
+fe
+02
+67
+e0
+c8
+a5
+58
+00
+00
+00
+67
+e1
+48
+87
+67
+e1
+48
+8d
+67
+e1
+48
+8b
+70
+09
+5b
+3c
+20
+40
+78
+dc
+df
+20
+00
+04
+d8
+a0
+4c
+fb
+20
+20
+7d
+8c
+df
+20
+00
+02
+d8
+a0
+4d
+87
+20
+20
+7d
+8c
+6f
+e2
+48
+91
+68
+4a
+48
+3f
+98
+46
+7c
+00
+20
+22
+85
+b9
+6f
+e2
+4d
+89
+20
+7a
+00
+00
+20
+20
+05
+b9
+6f
+e2
+4d
+89
+20
+7a
+00
+00
+67
+e2
+48
+95
+20
+20
+25
+87
+70
+4c
+fb
+ff
+6f
+e0
+c8
+39
+67
+e0
+cc
+fc
+6f
+e2
+48
+ad
+67
+e2
+4c
+fd
+70
+48
+38
+06
+20
+20
+00
+6f
+6f
+e0
+c8
+90
+20
+3a
+22
+81
+6f
+e1
+48
+8d
+1f
+e0
+fe
+01
+67
+e1
+48
+8d
+2f
+ef
+fe
+09
+6f
+e0
+c8
+8f
+c0
+02
+85
+ec
+c0
+01
+05
+ee
+20
+20
+25
+b1
+20
+20
+a5
+77
+20
+20
+22
+ef
+20
+20
+a5
+7e
+70
+41
+e8
+aa
+20
+20
+25
+71
+78
+34
+7c
+00
+20
+40
+14
+36
+6f
+e1
+c1
+74
+20
+3a
+7e
+c7
+6f
+e0
+c0
+99
+20
+3a
+7e
+c7
+6f
+e0
+c8
+c1
+c0
+00
+fe
+c7
+20
+60
+00
+00
+20
+40
+12
+d1
+20
+20
+14
+68
+6f
+e0
+cb
+f4
+24
+5a
+78
+cc
+70
+4b
+f4
+00
+20
+20
+78
+bc
+20
+40
+1b
+24
+24
+7a
+00
+00
+6f
+e0
+ca
+d2
+c0
+7f
+86
+07
+6f
+e0
+cb
+86
+1f
+e1
+7e
+03
+c1
+81
+80
+00
+6f
+e0
+ca
+bd
+20
+5a
+43
+08
+6f
+e4
+4b
+bc
+c2
+80
+c4
+11
+c2
+80
+44
+11
+c2
+82
+c4
+11
+c2
+83
+44
+11
+20
+40
+3f
+b0
+20
+40
+43
+64
+24
+74
+00
+00
+20
+40
+43
+71
+20
+40
+02
+20
+20
+20
+43
+f3
+6f
+e0
+c3
+dd
+1f
+e0
+fe
+01
+67
+e0
+c3
+dd
+c0
+06
+16
+06
+20
+40
+18
+c7
+20
+40
+19
+16
+6f
+e0
+82
+bd
+20
+40
+16
+37
+20
+40
+17
+e4
+20
+20
+16
+01
+20
+40
+0e
+7c
+20
+20
+16
+0d
+ef
+e1
+00
+06
+c0
+02
+06
+23
+20
+20
+19
+90
+ef
+e1
+80
+06
+67
+e1
+c4
+36
+c0
+05
+06
+2a
+c0
+09
+06
+39
+c0
+08
+06
+57
+c0
+04
+06
+66
+20
+20
+1c
+7f
+6f
+e4
+4b
+bc
+c3
+1d
+9d
+93
+20
+40
+1e
+39
+68
+49
+44
+37
+6f
+e0
+c3
+c0
+c2
+81
+86
+34
+6f
+e1
+44
+37
+c0
+18
+1e
+74
+68
+49
+44
+37
+20
+20
+1d
+97
+6f
+e1
+43
+d1
+98
+46
+7c
+00
+24
+22
+86
+30
+24
+34
+06
+30
+20
+20
+1d
+bc
+18
+c2
+22
+00
+6f
+e1
+43
+d4
+1f
+e0
+a5
+fd
+20
+40
+19
+d1
+68
+49
+44
+37
+6f
+e0
+ce
+2e
+98
+46
+7c
+00
+20
+42
+86
+4c
+6f
+e0
+ca
+d2
+c0
+7f
+9e
+1f
+6f
+e0
+ca
+d8
+20
+3a
+1e
+1f
+6f
+e0
+cb
+86
+c2
+80
+9e
+1f
+58
+00
+00
+1a
+68
+49
+44
+37
+98
+46
+7c
+00
+24
+22
+9e
+1f
+20
+20
+1d
+bc
+ef
+e1
+80
+11
+67
+e1
+ce
+30
+6f
+e1
+4e
+30
+c0
+7a
+86
+53
+c0
+7a
+06
+55
+c0
+79
+80
+b8
+20
+60
+00
+00
+6f
+e0
+ce
+32
+20
+20
+01
+46
+6f
+e0
+ce
+32
+20
+20
+01
+53
+20
+40
+1e
+b0
+18
+c2
+04
+00
+20
+40
+06
+5d
+18
+42
+0c
+00
+20
+40
+1e
+bd
+20
+20
+1d
+db
+6f
+e1
+09
+9e
+1f
+e6
+7c
+33
+20
+61
+00
+00
+6f
+e0
+ce
+33
+24
+7a
+00
+00
+70
+4e
+33
+01
+58
+00
+4d
+f0
+67
+e1
+43
+96
+20
+60
+00
+00
+20
+40
+1e
+b0
+18
+c2
+04
+00
+20
+40
+06
+6d
+20
+40
+06
+5d
+18
+42
+0c
+00
+20
+40
+1e
+bd
+20
+20
+1d
+18
+6f
+e0
+ce
+33
+20
+7a
+00
+00
+70
+4e
+33
+00
+58
+00
+97
+32
+67
+e1
+43
+96
+20
+60
+00
+00
+20
+40
+1b
+24
+24
+7a
+00
+00
+6f
+e0
+c3
+9b
+c0
+06
+06
+78
+20
+20
+20
+2e
+6f
+e0
+c3
+4f
+68
+48
+c3
+56
+98
+41
+7e
+00
+2f
+ec
+00
+01
+20
+20
+a0
+5e
+70
+43
+9b
+0d
+20
+20
+06
+7f
+18
+00
+22
+11
+20
+40
+20
+b6
+58
+00
+00
+08
+e7
+e0
+80
+05
+df
+20
+00
+10
+d8
+c0
+43
+16
+20
+20
+7d
+d4
+78
+54
+7c
+00
+58
+00
+00
+00
+67
+e3
+48
+d5
+20
+40
+06
+9a
+58
+00
+00
+89
+20
+40
+5d
+5e
+20
+40
+04
+e3
+20
+40
+3f
+be
+20
+40
+3f
+c3
+20
+40
+06
+b3
+6f
+e0
+c8
+d4
+1f
+e1
+7e
+1f
+67
+e0
+c8
+d4
+24
+34
+06
+98
+70
+4d
+e5
+00
+70
+4d
+e0
+01
+20
+40
+06
+a9
+20
+20
+45
+84
+70
+4d
+e0
+00
+20
+20
+47
+66
+6f
+e0
+c4
+ae
+c1
+80
+00
+00
+6f
+e0
+c9
+2c
+c0
+05
+86
+9f
+20
+20
+42
+83
+20
+40
+43
+04
+6f
+e0
+c9
+15
+c0
+7f
+86
+a5
+68
+48
+c9
+15
+20
+40
+60
+fd
+24
+60
+80
+00
+58
+00
+00
+00
+20
+40
+5d
+65
+c0
+ac
+41
+f2
+20
+20
+42
+b9
+6f
+e4
+4b
+bc
+c3
+8c
+80
+00
+c3
+8d
+00
+00
+c3
+8f
+00
+00
+c3
+8f
+80
+00
+6f
+e0
+c9
+2c
+c1
+01
+80
+00
+c1
+05
+80
+00
+20
+40
+47
+58
+20
+60
+00
+00
+20
+40
+06
+b6
+20
+40
+41
+2d
+20
+20
+41
+1e
+6f
+e0
+cb
+f2
+24
+5a
+41
+61
+da
+20
+00
+00
+20
+40
+06
+bd
+20
+40
+06
+cc
+20
+40
+06
+d9
+20
+20
+41
+5e
+6f
+e0
+c9
+1c
+20
+40
+06
+e6
+20
+40
+41
+64
+68
+48
+c9
+1c
+20
+40
+3f
+96
+6f
+e0
+c9
+1d
+20
+40
+06
+e6
+20
+40
+41
+6a
+68
+48
+c9
+1d
+20
+40
+3f
+96
+6f
+e0
+c9
+1e
+20
+40
+06
+e6
+20
+40
+41
+70
+68
+48
+c9
+1e
+20
+20
+3f
+96
+6f
+e0
+c9
+11
+c1
+7f
+80
+00
+70
+4b
+a7
+03
+6f
+e0
+cb
+a2
+1f
+e2
+26
+00
+68
+48
+c9
+11
+6f
+e0
+c9
+14
+c0
+7f
+86
+d5
+20
+20
+41
+7e
+6f
+e0
+c9
+11
+20
+40
+06
+e9
+68
+48
+c9
+11
+20
+20
+41
+8b
+6f
+e0
+c9
+12
+c1
+7f
+80
+00
+70
+4b
+a7
+04
+6f
+e0
+cb
+a3
+1f
+e2
+26
+00
+68
+48
+c9
+12
+6f
+e0
+c9
+14
+c0
+7f
+86
+e2
+20
+20
+41
+97
+6f
+e0
+c9
+12
+20
+40
+06
+e9
+68
+48
+c9
+12
+20
+20
+41
+a4
+c1
+7f
+80
+00
+d8
+40
+00
+3f
+20
+20
+61
+2c
+c1
+7f
+80
+00
+d8
+40
+00
+3e
+20
+20
+61
+2c
+20
+75
+80
+00
+70
+4d
+cd
+00
+20
+20
+07
+00
+70
+4d
+cd
+01
+20
+20
+07
+00
+70
+4d
+cd
+10
+20
+20
+07
+00
+70
+4d
+cd
+11
+20
+20
+07
+00
+70
+4d
+cd
+20
+20
+20
+07
+00
+70
+4d
+cd
+21
+20
+20
+07
+00
+70
+4d
+cd
+30
+20
+20
+07
+00
+70
+4d
+cd
+31
+20
+20
+07
+00
+20
+75
+80
+00
+70
+4d
+cd
+40
+20
+20
+07
+00
+68
+48
+cd
+cd
+18
+51
+84
+00
+6f
+e0
+cd
+d2
+98
+46
+7c
+00
+20
+22
+87
+1c
+60
+48
+cd
+d2
+18
+40
+84
+01
+58
+00
+01
+00
+98
+4f
+84
+00
+6f
+e1
+cd
+d3
+98
+46
+7e
+00
+68
+49
+cd
+d6
+98
+40
+fe
+00
+67
+e1
+cd
+d9
+20
+40
+07
+1e
+20
+40
+07
+2a
+20
+40
+07
+21
+24
+22
+87
+0e
+6f
+e2
+0e
+00
+68
+4a
+4d
+dc
+98
+46
+7c
+00
+24
+22
+87
+0e
+58
+00
+0e
+00
+67
+e1
+41
+a6
+70
+41
+a8
+40
+20
+40
+5c
+a3
+58
+00
+00
+00
+67
+e2
+41
+a6
+6f
+e0
+cd
+cd
+20
+20
+00
+01
+d8
+a0
+0e
+00
+df
+20
+01
+00
+20
+20
+7d
+9b
+d8
+c0
+0e
+00
+da
+20
+00
+00
+df
+20
+00
+3f
+ef
+e2
+00
+06
+9a
+20
+a2
+00
+c2
+00
+07
+24
+ef
+e2
+00
+06
+9a
+26
+7c
+00
+20
+60
+00
+00
+20
+40
+5d
+af
+20
+40
+46
+4a
+6f
+e1
+cd
+d9
+d8
+40
+01
+00
+da
+20
+0e
+00
+20
+40
+5d
+d2
+20
+40
+46
+51
+20
+20
+3f
+a5
+34
+70
+aa
+55
+40
+00
+00
+40
+01
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+0c
+0c
+00
+00
+14
+20
+00
+00
+c8
+e3
+6d
+77
+03
+00
+00
+00
+00
+00
+00
+80
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+20
+00
+00
+80
+02
+00
+00
+40
+00
+00
+00
+e2
+0e
+16
+00
+00
+aa
+55
+01
+00
+9a
+40
+08
+aa
+55
+03
+00
+7a
+41
+88
+16
+ce
+aa
+55
+01
+00
+c5
+40
+18
+aa
+55
+01
+00
+ef
+41
+ff
+aa
+55
+02
+00
+ca
+40
+ef
+41
+aa
+55
+01
+00
+7d
+41
+38
+aa
+55
+01
+00
+d2
+44
+00
+aa
+55
+05
+00
+ea
+41
+ff
+04
+00
+00
+08
+aa
+55
+08
+00
+bc
+4b
+04
+09
+06
+00
+00
+12
+82
+1f
+aa
+55
+0c
+00
+02
+49
+08
+07
+58
+02
+64
+64
+95
+75
+85
+63
+75
+80
+aa
+55
+08
+00
+11
+49
+0d
+0e
+0f
+07
+03
+ff
+0c
+0b
+aa
+55
+0b
+00
+1a
+49
+ff
+ff
+0d
+0a
+0e
+0a
+ff
+ff
+ff
+05
+04
+aa
+55
+03
+00
+29
+49
+03
+03
+00
+aa
+55
+01
+00
+a3
+4c
+01
+aa
+55
+01
+00
+a8
+4c
+01
+aa
+55
+01
+00
+a7
+4c
+01
+aa
+55
+05
+00
+ac
+4c
+02
+01
+00
+ff
+ff
+aa
+55
+03
+00
+13
+4c
+ff
+58
+02
+aa
+55
+12
+00
+dd
+4b
+00
+05
+00
+04
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+aa
+55
+01
+00
+99
+40
+01
+aa
+55
+02
+00
+c4
+4b
+02
+03
+aa
+55
+08
+00
+3d
+49
+00
+34
+ff
+ff
+ff
+ff
+ff
+ff
+aa
+55
+07
+00
+5b
+49
+34
+ff
+ff
+ff
+ff
+ff
+ff
+aa
+55
+17
+00
+78
+49
+33
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+aa
+55
+0b
+00
+c6
+4b
+00
+40
+0a
+60
+06
+0a
+00
+64
+00
+70
+17
+aa
+55
+02
+00
+db
+4b
+07
+07
+aa
+55
+01
+00
+c5
+49
+01
+aa
+55
+01
+00
+01
+49
+02
+aa
+55
+01
+00
+a3
+44
+02
+aa
+55
+06
+00
+e7
+48
+0f
+01
+a2
+00
+b4
+00
+aa
+55
+01
+00
+fb
+48
+0a
+aa
+55
+03
+00
+ef
+4b
+00
+00
+00
+aa
+55
+01
+00
+bc
+4a
+ff
+aa
+55
+01
+00
+f4
+4b
+01
+aa
+55
+01
+00
+77
+41
+20
+aa
+55
+01
+00
+9b
+4b
+20
+aa
+55
+01
+00
+7f
+44
+06
+aa
+55
+06
+00
+a8
+40
+21
+56
+71
+52
+08
+53
+aa
+55
+0c
+00
+ff
+45
+0b
+42
+54
+33
+2e
+30
+20
+4d
+6f
+75
+73
+65
+aa
+55
+05
+00
+55
+44
+0e
+00
+01
+00
+02
+aa
+55
+01
+00
+44
+46
+0a
+aa
+55
+01
+00
+67
+47
+00
+aa
+55
+01
+00
+7b
+46
+00
+aa
+55
+01
+00
+5f
+41
+00
+aa
+55
+03
+00
+68
+47
+03
+00
+04
+aa
+55
+01
+00
+91
+47
+01
+aa
+55
+01
+00
+d8
+40
+01
+aa
+55
+0c
+00
+e7
+43
+1f
+02
+01
+05
+03
+03
+12
+18
+03
+19
+c2
+03
+aa
+55
+14
+00
+e3
+4a
+06
+ff
+06
+00
+03
+00
+80
+0c
+09
+42
+54
+35
+2e
+33
+20
+4d
+6f
+75
+73
+65
+aa
+55
+0e
+00
+07
+44
+1f
+0c
+09
+42
+54
+35
+2e
+33
+20
+4d
+6f
+75
+73
+65
+aa
+55
+0c
+00
+f7
+42
+0b
+42
+54
+35
+2e
+33
+20
+4d
+6f
+75
+73
+65
+aa
+55
+0c
+00
+ff
+4b
+0b
+42
+54
+35
+2e
+33
+20
+4d
+6f
+75
+73
+65
+aa
+55
+06
+00
+7a
+43
+03
+b1
+2a
+4e
+8e
+ed
+aa
+55
+08
+00
+72
+43
+06
+00
+09
+00
+20
+00
+2c
+01
+aa
+55
+06
+00
+dd
+4a
+03
+12
+18
+ff
+00
+00
+aa
+55
+04
+00
+28
+44
+00
+00
+00
+00
+aa
+55
+01
+00
+32
+44
+07
+aa
+55
+08
+00
+4c
+44
+fb
+00
+48
+08
+fb
+00
+48
+08
+aa
+55
+02
+00
+f8
+4a
+15
+00
+aa
+55
+02
+00
+57
+43
+19
+00
+aa
+55
+06
+00
+fa
+4a
+1d
+00
+21
+00
+30
+00
+aa
+55
+02
+00
+d1
+43
+2d
+00
+aa
+55
+01
+00
+01
+4b
+96
+aa
+55
+01
+00
+88
+44
+ff
+aa
+55
+0c
+00
+d5
+49
+03
+04
+01
+02
+20
+2a
+3f
+15
+14
+1b
+11
+0e
+aa
+55
+05
+00
+73
+4c
+2a
+35
+3f
+15
+20
+aa
+55
+c0
+00
+e4
+49
+09
+5a
+26
+34
+19
+04
+09
+00
+ff
+ff
+09
+5a
+0d
+f0
+1d
+e3
+7d
+d2
+ff
+ff
+09
+5a
+0d
+10
+1d
+ed
+7d
+80
+ff
+ff
+1b
+35
+28
+b4
+29
+46
+2a
+96
+2b
+8c
+2c
+6e
+2d
+64
+38
+5f
+39
+0f
+3a
+32
+3b
+47
+42
+10
+ff
+ff
+54
+2e
+55
+f2
+61
+f4
+63
+70
+75
+52
+76
+41
+77
+ed
+78
+23
+79
+46
+7a
+e5
+7c
+48
+7e
+77
+7f
+01
+0b
+00
+7f
+00
+09
+00
+ff
+ff
+09
+5a
+ff
+27
+ab
+40
+b3
+56
+9b
+e6
+a8
+12
+a9
+c0
+be
+e6
+a5
+af
+a0
+21
+a1
+02
+b8
+10
+b9
+0b
+a7
+ff
+b5
+d0
+b6
+00
+ff
+00
+09
+00
+ff
+ff
+09
+5a
+0d
+10
+0e
+c5
+5b
+9a
+10
+38
+11
+42
+28
+28
+41
+23
+49
+39
+4a
+b0
+4b
+a0
+4c
+90
+4d
+70
+09
+00
+ff
+ff
+09
+5a
+06
+02
+09
+69
+0d
+48
+0e
+9f
+0f
+ba
+09
+00
+ff
+ff
+09
+a5
+26
+34
+19
+04
+60
+07
+69
+04
+7d
+20
+7e
+00
+09
+00
+ff
+ff
+aa
+55
+08
+00
+b4
+4a
+09
+5a
+0b
+f3
+09
+00
+ff
+ff
+aa
+55
+08
+00
+f5
+4b
+09
+a5
+0b
+f3
+09
+00
+ff
+ff
+aa
+55
+01
+00
+7a
+48
+01
+aa
+55
+01
+00
+68
+48
+01
+aa
+55
+01
+00
+67
+48
+01
+aa
+55
+01
+00
+39
+48
+01
+aa
+55
+01
+00
+ac
+48
+06
+aa
+55
+02
+00
+3b
+48
+c0
+12
+aa
+55
+03
+00
+57
+48
+19
+19
+1c
+aa
+55
+01
+00
+5e
+48
+00
+aa
+55
+05
+00
+7b
+48
+20
+15
+10
+05
+4e
+aa
+55
+05
+00
+90
+48
+01
+0f
+0f
+0f
+0f
+aa
+55
+06
+00
+b1
+48
+0c
+f8
+00
+00
+77
+01
+aa
+55
+03
+00
+5f
+48
+00
+48
+60
+aa
+55
+01
+00
+81
+48
+0f
+aa
+55
+02
+00
+9d
+48
+37
+4c
+aa
+55
+01
+00
+ce
+48
+80
+aa
+55
+02
+00
+c6
+48
+14
+00
+aa
+55
+02
+00
+c4
+48
+50
+00
+aa
+55
+03
+00
+bc
+48
+00
+a6
+0e
+aa
+55
+03
+00
+bd
+49
+00
+50
+00
+aa
+55
+02
+00
+7b
+44
+80
+1f
+aa
+55
+01
+00
+85
+44
+80
+aa
+55
+01
+00
+e8
+41
+0a
+aa
+55
+01
+00
+2a
+4c
+10
+aa
+55
+04
+00
+d2
+4d
+ff
+00
+00
+00
+aa
+55
+04
+00
+dc
+4d
+20
+20
+00
+40
+aa
+55
+01
+00
+bc
+44
+ff
+aa
+55
+02
+00
+8f
+44
+32
+49
+aa
+55
+01
+00
+8e
+44
+00
+aa
+55
+01
+00
+93
+47
+ff
+aa
+55
+01
+00
+92
+47
+1e
+aa
+55
+01
+00
+58
+0b
+ff
+aa
+55
+09
+00
+7b
+4c
+01
+53
+31
+30
+10
+53
+31
+30
+30
+aa
+55
+01
+00
+7a
+4c
+01
+aa
+55
+11
+00
+84
+4c
+10
+77
+69
+72
+65
+64
+5f
+6d
+6f
+73
+75
+65
+5f
+31
+33
+30
+38
+aa
+55
+01
+00
+2f
+49
+00
+aa
+55
+01
+00
+79
+4c
+ff
+aa
+55
+01
+00
+19
+49
+ff
+aa
+55
+02
+00
+26
+49
+ff
+ff
+aa
+55
+01
+00
+25
+49
+ff
+aa
+55
+01
+00
+28
+49
+ff
+aa
+55
+0a
+00
+d1
+4b
+14
+0a
+90
+01
+e8
+03
+90
+01
+64
+00
+aa
+55
+0a
+00
+ef
+48
+10
+00
+52
+00
+35
+00
+21
+00
+25
+00
+aa
+55
+04
+00
+2c
+4e
+36
+00
+39
+00
+aa
+55
+2e
+00
+f0
+4d
+34
+00
+02
+00
+28
+02
+00
+ff
+35
+00
+02
+03
+28
+01
+10
+36
+00
+02
+01
+ff
+01
+00
+37
+00
+02
+02
+29
+02
+00
+00
+38
+00
+02
+03
+28
+01
+0c
+39
+00
+02
+02
+ff
+01
+00
+00
+00
+aa
+55
+03
+00
+d3
+4d
+88
+28
+00
+55
+aa
+aa
+55
+b7
+ac
+ff
+20
+20
+00
+40
+20
+60
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+40
+80
+00
+40
+20
+20
+00
+40
+c0
+20
+00
+03
+20
+60
+00
+00
+6f
+e0
+c9
+9e
+c0
+00
+80
+09
+c0
+01
+00
+0e
+c0
+01
+80
+15
+c0
+02
+00
+1b
+20
+60
+00
+00
+58
+01
+77
+00
+67
+e1
+cc
+16
+70
+48
+ca
+1e
+58
+01
+0d
+88
+20
+20
+00
+12
+58
+00
+bb
+80
+67
+e1
+cc
+16
+70
+48
+ca
+0f
+58
+00
+4c
+f4
+67
+e1
+c8
+b1
+67
+e1
+cc
+2c
+20
+60
+00
+00
+70
+48
+ca
+09
+58
+08
+06
+06
+67
+e1
+c8
+57
+58
+00
+5c
+1c
+67
+e1
+cc
+16
+20
+20
+26
+e8
+70
+48
+ca
+05
+58
+01
+01
+01
+67
+e1
+c8
+57
+58
+00
+2e
+e0
+67
+e1
+cc
+16
+20
+20
+26
+e8
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+c7
+e3
+b7
+34
+20
+20
+00
+40
+c0
+18
+00
+04
+c0
+18
+80
+0e
+20
+60
+00
+00
+58
+00
+00
+00
+67
+e1
+4b
+03
+67
+e0
+cd
+e3
+67
+e0
+cc
+6f
+67
+e0
+cc
+70
+67
+e0
+ca
+d7
+70
+4b
+05
+00
+70
+4a
+bd
+00
+20
+40
+1a
+c8
+20
+20
+04
+fd
+20
+40
+00
+18
+6f
+e1
+47
+8f
+2f
+ef
+fe
+0b
+20
+40
+c5
+c1
+6f
+e1
+47
+8f
+2f
+ef
+fe
+07
+20
+40
+c3
+62
+58
+00
+00
+00
+67
+e1
+4b
+03
+20
+20
+45
+94
+6f
+e0
+cc
+a3
+20
+7a
+00
+00
+70
+4c
+aa
+02
+20
+20
+04
+0e
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+d5
+35
+03
+73
+20
+20
+00
+40
+c0
+10
+00
+04
+c0
+10
+80
+20
+20
+60
+00
+00
+20
+40
+43
+29
+20
+40
+7f
+52
+20
+40
+40
+55
+6f
+e0
+c9
+24
+20
+40
+06
+e6
+20
+40
+04
+92
+20
+40
+3e
+72
+20
+40
+03
+c9
+20
+40
+00
+12
+20
+40
+00
+16
+68
+48
+c9
+15
+20
+40
+3f
+94
+68
+48
+c9
+15
+20
+20
+60
+e6
+6f
+e0
+c9
+22
+c1
+7f
+80
+00
+68
+48
+c9
+22
+20
+20
+61
+21
+6f
+e4
+4b
+bc
+c4
+1e
+00
+00
+68
+48
+c9
+17
+20
+40
+60
+e6
+68
+48
+c9
+18
+20
+40
+60
+e6
+68
+48
+c9
+17
+20
+40
+3f
+94
+68
+48
+c9
+18
+20
+20
+3f
+94
+6f
+e2
+48
+3f
+67
+e2
+48
+95
+67
+e2
+49
+98
+20
+40
+25
+87
+20
+40
+45
+84
+20
+40
+43
+0a
+70
+4a
+bf
+01
+70
+48
+a5
+00
+70
+48
+8f
+00
+6f
+e2
+48
+95
+68
+4a
+48
+91
+98
+46
+7c
+00
+20
+62
+80
+00
+70
+4e
+35
+01
+70
+4b
+03
+0a
+70
+4d
+e3
+05
+20
+40
+03
+fb
+20
+40
+05
+04
+20
+20
+48
+61
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+96
+22
+68
+74
+20
+20
+00
+40
+c0
+08
+00
+04
+c0
+08
+80
+2a
+20
+60
+00
+00
+6f
+e4
+4b
+bc
+c2
+97
+80
+23
+6f
+e0
+c9
+3d
+c0
+00
+00
+15
+20
+40
+04
+13
+20
+40
+43
+54
+6f
+e0
+c9
+3d
+c0
+00
+80
+0e
+c0
+01
+00
+10
+20
+60
+00
+00
+6f
+e3
+49
+3f
+20
+20
+00
+11
+6f
+e3
+49
+5c
+68
+4b
+49
+79
+98
+46
+7c
+00
+20
+22
+c3
+2b
+20
+20
+3e
+1c
+6f
+e4
+4b
+bc
+c3
+08
+c8
+42
+20
+40
+04
+01
+20
+40
+3e
+28
+20
+34
+48
+45
+6f
+e4
+4b
+bc
+c2
+98
+00
+25
+c3
+18
+80
+25
+20
+40
+41
+50
+1a
+21
+7e
+07
+68
+48
+cb
+dc
+98
+46
+7c
+00
+20
+22
+85
+4d
+20
+20
+48
+4b
+20
+40
+3e
+28
+20
+34
+48
+55
+70
+49
+3d
+00
+6f
+e1
+4b
+cb
+67
+e1
+48
+8b
+70
+48
+8f
+01
+20
+20
+25
+62
+70
+4e
+35
+01
+70
+4b
+03
+0a
+70
+4d
+e3
+05
+20
+40
+05
+04
+20
+40
+45
+84
+20
+40
+03
+fb
+20
+20
+48
+96
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+93
+88
+01
+78
+20
+20
+00
+40
+c0
+00
+00
+04
+c0
+00
+80
+3a
+20
+60
+00
+00
+20
+40
+26
+0e
+20
+40
+22
+b5
+20
+40
+02
+ac
+20
+40
+3f
+60
+20
+40
+01
+f4
+20
+40
+3d
+d6
+20
+40
+00
+36
+20
+40
+00
+33
+20
+40
+1a
+c2
+20
+40
+00
+14
+20
+40
+1a
+de
+20
+40
+1a
+ca
+6f
+e4
+4b
+bc
+c2
+89
+c6
+75
+c2
+89
+00
+1a
+20
+60
+00
+00
+59
+00
+03
+02
+67
+e2
+43
+50
+58
+03
+00
+10
+67
+e1
+c3
+54
+70
+43
+9d
+01
+20
+60
+00
+00
+20
+40
+5d
+af
+20
+40
+46
+4a
+20
+40
+46
+3d
+20
+40
+5d
+d2
+20
+40
+46
+51
+20
+40
+00
+21
+20
+20
+3f
+a5
+6f
+e1
+49
+95
+d8
+40
+aa
+55
+98
+46
+7c
+00
+20
+22
+c6
+22
+20
+40
+00
+27
+20
+20
+46
+18
+6f
+e4
+4b
+bc
+c2
+8c
+00
+2d
+c2
+8c
+80
+2f
+c2
+8d
+00
+31
+70
+49
+9e
+01
+20
+60
+00
+00
+70
+49
+9e
+02
+20
+60
+00
+00
+70
+49
+9e
+03
+20
+60
+00
+00
+70
+49
+9e
+04
+20
+60
+00
+00
+6f
+e0
+c1
+e8
+67
+e0
+cc
+72
+20
+60
+00
+00
+70
+4c
+a4
+00
+70
+4c
+b2
+00
+70
+4c
+b4
+00
+20
+20
+03
+c9
+58
+00
+01
+fd
+67
+e1
+48
+9f
+20
+20
+3c
+89
+00
+00
+00
+00
+00
+00
+00
+00
+bb
+2c
+09
+15
+00
+00
+00
+00
+de
+2e
Index: output/memmap.format
===================================================================
--- /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/output/memmap.format	(nonexistent)
+++ /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/output/memmap.format	(working copy)
@@ -0,0 +1,2596 @@
+0x0000 mem_le_adv_transmit
+0x0001 mem_le_adv_waitcnt
+0x0002 mem_le_adv_rcv
+0x0003 mem_le_req_rcv
+0x0004 mem_le_scanrsp_rcv
+0x0005 mem_le_conn_rcv
+0x0006 mem_inquiryscan_waitcnt
+0x0007 mem_inquiryscan_rcvcnt
+0x0008 mem_pagescan_waitcnt
+0x0009 mem_pagescan_rcvcnt
+0x000a mem_pagescan_rcvfhscnt
+0x000b mem_slave_rcvcnt
+0x000c mem_page_transmit
+0x000d mem_page_rcv
+0x000e mem_page_rcv_fhs
+0x000f mem_master_rcvcnt
+0x0010 mem_fhs_wait_counter
+0x0011 mem_newconnto_counter
+0x0012 mem_inquiry_transmit
+0x0013 mem_inquiry_rcv
+0x0014 mem_fw_ver
+0x0015 mem_current_context
+0x0016 mem_le_ch_mapped
+0x0017 mem_last_freq
+0x0018 mem_rssi
+0x0019 mem_rx_type
+0x001a mem_rx_hec_err
+0x001c mem_rx_crc_err
+0x001e mem_context_ptr
+0x0020 mem_display
+0x0028 mem_bcd
+0x0030 mem_state
+0x0031 mem_mode
+0x0032 mem_tsniff
+0x0034 mem_sniff_anchor
+0x0038 mem_clk_offset
+0x003e mem_rx_window
+0x0040 mem_plap
+0x0043 mem_puap
+0x0044 mem_pnap
+0x0046 mem_conn_handle
+0x0047 mem_arq
+0x0048 mem_lmp_to_send
+0x0049 mem_lmi_opcode
+0x004a mem_lmo_reason
+0x004b mem_op
+0x004c mem_state_map
+0x004d mem_supervision_timer
+0x0051 mem_supervision_to
+0x0053 mem_name_offset
+0x0054 mem_key_size
+0x0055 mem_conn_sm
+0x0056 mem_aco
+0x0062 mem_kc
+0x0072 mem_conn_timer
+0x0073 mem_sniff_attempt
+0x0074 mem_sniff_timeout
+0x0075 mem_dsniff
+0x0077 mem_amaddr
+0x0078 mem_lmo_opcode1
+0x0079 mem_lmi_opcode1
+0x007a mem_lmo_reason1
+0x007b mem_lmo_tid1
+0x007c mem_lmo_opcode2
+0x007d mem_lmi_opcode2
+0x007e mem_lmo_reason2
+0x007f mem_lmo_tid2
+0x0080 mem_bt_context_reserve
+0x0088 mem_current_sniff_attempt
+0x0089 mem_current_sniff_timeout
+0x008a mem_nfreq_index_inq
+0x008b mem_nfreq_index_page
+0x008c mem_ninqy_index
+0x008d mem_fhs_misc
+0x008e mem_subsniff_instant
+0x0092 mem_subsniff_rate
+0x0093 mem_subsniff_tcmax
+0x0095 mem_subsniff_tsniff
+0x0096 mem_lpm_adjust
+0x0097 mem_sync_clke
+0x009d mem_lpm_current_mult
+0x009e mem_gpio_wakeup_low
+0x00a2 mem_gpio_wakeup_high
+0x00a6 mem_npage_index
+0x00a7 mem_page_mode
+0x00a8 mem_page_clk
+0x00ac mem_temp_am_addr
+0x00ad mem_temp_arq
+0x00ae mem_len
+0x00b0 mem_clkn_bt
+0x00b4 mem_clke_bt
+0x00b8 mem_dpll_clkn
+0x00bc mem_connection_options
+0x00bd mem_nameres_cnt
+0x00be mem_txptr
+0x00c0 mem_slot_offset
+0x00c2 extm_fhs_misc
+0x00c3 extm_newconn_am_addr
+0x00c4 extm_class
+0x00c7 extm_lap
+0x00ca extm_uap
+0x00cb extm_nap
+0x00ce mem_rxbuf
+0x00e3 mem_debug_config
+0x00e4 mem_lch_code
+0x00e5 mem_fhs_am_addr
+0x00e6 mem_select_list_item
+0x00e7 mem_temp_reconn_record
+0x00e7 mem_record_bt_mode
+0x00e8 mem_temp_lap
+0x00ee mem_list_item_ptr
+0x00f0 mem_eir
+0x0154 mem_rssi_hex
+0x0155 mem_param_tx_setup
+0x0157 mem_param_rf_setup
+0x0159 mem_param_conn_access
+0x015b mem_param_clke_cal
+0x015d mem_param_pll_setup
+0x015f mem_param_rx_setup
+0x0161 mem_param_dpll_start_delay
+0x0163 mem_param_rt_rthalfslot
+0x0165 mem_param_clke_cal_le_1m
+0x0167 mem_param_clke_cal_le_2m
+0x0169 mem_param_clke_cal_le_coded
+0x016b mem_le_rxbuf
+0x026f mem_le_mic
+0x0273 mem_le_peer_mic
+0x0277 mem_le_mrand
+0x0287 mem_le_state
+0x0288 mem_le_mode
+0x0289 mem_le_tsniff
+0x028b mem_le_anchor
+0x028f mem_le_clk_offset
+0x0295 mem_le_receive_window
+0x0297 mem_le_plap
+0x029d mem_le_conn_handle
+0x029e mem_le_arq
+0x029f mem_le_ch
+0x02a0 mem_le_hop
+0x02a1 mem_le_event_count
+0x02a3 mem_le_supervision_timer
+0x02a7 mem_le_instant
+0x02a9 mem_le_channels
+0x02aa mem_le_op
+0x02ab mem_le_access
+0x02af mem_le_crcinit
+0x02b2 mem_le_window_size
+0x02b3 mem_le_slave_latency
+0x02b5 mem_le_superto
+0x02b7 mem_le_channel_map
+0x02bc mem_le_rx_phy
+0x02bd mem_le_tx_phy
+0x02be mem_le_update_new_param
+0x02c7 mem_le_sk
+0x02d7 mem_le_peer_sca
+0x02d8 mem_le_err_code
+0x02d9 mem_le_ll_pairing_fail_reason
+0x02da mem_le_context_reserve
+0x02df mem_le_testtype
+0x02e0 mem_cmd_le_create_conn
+0x02e1 mem_ucode_status
+0x02e2 mem_spid_tbuf
+0x02e3 mem_iicd_tbuf
+0x02e3 mem_addr_hi
+0x02e4 mem_addr_mi
+0x02e5 mem_addr_lo
+0x02e6 mem_iicd_addr
+0x02e7 mem_spid_rbuf
+0x02eb mem_ucode_buf
+0x02ed mem_ucode_len
+0x02ef mem_sched_addr
+0x02f1 mem_ucode_ptr
+0x02f3 mem_ucode_keybuf
+0x0303 mem_spid2_tbuf
+0x0304 mem_addr_hi2
+0x0305 mem_addr_mi2
+0x0306 mem_addr_lo2
+0x0307 mem_spid2_rbuf
+0x030b mem_reconnect_flag
+0x030c mem_switch_fail_master_count
+0x030d mem_app_evt_timer_count
+0x030e mem_l2cap_mem_start
+0x030e mem_l2cap_rxbuff1_len
+0x0310 mem_l2cap_rxbuff2_len
+0x0312 mem_l2cap_rxbuff_new
+0x0314 mem_l2cap_rxbuff_inuse
+0x0315 mem_l2cap_payload_ptr
+0x0317 mem_l2cap_rx_pkt_length
+0x0319 mem_l2cap_rx_cid
+0x031b mem_l2cap_rx_done
+0x031c mem_l2cap_signal_tx_buff_ptr
+0x031e mem_l2cap_signal_tx_payload_ptr
+0x0320 mem_l2cap_signal_tx_length
+0x0322 mem_sdp_tx_buff_ptr
+0x0324 mem_sdp_tx_payload_ptr
+0x0326 mem_sdp_tx_pkt_length
+0x0328 mem_rfcomm_tx_buff_ptr
+0x032a mem_rfcomm_tx_payload_ptr
+0x032c mem_rfcomm_tx_pkt_length
+0x032e memL2CAP_T1
+0x0330 mem_CONTROL_tasks
+0x0331 mem_send_config_req
+0x0332 mem_config_identifier
+0x0333 mem_config_req_dest_CID
+0x0335 mem_rfcomm_malloc_fail_flag
+0x0336 mem_message_to_uppersm
+0x0337 mem_upper_sm_remote_page
+0x0338 mem_upper_sm_reconn
+0x0339 mem_upper_sm_ss
+0x033a mem_tx_malloc_log
+0x037a mem_l2cap_mem_end
+0x037a mem_scid
+0x037c mem_cmd_length
+0x037e mem_tt2
+0x0380 mem_tt3
+0x0382 mem_id
+0x0384 mem_psm
+0x0386 mem_l2cap_sdpres_delay_time
+0x038a mem_lmo_header_length
+0x038b mem_lmo_header_opcode
+0x038c mem_lmo_payload
+0x039d mem_lmi_accepted_opcode
+0x039e mem_disconn_reason_send
+0x039f mem_tx_fixed_freq
+0x03a0 mem_rx_fixed_freq
+0x03a1 mem_ext_features_page
+0x03a2 mem_lmpext_ssp_enable
+0x03a4 mem_remote_sppcap
+0x03a5 mem_lmp_conn_state
+0x03a6 mem_soft_timer
+0x03a8 mem_pincode_state
+0x03a9 mem_sres_tid
+0x03aa mem_accptsco_tid
+0x03ab mem_wait_encryption
+0x03ac mem_sniff_payload
+0x03bc mem_aurand_send_delay_time
+0x03c0 memRemoteRPNBitRate
+0x03c1 memRemotePRNDataBits
+0x03c2 memRemotePRNStopBit
+0x03c3 memRemotePRNParity
+0x03c4 memRemotePRNFlowControl
+0x03c5 memRemotePRNXon
+0x03c6 memRemotePRNXoff
+0x03c7 mem_mod2div_temp
+0x03ca mem_contw_temp
+0x03cc mem_attrib_list
+0x03ce mem_current_adss
+0x03cf mem_current_channel
+0x03d0 mem_current_frame_type
+0x03d1 mem_current_fcs
+0x03d2 mem_current_length
+0x03d4 mem_rfcomm_uih_payload_ptr
+0x03d6 mem_uih_cmd_type
+0x03d7 mem_uih_length
+0x03d9 mem_param_payload_ptr
+0x03db mem_ms_param
+0x03dc mem_pn_credit_flow_type_info
+0x03dd mem_pn_priority
+0x03de mem_pn_acknowledg_timer
+0x03df mem_pn_max_retrans
+0x03e0 mem_rfcomm_send_adss
+0x03e1 mem_rfcomm_send_frame_type
+0x03e2 mem_rfcomm_send_fcs
+0x03e3 mem_rfcomm_send_offset
+0x03e4 mem_sdp_mem_start
+0x03e4 mem_sdp_uuid_search_ptr
+0x03ec mem_sdp_continue_byte
+0x03ee mem_sdp_pduid
+0x03ef mem_sdp_transactionid
+0x03f1 mem_sdp_transactionid_local
+0x03f3 mem_sdp_attribute_maxbyte
+0x03f5 mem_sdp_record_maxcnt
+0x03f7 mem_sdp_record_handle
+0x03fb mem_sdp_LACAP_found
+0x03fc mem_sdp_RFCOMM_found
+0x03fd mem_sdp_handle_list
+0x03fd mem_sdp_attrib_list
+0x041d mem_sdp_error_code
+0x041f mem_sdp_all_length
+0x0421 mem_handle_humber
+0x0422 mem_search_uuid
+0x0424 mem_sdp_mem_end
+0x0424 mem_random_number
+0x0434 mem_round_key
+0x0444 mem_kinit
+0x0454 mem_input_store
+0x0464 mem_x
+0x0474 mem_y
+0x0483 mem_y15
+0x0484 mem_key_store
+0x0495 mem_key_store_end
+0x0496 memp_ar_key
+0x0498 memp_ar_input
+0x049a mem_ar_hround
+0x04a4 mem_ec_infinite
+0x04a5 mem_ec_loopc
+0x04a7 mem_aes_cmac_data_length
+0x04a8 memdat
+0x04a8 mem_ax
+0x04c0 mem_ay
+0x04d8 mem_az
+0x04f0 mem_bx
+0x0508 mem_ax_256//32 bytes
+0x0508 mem_by
+0x0520 mem_bz
+0x0528 mem_ay_256// 32 bytes
+0x0538 mem_cx
+0x0548 mem_az_256// 32 bytes
+0x0550 mem_cy
+0x0567 mem_cy5
+0x0568 mem_bx_256// 32 bytes
+0x0568 mem_cz
+0x0580 mem_k
+0x0588 mem_by_256// 31 bytes
+0x0598 mem_align
+0x05a8 mem_bz_256//32 bytes
+0x05a8 mem_tmp1
+0x05a8 memahbak
+0x05c0 mem_tmp5
+0x05c8 mem_cx_256//32 bytes
+0x05c8 memahsave
+0x05d8 mem_tmp2
+0x05e8 mem_cy_256// 32 bytes
+0x05e8 memahsave_end
+0x05e8 mem_addr_padding
+0x05e9 mem_addr_value
+0x05f0 mem_tmp3
+0x05f0 mem_t1
+0x05f5 mem_addr_value_end
+0x05f8 mem_addr_iocap_end
+0x0607 mem_cy5_256// 1 byte
+0x0608 mem_cz_256// 32 bytes
+0x0608 mem_tmp0
+0x0608 mem_t0
+0x0610 mem_tmp0a
+0x0620 mem_t2
+0x0628 mem_k_256//32 bytes
+0x0638 mem_t3
+0x0648 mem_tmp1_256//32 bytes
+0x0650 mem_t7
+0x0668 mem_tmp5_256
+0x0688 mem_tmp2_256
+0x06a8 mem_tmp3_256
+0x06a8 mem_t1_256
+0x06c8 mem_tmp0_256
+0x06c8 mem_t0_256
+0x06e8 mem_t2_256
+0x0708 mem_t3_256
+0x0728 mem_t7_256
+0x0748 mem_p
+0x0760 mem_a
+0x0778 mem_b
+0x0790 mem_gx
+0x07a8 mem_gy
+0x07c0 memh0
+0x07e0 mem_p_256
+0x0800 mem_a_256
+0x0820 mem_gx_256
+0x0840 mem_gy_256
+0x0860 mem_le_slat
+0x0870 mem_sp_state_start
+0x0870 mem_sp_state
+0x0871 mem_master_sp_state
+0x0872 mem_sp_flag
+0x0873 mem_master_sp_flag
+0x0874 mem_sp_calc
+0x0875 mem_sp_dh_ready
+0x0876 mem_sp_localsm
+0x0877 mem_pairing_auth
+0x0878 mem_sp_local_key_send_count
+0x0879 mem_sp_remote_key_recv_count
+0x087a mem_sp_remote_key_invalid
+0x087b mem_sp_dhkey_invalid
+0x087c mem_gkey
+0x0880 mem_sp_state_end
+0x0880 mem_le_pubkey_remote_x_256
+0x0888 mem_sp_pubkey_remote
+0x0888 mem_sp_pubkey_remote_x
+0x08a0 mem_sp_pubkey_remote_x_end
+0x08a0 mem_le_pubkey_remote_y_256
+0x08a8 mem_sp_pubkey_remote_y
+0x08c0 mem_le_dhkey_256
+0x08c8 mem_sp_dhkey
+0x08e0 mem_sp_dhkey_end
+0x08e0 mem_sp_random_local
+0x08f0 mem_sp_random_local_end
+0x08f0 mem_sp_random_remote
+0x0900 mem_sp_random_remote_end
+0x0900 memresult
+0x0900 mem_sp_calc_result
+0x0900 memh
+0x0904 memg
+0x0908 memf
+0x090c meme
+0x0910 mem_sp_calc_result_high
+0x0910 memd
+0x0914 memc
+0x0918 memb
+0x091c mema
+0x0920 mem_sp_check_result
+0x0930 mem_sp_confirm_remote
+0x0940 mem_sp_prarm_stack
+0x0950 mem_UI_data_txbuff_length
+0x0952 mem_ipc_skip_continue_proc
+0x0953 mem_ui_timer_temp//length 4
+0x0953 mem_ipc_rega_temp
+0x0957 mem_hold_contr
+0x0959 mem_hold_contw
+0x095b mem_fifo_temp
+0x095c mem_pdatatemp
+0x0964 mem_temp//8 bytes
+0x096c mem_timeup// 4 bytes
+0x0970 mem_rega//4 bytes
+0x0974 mem_regb//4 bytes
+0x0978 mem_regc//3 bytes
+0x097b mem_contr//2 bytes
+0x097d mem_contw//2 bytes
+0x097f mem_contus
+0x0981 mem_contue
+0x0983 mem_contu
+0x0985 mem_queue
+0x0987 mem_loopcnt
+0x0989 mem_wakup_from_power_flag
+0x098a mem_saved_gpio_in
+0x098e mem_module_rx_error_data_buffer
+0x098e mem_shutter_random_mac_data_temp
+0x098e mem_shutter_config_data_temp
+0x098e mem_le_adv_channel_map_temp
+0x098e mem_le_data_len_temp//1byte
+0x098e mem_tx_fifo_map_temp
+0x098e mem_rpn_dlci//1byte
+0x098e mem_event_cmd_response_content//2byte
+0x098e mem_le_prand//16byte
+0x098e mem_AES_CMAC_k//16 bytes
+0x098e mem_regext_index//1 bytes
+0x098e mem_temp_block0
+0x098f mem_le_data_temp//15bytes
+0x098f mem_temp_block1
+0x099e mem_le_aes_128//16byte
+0x099e mem_regext//64 bytes
+0x099e mem_AES_CMAC_k1//16 bytes
+0x099e mem_temp_block2
+0x09ae mem_AES_CMAC_k2//16 bytes
+0x09ae mem_temp_block3
+0x09be mem_AES_CMAC_temp// 16 bytes
+0x09be mem_temp_block4
+0x09ce mem_AES_CMAC_M_last// 16 bytes
+0x09ce mem_module_uart_cmd
+0x09cf mem_module_uart_opcode
+0x09d0 mem_module_uart_len
+0x09d1 mem_module_temp_nl_discard_packet
+0x09d2 mem_temp_block5
+0x09de mem_le_mackey//16 bytes
+0x09de mem_app_receive_temp
+0x09de mem_key_value_temp
+0x09e0 mem_key_value
+0x09e2 mem_key_value_temp1
+0x09e3 mem_key_value_temp2
+0x09e4 mem_key_value_temp3
+0x09e5 mem_key_value_temp4
+0x09e6 mem_key_value_temp5
+0x09e7 mem_key_value_temp6
+0x09e8 mem_temp_block6
+0x09ee mem_scale_ratio
+0x09f1 mem_xcnt
+0x09f4 mem_scale_ratio_temp
+0x09f6 mem_mesh_receive_model_message_payload_len
+0x09f7 mem_mesh_receive_model_message_payload_opcode
+0x09f8 mem_mesh_receive_model_message_payload
+0x0a0f mem_mesh_access_layer_payload_len
+0x0a10 mem_mesh_access_layer_payload
+0x0a10 mem_mesh_access_payload
+0x0a42 mem_mesh_access_payload_padding//ÎªÁËÍ¸´«Ä£¿éÔ¤Áô
+0x0a74 mem_mesh_queue_ele_temp
+0x0a74 mem_mesh_queue_ele_duration
+0x0a75 mem_mesh_queue_ele_gatt_msg_id
+0x0a76 mem_mesh_queue_ele_len
+0x0a77 mem_mesh_queue_ele_payload
+0x0a96 mem_mesh_queue_ele_padding
+0x0a97 mem_le_txheader_mesh_temp
+0x0abe mem_mesh_sha256_chunk_start
+0x0abe mem_mesh_sha256_chunk1
+0x0afe mem_mesh_sha256_chunk2
+0x0b3e mem_mesh_sha256_chunk3
+0x0b7e mem_mesh_sha256_chunk4
+0x0bbe mem_mesh_Privacy_Plaintext
+0x0bbe mem_mesh_Privacy_Plaintext_Zero_String
+0x0bc3 mem_mesh_Privacy_Plaintext_IV_Index
+0x0bc7 mem_mesh_Privacy_Plaintext_Privacy_Random
+0x0bc7 mem_mesh_Privacy_Plaintext_Privacy_Random_EncDST
+0x0bc9 mem_mesh_Privacy_Plaintext_Privacy_Random_EncTransportPDU_or_NetMIC
+0x0bce mem_mesh_PECB
+0x0bde mem_nonce_ptr
+0x0be0 mem_ccm_data_len
+0x0be1 mem_ccm_data_ptr
+0x0be3 mem_ccm_mic
+0x0beb mem_ccm_type
+0x0bec mem_mesh_Device_UUID
+0x0bfc mem_mesh_receive_VID
+0x0bfd mem_mesh_mic_cache_ptr
+0x0bff mem_mesh_lower_transport_layer_payload_len
+0x0c00 mem_mesh_loopcnt_tmep
+0x0c02 mem_mesh_rega_temp
+0x0c04 mem_mesh_regb_temp
+0x0c06 mem_mesh_regc_temp
+0x0c08 mem_mesh_alarm_temp
+0x0c0a mem_mesh_message_Transport_NetMIC_length
+0x0c0b mem_mesh_message_NID
+0x0c0c mem_mesh_message_TTL
+0x0c0d mem_mesh_message_SEQ
+0x0c10 mem_mesh_message_SRC
+0x0c12 mem_mesh_message_DST
+0x0c14 mem_mesh_message_Transport_NetMIC
+0x0c14 mem_mesh_message_Transport_Head
+0x0c15 mem_mesh_message_Transport_unsegmented_access_messagePDU
+0x0c15 mem_mesh_message_Transport_segmented_access_messagePDU
+0x0c15 mem_mesh_message_segment_access_SZMIC_SeqZero_SegO_SegN
+0x0c18 mem_mesh_message_Transport_segmented_access_messagePDU_Segment
+0x0c18 mem_mesh_message_Transport_NetMIC_end
+0x0c28 mem_mesh_nonce_struct
+0x0c35 mem_mesh_send_message_DST
+0x0c37 mem_mesh_last_message_SEQ
+0x0c3a mem_mesh_network_packet_type
+0x0c3b mem_mesh_upper_transport_layer_payload_ptr
+0x0c3d mem_mesh_segmented_upper_transport_layer_payload_len
+0x0c3e mem_mesh_segmented_lower_transport_layer_SegZero
+0x0c40 mem_mesh_segmented_lower_transport_layer_SegO
+0x0c41 mem_mesh_segmented_lower_transport_layer_SegN
+0x0c42 mem_mesh_segmented_last_packet_upper_teansport_payload_len
+0x0c43 mem_mesh_upper_tran_layer_queue_temp
+0x0c43 mem_mesh_upper_tran_layer_temp_packet_flag
+0x0c44 mem_mesh_upper_tran_layer_temp_packet_transmit_delay
+0x0c46 mem_mesh_upper_tran_layer_temp_packet_TID
+0x0c47 mem_mesh_upper_tran_layer_temp_packet_header_IVI_NID
+0x0c48 mem_mesh_upper_tran_layer_temp_packet_header_CTL_TTL
+0x0c49 mem_mesh_upper_tran_layer_temp_packet_header_SEQ
+0x0c4c mem_mesh_upper_tran_layer_temp_packet_header_SRC
+0x0c4e mem_mesh_upper_tran_layer_temp_packet_header_DST
+0x0c50 mem_mesh_upper_tran_layer_temp_packet_length
+0x0c51 mem_mesh_upper_tran_layer_temp_packet_payload
+0x09f6 mem_hci_opcode_ocf
+0x09f8 mem_hci_opcode_ogf
+0x09f9 mem_hci_event_head_type
+0x09fa mem_hci_event_head_event_code
+0x09fb mem_hci_event_para_total_length
+0x09fc mem_hci_command_complete_num_hci_command_packet
+0x09fd mem_hci_command_complete_command_opcode
+0x09fd mem_hci_opcode
+0x09ff mem_hci_command_complete_return_parameter
+0x09ff mem_hci_command_complete_return_parameter_status
+0x0a00 mem_hci_command_complete_return_parameter_chip_id
+0x09f6 mem_vdk
+0x09f8 mem_vok
+0x09fc mem_omega
+0x0a02 mem_b1
+0x0a06 mem_b2
+0x0a0a mem_u1
+0x0a1a mem_u2
+0x0a2a mem_q
+0x09f6 mem_module_le_rx_data_len
+0x09f8 mem_module_le_rx_data_address
+0x09fa mem_module_le_rx_data_handle
+0x09f6 mem_init_cnt
+0x09f8 mem_data_pre
+0x09fa mem_data_current
+0x09fc mem_data_sum
+0x09ff mem_data_value
+0x09f6 mem_tst_pktcnt_sync
+0x09f8 mem_tst_pktcnt_hec
+0x09fa mem_tst_pktcnt_crc
+0x09fc mem_tst_pktcnt_dmh
+0x09fe mem_tmp_buffer_head
+0x0a01 mem_tmp_buffer
+0x0a51 mem_tester_emulate
+0x0a52 mem_temp_payload
+0x0a52 test_mode_scenario
+0x0a53 test_mode_hopping_mode
+0x0a54 test_mode_tx_freq
+0x0a55 test_mode_rx_freq
+0x0a56 test_mode_power_mode
+0x0a57 test_mode_poll_period
+0x0a58 test_mode_packet_type
+0x0a59 test_mode_data_length
+0x0a5b mem_test_mode_old_debug_config
+0x0a5c mem_tester_cnt
+0x09f6 mem_usb_status
+0x09f7 mem_usb_fifo_empty
+0x09f8 mem_usb_read_len
+0x09fa mem_usb_txbuf
+0x0a3b mem_usb_txbuf1
+0x0a45 mem_usb_txbuf2
+0x0a4f mem_usb_rxbuf
+0x0a8f mem_usb_rxbuf_end
+0x0a90 mem_bufptr
+0x0a92 mem_remain
+0x0a93 mem_hidreportdesc_kb
+0x0a95 mem_hidreportdesc_m
+0x0a97 mem_devicedesc
+0x0aaa mem_confdesc
+0x0ae6 mem_string0
+0x0aeb mem_string1
+0x0b09 mem_string2
+0x0b27 mem_string3
+0x0b45 mem_cb_usb_config
+0x0b47 mem_usb_tx_interval
+0x0b48 mem_usb_vid_pid
+0x0b51 mem_usb_zero_packet
+0x0b53 mem_usb_ones_packet
+0x0b55 mem_usb_two_packet
+0x0b57 mem_usb0_state
+0x0b58 mem_usb_offline_check_gpio
+0x0b59 mem_usb_clear_mem_start
+0x0b59 mem_usb_setup
+0x0b59 mem_usb_setup_bmRequestType
+0x0b5a mem_usb_setup_bRequest
+0x0b5b mem_usb_setup_bValue
+0x0b5c mem_usb_setup_bValueH
+0x0b5d mem_usb_setup_wIndex
+0x0b5f mem_usb_setup_bLength
+0x0b60 mem_usb_setup_bLengthH
+0x0b61 mem_usb0_set_report_data
+0x0ba1 mem_usb0_get_report_data
+0x0be1 mem_usb_setup_bValue_temp
+0x0be3 mem_usb0_get_set_report
+0x0be4 mem_usb0_data_ready_report
+0x0be5 mem_usb_tx_win_enable
+0x0be6 mem_usb_tx_mac_enable
+0x0be7 mem_usb_idle_flag
+0x0be8 mem_usb_idle_rate
+0x0be9 mem_usb_get_protocol_flag
+0x0bea mem_usb_set_protocol_status
+0x0beb mem_usb_set_protocol_value
+0x0bec mem_usb_state
+0x0bed mem_usb_remote_wakeup
+0x0bee mem_usb_clear_remote_wakeup
+0x0bef mem_sdsystem_wakeup_flag
+0x0bf0 mem_usb_ep0_stall_status
+0x0bf1 mem_usb_ep1_stall_status
+0x0bf2 mem_usb_ep2_stall_status
+0x0bf3 mem_usb_ep3_stall_status
+0x0bf4 mem_dsc_info_data_pointer
+0x0bf6 mem_dsc_info_len
+0x0bf7 mem_usb_ep1_data
+0x0bf8 mem_usb_ep2_data
+0x0bf9 mem_usb_tx_enable
+0x0bfa mem_usb_device_enumeration_endflag
+0x0bfb mem_usb_wakestate_onetime_flag
+0x0bfc mem_usb_mac_wakeup_trig
+0x0bfd mem_usb_set_high_addr_flag
+0x0bfe mem_usb_clear_halt
+0x0bff mem_usb_mouse_data
+0x0c0f mem_usb_kb_data
+0x0c1f mem_usb_kb_multikey
+0x0c2f mem_usb_kb_system
+0x0c3f mem_usb_test_cnt
+0x0c41 mem_usb_test_kb
+0x0c4b mem_usb_clear_mem_end
+0x0c4b mem_dg_rssi_noise_buffer
+0x0d4b mem_dg_rssi_noise_dg_buffer
+0x0e4b mem_dg_rssi_noise_ms_buffer
+0x0f4b mem_dg_rssi_noise_kb_buffer
+0x0c4b mem_usb_mem_temp
+
+0x02be mem_le_new_param
+0x02be mem_le_new_transmitwindowsize
+0x02bf mem_le_new_transmitwindowoffset
+0x02c1 mem_le_new_conninterval
+0x02c3 mem_le_new_connslavelatency
+0x02c5 mem_le_new_connsupervisiontimeout
+0x02be mem_le_new_map
+0x02be mem_le_new_m2s_phy
+0x02bf mem_le_new_s2m_phy
+0x016b mem_le_rxbuf_data_header
+0x016c mem_le_rxbuf_data_length
+0x016d mem_le_rxbuf_data_payload
+0x016b mem_le_rxbuf_data_ll_header
+0x016c mem_le_rxbuf_data_ll_length
+0x016d mem_le_rxbuf_data_ll_opcode
+0x016e mem_le_rxbuf_data_ll_control_data
+0x016b mem_le_rxbuf_adv_header
+0x016c mem_le_rxbuf_adv_length
+0x016d mem_le_rxbuf_adv_payload
+0x016b mem_le_rxbuf_adv_scan_req_header
+0x016c mem_le_rxbuf_adv_scan_req_length
+0x016d mem_le_rxbuf_adv_scan_req_scan_address
+0x0173 mem_le_rxbuf_adv_scan_req_adv_address
+0x016b mem_le_rxbuf_adv_connect_ind_header
+0x016c mem_le_rxbuf_adv_connect_ind_length
+0x016d mem_le_rxbuf_adv_connect_ind_init_address
+0x0173 mem_le_rxbuf_adv_connect_ind_adv_address
+0x0179 mem_le_rxbuf_adv_connect_ind_access_address
+0x017d mem_le_rxbuf_adv_connect_ind_crc_init
+0x0180 mem_le_rxbuf_adv_connect_ind_win_size
+0x0181 mem_le_rxbuf_adv_connect_ind_win_offset
+0x0183 mem_le_rxbuf_adv_connect_ind_interval
+0x0185 mem_le_rxbuf_adv_connect_ind_latency
+0x0187 mem_le_rxbuf_adv_connect_ind_timeout
+0x0189 mem_le_rxbuf_adv_connect_ind_channel_map
+0x018e mem_le_rxbuf_adv_connect_ind_hop_and_sca
+0x099e mem_le_search_handle_start
+0x09a0 mem_le_search_handle_end
+0x09a2 mem_le_att_offset
+0x09a2 mem_le_search_att_type_length
+0x09a3 mem_le_search_att_type
+0x09b3 mem_le_curr_att_len
+0x09b4 mem_le_cur_attlist_start_ptr
+0x09b6 mem_le_cur_handle_start
+0x09b8 mem_le_cur_handle_end
+0x09ba mem_le_cur_uuid_length
+0x09bb mem_le_cur_uuid
+0x016b mem_le_rxbuf_data_att_header
+0x016c mem_le_rxbuf_data_att_length
+0x016d mem_le_rxbuf_data_att_l2cap_length
+0x016f mem_le_rxbuf_data_att_cid
+0x0171 mem_le_rxbuf_data_att_opcode
+0x0172 mem_le_rxbuf_data_att_payload
+0x016b mem_le_rxbuf_data_continue_header
+0x016c mem_le_rxbuf_data_continue_length
+0x016d mem_le_rxbuf_data_continue_payload
+0x016b mem_le_rxbuf_data_att_write_header
+0x016c mem_le_rxbuf_data_att_write_length
+0x016d mem_le_rxbuf_data_att_write_l2cap_length
+0x016f mem_le_rxbuf_data_att_write_cid
+0x0171 mem_le_rxbuf_data_att_write_opcode
+0x0172 mem_le_rxbuf_data_att_write_handle
+0x0174 mem_le_rxbuf_data_att_write_payload
+0x016b mem_le_rxbuf_data_prepare_att_write_header
+0x016c mem_le_rxbuf_data_prepare_att_write_length
+0x016d mem_le_rxbuf_data_prepare_att_write_l2cap_length
+0x016f mem_le_rxbuf_data_prepare_att_write_cid
+0x0171 mem_le_rxbuf_data_prepare_att_write_opcode
+0x0172 mem_le_rxbuf_data_prepare_att_write_handle
+0x0174 mem_le_rxbuf_data_prepare_att_write_offset
+0x0176 mem_le_rxbuf_data_prepare_att_write_payload
+0x09f8 mem_mesh_NETKeyindex_and_APPKeyindex
+0x09fb mem_mesh_receive_application_key
+0x09f8 mem_mesh_vendor_message_cid
+0x09fa mem_mesh_vendor_message_tid
+0x09fb mem_mesh_vendor_message_attr_type
+0x09f8 mem_mesh_vendor_message_header
+0x09fd mem_mesh_vendor_attr_parameter
+0x09f8 mem_mesh_vendor_message_delay_close_time_header
+0x09fd mem_mesh_vendor_delay_close_time
+0x09f8 mem_mesh_vendor_message_night_light_onoff_header
+0x09fd mem_mesh_vendor_night_light_onoff
+0x09f8 mem_mesh_vendor_message_color_header
+0x09fd mem_mesh_vendor_color_lightness
+0x09ff mem_mesh_vendor_color_hue
+0x0a01 mem_mesh_vendor_color_saturation
+0x09f8 mem_mesh_vendor_message_back_light_onoff_header
+0x09fd mem_mesh_vendor_back_light_onoff
+0x09f8 mem_mesh_vendor_message_main_light_onoff_header
+0x09fd mem_mesh_vendor_main_light_onoff
+0x09f8 mem_mesh_vendor_message_standby_brightness_header
+0x09fd mem_mesh_vendor_standby_brightness
+0x09f8 mem_mesh_vendor_message_current_time_header
+0x09fd mem_mesh_vendor_message_current_time
+0x09f8 mem_mesh_vendor_message_timer_header
+0x09fd mem_mesh_vendor_timer_timing_index
+0x09fe mem_mesh_vendor_timer_timing_index1
+0x09fe mem_mesh_vendor_timer_timing_time
+0x0a02 mem_mesh_vendor_timer_timing_attr_type
+0x0a04 mem_mesh_vendor_timer_timing_attr_para
+0x09f8 mem_mesh_vendor_message_timer_cyclic_header
+0x09fd mem_mesh_vendor_timer_timing_index_cyclic
+0x09fe mem_mesh_vendor_timer_timing_time_cyclic
+0x0a00 mem_mesh_vendor_timer_timing_weekdays_cyclic
+0x0a01 mem_mesh_vendor_timer_timing_attr_type_cyclic
+0x0a03 mem_mesh_vendor_timer_timing_attr_para_cyclic
+0x0a04 mem_mesh_vendor_timer_timing_cyclic_flag
+0x0a10 mem_mesh_access_layer_payload_vendor_command
+0x0a11 mem_mesh_access_layer_payload_vendor_CID
+0x0a13 mem_mesh_access_layer_payload_vendor_tid
+0x0a14 mem_mesh_access_layer_payload_vendor_attr_type
+0x0a16 mem_mesh_access_layer_payload_vendor_attr_parameter
+0x098e mem_mesh_subscription_eep_temp
+0x0a74 mem_mesh_gatt_package_receive_msg_buffer_ptr
+0x0a76 mem_mesh_gatt_package_receive_msg_buffer_temp
+0x0a76 mem_mesh_gatt_package_receive_msg_id
+0x0a78 mem_mesh_gatt_package_receive_MAC
+0x0a78 mem_mesh_gatt_package_receive_msg_num
+0x0a79 mem_mesh_gatt_package_receive_msg_total_length
+0x0a7a mem_mesh_gatt_package_receive_msg_payload
+0x0bec mem_mesh_receive_service_uuid_company_id
+0x0bee mem_mesh_receive_service_uuid_vid
+0x0bef mem_mesh_receive_service_uuid_provisioning_type
+0x0bf0 mem_mesh_receive_service_uuid_mac
+0x0bf2 mem_mesh_receive_service_uuid_msg_id
+0x0bf3 mem_mesh_receive_service_uuid_package_num
+0x0bf4 mem_mesh_receive_service_uuid_length
+0x0bf5 mem_mesh_receive_service_uuid_payload_data
+0x0bec mem_mesh_receive_service_uuid_ios_data_company_id
+0x0bee mem_mesh_receive_service_uuid_ios_data_vid
+0x0bef mem_mesh_receive_service_uuid_ios_data_provisioning_type
+0x0bf0 mem_mesh_receive_service_uuid_ios_data_NID
+0x0bf1 mem_mesh_receive_service_uuid_ios_data_msg_id
+0x0bf2 mem_mesh_receive_service_uuid_ios_data_package_num
+0x0bf3 mem_mesh_receive_service_uuid_ios_data_length
+0x0bf4 mem_mesh_receive_service_uuid_ios_data_payload_data
+0x09f8 mem_mesh_configuration_health_message_opcode
+0x09f8 mem_mesh_configuration_health_message_opcode_config_model_subscription
+0x09f9 mem_mesh_subscription_element_address
+0x09fb mem_mesh_subscription_value_address
+0x09fd mem_mesh_subscription_model_identifier
+0x09f8 mem_mesh_module_message_opcode
+0x09f8 mem_mesh_module_message_opcode_onoff_set
+0x09f9 mem_mesh_generic_onoff_set_payload_OnOff
+0x09fa mem_mesh_generic_onoff_set_payload_TID
+0x09fb mem_mesh_generic_onoff_set_payload_Transition_Time
+0x09fc mem_mesh_generic_onoff_set_payload_Delay
+0x09f8 mem_mesh_module_message_opcode_scene_recall
+0x09f9 mem_mesh_scene_recall_payload_scene_number
+0x09fb mem_mesh_scene_recall_payload_TID
+0x09fc mem_mesh_scene_recall_payload_Transition_Time
+0x09fd mem_mesh_scene_recall_payload_Delay
+0x09f8 mem_mesh_module_message_opcode_set_light_lightness
+0x09f9 mem_mesh_light_lightness_set_payload_lightness
+0x09fb mem_mesh_light_lightness_set_payload_TID
+0x09fc mem_mesh_light_lightness_set_payload_Transition_Time
+0x09fd mem_mesh_light_lightness_set_payload_Delay
+0x09fe mem_mesh_light_lightness_calc_lightness
+0x09f8 mem_mesh_module_message_opcode_set_light_ctl
+0x09f9 mem_mesh_CTL_Lightness
+0x09fb mem_mesh_CTL_Temperature
+0x09fd mem_mesh_CTL_Delta_UV
+0x09ff mem_mesh_CTL_lightness_TID
+0x0a00 mem_mesh_CTL_lightness_Transition_Time
+0x0a01 mem_mesh_CTL_lightness_Delay
+0x0a02 mem_mesh_CTL_calc_lightness
+0x0a03 mem_mesh_CTL_calc_temperature
+0x0a97 mem_mesh_network_packet_type_temp
+0x0a98 mem_mesh_message_NID_temp
+0x0c28 mem_mesh_Network_Nonce
+0x0c28 mem_mesh_Network_Nonce_nonce_type
+0x0c29 mem_mesh_Network_Nonce_CTL_and_TTL
+0x0c2a mem_mesh_Network_Nonce_SEQ
+0x0c2d mem_mesh_Network_Nonce_SRC
+0x0c2f mem_mesh_Network_Nonce_Pad//0x0000
+0x0c31 mem_mesh_Network_Nonce_IV_Index
+0x0c28 mem_mesh_Application_Nonce
+0x0c28 mem_mesh_Application_Nonce_Nonce_Type
+0x0c29 mem_mesh_Application_Nonce_ASZMIC_and_Pad//
+0x0c2a mem_mesh_Application_Nonce_SEQ
+0x0c2d mem_mesh_Application_Nonce_SRC
+0x0c2f mem_mesh_Application_Nonce_DST
+0x0c31 mem_mesh_Application_Nonce_IV_Index
+0x0c28 mem_mesh_Device_Nonce
+0x0c28 mem_mesh_Device_Nonce_Nonce_Type
+0x0c29 mem_mesh_Device_Nonce_ASZMIC_and_Pad//
+0x0c2a mem_mesh_Device_Nonce_SEQ
+0x0c2d mem_mesh_Device_Nonce_SRC
+0x0c2f mem_mesh_Device_Nonce_DST
+0x0c31 mem_mesh_Device_Nonce_IV_Index
+0x0a0f mem_mesh_upper_transport_layer_payload_len
+0x0c51 mem_mesh_upper_tran_layer_temp_pakcet_AKF_AID
+0x0c51 mem_mesh_upper_tran_layer_temp_unsegmented_pakcet_AKF_AID
+0x0c52 mem_mesh_upper_tran_layer_temp_unsegmented_packet_fill
+0x0c56 mem_mesh_upper_tran_layer_temp_pakcet_upper_tran_access_pdu
+0x0c56 mem_mesh_upper_tran_layer_temp_unsegmented_pakcet_upper_tran_access_pdu
+0x0c51 mem_mesh_upper_tran_layer_temp_segmented_pakcet_AKF_AID
+0x0c52 mem_mesh_upper_tran_layer_temp_segmented_pakcet_SeqZero
+0x0c54 mem_mesh_upper_tran_layer_temp_segmented_pakcet_SegO
+0x0c55 mem_mesh_upper_tran_layer_temp_segmented_pakcet_SegN
+0x0c56 mem_mesh_upper_tran_layer_temp_segmented_pakcet_upper_tran_access_pdu
+0x4000 mem_patch00
+0x4001 mem_patch01
+0x4002 mem_patch02
+0x4003 mem_patch03
+0x4004 mem_patch04
+0x4005 mem_patch05
+0x4006 mem_patch06
+0x4007 mem_patch07
+0x4008 mem_patch08
+0x4009 mem_patch09
+0x400a mem_patch0a
+0x400b mem_patch0b
+0x400c mem_patch0c
+0x400d mem_patch0d
+0x400e mem_patch0e
+0x400f mem_patch0f
+0x4010 mem_patch10
+0x4011 mem_patch11
+0x4012 mem_patch12
+0x4013 mem_patch13
+0x4014 mem_patch14
+0x4015 mem_patch15
+0x4016 mem_patch16
+0x4017 mem_patch17
+0x4018 mem_patch18
+0x4019 mem_patch19
+0x401a mem_patch1a
+0x401b mem_patch1b
+0x401c mem_patch1c
+0x401d mem_patch1d
+0x401e mem_patch1e
+0x401f mem_patch1f
+0x4020 mem_patch20
+0x4021 mem_patch21
+0x4022 mem_patch22
+0x4023 mem_patch23
+0x4024 mem_patch24
+0x4025 mem_patch25
+0x4026 mem_patch26
+0x4027 mem_patch27
+0x4028 mem_patch28
+0x4029 mem_patch29
+0x402a mem_patch2a
+0x402b mem_patch2b
+0x402c mem_patch2c
+0x402d mem_patch2d
+0x402e mem_patch2e
+0x402f mem_patch2f
+0x4030 mem_patch30
+0x4031 mem_patch31
+0x4032 mem_patch32
+0x4033 mem_patch33
+0x4034 mem_patch34
+0x4035 mem_patch35
+0x4036 mem_patch36
+0x4037 mem_patch37
+0x4038 mem_patch38
+0x4039 mem_patch39
+0x403a mem_patch3a
+0x403b mem_patch3b
+0x403c mem_patch3c
+0x403d mem_patch3d
+0x403e mem_patch3e
+0x403f mem_patch3f
+0x4040 mem_context
+0x4098 mem_current_amaddr
+0x4099 mem_lpm_mode
+0x409a mem_device_option
+0x409b mem_scan_mode
+0x409c mem_last_clkn
+0x40a0 mem_features
+0x40a8 mem_lap
+0x40ab mem_uap
+0x40ac mem_nap
+0x40ae mem_npage
+0x40af mem_glap
+0x40b2 mem_class
+0x40b5 mem_iscan_window
+0x40b7 mem_iscan_interval
+0x40b9 mem_pscan_window
+0x40bb mem_pscan_interval
+0x40bd mem_page_interval
+0x40bf mem_page_window
+0x40c1 mem_page_to
+0x40c3 mem_inq_window
+0x40c5 mem_fcomp_div
+0x40c6 mem_rx_window_init
+0x40c8 mem_rx_window_sniff
+0x40ca mem_rf_init_ptr
+0x40cc mem_last_type
+0x40cd mem_last_type_esco
+0x40ce mem_last_type_saved
+0x40cf mem_retransmission_cnt
+0x40d1 mem_next_btclk
+0x40d5 mem_rf_rccal
+0x40d6 mem_handle_num
+0x40d7 mem_max_slot
+0x40d8 mem_eir_enable
+0x40d9 mem_afh_instant
+0x40dd mem_afh_error_total
+0x40df mem_afh_cfg
+0x40e0 mem_afh_new_mod
+0x40e1 mem_afh_map_lo
+0x40e6 mem_afh_map_hi
+0x40eb mem_afh_used
+0x40ec mem_afh_index
+0x40ee mem_afh_map_new
+0x40f9 mem_afh_map
+0x4149 mem_afh_timer
+0x414d mem_afh_classify_channel_map
+0x4157 mem_lpm_wake_lock
+0x4159 mem_lpm_interval
+0x415b mem_lpm_overhead
+0x415c mem_lpm_hibernate_switch
+0x415d mem_esco_addr
+0x415e mem_sniff_unint_lost
+0x415f mem_ptt
+0x4160 mem_sleep_counter//should be 0x41fc in REVC
+0x4164 mem_sleep_counter_all
+0x4168 mem_sleep_clkn
+0x416e mem_sniff_rcv
+0x4171 mem_sniff_lost
+0x4174 mem_clks_per_lpo
+0x4177 mem_lpm_mult
+0x4178 mem_lpm_mult_timeout
+0x4179 mem_lpm_mult_cnt
+0x417a mem_lpm_config
+0x417a mem_lpm_xtal_ib
+0x417b mem_lpm_ctrim
+0x417c mem_lpm_padding
+0x417d mem_lpm_xtalcnt
+0x417e mem_lpm_buckcnt
+0x417f mem_lpm_ldocnt
+0x4180 mem_lpm_isogate
+0x4181 mem_lpm_isogate_final
+0x4182 mem_lpm_ctrl3
+0x4186 mem_saved_gpio// should be 0x421e in REVC
+0x419a mem_saved_gsel
+0x419d mem_saved_mark
+0x41a5 mem_saved_spidctrl
+0x41a6 mem_patch_ptr
+0x41a8 mem_patch_len
+0x41aa mem_timers
+0x41ca mem_link_key_exists
+0x41cb mem_link_key
+0x41db mem_hci_cmd
+0x41dc mem_hci_conn_handle
+0x41dd mem_hci_plap
+0x41e0 mem_hci_puap
+0x41e1 mem_hci_pnap
+0x41e3 mem_loadcode_times
+0x41e4 mem_llid
+0x41e5 mem_tx_lch
+0x41e6 mem_tx_len
+0x41e8 mem_tx_power
+0x41e9 mem_modem_rssi
+0x41ea mem_gain_fix
+0x41eb mem_gain_table
+0x41ee mem_gain_second_agc_en
+0x41ef mem_rf_init_data
+0x41f0 mem_system_clk
+0x41f1 mem_le_dsniff
+0x41f3 mem_le_conn_interval
+0x41f5 mem_le_txheader
+0x41f6 mem_le_txlen
+0x41f7 mem_le_txpayload
+0x42f7 mem_le_name_len
+0x42f8 mem_le_name
+0x4316 mem_le_ltk
+0x4326 mem_ltk_exists
+0x4327 mem_le_rconfirm
+0x4337 mem_le_srand
+0x4347 mem_le_iat
+0x4348 mem_le_rat
+0x4349 mem_le_preq
+0x434a mem_le_preq_iocap
+0x434b mem_le_preq_oob
+0x434c mem_le_preq_auth
+0x434d mem_le_preq_max_keysize
+0x434e mem_le_preq_init_key_distribution
+0x434f mem_le_preq_resp_key_distribution
+0x4350 mem_le_pres
+0x4351 mem_le_pres_iocap
+0x4352 mem_le_pres_oob
+0x4353 mem_le_pres_auth
+0x4354 mem_le_pres_max_keysize
+0x4355 mem_le_pres_init_key_distribution
+0x4356 mem_le_pres_resp_key_distribution
+0x4357 mem_le_notify_handle
+0x4359 mem_le_search_uuid_length
+0x435a mem_le_search_uuid
+0x436a mem_le_conn_param
+0x436a mem_le_conn_peer_addr_type
+0x436b mem_le_conn_peer_addr
+0x4371 mem_le_conn_own_addr_type
+0x4372 mem_le_interval_min
+0x4374 mem_le_interval_max
+0x4376 mem_le_latency
+0x4378 mem_le_timeout
+0x437a mem_le_lap
+0x437d mem_le_uap
+0x437e mem_le_nap
+0x4380 mem_le_local_mtu
+0x4382 mem_le_remote_mtu
+0x4384 mem_le_skdm
+0x438c mem_le_skds
+0x4394 mem_le_init_superto
+0x4396 mem_ui_le_uuid_table
+0x4398 mem_le_secure_connect_flag
+0x4399 mem_le_secure_connect_state
+0x439a mem_le_sc_confirm_gkey_flag
+0x439b mem_le_pairing_state
+0x439c mem_le_enc_state
+0x439d mem_le_pairing_mode
+0x439e mem_le_tk
+0x43a2 mem_le_ediv
+0x43a4 mem_le_rand
+0x43ac mem_le_irk
+0x43bc mem_le_transmit_window
+0x43c0 mem_le_configuration
+0x43c1 mem_le_fixed_ltk
+0x43d1 mem_le_pairing_handle
+0x43d3 mem_le_packet_llid
+0x43d4 mem_le_l2cap_size
+0x43d6 mem_le_packet_len_recved
+0x43d8 mem_le_payload_ptr
+0x43da mem_le_signaling_identifier
+0x43db mem_le_l2cap_signaling_conn_param_update_rsp_result
+0x43dd mem_le_md_count
+0x43de mem_ble_l2cap_tx_buff0_ptr
+0x43e0 mem_ble_l2cap_tx_buff_size_ptr
+0x43e2 mem_le_scan_enable
+0x43e3 mem_le_scan_interval
+0x43e5 mem_le_scan_window
+0x43e7 mem_le_adv_data_len
+0x43e8 mem_le_adv_data
+0x4407 mem_le_scan_data_len
+0x4408 mem_le_scan_data
+0x4427 mem_le_adv_enable
+0x4428 mem_le_adv_param
+0x4428 mem_le_adv_interval
+0x442a mem_le_adv_type
+0x442b mem_le_adv_own_addr_type
+0x442c mem_le_adv_direct_addr
+0x4432 mem_le_adv_channel_map
+0x4433 mem_le_scan_params
+0x4433 mem_le_scan_type
+0x4434 mem_le_scan_own_addr_type
+0x4435 mem_le_l2cap_att_states
+0x4436 mem_le_att_opcode
+0x4437 mem_le_att_handle
+0x4439 mem_le_search_res
+0x443a mem_le_local_feature
+0x4442 mem_le_tx_phys
+0x4443 mem_le_rx_phys
+0x4444 mem_remote_rx_max_octets
+0x4446 mem_remote_rx_max_time
+0x4448 mem_remote_tx_max_octets
+0x444a mem_remote_tx_max_time
+0x444c mem_local_rx_max_octets
+0x444e mem_local_rx_max_time
+0x4450 mem_local_tx_max_octets
+0x4452 mem_local_tx_max_time
+0x4454 mem_app_handshake_flag
+0x4455 mem_sniff_param_interval
+0x4457 mem_sniff_param_attempt
+0x4459 mem_sniff_param_timeout
+0x445b mem_cb_check_wakelock
+0x445d mem_cb_before_hibernate
+0x445f mem_cb_before_lpm
+0x4461 mem_cb_le_process
+0x4463 mem_cb_bt_process
+0x4465 mem_cb_idle_process
+0x4467 mem_cb_bb_event_process
+0x4469 mem_cb_discovry_timeout
+0x446b mem_cb_att_write
+0x446d mem_cb_ble_transmit
+0x446f mem_cb_event_timer
+0x4471 mem_cb_bt_set_mult
+0x4473 mem_cb_spi_flash_write_complate
+0x4475 mem_cb_spi2_flash_write_complate
+0x4477 mem_cb_bt_slave_match
+0x4479 mem_cb_before_lpm_sleep
+0x447b mem_eeprom_base
+0x447d mem_unsniff2sniff_timer_count
+0x447e mem_wake_up_delay_timer
+0x447f mem_app_connection_options
+0x4480 mem_app_disconn_reason
+0x4482 mem_app_disconn_reason_flag
+0x4484 mem_xrecord_mode
+0x4485 mem_eeprom_block_size
+0x4486 mem_spi_init_clk
+0x4487 mem_spi_init_delay_time
+0x4488 mem_spi_ncs_gpio
+0x4489 mem_nv_data_ptr
+0x448b mem_nv_data_number
+0x448c mem_queue_ptr
+0x448e mem_ui_led_struct_num
+0x448f mem_ui_led_struct_ptr
+0x4491 mem_adc_wait_count
+0x4492 mem_3v_adc_io_data
+0x4494 mem_2v_adc_hvin_data
+0x4496 mem_2v_adc_vinlpm_data
+0x4498 mem_1v_adc_io_data
+0x449a mem_3v_adc_hvin_data
+0x449c mem_3v_adc_vinlpm_data
+0x449e mem_app_adc_read_count
+0x449f mem_start_adc_clkn
+0x44a0 mem_reference_voltage
+0x44a2 mem_adc_config_flag
+0x44a3 mem_adc_channel
+0x44a4 mem_adc_current_value
+0x44a6 mem_adc_power_flag//bit0:low power falg ; bit1:no power flag
+0x44a7 mem_spi_write_addr
+0x44aa mem_spi_write_ptr
+0x44ac mem_spi_write_len
+0x44ae mem_spi_write_flash_sm
+0x44af mem_spi2_write_addr
+0x44b2 mem_spi2_write_ptr
+0x44b4 mem_spi2_write_len
+0x44b6 mem_spi2_write_flash_sm
+0x44b7 mem_spi_cs_gpio
+0x44b8 mem_spi_si_gpio
+0x44b9 mem_spi_so_gpio
+0x44ba mem_spi_sclk_gpio
+0x44bb mem_spi_wp_gpio
+0x44bc mem_spi_hold_gpio
+0x44bd mem_spi2_cs_gpio
+0x44be mem_spi2_si_gpio
+0x44bf mem_spi2_so_gpio
+0x44c0 mem_spi2_sclk_gpio
+0x44c1 mem_spi2_wp_gpio
+0x44c2 mem_spi2_hold_gpio
+0x44c3 mem_eeprom_wp_gpio
+0x44c4 mem_eeprom_scl_gpio
+0x44c5 mem_eeprom_sda_gpio
+0x44c6 mem_kscan_ptr
+0x44c8 mem_key_num_ptr
+0x44c8 mem_keyscan_ptr
+0x44ca mem_key_value_retention
+0x44cc mem_power_param_ptr
+0x44ce mem_efuse_header
+0x44d1 mem_seqi
+0x44d2 mem_dig_aon_vsel
+0x44d3 mem_syn_afc_cfg1
+0x44d4 mem_rf_ldo_cfg1
+0x44d5 mem_rc_cal
+0x44d6 mem_nec_decode_error_value
+0x44d7 mem_rf_debug_rx_gpio
+0x44d8 mem_rf_debug_tx_gpio
+0x44d9 mem_l2cap_xmem_start
+0x44d9 mem_l2cap_tx_multi_offset//0 means single packet
+0x44db mem_sdp_remote_cid
+0x44dd mem_rfcomm_remote_cid
+0x44df mem_hid_ctrl_remote_cid
+0x44e1 mem_hid_int_remote_cid
+0x44e3 mem_sdp_state
+0x44e4 mem_rfcomm_state
+0x44e5 mem_hid_control_state
+0x44e6 mem_hid_interrupt_state
+0x44e7 mem_spp_state
+0x44e8 mem_ML2CAP_comm_id
+0x44e9 mem_used_map
+0x44ea mem_tx_fifo0
+0x44ea mem_tx_fifo0_map
+0x44eb mem_tx_fifo0_ptr
+0x44ed mem_tx_fifo1
+0x44ed mem_tx_fifo1_map
+0x44ee mem_tx_fifo1_ptr
+0x44f0 mem_tx_fifo2
+0x44f0 mem_tx_fifo2_map
+0x44f1 mem_tx_fifo2_ptr
+0x44f3 mem_tx_fifo3
+0x44f3 mem_tx_fifo3_map
+0x44f4 mem_tx_fifo3_ptr
+0x44f6 mem_tx_fifo_end
+0x44f6 mem_l2cap_lpm_txbuf
+0x45f6 mem_l2cap_flow_ctrl_flag
+0x45f7 mem_l2cap_pending_item
+0x45f8 mem_l2cap_rcv_hidtype
+0x45f9 mem_l2cap_xmem_end
+0x45f9 mem_lmo_header_opcode_x
+0x45fa mem_lmp_version
+0x45fb mem_lmp_compid
+0x45fd mem_lmp_subversion
+0x45ff mem_local_name_length
+0x4600 mem_local_name
+0x4603 mem_local_name2
+0x4643 mem_local_name_end
+0x4644 mem_unsniff2sniff_timer
+0x4645 mem_switch_flag
+0x4646 mem_classic_bt_flag
+0x4647 mem_encapsulated_major_type
+0x4648 mem_encapsulated_minor_type
+0x4649 mem_encapsulated_len
+0x464a mem_remote_br_sc_support
+0x464b mem_pn_dlci
+0x464c mem_pn_max_frame_size
+0x464e memFCStemp1
+0x464f memFCStemp2
+0x4650 memFCStemp3
+0x4651 mem_rfcomm_initiator
+0x4652 mem_remote_spp_channel
+0x4653 mem_HIUfcs_SPP
+0x4654 mem_HIUfcs_SPP_WCredits
+0x4655 mem_rfcomm_send_more_pkt
+0x4656 mem_remote_credits
+0x4657 mem_credit_given
+0x4658 mem_ms_channel
+0x4659 mem_rfcomm_credit_flag
+0x465a mem_rfcomm_max_frame_size
+0x465c mem_rfcomm_credit_init_data
+0x465d mem_cb_receive_spp_data
+0x465f mem_nl_rx_data_src
+0x4661 mem_nl_rx_len_all
+0x4663 mem_ui_uuid_table
+0x4665 mem_all_uuid_16bits
+0x467b mem_all_uuid_128bits
+0x469d mem_sdp_l2capch_ptr
+0x469f mem_ccm_pcnt_tx
+0x46a4 mem_ccm_pcnt_rx
+0x46a9 mem_ccm_last_mic
+0x46ad mem_ccm_iv
+0x46ad mem_ccm_ivm
+0x46b1 mem_ccm_ivs
+0x46b5 mem_ccm_len
+0x46b7 mem_ccm_rx_ptr
+0x46b9 mem_sc_only_mode
+0x46ba mem_sp_debug_mode
+0x46bb mem_secure_connections_enable
+0x46bc mem_sp_local_key_invalid
+0x46bd mem_sc_calc
+0x46be mem_sc_local_key_invalid
+0x46bf mem_sc_private_key_256
+0x46df mem_sc_pubkey_local_x_256
+0x46ff mem_sc_pubkey_local_y_256
+0x471f mem_sp_private_key
+0x4737 mem_sp_pubkey_local
+0x4737 mem_sp_pubkey_local_x
+0x474f mem_sp_pubkey_local_x_end
+0x474f mem_sp_pubkey_local_y
+0x4767 mem_ssp_enable
+0x4768 mem_lmp_io_cap_payload_iocap
+0x4769 mem_lmp_io_cap_payload_oob_auth_data
+0x476a mem_lmp_io_cap_payload_auth_req
+0x476b mem_sp_state_xmem
+0x476b mem_sp_iocap_remote
+0x476e mem_flag_mode_ssp_pin
+0x476f mem_ssp_mode_flag
+0x4770 mem_authentication_passkey_times
+0x4771 mem_passkey_1bit
+0x4772 mem_flag_pairing_state
+0x4773 mem_sp_state_xmem_end
+0x4773 mem_ipc_lock_bt
+0x4774 mem_ipc_lock_c51
+0x4775 mem_ipc_fifo_bt2c51
+0x477d mem_ipc_fifo_c512bt
+0x4785 mem_ui_button_timer
+0x4786 mem_ui_button_last_state
+0x4787 mem_ui_timer_last_btclk
+0x478b mem_discovery_timeout_timer_count
+0x478d mem_hid_handshake_timer_count
+0x478e memui_reconnect_mode
+0x478f mem_ui_state_map
+0x4791 mem_ui_profile_supported
+0x4792 mem_ui_button_timeout
+0x4793 mem_ui_button_gpio
+0x4794 mem_discovery_timeout
+0x4796 mem_pin_length
+0x4797 mem_pin
+0x47a7 mem_dummy
+0x47aa mem_seq
+0x47ab mem_context_cnt
+0x47ac mem_context_map
+0x47ad mem_context_new
+0x4aad mem_att_cmd_len
+0x4aae mem_att_cmd
+0x4abd mem_att_resp_handle
+0x4abe mem_att_resp_len
+0x4abf mem_att_resp
+0x4add mem_meter_att_list
+0x47a7 mem_mesh_vendor_mesh_receive_tid
+0x47a8 mem_mesh_vendor_mesh_send_tid
+0x47a9 mem_mesh_vendor_timer_current_time
+0x47ad mem_system_time
+0x47b1 mem_mesh_adv_data_len
+0x47b2 mem_mesh_adv_data
+0x47d1 mem_mesh_adv_scan_channel
+0x47d2 mem_mesh_advertising_unprovisioned_device_beacon_switch
+0x47d3 mem_mesh_advertising_unprovisioned_device_beacon_timer
+0x47d5 mem_mesh_advertising_unprovisioned_device_beacon_duration
+0x47d6 mem_mesh_advertising_unprovisioned_device_beacon_interval
+0x47d7 mem_mesh_calc_ConfirmationCloud_data
+0x47d7 mem_mesh_ConfirmationCloud_RandomB
+0x47df mem_mesh_ConfirmationCloud_RandomA
+0x47e7 mem_mesh_AuthValueProv
+0x47f7 mem_mesh_ConfirmationCloud
+0x4807 mem_mesh_ConfirmationDevice
+0x4807 mem_mesh_calc_ConfirmationDevice_data
+0x4807 mem_mesh_provisioning_random_A
+0x480f mem_mesh_provisioning_random_B
+0x4817 mem_mesh_AuthValueDevice
+0x4827 mem_mesh_Device_Key
+0x4837 mem_mesh_Confirmationkey
+0x4847 mem_mesh_sha256_ConfirmationKey_ascii
+0x4856 mem_mesh_sha256_SessionKey_ascii
+0x4860 mem_mesh_sha256_DeviceKey_ascii
+0x4869 mem_mesh_sha256_load_first_data_flag
+0x486a mem_mesh_sha256_data_len_byte
+0x4872 mem_mesh_sha256_data_len_bit
+0x487a mem_mesh_sha256_data_end_addr
+0x487c mem_mesh_sha256_data_len_addr
+0x487e mem_mesh_sha256_chunk_count
+0x487f mem_mesh_sha256_chunk_data_ptr
+0x4881 mem_mesh_sha256_chunk_ptr
+0x4883 mem_k2_P_len
+0x4884 mem_k2_P
+0x4894 mem_k2_N
+0x48a4 mem_k2_SALT
+0x48b4 mem_k2_T
+0x48c4 mem_k2_T0
+0x48c4 mem_k2_T1
+0x48d4 mem_k2_NID
+0x48d5 mem_k2_T3
+0x48e5 mem_k2_T2
+0x48f5 mem_k4_SALT
+0x4905 mem_k4_T
+0x4915 mem_k4_id6_01
+0x4925 mem_k4_k4N
+0x4935 mem_mesh_transport_AID
+0x4936 mem_k3_SALT
+0x4946 mem_k3_T
+0x4956 mem_k3_id64_01
+0x495b mem_k3_k4N
+0x4963 mem_mesh_network_id
+0x496b mem_mesh_provisioned_flag
+0x496c mem_mesh_Provisioning_State_Flag
+0x496d mem_mesh_Device_PID
+0x496e mem_mesh_UUID_FeatureFlag
+0x496f mem_mesh_PDU_RFU
+0x4971 mem_mesh_OOB_information
+0x4973 mem_mesh_Encrypt_Provisioning_Data
+0x4973 mem_mesh_provisioning_data_Mac_addr
+0x4975 mem_mesh_KeyFresh_and_Update_flag
+0x4976 mem_mesh_Network_Key
+0x4986 mem_mesh_last_IV_Index_byte
+0x4987 mem_mesh_Unicast_Address
+0x4989 mem_mesh_adv_last_time
+0x498d mem_mesh_send_packet_timeout
+0x498f mem_mesh_gatt_package_send_msg_id
+0x4990 mem_mesh_gatt_receive_msg_timer
+0x4991 mem_mesh_gatt_packet_receive_msg_buffer1
+0x49b2 mem_mesh_gatt_packet_receive_msg_buffer2
+0x49d3 mem_mesh_three_tuple_ProductID
+0x49d7 mem_mesh_three_tuple_MAC
+0x49dd mem_mesh_three_tuple_secret
+0x49ed mem_mesh_cb_receive_advertising
+0x49ef mem_mesh_cb_receive_access_message
+0x49f1 mem_mesh_cb_receive_config_appkey_add
+0x49f3 mem_mesh_cb_pairing_fail
+0x49f5 mem_mesh_cb_recv_vendor
+0x49f7 mem_mesh_scan_selete_next_ch
+0x49f9 mem_mesh_cb_generic_onoff_get
+0x49fb mem_mesh_cb_generic_onoff_set
+0x49fd mem_mesh_cb_scene_recall
+0x49ff mem_mesh_cb_light_lightness_set
+0x4a01 mem_mesh_cb_light_lightness_get
+0x4a03 mem_mesh_cb_light_ctl_set
+0x4a05 mem_mesh_cb_main_light_onoff_set
+0x4a07 mem_mesh_cb_background_onoff_set
+0x4a09 mem_mesh_cb_color_set
+0x4a0b mem_mesh_cb_network_relay
+0x4a0d mem_mesh_cb_receive_node_reset
+0x4a0f mem_mesh_cb_seq_changed
+0x4a11 mem_mesh_cb_subscriptuion_list_changed
+0x4a13 mem_mesh_cb_vendor_timing_changed
+0x4a15 mem_mesh_core_feature
+0x4a17 mem_mesh_element_number
+0x4a18 mem_mesh_element_device_ptr
+0x4a1a mem_mesh_element_device_length
+0x4a1c mem_mesh_segmented_access_message_SZMIC
+0x4a1d mem_mesh_segmented_access_message_SeqZero
+0x4a1f mem_mesh_segmented_access_message_SegO
+0x4a20 mem_mesh_segmented_access_message_SegN
+0x4a21 mem_mesh_segmented_access_message_BlockAck
+0x4a25 mem_mesh_segmented_access_message_receive_finish
+0x4a26 mem_mesh_segmented_access_message_current_length
+0x4a27 mem_mesh_segmented_access_message_SegN_upper_limit
+0x4a28 mem_mesh_segmented_access_message_Segment_ptr
+0x4a2a mem_mesh_last_CTL_Temperature
+0x4a2c mem_mesh_receive_group_address
+0x4a2d mem_mesh_receive_element_number
+0x4a2e mem_mesh_IV_Index
+0x4a32 mem_mesh_TMALL_cache_start
+0x4a32 mem_mesh_TMALL_SRC1
+0x4a34 mem_mesh_TMALL_SEQ1
+0x4a37 mem_mesh_TMALL_cache
+0x4a64 mem_mesh_TMALL_cache_end
+0x4a64 mem_mesh_transport_message_mic_cache
+0x4a64 mem_mesh_transport_message_mic_cache_buff1
+0x4a68 mem_mesh_transport_message_mic_cache_buff2_10
+0x4a8c mem_mesh_network_relay_queue
+0x4a8c mem_mesh_network_relay_queue_each_size
+0x4a8d mem_mesh_network_relay_queue_length
+0x4a8e mem_mesh_network_relay_queue_current_num
+0x4a8f mem_mesh_network_relay_queue_read_ptr
+0x4a90 mem_mesh_network_relay_queue_write_ptr
+0x4a91 mem_mesh_network_relay_queue_ele
+0x4b19 mem_mesh_application_key
+0x4b29 mem_mesh_ASZMIC
+0x4b2a mem_mesh_access_message_mic_cache
+0x4b2a mem_mesh_access_message_mic_cache_buff1
+0x4b2e mem_mesh_access_message_mic_cache_buff2_10
+0x4b52 mem_mesh_send_message_SEQ
+0x4b55 mem_mesh_send_message_SRC
+0x4b57 mem_mesh_send_message_TTL
+0x4b58 mem_mesh_send_upper_layer_IVI_and_NID
+0x4b59 mem_mesh_send_upper_layer_CTL_and_TTL
+0x4b5a mem_mesh_send_upper_layer_SEQ
+0x4b5d mem_mesh_send_upper_layer_SRC
+0x4b5f mem_mesh_send_upper_layer_DST
+0x4b61 mem_mesh_send_access_lower_transport_layer
+0x4b71 mem_mesh_send_network_layer_NetMIC
+0x4b75 mem_mesh_element_device
+0x4b75 mem_mesh_element_device_group_addr
+0x4b77 mem_mesh_element_device_queue_buffer_ptr
+0x4b79 mem_mesh_element_device_timing_ptr
+0x4b7b mem_mesh_element_device_element_subscription_label
+0x4b8b mem_mesh_element_upper_adv_flag
+0x4b8c mem_mesh_element_upper_queue_buffer_ptr
+0x4b8e mem_mesh_element_tran_package_tid
+0x4b8f mem_mesh_element_tran_package_type
+0x4b90 mem_mesh_element_device1
+0x4bab mem_mesh_element_device2
+0x4bc6 mem_mesh_segmented_access_message_Segment
+0x4bea mem_mesh_element_device_queue_each_size
+0x4beb mem_mesh_element_device_queue_length
+0x4bec mem_mesh_element_device_queue_current_num
+0x4bed mem_mesh_element_device_queue_read_ptr
+0x4bee mem_mesh_element_device_queue_write_ptr
+0x4bef mem_mesh_element_device_queue_ele
+0x4c77 mem_mesh_element_device_upper_queue_each_size
+0x4c78 mem_mesh_element_device_upper_queue_length
+0x4c79 mem_mesh_element_device_upper_queue_current_num
+0x4c7a mem_mesh_element_device_upper_queue_read_ptr
+0x4c7b mem_mesh_element_device_upper_queue_write_ptr
+0x4c7c mem_mesh_element_device_upper_queue_ele
+0x4d38 mem_mesh_le_att_list
+0x47a7 mem_antl_lpm_interval
+0x47a9 mem_antl_adv_interval
+0x47ab mem_antl_slow_adv_lpm_interval
+0x47ad mem_antl_slow_adv_adv_interval
+0x47af mem_antl_led_style
+0x47af mem_antl_led_type
+0x47b0 mem_antl_led_blink_count
+0x47b1 mem_antl_led_gpio
+0x47b2 mem_antl_led_on_time
+0x47b4 mem_antl_led_off_time
+0x47b6 mem_antl_led_cb_on
+0x47b8 mem_antl_led_cb_off
+0x47ba mem_antl_buzzer_style
+0x47ba mem_antl_buzzer_type
+0x47bb mem_antl_buzzer_blink_count
+0x47bc mem_antl_buzzer_gpio
+0x47bd mem_antl_buzzer_on_time
+0x47bf mem_antl_buzzer_off_time
+0x47c1 mem_antl_buzzer_cb_on
+0x47c3 mem_antl_buzzer_cb_off
+0x47c5 mem_antl_fast_adv_led_style
+0x47c5 mem_antl_fast_adv_led_type
+0x47c6 mem_antl_fast_adv_led_blink_count
+0x47c7 mem_antl_fast_adv_led_gpio
+0x47c8 mem_antl_fast_adv_led_on_time
+0x47ca mem_antl_fast_adv_led_off_time
+0x47cc mem_antl_slow_adv_led_style
+0x47cc mem_antl_slow_adv_led_type
+0x47cd mem_antl_slow_adv_led_blink_count
+0x47ce mem_antl_slow_adv_led_gpio
+0x47cf mem_antl_slow_adv_led_on_time
+0x47d1 mem_antl_slow_adv_led_off_time
+0x47d3 mem_antl_power_starting_led_style
+0x47d3 mem_antl_power_starting_led_type
+0x47d4 mem_antl_power_starting_led_blink_count
+0x47d5 mem_antl_power_starting_led_gpio
+0x47d6 mem_antl_power_starting_led_on_time
+0x47d8 mem_antl_power_starting_led_off_time
+0x47da mem_antl_power_starting_buzzer_style
+0x47e1 mem_antl_power_off_led_style
+0x47e1 mem_antl_power_off_led_type
+0x47e2 mem_antl_power_off_led_link_count
+0x47e3 mem_antl_power_off_led_gpio
+0x47e4 mem_antl_power_off_led_on_time
+0x47e6 mem_antl_power_off_led_off_time
+0x47e8 mem_antl_power_off_buzzer_style
+0x47e8 mem_antl_power_off_buzzer_type
+0x47e9 mem_antl_power_off_buzzer_link_count
+0x47ea mem_antl_power_off_buzzer_gpio
+0x47eb mem_antl_power_off_buzzer_on_time
+0x47ed mem_antl_power_off_buzzer_off_time
+0x47ef mem_antl_alert_led_stlye
+0x47f6 mem_antl_alert_buzzer_stlye
+0x47f6 mem_antl_alert_buzzer_type
+0x47f7 mem_antl_alert_buzzer_blink_count
+0x47f8 mem_antl_alert_buzzer_gpio
+0x47f9 mem_antl_alert_buzzer_on_time
+0x47fb mem_antl_alert_buzzer_off_time
+0x47fd mem_antl_key_led_style
+0x47fd mem_antl_key_led_type
+0x47fe mem_antl_key_led_blink_count
+0x47ff mem_antl_key_led_gpio
+0x4800 mem_antl_key_led_on_time
+0x4802 mem_antl_key_led_off_time
+0x4804 mem_antl_key_buzzer_style
+0x480b mem_antl_queue_width
+0x480c mem_antl_queue_depth
+0x480d mem_antl_queue_curr_num
+0x480e mem_antl_queue_read_ptr
+0x480f mem_antl_queue_write_ptr
+0x4810 mem_antl_queue_buff
+0x4860 mem_antl_key_scan_enable
+0x4861 mem_antl_led_num
+0x4862 mem_antl_led_gpio_map
+0x4866 mem_antl_power_param
+0x4866 mem_antl_power_state
+0x4867 mem_antl_power_timer
+0x4868 mem_antl_power_off_timeout
+0x4869 mem_antl_power_starting_timeout
+0x486a mem_antl_power_off_cb
+0x486c mem_antl_power_starting_cb
+0x486e mem_antl_power_standby_cb
+0x4870 mem_event_button_up_cb
+0x4872 mem_antl_key_num
+0x4873 mem_cb_antl_key
+0x4875 mem_antl_key_conf0
+0x4879 mem_antl_key0_press
+0x4888 mem_antl_key0_release
+0x4897 mem_antl_conn_updata_procedure_state
+0x4898 mem_client_characteristic_configuration_descriptor
+0x489a mem_adc_timer
+0x489c mem_antl_conn_update_timer
+0x489d mem_antl_send_updata_le_param_timer
+0x489e mem_antl_le_sleep_timer
+0x48a0 mem_antl_fast_adv_timer
+0x48a2 mem_antl_fast_adv_timeout
+0x48a4 mem_antl_le_sleep_timeout
+0x48a6 mem_double_click_timer
+0x48a7 mem_butten_click_cnt
+0x48a8 mem_antl_led_state
+0x48a9 mem_antl_buzzer_state
+0x48aa mem_antl_key_state
+0x48ab mem_antl_lost_mode
+0x48ac mem_alarm_config
+0x48ad mem_alarm_config_notfy_cnt
+0x48ae mem_buzzer_pwm_conf
+0x48b4 mem_adc_timeout
+0x48b6 mem_voltage_remain_percent
+0x48b7 mem_battery_calculate_set
+0x48b7 mem_battery_full_voltage
+0x48b9 mem_battery_empty_voltage
+0x48bb mem_battery_low_voltage
+0x48bd mem_battery_current_voltage
+0x48bf mem_rx_window_sniff_inc
+0x48c1 mem_interval_increment
+0x48c3 mem_antl_le_interval_min
+0x48c5 mem_antl_le_interval_max
+0x48c7 mem_antl_le_latency
+0x48c9 mem_antl_le_timeout
+0x48cb mem_antl_le_unnormal_interval_min
+0x48cd mem_antl_le_unnormal_interval_max
+0x48cf mem_antl_le_unnormal_latency
+0x48d1 mem_antl_le_unnormal_timeout
+0x48d3 mem_AntiLost_le_att_list
+0x4a63 mem_lestate_update_param_flag
+0x4a64 mem_antilost_conn_battery_send_timer
+0x4a65 mem_antl_disconn_buzzer_on_timer
+0x4a67 mem_antl_disconn_buzzer_on_timeout
+0x47a7 mem_24g_rxbuf
+0x47c9 mem_24g_txbuf
+0x47e9 mem_24g_txpayload
+0x480d mem_24g_rxpayload
+0x482d mem_24g_rxdata_length
+0x482e mem_24g_pid
+0x482f mem_24g_no_ack
+0x4830 mem_24g_sta_crc
+0x4833 mem_24g_last_crc
+0x4836 mem_24g_sta_pid
+0x4837 mem_24g_last_pid
+0x4838 mem_24g_datalen
+0x4839 mem_24g_data_type
+0x483a mem_24g_txlen
+0x483b mem_24g_rx_window
+0x483d mem_24g_ch
+0x483e mem_24g_current_ch_number
+0x483f mem_24g_addr
+0x4843 mem_24g_ch_map1
+0x4847 mem_24g_ch_map2
+0x484b mem_24g_ch_map3
+0x484f mem_24g_ch_map4
+0x4853 mem_24g_tx_btclk
+0x4857 mem_24g_interval
+0x4858 mem_24g_interval_min
+0x4859 mem_24g_interval_max
+0x485a mem_24g_syncword
+0x485c mem_24g_syncword_crc8
+0x485d mem_24g_get_syncword_crc8
+0x485e mem_24g_pair_switch
+0x485f mem_24g_enter_hibernate
+0x4867 mem_24g_rx_phy
+0x4868 mem_24g_tx_phy
+0x4869 mem_24g_ch_map_update
+0x486a mem_24g_ch_update_map1
+0x486e mem_24g_ch_update_map2
+0x4872 mem_24g_ch_update_map3
+0x4876 mem_24g_ch_update_map4
+0x487a mem_24g_disable_fec1
+0x487b mem_24g_pair_addr
+0x487f mem_24g_pair_ch
+0x4880 mem_24g_pair_tx_power
+0x4881 mem_rssi_buff_index
+0x4882 mem_24g_device1_bind_step
+0x4883 mem_24g_device2_bind_step
+0x4884 mem_24g_bind_device_status
+0x4885 mem_24g_bind_payload
+0x488d mem_cb_24g_receive_process
+0x488f mem_cb_24g_ackpayload
+0x4891 mem_cb_24g_data_device1
+0x4893 mem_cb_24g_data_device2
+0x4895 mem_24g_rxdata_temp
+0x48b7 mem_24g_abort_packet
+0x48b8 mem_24g_hop_btclk
+0x48bc mem_24g_hop_interval
+0x48bd mem_24g_pair_mode
+0x48be mem_24g_ackpayload_enable
+0x48bf mem_24g_hop_packet
+0x48c0 mem_24g_mode_switch
+0x48c1 mem_24g_nodata_timer_enable
+0x48c2 mem_24g_mode_init
+0x48c3 mem_24g_work_mode
+0x48c4 mem_24g_time_slice
+0x48c5 mem_24g_self_last_ch
+0x48c6 mem_24g_self_ch_number
+0x48c7 mem_24g_self_config_ch_once
+0x48c8 mem_24g_device1_last_ch
+0x48c9 mem_24g_device1_ch_number
+0x48ca mem_24g_device1_config_ch_once
+0x48cb mem_24g_device2_last_ch
+0x48cc mem_24g_device2_ch_number
+0x48cd mem_24g_device2_config_ch_once
+0x48ce mem_24g_led_status
+0x48cf mem_24g_bind_mode_continue
+0x48d0 mem_tx_power_temp
+0x48d1 mem_24g_mode_B_S_switch
+0x48d2 mem_24g_mode_B_S_switch_init
+0x48d3 mem_24g_mode_B_S_switch_cnt
+0x48d5 mem_24g_mode_B_S_switch_exit
+0x48d6 mem_24g_B_S_time_slice
+0x48d7 mem_24g_B_S_mode_switch_disable
+0x48d8 mem_24g_bind_device_living
+0x48d9 mem_24g_transmitter_addr
+0x48dd mem_24g_device1_addr
+0x48e1 mem_24g_device2_addr
+0x48e5 mem_rssi_noise_avg
+0x48e6 mem_rssi_noise_index
+0x48e7 mem_rssi_noise_self_avg
+0x48e8 mem_rssi_noise_device1_avg
+0x48e9 mem_rssi_noise_device2_avg
+0x48ea mem_rssi_noise_self_index
+0x48eb mem_rssi_noise_device1_index
+0x48ec mem_rssi_noise_device2_index
+0x48ed mem_rssi_noise_buffer_ptr
+0x48ef mem_rssi_noise_self_buffer_ptr
+0x48f1 mem_rssi_noise_device1_buffer_ptr
+0x48f3 mem_rssi_noise_device2_buffer_ptr
+0x48f5 mem_car_hard_soft_switch
+0x48f6 mem_car_queue_each_size
+0x48f7 mem_car__queue_length
+0x48f8 mem_car_queue_curr_num
+0x48f9 mem_car_queue_read_ptr
+0x48fa mem_car_queue_write_ptr
+0x48fb mem_car_queue_ele
+0x4973 mem_car_pop_queue_buff
+0x4987 mem_car_led_num
+0x4988 mem_car_led_map
+0x4992 mem_car_style1_led_type
+0x4993 mem_car_style1_blink_count
+0x4994 mem_car_style1_struct_led_gpio
+0x4995 mem_car_style1_on_time
+0x4997 mem_car_style1_off_time
+0x4999 mem_car_style1_cb_ledon
+0x499b mem_car_style1_cb_ledoff
+0x499d mem_car_style2_led_type
+0x499e mem_car_style2_blink_count
+0x499f mem_car_style2_struct_led_gpio
+0x49a0 mem_car_style2_on_time
+0x49a2 mem_car_style2_off_time
+0x49a4 mem_car_style2_cb_ledon
+0x49a6 mem_car_style2_cb_ledoff
+0x49a8 mem_le_receive_data
+0x49a8 mem_le_receive_packet_head
+0x49aa mem_le_receive_cmd
+0x49ab mem_le_receive_length
+0x49ad mem_le_receive_payload
+0x49b7 mem_le_receive_checksum
+0x49b8 mem_motor1_status
+0x49b9 mem_motor1_speed
+0x49ba mem_motor2_status
+0x49bb mem_motor2_speed
+0x49bc mem_motor3_status
+0x49bd mem_motor3_speed
+0x49be mem_motor1_pwm_set
+0x49be mem_motor1_pwm_pin1_set
+0x49bf mem_motor1_pwm_pin2_set
+0x49c0 mem_motor1_pwm_pin_set
+0x49c1 mem_motor1_pwm_channel_set
+0x49c2 mem_motor1_pwm_freq_set
+0x49c5 mem_motor1_pwm_dute_set
+0x49c6 mem_motor2_pwm_set
+0x49c6 mem_motor2_pwm_pin1_set
+0x49c7 mem_motor2_pwm_pin2_set
+0x49c8 mem_motor2_pwm_pin_set
+0x49c9 mem_motor2_pwm_channel_set
+0x49ca mem_motor2_pwm_freq_set
+0x49cd mem_motor2_pwm_dute_set
+0x49ce mem_motor3_pwm_set
+0x49ce mem_motor3_pwm_pin1_set
+0x49cf mem_motor3_pwm_pin2_set
+0x49d0 mem_motor3_pwm_pin_set
+0x49d1 mem_motor3_pwm_channel_set
+0x49d2 mem_motor3_pwm_freq_set
+0x49d5 mem_motor3_pwm_dute_set
+0x49d6 mem_motor_select_p_n
+0x49d7 mem_car_motor_status
+0x49d8 mem_car_motor_speed
+0x49d9 mem_motor_pwm_set
+0x49d9 mem_motor_pwm_pin1_set
+0x49da mem_motor_pwm_pin2_set
+0x49db mem_motor_pwm_pin_set
+0x49dc mem_motor_pwm_channel_set
+0x49dd mem_motor_pwm_freq_set
+0x49e0 mem_motor_pwm_dute_set
+0x49e1 mem_ir_rx_gpio
+0x49e2 mem_ir_data
+0x49e4 mem_ir_rx_buf
+0x49e6 mem_ir_receive_clkn
+0x49ea mem_ir_notify_data
+0x49ed mem_ir_notify_data_head
+0x49f2 mem_ir_notify_data_payload
+0x49f4 mem_ir_notify_data_check_sum
+0x49f5 mem_car_ir_breakdown_check_timer
+0x49f6 mem_car_ir_breakdown_flag
+0x49f7 mem_car_led_control
+0x49f7 mem_car_led1_status
+0x49f8 mem_car_led2_status
+0x49f9 mem_car_led3_status
+0x49fa mem_car_led4_status
+0x49fb mem_car_led5_status
+0x49fc mem_car_led6_status
+0x49fd mem_car_led7_status
+0x49fe mem_car_led8_status
+0x49ff mem_car_led_control_timer
+0x4a00 mem_car_led_blink_status
+0x4a01 mem_car_led_no
+0x4a02 mem_car_info_request
+0x4a05 mem_car_info_request_head
+0x4a0a mem_car_info_request_payload
+0x4a12 mem_car_info_request_checksum
+0x4a13 mem_car_config_param
+0x4a13 mem_car_config_setting_flag
+0x4a14 mem_car_config_device_select
+0x4a15 mem_car_config_motor_layout
+0x4a16 mem_car_config_ir_enable
+0x4a17 mem_car_config_ir_rx_gpio
+0x4a18 mem_car_config_pairing_led_conn_status
+0x4a19 mem_car_config_pairing_led_gpio
+0x4a1a mem_car_config_led_num
+0x4a1b mem_car_config_blood_led_gpio
+0x4a1b mem_car_config_blood_led1_gpio
+0x4a1c mem_car_config_blood_led2_gpio
+0x4a1d mem_car_config_blood_led3_gpio
+0x4a1e mem_car_config_blood_led4_gpio
+0x4a1f mem_car_config_blood_led5_gpio
+0x4a20 mem_car_config_blood_led6_gpio
+0x4a21 mem_car_config_blood_led7_gpio
+0x4a22 mem_car_config_blood_led8_gpio
+0x4a23 mem_car_config_bat_notify_enable
+0x4a24 mem_car_config_low_voltage_led_gpio
+0x4a25 mem_car_config_low_voltage_percent
+0x4a26 mem_car_config_soft_switch_enable
+0x4a27 mem_car_config_soft_switch_gpio
+0x4a28 mem_car_notify_vdd_count
+0x4a29 mem_car_notify_vdd_timer
+0x4a2a mem_car_notify_vdd_value_last
+0x4a2b mem_car_notify_vdd_percent
+0x4a2c mem_car_working_flag
+0x4a2d mem_low_bat_flag
+0x4a2e mem_notify_bat_packet
+0x4a31 mem_notify_bat_head
+0x4a36 mem_notify_bat_payload
+0x4a37 mem_notify_bat_check_sum
+0x4a38 mem_vdd_notify_flag
+0x4a39 mem_car_current_vdd_value_temp
+0x4a3b mem_car_last_vdd_value
+0x4a3d mem_vdd_calculate_set
+0x4a3d mem_vdd_full_vol
+0x4a3f mem_vdd_empty_vol
+0x4a41 mem_vdd_low_vol
+0x4a43 mem_vdd_now_vol
+0x4a45 mem_car_24g_status
+0x4a46 mem_car_24g_no_data_timeout_count
+0x4a48 mem_car_24g_no_data_timeout_timer
+0x4a4a mem_car_24g_ir_receive_attack_count
+0x4a4b mem_car_24g_go_die_flag
+0x4a4c mem_car_attack_shake_timer
+0x4a4d mem_car_attack_shake_flag
+0x4a4e mem_car_soft_power
+0x4a4e mem_car_power_state
+0x4a4f mem_car_power_timer
+0x4a50 mem_car_power_off_timeout
+0x4a51 mem_car_power_starting_timeout
+0x4a52 mem_car_power_off_cb
+0x4a54 mem_car_power_starting_cb
+0x4a56 mem_car_power_standby_cb
+0x4a58 mem_car_ui_button_up_cb
+0x4a5a mem_car_le_att_list
+0x4c4e mem_car_moto1_blank_timer
+0x4c4f mem_car_moto2_blank_timer
+0x4c50 mem_car_moto3_blank_timer
+0x4c51 mem_car_motor_gpio_num
+0x4c52 mem_car_motor_gpio_map
+0x4c52 mem_car_motor_left_gpio
+0x4c53 mem_car_motor_right_gpio
+0x4c54 mem_car_motor_front_gpio
+0x4c55 mem_car_motor_back_gpio
+0x4c56 mem_car_gpio
+0x4c57 mem_car_app_send_speed
+0x4c58 mem_rssi_sum
+0x4c5a mem_check_rssi_high_count
+0x4c5c mem_rssi_data
+0x4c64 mem_car_24g_received_pac
+0x4c65 mem_car_24g_bind_enable_delay_count
+0x4c66 mem_car_keyscan
+0x4c66 mem_car_key_num
+0x4c67 mem_cb_car_keyscan
+0x4c69 mem_car_enter_lpm_timer_count
+0x4c6b mem_car_enter_lpm_timer
+0x4c6d mem_car_enter_lpm_flag
+0x4c6e mem_car_24g_ch_polling
+0x4c6f mem_car_rssi_noise_buffer
+0x4c77 mem_car_rssi_noise_car_buffer
+0x4c7f mem_car_rssi_noise_remote_buffer
+0x48f5 mem_dg_kb_bind_flag
+0x48f6 mem_dg_kb_data_sta_data
+0x48fe mem_dg_kb_data_last_data
+0x4906 mem_dg_kb_multikey_sta_data
+0x4909 mem_dg_kb_multikey_last_data
+0x490c mem_dg_kb_system_sta_data
+0x490f mem_dg_kb_system_last_data
+0x4912 mem_dg_kb_blank_data_enable
+0x4913 mem_dg_kb_mul_blank_data_enable
+0x4914 mem_dg_ms_blank_data_enable
+0x4915 mem_dg_sys_config
+0x4916 mem_dg_usb_vid_pid
+0x491f mem_dg_usb_tx_interval
+0x4920 mem_dg_usb_device_name
+0x493e mem_dg_kb_bind_success
+0x493f mem_dg_pc_sleep_flag
+0x4940 mem_test_blank_data
+0x4882 mem_rssi_hex_received
+0x4883 mem_24g_pair_sm
+0x4884 mem_24g_pair_no_ack
+0x4885 mem_24g_pair_timeout_init
+0x4887 mem_24g_pair_timeout
+0x4889 mem_24g_reconn_timeout_init
+0x488b mem_24g_reconn_timeout
+0x488d mem_24g_reconn_count
+0x488f mem_24g_reconn_type
+0x4890 mem_24g_fast_conn_enable
+0x4891 mem_24g_fast_conn_addr
+0x4895 mem_24g_receiver_addr
+0x4899 mem_24g_fast_conn_temp_ch
+0x489a mem_24g_receiver_temp_ch
+0x489b mem_24g_device_temp_ch
+0x489c mem_rssi_signal_index
+0x489d mem_rssi_signal_buf_ptr
+0x489f mem_cb_24g_transmit_data
+0x48a1 mem_cb_24g_search_receiver
+0x48a3 mem_cb_24g_lpm_before
+0x48a5 mem_24g_conn_sm
+0x48a6 mem_24g_ensure
+0x48a7 mem_24g_txfail_cnt
+0x48a9 mem_24g_attempt_fail_flag
+0x48aa mem_24g_retry
+0x48ab mem_24g_abort_pac
+0x48ac mem_24g_max_retry
+0x48ad mem_24g_device_addr
+0x48b1 mem_24g_short_sleep_set
+0x48b4 mem_24g_long_sleep_set
+0x48bc mem_24g_long_sleep_set1
+0x48c0 mem_24g_pac_index
+0x48c1 mem_24g_transmit_by_interrupt
+0x48c2 mem_24g_transmit_by_interrupt_exit_count
+0x48c4 mem_24g_transmit_by_interrupt_exit_count_init
+0x48c6 mem_24g_long_sleep_param_update_timer_init
+0x48c8 mem_24g_long_sleep_param_update_timer
+0x48ca mem_24g_fast_hop_count
+0x48cb mem_rssi_avg_received
+0x48cc mem_power_ctrl_level
+0x48cd mem_power_ctrl_pac_succ_cnt
+0x48ce mem_power_ctrl_pac_succ_cnt_init
+0x48cf mem_rssi_dis_min_24g
+0x48d0 mem_rssi_dis_max_24g
+0x48d1 mem_rssi_hex_received_max_value
+0x48d2 mem_rssi_dis_min_ble
+0x48d3 mem_rssi_dis_max_ble
+0x48d4 mem_mouse_key
+0x48d5 mem_mouse_x
+0x48d7 mem_mouse_y
+0x48d9 mem_mouse_z
+0x48da mem_mouse_tz
+0x48db mem_mouse_xy_h
+0x48dc mem_mouse_key_last
+0x48dd mem_wheel_tb_old_pinlevel
+0x48de mem_wheel_tb_new_pinlevel
+0x48df mem_wheel_tog
+0x48e0 mem_mouse_tz_data
+0x48e1 mem_mwheel_b_old_pinlevel
+0x48e2 mem_mwheel_b_new_pinlevel
+0x48e3 mem_mwheel_tog
+0x48e4 mem_mouse_z_data
+0x48e5 mem_mouse_wheel_trigger
+0x48e6 mem_mouse_wheel_trigger_timer
+0x48e7 mem_mouse_vdd_calculate_set
+0x48e7 mem_mouse_vdd_full_vol
+0x48e9 mem_mouse_vdd_empty_vol
+0x48eb mem_mouse_vdd_low_vol
+0x48ed mem_mouse_vdd_now_vol
+0x48ef mem_mouse_vdd_button_press_vol
+0x48f1 mem_mouse_vdd_switch_gnd_24g_vol
+0x48f3 mem_mouse_vdd_switch_gnd_full_vol
+0x48f5 mem_mouse_vdd_switch_gnd_shutdown_voltage
+0x48f7 mem_mouse_vdd_switch_gnd_low_voltage
+0x48f9 mem_adc_mux_status
+0x48fa mem_adc_read_timer
+0x48fb mem_adc_read_time_init
+0x48fc mem_adc_low_volatage_led_timer_count
+0x48fd mem_adc_low_volatage_led_blink_enable
+0x48fe mem_mouse_adc_last_low_voltage_flag
+0x48ff mem_mouse_adc_button_press_flag
+0x4900 mem_adc_channel_gpio
+0x4901 mem_adc_config_flag_init
+0x4902 mem_mouse_discovery_timeout
+0x4904 mem_mouse_24g_pair_timeout_init
+0x4906 mem_mouse_direct_timeout
+0x4907 mem_mouse_24g_reconn_timeout_init
+0x4908 mem_mouse_24g_pair_tx_power
+0x4909 mem_rssi_dis_min_24g_init
+0x490a mem_rssi_dis_max_24g_init
+0x490b mem_rssi_hex_received_max_value_init
+0x490c mem_rssi_dis_min_ble_init
+0x490d mem_rssi_dis_max_ble_init
+0x490e mem_mouse_enable_flag
+0x490f mem_mouse_global_setup
+0x4910 mem_mouse_global_setup1
+0x4911 mem_bk_button_gpio
+0x4912 mem_fw_button_gpio
+0x4913 mem_dpi_button_gpio
+0x4914 mem_matrix_public_gpio
+0x4915 mem_sensor_motion_gpio
+0x4916 mem_customer_key_gpio
+0x4917 mem_whee_a_data_gpio
+0x4918 mem_whee_b_data_gpio
+0x4919 mem_config_device_24g_led_gpio
+0x491a mem_select_sensor_angle_gpio
+0x491b mem_mouse_reuse_2ice_gpio
+0x491c mem_lbutton_gpio
+0x491d mem_rbutton_gpio
+0x491e mem_mbutton_gpio
+0x491f mem_config_select_device_button_gpio
+0x4920 mem_whee_ta_data_gpio
+0x4921 mem_whee_tb_data_gpio
+0x4922 mem_device_switch_gpio
+0x4923 mem_mouse_sensor_sclk_gpio
+0x4924 mem_mouse_sensor_sdio_gpio
+0x4925 mem_config_low_voltage_alarm_gpio
+0x4926 mem_config_device_bt1_led_gpio
+0x4927 mem_config_device_bt2_led_gpio
+0x4928 mem_dpi_led_gpio
+0x4929 mem_sensor_angle_default
+0x492a mem_sensor_angle_switch
+0x492b mem_config_sensor_dpi
+0x492c mem_config_sensor_type
+0x492d mem_config_sensor_angle
+0x492e mem_wire_usb_interval
+0x492f mem_usb_addr
+0x4930 mem_mouse_usb_vdd_status
+0x4931 mem_mouse_usb_keyboard_flag
+0x4932 mem_mouse_led_type
+0x4933 mem_mouse_blink_count
+0x4934 mem_mouse_struct_led_gpio
+0x4935 mem_mouse_on_time
+0x4937 mem_mouse_off_time
+0x4939 mem_mouse_cb_ledon
+0x493b mem_mouse_cb_ledoff
+0x493d mem_mouse_information_start
+0x493d mem_device_flag
+0x493e mem_device1_type
+0x493f mem_device1_addr
+0x4945 mem_device1_link_key
+0x4955 mem_device1_locall_addr
+0x495b mem_device2_type
+0x495c mem_device2_addr
+0x4962 mem_device2_link_key
+0x4972 mem_device2_locall_addr
+0x4978 mem_device3_type
+0x4979 mem_mouse_compare_addr_ff
+0x4979 mem_device3_addr
+0x497f mem_device3_link_key
+0x498f mem_device3_locall_addr
+0x4995 mem_store_flag
+0x4997 mem_mouse_dpi
+0x4998 mem_mouse_24g_addr
+0x499c mem_random_addr_increase_count
+0x499e mem_mouse_24g_report
+0x499f mem_mouse_retention
+0x49bd mem_mouse_information_end
+0x49bd mem_flash_base
+0x49c0 mem_write_flash_head_temp
+0x49c4 mem_store_information_delay_timer
+0x49c5 mem_store_information_delay_timer_init
+0x49c6 mem_sensor_id1
+0x49c7 mem_sensor_id2
+0x49c8 mem_sensor_shutter_hi
+0x49c9 mem_sensor_shutter_lo
+0x49ca mem_sensor_smart_flag
+0x49cb mem_sensor_squal_reg
+0x49cc mem_sensor_iqc
+0x49cd mem_mouse_move_flag
+0x49ce mem_mouse_asm_flag
+0x49cf mem_mouse_x_pre
+0x49d1 mem_mouse_y_pre
+0x49d3 mem_mouse_data_xtemp
+0x49d4 mem_mouse_data_ytemp
+0x49d5 mem_mouse_dpi_seting
+0x49d5 mem_320x_dpi_0
+0x49d6 mem_320x_dpi_1
+0x49d7 mem_320x_dpi_2
+0x49d8 mem_320x_dpi_3
+0x49d9 mem_3212_dpi_0
+0x49da mem_3212_dpi_1
+0x49db mem_3212_dpi_2
+0x49dc mem_3212_dpi_3
+0x49dd mem_ka8g2_dpi_0
+0x49de mem_ka8g2_dpi_1
+0x49df mem_ka8g2_dpi_2
+0x49e0 mem_ka8g2_dpi_3
+0x49e1 mem_mouse_cpi_count
+0x49e2 mem_mouse_dpi_button_state
+0x49e3 mem_mouse_dpi_long_press_flag
+0x49e4 mem_sensor_3212_init
+0x49ee mem_sensor_3204_init
+0x49f8 mem_sensor_3205_init
+0x4a02 mem_sensor_32xx_init
+0x4a1c mem_sensor_32xx_init_1
+0x4a3e mem_sensor_8650_init
+0x4a64 mem_sensor_ka8ul_init
+0x4a82 mem_sensor_8009_init
+0x4a92 mem_sensor_ka8g2_init
+0x4aa8 mem_sensor_p6520_init
+0x4ab4 mem_sensor_poweron_init
+0x4abc mem_sensor_reset_gpio
+0x4abd mem_mouse_clear_sensor_data_flag
+0x4abe mem_bluetooth_125hz_cnt
+0x4abf mem_mouse_long_mult_flag
+0x4ac0 mem_mouse_current_mult_timer
+0x4ac1 mem_reconn_times
+0x4ac2 mem_reconn_times_init
+0x4ac3 mem_mouse_no_data_timer
+0x4ac5 mem_device_flag_temp
+0x4ac6 mem_mouse_rssi_signal_buf
+0x4ace mem_btclk_sensor
+0x4ad2 mem_mouse_bluetooth_fast_conn_flag
+0x4ad3 mem_mouse_discovery_timer
+0x4ad5 mem_mouse_bluetooth_reconnect_timeout
+0x4ad6 mem_mouse_need_soft_reset
+0x4ad7 mem_mouse_le_bb_connected_flag
+0x4ad8 mem_mouse_le_reconnect_flag
+0x4ad9 mem_mouse_send_secutiry_request_timer
+0x4ada mem_mouse_le_lap_temp
+0x4add mem_le_adv_ind
+0x4ae0 mem_le_adv_direct_ind
+0x4ae3 mem_le_adv_swift_pair
+0x4af7 mem_le_data_len
+0x4af8 mem_le_keyboard_handle
+0x4afa mem_le_multimedia_handle
+0x4afc mem_le_systemctrl_handle
+0x4afe mem_le_battery_level_handle
+0x4b00 mem_le_battery_level_percentage
+0x4b01 mem_le_battery_level_updata_timer_init
+0x4b03 mem_le_battery_level_updata_timer
+0x4b05 mem_mouse_le_conn_param_reject
+0x4b06 mem_le_tx_buffer0_omemalloc
+0x4b26 mem_le_tx_buffer1_omemalloc
+0x4b46 mem_le_tx_buffer2_omemalloc
+0x4b66 mem_le_tx_buffer3_omemalloc
+0x4b86 mem_le_connect_status_flag
+0x4b87 mem_le_start_encrypt_timer
+0x4b88 mem_mouse_direct_timer
+0x4b89 mem_device_addr_temp
+0x4b90 mem_mouse_enter_sniff_count
+0x4b91 mem_mouse_bt_boot_mode
+0x4b92 mem_mouse_bt_boot_data
+0x4b97 mem_bt_send_max_slot_req_accept_after_switch
+0x4b98 mem_mouse_bt_send_first_package_timer
+0x4b99 mem_mouse_bt_send_first_package_flag
+0x4b9a mem_lmi_opcode_temp
+0x4b9b mem_lpm_mult_init
+0x4b9c mem_customer_key
+0x4b9d mem_customer_data_trigger
+0x4b9e mem_customer_data_trigger_last
+0x4b9f mem_mouse_lkey_press_status
+0x4ba0 mem_mouse_rkey_press_status
+0x4ba1 mem_mouse_mkey_press_status
+0x4ba2 mem_mouse_bkkey_press_status
+0x4ba3 mem_mouse_fwkey_press_status
+0x4ba4 mem_mouse_dpikey_press_status
+0x4ba5 mem_mouse_pbkey_press_status
+0x4ba6 mem_mouse_customerkey_press_status
+0x4ba7 mem_mouse_key_temp
+0x4ba8 mem_mouse_key_status
+0x4ba9 mem_mouse_matrix_key_cow_count
+0x4baa mem_mouse_matrix_key_row_count
+0x4bab mem_mouse_ghost_flag
+0x4bac mem_bt_discovery_count
+0x4bad mem_select_device_count
+0x4bae mem_mouse_commbination_key
+0x4baf mem_select_device_button_statue
+0x4bb0 mem_commbination_key_statue
+0x4bb1 mem_combination_ui_button_count
+0x4bb2 mem_mouse_search_dongle_interval
+0x4bb3 mem_mouse_search_dongle_ch
+0x4bb4 mem_mouse_search_dongle_count
+0x4bb5 mem_mouse_search_dongle_action
+0x4bb6 mem_24g_enter_lpm_timer
+0x4bb7 mem_mouse_24g_enter_lpm_enable
+0x4bb8 mem_mouse_device_poweron_timer_count
+0x4bb9 mem_mouse_dpi_led_delay_count
+0x4bba mem_mouse_led_off_4_led
+0x4bbb mem_24g_device_led_status
+0x4bbc mem_mouse_flag
+0x4bc4 mem_mouse_bluetooth_type
+0x4bc5 mem_device_number
+0x4bc6 mem_mouse_page_to
+0x4bc8 mem_mouse_fast_direct_timeout
+0x4bc9 mem_mouse_fast_page_to
+0x4bcb mem_mouse_24g_power_on_fast_conn_timer
+0x4bcd mem_mouse_24g_search_dongle_time_init
+0x4bcf mem_mouse_no_data_timeout
+0x4bd1 mem_mouse_device_poweron_timer_count_init
+0x4bd2 mem_mouse_dpi_led_delay_count_init
+0x4bd3 mem_mouse_dpi_led_blink_time
+0x4bd5 mem_mouse_disconvey_led_blink_time
+0x4bd7 mem_mouse_low_v_led_blink_time
+0x4bd9 mem_adc_low_volatage_led_blink_timer
+0x4bdb mem_mouse_commbination_key_bt
+0x4bdc mem_mouse_commbination_key_24g
+0x4bdd mem_customer_key_press
+0x4be6 mem_customer_key_release
+0x4bef mem_mouse_set_high_impedance_bit_set
+0x4bf2 mem_sensor_shutdown_flag
+0x4bf3 mem_24g_long_sleep_set_level
+0x4bf4 mem_power_on_flag
+0x4bf5 mem_ka8g2_sensor_poweron_init
+0x4bfd mem_24g_pair_count
+0x4bff mem_le_name_patch_len
+0x4c00 mem_le_name_patch
+0x4c13 mem_mouse_logo_led_gpio
+0x4c14 mem_mouse_logo_led_on_time_init
+0x4c16 mem_24g_tsniff
+0x4c1a mem_tx_count
+0x4c1b mem_tx_time_last
+0x4c21 mem_tx_time_last_delt
+0x4c25 mem_tx_time_sum
+0x4c2a mem_tx_time_sum_count
+0x4c2b mem_tx_time_offset
+0x4c2c mem_24g_short_sleep_set_init
+0x4c2f mem_retransmit
+0x4c31 mem_sleep_miss
+0x4c32 mem_long_sleep_flag
+0x4c33 mem_sleep_miss_temp
+0x4c37 mem_mouse_end
+0x4c37 mem_mouse_rssi_signal_buf_patch
+0x4c47 mem_mouse_rssi_signal_buf_temp
+0x4c57 mem_g24_fast_conn_enable
+0x4c58 mem_xtal_cache
+0x4c59 mem_device_uart_tx_gpio
+0x4c5a mem_device_uart_rx_gpio
+0x4c5b mem_device_uart_rx_buffer
+0x4c5d mem_device_uart_rx_buffer_end
+0x4c5f mem_device_uart_tx_buffer
+0x4c61 mem_device_uart_tx_buffer_end
+0x4c63 mem_device_uart_baud_rate
+0x4c65 mem_24g_paccnt
+0x4c66 mem_rssi_mouse
+0x4c67 mem_clkn_bt_patch
+0x4c6b mem_txpower_print
+0x4c6d mem_sensor_read_count
+0x4c6e mem_sensor_param_change_count
+0x4c6f mem_mouse_le_send_conn_param_update
+0x4c70 mem_mouse_le_send_conn_param_update_timer
+0x4c71 mem_soft_agc_en
+0x4c72 mem_normal_tx_power
+0x4c73 mem_3212_dpi_new
+0x4c73 mem_3212_dpi_0_new
+0x4c74 mem_3212_dpi_1_new
+0x4c75 mem_3212_dpi_2_new
+0x4c76 mem_3212_dpi_3_new
+0x4c77 mem_3212_dpi_4_new
+0x4c78 mem_24g_reconn_pairing_switch
+0x4c79 mem_usb_offline_gpio_retention
+0x4c7a mem_usb_tx_interval_retention
+0x4c7b mem_usb_vid_pid_retention
+0x4c84 mem_usb_device_name_retention
+0x4ca2 mem_usb_mode_enable
+0x4ca3 mem_mouse_led_new_interface_enable
+0x4ca4 mem_mouse_multi_led_blink_enable
+0x4ca5 mem_mouse_multi_led_type
+0x4ca6 mem_mouse_multi_led_state
+0x4ca7 mem_mouse_le_reconn_led_fuction_enable
+0x4ca8 mem_mouse_led_multi_type
+0x4ca9 mem_mouse_multi_led_powon_timer
+0x4caa mem_mouse_multi_led_blink_timer_init
+0x4cab mem_mouse_multi_led_blink_timer
+0x4cac mem_mouse_1io2led_multi_24gled//io confige
+0x4cad mem_mouse_1io2led_multi_bt1led
+0x4cae mem_mouse_1io2led_multi_bt2led
+0x4caf mem_mouse_1io2led_dpi_led
+0x4cb0 mem_mouse_1io2led_low_led
+0x4cb1 mem_mouse_pair_success
+0x4cb2 mem_mouse_dpi_led_blink_enable
+0x4cb3 mem_mouse_dpi_blink_count
+0x4cb4 mem_mouse_dpi_blink_time
+0x4cb5 mem_24g_rxbuf_new
+0x4cfb mem_24g_txbuf_new
+0x4d41 mem_24g_txpayload_new
+0x4d87 mem_24g_rxpayload_new
+0x4dcd mem_zcode_temp_param0//zcode num
+0x4dce mem_zcode_temp_param1//patch ram func addr
+0x4dd0 mem_zcode_temp_param2//patch ram func addr
+0x4dd2 mem_zcode_current_number
+0x4dd3 mem_xip_flash_offset
+0x4dd6 mem_flash_start_addr
+0x4dd9 mem_flash_address
+0x4ddc mem_zcode_head
+0x4de0 mem_24g_rf_data_flag
+0x4de1 mem_device_tx_protocol_data_type
+0x4de2 mem_device_tx_dpi_data_flag
+0x4de3 mem_device_tx_dpi_data_delay_timer
+0x4de4 mem_device_tx_battery_data_flag
+0x4de5 mem_device_tx_heart_data_flag
+0x4de6 mem_mouse_temp_buff
+0x4df0 mem_ui_le_uuid_table_new
+0x4e2c mem_le_protocol_tx_handle
+0x4e2e mem_le_protocol_rx_handle
+0x4e30 mem_le_protocol_rx_data
+0x4e33 mem_le_service_change_flag
+0x4e34 mem_retransmit_flag
+0x4e35 mem_device_pair_flag
+0x4e36 mem_mouse_repair_pack_flag
+0x4e37 mem_mouse_g24_pack_conut
+0x48d4 mem_remote_car_hard_soft_switch
+0x48d5 mem_remote_car_queue_each_size
+0x48d6 mem_remote_car_queue_length
+0x48d7 mem_remote_car_queue_curr_num
+0x48d8 mem_remote_car_queue_read_ptr
+0x48d9 mem_remote_car_queue_write_ptr
+0x48da mem_remote_car_queue_ele
+0x4934 mem_remote_style_led_type
+0x4935 mem_remote_style_blink_count
+0x4936 mem_remote_style_struct_led_gpio
+0x4937 mem_remote_style_on_time
+0x4939 mem_remote_style_off_time
+0x493b mem_remote_style_cb_ledon
+0x493d mem_remote_style_cb_ledoff
+0x493f mem_remote_car_led_num
+0x4940 mem_remote_car_led_map
+0x4948 mem_remote_car_keyscan
+0x4948 mem_remote_car_key_num
+0x4949 mem_cb_remote_car_keyscan
+0x494b mem_remote_car_key_conf0
+0x494b mem_remote_car_key_conf0_pin
+0x494c mem_remote_car_key_conf1
+0x494c mem_remote_car_key_conf1_pin
+0x494d mem_remote_car_key_conf2
+0x494d mem_remote_car_key_conf2_pin
+0x494e mem_remote_car_key_conf3
+0x494e mem_remote_car_key_conf3_pin
+0x494f mem_remote_car_key_conf4
+0x494f mem_remote_car_key_conf4_pin
+0x4950 mem_remote_car_key_conf5
+0x4950 mem_remote_car_key_conf5_pin
+0x4951 mem_remote_car_key_conf6
+0x4951 mem_remote_car_key_conf6_pin
+0x4952 mem_rocker_negative_flag
+0x4953 mem_rocker_work_status
+0x4954 mem_current_vdd_value_default_mid_x
+0x4956 mem_current_vdd_value_default_mid_y
+0x4958 mem_current_vdd_value_default_mid_temp
+0x495a mem_current_vdd_default_range
+0x495c mem_rocker_last_status
+0x495e mem_rocker_status
+0x495e mem_rocker_x_status
+0x495f mem_rocker_y_status
+0x4960 mem_remote_car_config_param
+0x4960 mem_remote_car_config_setting_flag
+0x4961 mem_remote_car_config_key_map
+0x4962 mem_remote_car_config_layout
+0x4963 mem_remote_car_config_connect_led_gpio
+0x4964 mem_remote_car_config_check_way
+0x4965 mem_remote_car_config_soft_switch_enable
+0x4966 mem_remote_car_config_soft_switch_gpio
+0x4967 mem_remote_car_config_timeout_shutdown_enable
+0x4968 mem_remote_car_24g_motor_packet
+0x4968 mem_remote_car_24g_motor_packet_lenght
+0x4969 mem_remote_car_24g_motor_send_packet_head
+0x496b mem_remote_car_24g_motor_send_cmd
+0x496c mem_remote_car_24g_motor_send_length
+0x496e mem_remote_car_24g_motor_send_payload
+0x496e mem_remote_car_24g_motor1_payload
+0x4970 mem_remote_car_24g_motor2_payload
+0x4972 mem_remote_car_24g_motor3_payload
+0x4974 mem_remote_car_24g_motor_send_checksum
+0x4975 mem_remote_car_24g_fire_packet
+0x4975 mem_remote_car_24g_fire_packet_lenght
+0x4976 mem_remote_car_24g_fire_send_packet_head
+0x4978 mem_remote_car_24g_fire_send_cmd
+0x4979 mem_remote_car_24g_fire_send_length
+0x497b mem_remote_car_24g_fire_send_payload
+0x497d mem_remote_car_24g_fire_send_checksum
+0x497e mem_remote_car_24g_tx_temp
+0x498d mem_remote_car_no_data_timeout
+0x498f mem_remote_car_no_data_timer
+0x4991 mem_remote_car_soft_power
+0x4991 mem_remote_car_power_state
+0x4992 mem_remote_car_power_timer
+0x4993 mem_remote_car_power_off_timeout
+0x4994 mem_remote_car_power_starting_timeout
+0x4995 mem_remote_car_power_off_cb
+0x4997 mem_remote_car_power_starting_cb
+0x4999 mem_remote_car_power_standby_cb
+0x499b mem_remote_key_status
+0x499c mem_remote_car_24g_status
+0x499d mem_remote_car_24g_auto_work_step
+0x499e mem_remote_car_24g_pair_success_flag
+0x499f mem_remote_car_empty_packet
+0x49a0 mem_remote_car_motor1_key0_press_state
+0x49a1 mem_remote_car_motor1_key1_press_state
+0x49a2 mem_remote_car_motor2_key2_press_state
+0x49a3 mem_remote_car_motor2_key3_press_state
+0x49a4 mem_remote_car_motor1_rel_state
+0x49a5 mem_remote_car_motor2_rel_state
+0x49a6 mem_remote_car_no_data_check
+0x47a7 mem_hci_uart_tx_gpio
+0x47a8 mem_hci_uart_rx_gpio
+0x47a9 mem_hci_uart_rts_gpio
+0x47aa mem_hci_uart_cts_gpio
+0x47ab mem_hci_pwm_12mhz_gpio
+0x47a7 mem_soft_version_num
+0x47a9 mem_module_wake_up_gpio
+0x47aa mem_module_state_gpio
+0x47ab mem_module_connect_state_gpio
+0x47ac mem_current_packet_length
+0x47ae mem_module_state
+0x47af mem_module_mcu_wake_pin
+0x47b0 mem_module_mcu_wake_delay_us
+0x47b4 mem_module_spp_lpm_mult
+0x47b5 mem_module_le_lpm_mult
+0x47b6 mem_module_bluetooth_stauts_by_command
+0x47b7 mem_module_uart_rx_buffer
+0x47b9 mem_module_uart_rx_buffer_end
+0x47bb mem_module_uart_tx_buffer
+0x47bd mem_module_uart_tx_buffer_end
+0x47bf mem_module_uarta_baud_rate
+0x47c1 mem_module_read_vdd_flag
+0x47c2 mem_module_read_vdd_count
+0x47c3 mem_module_vdd_quotient
+0x47c4 mem_module_vdd_remainder
+0x47c5 mem_module_ble_data_uart_max_length
+0x47c6 mem_module_flag
+0x47c8 mem_module_hci_notify_len
+0x47c9 mem_module_hci_notify_handle
+0x47cb mem_module_hci_nofiy_addr
+0x47cd mem_module_hci_notify_type
+0x47ce mem_last_transmite_clock
+0x47d2 mem_module_uuid_list
+0x48fe mem_module_uuid_list_end
+0x48fe mem_module_le_att_list
+0x4b56 mem_module_le_att_list_end
+0x4b56 mem_module_nv_data
+0x4b56 mem_module_nv_data0
+0x4b78 mem_module_nv_data1
+0x4b9a mem_module_nv_data2
+0x4bbc mem_module_nv_data3
+0x4bde mem_module_nv_data4
+0x4c00 mem_module_nv_data_end
+0x47a7 mem_shutter_bluetooth_type
+0x47a8 mem_shutter_config_eeprom_offset_addr
+0x47aa mem_shutter_config_eeprom_start_flag
+0x47ac mem_shutter_config_user_size
+0x47ad mem_shutter_config_label
+0x47ae mem_shutter_config_otp_addr
+0x47b0 mem_classic_shutter_cable_unplug_conut
+0x47b1 mem_classic_shutter_hid_disconn_count
+0x47b2 mem_classic_shutter_random_mac_offset_addr
+0x47b4 mem_ble_shutter_enable_notify
+0x47b5 mem_ble_shutter_reconn_adv_interval
+0x47b7 mem_ble_shutter_discovery_adv_interval
+0x47b9 mem_ble_shutter_reconn_timeout
+0x47bb mem_ble_shutter_reconn_timer
+0x47bd mem_ble_shutter_reconn_blink_on_time
+0x47bf mem_ble_shutter_reconn_blink_off_time
+0x47c1 mem_ble_shutter_discovery_blink_on_time
+0x47c3 mem_ble_shutter_discovery_blink_off_time
+0x47c5 mem_ble_shutter_interval_min
+0x47c7 mem_ble_shutter_interval_max
+0x47c9 mem_ble_shutter_latency
+0x47cb mem_ble_shutter_timeout
+0x47cd mem_ble_shutter_interval_min_new
+0x47cf mem_ble_shutter_interval_max_new
+0x47d1 mem_ble_shutter_latency_new
+0x47d3 mem_ble_shutter_timeout_new
+0x47d5 mem_classic_shutter_discovery_timeout
+0x47d7 mem_classic_shutter_connect_timeout
+0x47d9 mem_ble_shutter_discovery_timeout
+0x47db mem_ble_shutter_connect_timeout
+0x47dd mem_shutter_sleep_timeout
+0x47df mem_shutter_sleep_timer
+0x47e1 mem_shutter_hard_soft_switch_case
+0x47e2 mem_shutter_soft_switch_button_gpio
+0x47e3 mem_shutter_soft_switch_power_state
+0x47e4 mem_shutter_soft_switch_poweron_time
+0x47e5 mem_shutter_soft_switch_poweroff_time
+0x47e6 mem_shutter_soft_switch_poweron_callback_function
+0x47e8 mem_shutter_soft_switch_poweroff_callback_function
+0x47ea mem_shutter_keyscan
+0x47ea mem_shutter_key_num
+0x47eb mem_cb_shutter_keycan
+0x47ed mem_shutter_key_conf0
+0x47ee mem_shutter_key_conf1
+0x47ef mem_shutter_key_conf2
+0x47f0 mem_shutter_key_conf3
+0x47f1 mem_shutter_key_conf4
+0x47f2 mem_shutter_key_conf5
+0x47f3 mem_shutter_key_conf6
+0x47f4 mem_shutter_key_conf7
+0x47f5 mem_key0_press
+0x47fa mem_key1_press
+0x47ff mem_key2_press
+0x4804 mem_key3_press
+0x4809 mem_key4_press
+0x480e mem_key5_press
+0x4813 mem_key6_press
+0x4818 mem_key7_press
+0x481d mem_key0_release
+0x4822 mem_key1_release
+0x4827 mem_key2_release
+0x482c mem_key3_release
+0x4831 mem_key4_release
+0x4836 mem_key5_release
+0x483b mem_key6_release
+0x4840 mem_key7_release
+0x4845 mem_ble_data_buffer1
+0x484a mem_ble_data_buffer2
+0x484f mem_ble_data_buffer3
+0x4854 mem_ble_data_buffer4
+0x4859 mem_ble_data_buffer5
+0x485e mem_ble_data_buffer6
+0x4863 mem_ble_data_buffer7
+0x4868 mem_ble_data_buffer8
+0x486d mem_ble_data_buffer9_58
+0x489f mem_classic_data_buffer
+0x48a4 mem_classic_data_buffer1
+0x48a9 mem_classic_data_buffer2
+0x48ae mem_classic_data_buffer3
+0x48b3 mem_classic_data_buffer4
+0x48b8 mem_classic_data_buffer5
+0x48bd mem_classic_data_buffer6
+0x48c2 mem_classic_data_buffer7
+0x48c7 mem_classic_data_buffer8
+0x48cc mem_classic_data_buffer9_58
+0x48fe mem_queue_each_size
+0x48ff mem_queue_length
+0x4900 mem_queue_curr_num
+0x4901 mem_queue_read_ptr
+0x4902 mem_queue_write_ptr
+0x4903 mem_queue_ele
+0x4923 mem_shutter_nv_data
+0x49cd mem_shutter_led_struct_app_led
+0x49cd mem_shutter_led_struct_app_led_type
+0x49ce mem_shutter_led_struct_app_led_blink_count
+0x49cf mem_shutter_led_struct_app_led_gpio
+0x49d0 mem_shutter_led_struct_app_led_on_time
+0x49d2 mem_shutter_led_struct_app_led_off_time
+0x49d4 mem_shutter_led_struct_app_led_on_callback
+0x49d6 mem_shutter_led_struct_app_led_off_callback
+0x49d8 mem_shutter_power_off_led_style
+0x49d8 mem_shutter_power_off_led_style_type
+0x49d9 mem_shutter_power_off_led_style_blink_count
+0x49da mem_shutter_power_off_led_style_gpio
+0x49db mem_shutter_power_off_led_style_on_time
+0x49dd mem_shutter_power_off_led_style_off_time
+0x49df mem_shutter_power_off_led_style_on_callback
+0x49e1 mem_shutter_power_off_led_style_off_callback
+0x49e3 mem_shutter_soft_swtich_botton_down
+0x49e4 mem_shutter_soft_swtich_led_struct_temp
+0x49ef mem_shutter_power_off_timeout
+0x49f0 mem_shutter_power_off_timer
+0x49f1 mem_shutter_key_conf0_temp
+0x49f3 mem_shutter_led_struct_app_led_gpio_temp
+0x49f4 mem_shutter_hard_soft_switch_case_temp
+0x49f5 mem_shutter_soft_switch_button_gpio_temp
+0x49f6 mem_shutter_le_name_len
+0x49f7 mem_shutter_le_name
+
+0x4b61 mem_mesh_unsegmented_access_lower_transport_layer_head
+0x4b62 mem_mesh_unsegmented_access_lower_transport_layer_parameters
+0x4b6d mem_mesh_unsegmented_access_lower_transport_layer_mic
+0x4b61 mem_mesh_segmented_access_lower_transport_layer_head
+0x4b62 mem_mesh_segmented_access_lower_transport_layer_SZMIC_SeqZero_SegO_SegN
+0x4b65 mem_mesh_segmented_access_lower_transport_layer_parameters
+0x4b6d mem_mesh_segmented_access_lower_transport_layer_mic
+0x48e5 mem_k2_EncryptionKey
+0x48d5 mem_k2_PrivacyKey
Index: output/program.lis
===================================================================
--- /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/output/program.lis	(nonexistent)
+++ /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/output/program.lis	(working copy)
@@ -0,0 +1,2789 @@
+              include "bt_format "
+              org 0x0000
+
+p_start:
+0000 20200040 branch p_patch_array 
+
+p_zcode:
+0001 20000001 nop 1 
+0002 20000001 nop 1 
+0003 20000001 nop 1 
+0004 20000001 nop 1 
+0005 20000001 nop 1 
+0006 20000001 nop 1 
+0007 20000001 nop 1 
+0008 20000001 nop 1 
+0009 20000001 nop 1 
+000a 20000001 nop 1 
+000b 20000001 nop 1 
+000c 20000001 nop 1 
+000d 20000001 nop 1 
+000e 20000001 nop 1 
+000f 20000001 nop 1 
+0010 20000001 nop 1 
+0011 20000001 nop 1 
+0012 20000001 nop 1 
+0013 20000001 nop 1 
+0014 20000001 nop 1 
+0015 20000001 nop 1 
+0016 20000001 nop 1 
+0017 20000001 nop 1 
+0018 20000001 nop 1 
+0019 20000001 nop 1 
+001a 20000001 nop 1 
+001b 20000001 nop 1 
+001c 20000001 nop 1 
+001d 20000001 nop 1 
+001e 20000001 nop 1 
+001f 20000001 nop 1 
+0020 20000001 nop 1 
+0021 20000001 nop 1 
+0022 20000001 nop 1 
+0023 20000001 nop 1 
+0024 20000001 nop 1 
+0025 20000001 nop 1 
+0026 20000001 nop 1 
+0027 20000001 nop 1 
+0028 20000001 nop 1 
+0029 20000001 nop 1 
+002a 20000001 nop 1 
+002b 20000001 nop 1 
+002c 20000001 nop 1 
+002d 20000001 nop 1 
+002e 20000001 nop 1 
+002f 20000001 nop 1 
+0030 20000001 nop 1 
+0031 20000001 nop 1 
+0032 20000001 nop 1 
+0033 20000001 nop 1 
+0034 20000001 nop 1 
+0035 20000001 nop 1 
+0036 20000001 nop 1 
+0037 20000001 nop 1 
+0038 20000001 nop 1 
+0039 20000001 nop 1 
+003a 20000001 nop 1 
+003b 20000001 nop 1 
+003c 20000001 nop 1 
+003d 20000001 nop 1 
+003e 20000001 nop 1 
+003f 20000001 nop 1 
+
+p_patch_array:
+0040 c284005f bbit1 8 ,pf_patch_ext 
+0041 c000019b beq patch00_0 ,p_soft_reset 
+0042 c04101c4 beq patch10_2 ,p_shutdown_radio 
+0043 c04181cb beq patch10_3 ,p_set_sync_on 
+0044 c04501de beq patch11_2 ,p_txon_next 
+0045 c04581d9 beq patch11_3 ,p_initialize_radio_cont 
+0046 c05105fa beq patch14_2 ,p_lpm_sleep 
+0047 c052016e beq patch14_4 ,p_lpm_dispatch 
+0048 c05681e8 beq patch15_5 ,p_app_init 
+0049 c0618394 beq patch18_3 ,p_mouse_start_work 
+004a c0630380 beq patch18_6 ,p_mouse_app_enter_hibernate 
+004b c0638387 beq patch18_7 ,p_mouse_before_hibernate 
+004c c06406f5 beq patch19_0 ,p_mouse_setgpio_hibernate 
+004d c0648492 beq patch19_1 ,p_mouse_lpm_before_common 
+004e c0668686 beq patch19_5 ,p_mouse_motion 
+004f c06704da beq patch19_6 ,p_mouse_dpi_process 
+0050 c06784e1 beq patch19_7 ,p_mouse_seting_dpi 
+0051 c06806b6 beq patch1a_0 ,p_mouse_check_key_gpio 
+0052 c069046a beq patch1a_2 ,p_mouse_init_sunt 
+0053 c069847a beq patch1a_3 ,p_mouse_sensor_poweron 
+0054 c06a84f3 beq patch1a_5 ,p_mouse_priority_bb_event 
+0055 c06c0395 beq patch1b_0 ,p_mouse_bb_event_timer 
+0056 c06e8499 beq patch1b_5 ,p_mouse_idle 
+0057 c06f018e beq patch1b_6 ,p_mouse_ready_reconnection_by_button 
+0058 c0700177 beq patch1c_0 ,p_mouse_led_off 
+0059 c0708174 beq patch1c_1 ,p_mouse_led_on 
+005a c06b0600 beq patch1a_6 ,p_mouse_le 
+005b c06c86fb beq patch1b_1 ,p_mouse_start_discovery 
+005c c06d055f beq patch1b_2 ,p_mouse_stop_discovery 
+005d c06e0463 beq patch1b_4 ,p_mouse_store_device_info 
+005e 2020137e branch loop 
+
+pf_patch_ext:
+005f c00f81f2 beq patch23_7 ,p_twspi_reset 
+0060 c04285fc beq patch30_5 ,p_ui_timer_check 
+0061 c06e817e beq patch3b_5 ,p_g24_dispatch 
+0062 c06f0110 beq patch3b_6 ,p_g24_receive_packet 
+0063 c06f8129 beq patch3b_7 ,p_g24_receive_data_info 
+0064 c0708084 beq patch3c_1 ,p_g24_transmit 
+0065 c0710562 beq patch3c_2 ,p_g24_pair_dispatch 
+0066 c071858d beq patch3c_3 ,p_g24_pair_sm_common_next 
+0067 c07485a6 beq patch3d_1 ,p_g24_reconn_dispatch 
+0068 c075022c beq patch3d_2 ,p_g24_transmit_no_interrupt 
+0069 c07605f1 beq patch3d_4 ,p_g24_lpm_wait 
+006a c04f8614 beq patch33_7 ,p_le_slave_match 
+006b c050861e beq patch34_1 ,p_le_slave_unsync 
+006c c05f0620 beq patch37_6 ,p_le_parse_l2cap 
+006d c06c8673 beq patch3b_1 ,p_le_pairing_sm 
+006e 2020137e branch loop 
+
+p_g24_transmit_prep:
+006f 6fe0c838 fetch 1 ,mem_24g_datalen 
+0070 1fe0fe03 increase 3 ,pdata 
+0071 67e0c83a store 1 ,mem_24g_txlen 
+0072 6fe0c85c fetch 1 ,mem_24g_syncword_crc8 
+0073 67e0cd41 store 1 ,mem_24g_txpayload_new 
+0074 6fe0c839 fetch 1 ,mem_24g_data_type 
+0075 1fe9fe00 lshift3 pdata ,pdata 
+0076 6848c82e fetcht 1 ,mem_24g_pid 
+0077 18410403 and temp ,0x03 ,temp 
+0078 18438400 lshift temp ,temp 
+0079 9841fe00 ior temp ,pdata 
+007a 6848c82f fetcht 1 ,mem_24g_no_ack 
+007b 9840fe00 iadd temp ,pdata 
+007c e7e08005 istore 1 ,contw 
+007d 6fe0c838 fetch 1 ,mem_24g_datalen 
+007e e7e08005 istore 1 ,contw 
+007f 6fe0c838 fetch 1 ,mem_24g_datalen 
+0080 98007200 iforce loopcnt 
+0081 d8c04cfb arg mem_24g_txbuf_new ,contr 
+0082 20407dd4 call memcpy 
+0083 2020225d branch g24_transmit_prep_rssi 
+
+p_g24_transmit:
+0084 6fe0c868 fetch 1 ,mem_24g_tx_phy 
+0085 20401637 call le_enable_phy_by_pdata 
+0086 6fe2483f fetch 4 ,mem_24g_addr 
+0087 98001200 iforce access 
+0088 20402181 call g24_prep 
+0089 204021f5 call g24_set_freq_tx 
+008a 79202a00 set1 txgfsk ,radio_ctrl 
+008b 782efc00 enable encode_fec0 
+008c 78307c00 enable is_tx 
+008d 7850fc00 disable is_rx 
+008e 20404d13 call rf_debug_tx_on_line 
+008f 785d7c00 disable lr_s2en 
+0090 19317e00 rshift16 access ,pdata 
+0091 1fecfe00 rshift8 pdata ,pdata 
+0092 1ff1fe00 rshift4 pdata ,pdata 
+0093 08008628 inject mod ,40 
+
+p_g24_transmit_packet:
+
+p_g24_transmit_nolr:
+0094 7823fc00 enable enable_white 
+0095 7824fc00 enable enable_crc 
+0096 6fe0c83a fetch 1 ,mem_24g_txlen 
+0097 98007200 iforce loopcnt 
+0098 d8c04d41 arg mem_24g_txpayload_new ,contr 
+0099 20202215 branch g24tr_loop 
+
+p_g24_txdata_prep:
+009a 2040009d call p_g24_package_data 
+009b 24740000 nrtn user 
+009c 2020006f branch p_g24_transmit_prep 
+
+p_g24_package_data:
+009d 6fe1489f fetch 2 ,mem_cb_24g_transmit_data 
+009e 20407e7a call callback_func 
+009f 203400d5 branch p_g24_accumulate_data_set ,user 
+00a0 6fe3ccfc fetch 7 ,mem_24g_txbuf_new + 1 
+00a1 207a0000 rtn blank 
+00a2 20207ec5 branch enable_user 
+
+p_g24_accumulate_data:
+00a3 7048ab00 jam 0 ,mem_24g_abort_pac 
+00a4 1a20fe01 add rega ,1 ,pdata 
+00a5 67e0c838 store 1 ,mem_24g_datalen 
+00a6 20402649 call g24_transmit_rf_ctrl_clear 
+00a7 67e0ccfb store 1 ,mem_24g_txbuf_new 
+00a8 20202646 branch g24_accumulate_data + 5 
+
+p_mouse_send_dpi_info_timer:
+00a9 da604de3 arg mem_device_tx_dpi_data_delay_timer ,regc 
+00aa da4000ac arg p_mouse_send_dpi_data_enable ,regb 
+00ab 202031fc branch timer_single_step 
+
+p_mouse_send_dpi_data_enable:
+00ac 6fe0c93d fetch 1 ,mem_device_flag 
+00ad c08000b0 bne mode_24g_device ,p_mouse_le_tx_dpi_data_info 
+00ae 704de201 jam 1 ,mem_device_tx_dpi_data_flag 
+00af 20600000 rtn 
+
+p_mouse_le_tx_dpi_data_info:
+00b0 da200002 arg 2 ,rega 
+00b1 68494e2c fetcht 2 ,mem_le_protocol_tx_handle 
+00b2 20401e5f call le_att_malloc_tx_notify 
+00b3 6fe0c997 fetch 1 ,mem_mouse_dpi 
+00b4 e7e08005 istore 1 ,contw 
+00b5 58000000 setarg 0 
+00b6 e7e08005 istore 1 ,contw 
+00b7 20600000 rtn 
+
+p_mouse_le_get_dpi_data_info:
+00b8 da200002 arg 2 ,rega 
+00b9 68494e2c fetcht 2 ,mem_le_protocol_tx_handle 
+00ba 20401e5f call le_att_malloc_tx_notify 
+00bb 6fe0c997 fetch 1 ,mem_mouse_dpi 
+00bc e7e08005 istore 1 ,contw 
+00bd 58000001 setarg 1 
+00be e7e08005 istore 1 ,contw 
+00bf 20600000 rtn 
+
+p_mouse_g24_tx_protocol_info_check:
+00c0 204000c4 call p_mouse_g24_tx_flag_check 
+00c1 6fe0cde1 fetch 1 ,mem_device_tx_protocol_data_type 
+00c2 207a0000 rtn blank 
+00c3 20207ec5 branch enable_user 
+
+p_mouse_g24_tx_flag_check:
+00c4 6fe0cde2 fetch 1 ,mem_device_tx_dpi_data_flag 
+00c5 243a00cc nbranch p_g24_send_dpi_info_enable ,blank 
+00c6 6fe0cde4 fetch 1 ,mem_device_tx_battery_data_flag 
+00c7 243a00d0 nbranch p_g24_send_battery_info_enable ,blank 
+00c8 20600000 rtn 
+
+p_g24_send_heart_info_enable:
+00c9 6fe0cde1 fetch 1 ,mem_device_tx_protocol_data_type 
+00ca 79207e05 set1 data_heart ,pdata 
+00cb 202000d3 branch p_g24_store_device_tx_flag 
+
+p_g24_send_dpi_info_enable:
+00cc 704de200 jam 0 ,mem_device_tx_dpi_data_flag 
+00cd 6fe0cde1 fetch 1 ,mem_device_tx_protocol_data_type 
+00ce 79207e06 set1 data_dpi ,pdata 
+00cf 202000d3 branch p_g24_store_device_tx_flag 
+
+p_g24_send_battery_info_enable:
+00d0 704de400 jam 0 ,mem_device_tx_battery_data_flag 
+00d1 6fe0cde1 fetch 1 ,mem_device_tx_protocol_data_type 
+00d2 79207e07 set1 data_battery ,pdata 
+
+p_g24_store_device_tx_flag:
+00d3 67e0cde1 store 1 ,mem_device_tx_protocol_data_type 
+00d4 20600000 rtn 
+
+p_g24_accumulate_data_set:
+00d5 7048ab00 jam 0 ,mem_24g_abort_pac 
+00d6 6fe0cde1 fetch 1 ,mem_device_tx_protocol_data_type 
+00d7 c00000a3 beq 0 ,p_g24_accumulate_data 
+00d8 c28300db bbit1 data_dpi ,p_g24_send_dpi_info_check 
+00d9 c28380ec bbit1 data_battery ,p_g24_send_battery_info_check 
+00da 20600000 rtn 
+
+p_g24_send_dpi_info_check:
+00db 6fe0cde0 fetch 1 ,mem_24g_rf_data_flag 
+00dc 203a00e5 branch p_g24_only_send_dpi_info ,blank 
+
+p_g24_send_dpi_info:
+00dd 6fe0c839 fetch 1 ,mem_24g_data_type 
+00de 79207e06 set1 data_dpi ,pdata 
+00df 67e0cde6 store 1 ,mem_mouse_temp_buff 
+00e0 6fe0c997 fetch 1 ,mem_mouse_dpi 
+00e1 67e0cde7 store 1 ,mem_mouse_temp_buff + 1 
+00e2 d8400002 arg 2 ,temp 
+00e3 da204de6 arg mem_mouse_temp_buff ,rega 
+00e4 20200106 branch p_g24_send_rf_other_data 
+
+p_g24_only_send_dpi_info:
+00e5 70483802 jam 2 ,mem_24g_datalen 
+00e6 6fe0c839 fetch 1 ,mem_24g_data_type 
+00e7 79207e06 set1 data_dpi ,pdata 
+00e8 67e0ccfb store 1 ,mem_24g_txbuf_new 
+00e9 6fe0c997 fetch 1 ,mem_mouse_dpi 
+00ea 67e0ccfc store 1 ,mem_24g_txbuf_new + 1 
+00eb 20600000 rtn 
+
+p_g24_send_battery_info_check:
+00ec 6fe0cde0 fetch 1 ,mem_24g_rf_data_flag 
+00ed 203a00f6 branch p_g24_only_send_battery_info ,blank 
+
+p_g24_send_battery_info:
+00ee 6fe0c839 fetch 1 ,mem_24g_data_type 
+00ef 79207e07 set1 data_battery ,pdata 
+00f0 67e0cde6 store 1 ,mem_mouse_temp_buff 
+00f1 6fe0cb00 fetch 1 ,mem_le_battery_level_percentage 
+00f2 67e0cde7 store 1 ,mem_mouse_temp_buff + 1 
+00f3 d8400002 arg 2 ,temp 
+00f4 da204de6 arg mem_mouse_temp_buff ,rega 
+00f5 20200106 branch p_g24_send_rf_other_data 
+
+p_g24_only_send_battery_info:
+00f6 70483802 jam 2 ,mem_24g_datalen 
+00f7 6fe0c839 fetch 1 ,mem_24g_data_type 
+00f8 79207e07 set1 data_battery ,pdata 
+00f9 67e0ccfb store 1 ,mem_24g_txbuf_new 
+00fa 6fe0cb00 fetch 1 ,mem_le_battery_level_percentage 
+00fb 67e0ccfc store 1 ,mem_24g_txbuf_new + 1 
+00fc 20600000 rtn 
+
+p_g24_send_slow_heart_info:
+00fd 7048ab00 jam 0 ,mem_24g_abort_pac 
+00fe 70483901 jam type_ms ,mem_24g_data_type 
+00ff 20402649 call g24_transmit_rf_ctrl_clear 
+0100 70483801 jam 1 ,mem_24g_datalen 
+0101 6fe0c839 fetch 1 ,mem_24g_data_type 
+0102 79207e05 set1 data_heart ,pdata 
+0103 67e0ccfb store 1 ,mem_24g_txbuf_new 
+0104 2040006f call p_g24_transmit_prep 
+0105 202002d9 branch p_g24_transmit_process 
+
+p_g24_send_rf_other_data:
+0106 1840fe08 add temp ,8 ,pdata 
+0107 67e0c838 store 1 ,mem_24g_datalen 
+0108 20402649 call g24_transmit_rf_ctrl_clear 
+0109 67e0ccfb store 1 ,mem_24g_txbuf_new 
+010a 6fe3c8d4 fetch 7 ,mem_mouse_key 
+010b 67e3ccfc store 7 ,mem_24g_txbuf_new + 1 
+010c 18427200 copy temp ,loopcnt 
+010d 1a220c00 copy rega ,contr 
+010e d8a04d03 arg mem_24g_txbuf_new + 8 ,contw 
+010f 20207dd4 branch memcpy 
+
+p_g24_receive_packet:
+0110 6fe0c867 fetch 1 ,mem_24g_rx_phy 
+0111 20401637 call le_enable_phy_by_pdata 
+0112 6fe2483f fetch 4 ,mem_24g_addr 
+0113 98001200 iforce access 
+0114 204010ac call calc_mod_value_scale_le 
+0115 2040115d call set_sync_on 
+0116 6848c83d fetcht 1 ,mem_24g_ch 
+0117 20401674 call le_rf_rx_enable 
+
+p_g24_receive_rxon:
+0118 20402181 call g24_prep 
+0119 c597811d bmark0 mark_ble_lr ,p_g24_receive_nolr 
+011a 783cfc00 pulse dewhiten_code_calc 
+011b 2000001e nop 30 
+011c 20402181 call g24_prep 
+
+p_g24_receive_nolr:
+011d 7857fc00 disable user3 
+011e 7826fc00 enable decode_fec0 
+011f 7830fc00 enable is_rx 
+0120 78507c00 disable is_tx 
+0121 78287c00 enable swfine 
+0122 6fe1483b fetch 2 ,mem_24g_rx_window 
+0123 98003600 iforce stop_watch 
+0124 37c18400 correlate null ,timeout 
+0125 242c21ef nbranch g24_sync_timeout ,sync 
+0126 20404d0d call rf_debug_rx_sync_line 
+0127 c517a1a4 bmark1 mark_ble_lr ,g24_receive_skip_fec1 
+0128 202021a4 branch g24_receive_skip_fec1 
+
+p_g24_receive_data_info:
+0129 204021ec call g24_receive_byte 
+012a 67e0ccb5 store 1 ,mem_24g_rxbuf_new 
+012b c5138131 bmark1 mark_24g_rxmode ,p_g24_receive_skip 
+012c 6fe0ccb5 fetch 1 ,mem_24g_rxbuf_new 
+012d 1fe97e00 rshift3 pdata ,pdata 
+012e 6848c839 fetcht 1 ,mem_24g_data_type 
+012f a8400e00 icompare bits_data ,temp 
+0130 2420a1f1 nbranch g24_end_of_packet ,true 
+
+p_g24_receive_skip:
+0131 204021ec call g24_receive_byte 
+0132 e7e08005 istore 1 ,contw 
+0133 1fe67c44 sub pdata ,68 ,null 
+0134 242121f1 nbranch g24_end_of_packet ,positive 
+0135 1fe27200 copy pdata ,loopcnt 
+0136 2022a1c3 branch g24rx_nopayload ,zero 
+0137 202021c0 branch g24rx_loop 
+
+p_g24_parse_receive_work_data:
+0138 20400160 call p_g24_device_flag_clr 
+0139 6fe0c82d fetch 1 ,mem_24g_rxdata_length 
+013a 207a0000 rtn blank 
+
+p_g24_receive_ack_data:
+013b 6fe14d87 fetch 2 ,mem_24g_rxpayload_new 
+013c c07a8145 beq dpi_ack ,p_g24_receive_dpi_data_set 
+013d c07a0152 beq report_ack ,p_g24_receive_report_data_set 
+013e 20600000 rtn 
+
+p_checksum_calcu:
+013f da200000 arg 0 ,rega 
+
+p_dongle_data_checksum:
+0140 efe08006 ifetch 1 ,contr 
+0141 9a20a200 iadd rega ,rega 
+0142 c2000140 loop p_dongle_data_checksum 
+0143 1a2122ff and_into 0xff ,rega 
+0144 20600000 rtn 
+
+p_g24_receive_dpi_data_set:
+0145 6fe0cd89 fetch 1 ,mem_24g_rxpayload_new + 2 
+
+p_mouse_dpi_set:
+0146 c000814a beq dpi_800 ,p_mouse_dpi_800_set 
+0147 c001814e beq dpi_1200 ,p_mouse_dpi_1200_set 
+0148 c0020150 beq dpi_1600 ,p_mouse_dpi_1600_set 
+0149 20600000 rtn 
+
+p_mouse_dpi_800_set:
+014a 70499702 jam mouse_dpi_level3 ,mem_mouse_dpi 
+014b 202004e2 branch p_mouse_seting_dpi + 1 
+
+p_mouse_dpi_1000_set:
+014c 70499703 jam mouse_dpi_level4 ,mem_mouse_dpi 
+014d 202004e2 branch p_mouse_seting_dpi + 1 
+
+p_mouse_dpi_1200_set:
+014e 70499700 jam mouse_dpi_level1 ,mem_mouse_dpi 
+014f 202004e2 branch p_mouse_seting_dpi + 1 
+
+p_mouse_dpi_1600_set:
+0150 70499701 jam mouse_dpi_level2 ,mem_mouse_dpi 
+0151 202004e2 branch p_mouse_seting_dpi + 1 
+
+p_g24_receive_report_data_set:
+0152 6fe0cd89 fetch 1 ,mem_24g_rxpayload_new + 2 
+
+p_mouse_report_set:
+0153 c0008158 beq report_125 ,p_mouse_24g_125hz_report_set 
+0154 c001015a beq report_250 ,p_mouse_24g_250hz_report_set 
+0155 c001815c beq report_500 ,p_mouse_24g_500hz_report_set 
+0156 c002015e beq report_1000 ,p_mouse_24g_1000hz_report_set 
+0157 20600000 rtn 
+
+p_mouse_24g_125hz_report_set:
+0158 70499e01 jam report_125 ,mem_mouse_24g_report 
+0159 2020462e branch mouse_store_device_info_delay 
+
+p_mouse_24g_250hz_report_set:
+015a 70499e02 jam report_250 ,mem_mouse_24g_report 
+015b 2020462e branch mouse_store_device_info_delay 
+
+p_mouse_24g_500hz_report_set:
+015c 70499e03 jam report_500 ,mem_mouse_24g_report 
+015d 2020462e branch mouse_store_device_info_delay 
+
+p_mouse_24g_1000hz_report_set:
+015e 70499e04 jam report_1000 ,mem_mouse_24g_report 
+015f 2020462e branch mouse_store_device_info_delay 
+
+p_g24_device_flag_clr:
+0160 6fe0cde1 fetch 1 ,mem_device_tx_protocol_data_type 
+0161 2feffe07 isolate1 data_battery ,pdata 
+0162 2040816a call p_g24_clr_battery_info_flag ,true 
+0163 2feffe06 isolate1 data_dpi ,pdata 
+0164 20408168 call p_g24_clr_dpi_info_flag ,true 
+0165 2feffe05 isolate1 data_heart ,pdata 
+0166 2040816c call p_g24_clr_heart_info_flag ,true 
+0167 20600000 rtn 
+
+p_g24_clr_dpi_info_flag:
+0168 793ffe06 set0 data_dpi ,pdata 
+0169 202000d3 branch p_g24_store_device_tx_flag 
+
+p_g24_clr_battery_info_flag:
+016a 793ffe07 set0 data_battery ,pdata 
+016b 202000d3 branch p_g24_store_device_tx_flag 
+
+p_g24_clr_heart_info_flag:
+016c 793ffe05 set0 data_heart ,pdata 
+016d 202000d3 branch p_g24_store_device_tx_flag 
+
+p_lpm_dispatch:
+016e 20401436 call lpo_calibration 
+016f 6fe1c174 fetch 3 ,mem_clks_per_lpo 
+0170 207a0000 rtn blank 
+0171 6fe0ccb2 fetch 1 ,mem_mouse_dpi_led_blink_enable 
+0172 c1008000 rtneq on 
+0173 202014b0 branch lpm_dispatch + 4 
+
+p_mouse_led_on:
+0174 18467cff sub temp ,gpio_disable ,null 
+0175 c1028000 rtneq zero 
+0176 2020497d branch mouse_led_on + 1 
+
+p_mouse_led_off:
+0177 18467cff sub temp ,gpio_disable ,null 
+0178 c1028000 rtneq zero 
+0179 20204979 branch mouse_led_off + 1 
+
+p_led_num_check:
+017a 6fe0cbc0 fetch 1 ,mem_mouse_flag + 4 
+017b 247a0000 nrtn blank 
+017c 70448e00 jam 0 ,mem_ui_led_struct_num 
+017d 20600000 rtn 
+
+p_g24_dispatch:
+017e c513a3e1 bmark1 mark_24g_rxmode ,g24_receive_dispatch 
+017f c6930000 rtnmark0 mark_24g 
+0180 6fe0c8a5 fetch 1 ,mem_24g_conn_sm 
+0181 c280a2f6 bbit1 state_24g_pair ,g24_pair_dispatch 
+0182 c2812589 bbit1 state_24g_reconn ,g24_reconn_dispatch 
+0183 6fe0c8c1 fetch 1 ,mem_24g_transmit_by_interrupt 
+0184 c0008186 beq g24_tx_timer_int_enable ,p_g24_transmit_by_interrupt_check 
+0185 2020022c branch p_g24_transmit_no_interrupt 
+
+p_g24_transmit_by_interrupt_check:
+0186 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+0187 c28d018a bbit1 mouse_enable_24g_1000 ,p_g24_transmit_by_interrupt_high_reoport_set 
+0188 c28c818a bbit1 mouse_enable_24g_500hz ,p_g24_transmit_by_interrupt_high_reoport_set 
+0189 202026cd branch g24_transmit_by_interrupt 
+
+p_g24_transmit_by_interrupt_high_reoport_set:
+018a 204022a0 call g24_timer_check 
+018b 24740000 nrtn user 
+018c 204026e2 call g24_interval_calibrate 
+018d 20202628 branch g24_transmit_no_interrupt 
+
+p_mouse_ready_reconnection_by_button:
+018e 6fe0cbc5 fetch 1 ,mem_device_number 
+018f c1008000 rtneq 1 
+0190 204003d8 call p_mouse_multi_led_blink_disable 
+0191 20404700 call mouse_select_device_number 
+0192 6048c93d storet 1 ,mem_device_flag 
+
+p_mouse_store_device_number_before_reset:
+0193 7041ca00 jam 0 ,mem_link_key_exists 
+0194 20404718 call mouse_select_device_enable 
+0195 20404356 call mouse_stop_bluetooth_mode 
+0196 204031e6 call app_evt_button_long_pressed 
+0197 202046fb branch mouse_store_device_number_before_reset + 3 
+
+p_set_mem_xtal_cache:
+0198 6fe0c17b fetch 1 ,mem_lpm_config + 1 
+0199 67e0cc58 store 1 ,mem_xtal_cache 
+019a 20600000 rtn 
+
+p_soft_reset:
+019b 20800000 clear_stack 
+019c 70808673 jam 0x73 ,core_spid_ctrl 
+019d 24558198 ncall p_set_mem_xtal_cache ,wake 
+019e 20403166 call app_param_init 
+019f 2455817a ncall p_led_num_check ,wake 
+01a0 2055c1a8 call mouse_matrix_public_gpio_reset ,wake 
+01a1 20403cb3 call mouse_xtal_init 
+01a2 20401246 call initialize_radio 
+01a3 70804204 jam clksel_xtal ,core_clksel 
+01a4 6fe0c0c5 fetch 1 ,mem_fcomp_div 
+01a5 c00c01a7 beq xtal_24m ,p_soft_reset_next 
+01a6 70804205 jam clksel_dpll ,core_clksel 
+
+p_soft_reset_next:
+01a7 6fe0cc58 fetch 1 ,mem_xtal_cache 
+01a8 67e0c17b store 1 ,mem_lpm_config + 1 
+01a9 58000f0f setarg 0xf0f 
+01aa d8a00fff arg 0xfff ,contw 
+01ab 98a10a00 iand contw ,contw 
+01ac 6fe0c17a fetch 1 ,mem_lpm_config 
+01ad 1fe17ef0 and_into 0xf0 ,pdata 
+01ae 1fed7e00 lshift8 pdata ,pdata 
+01af 98a1fe00 ior contw ,pdata 
+01b0 793ffe02 set0 2 ,pdata 
+01b1 67f1004c store 2 ,core_lpm_reg 
+01b2 efe10006 ifetch 2 ,contr 
+01b3 e7e10005 istore 2 ,contw 
+01b4 58000001 setarg lpmreg_sel_ctrl 
+01b5 37d98200 until null ,lpo_edge 
+01b6 67f08005 store 1 ,core_lpm_wr 
+01b7 70417b08 jam 0x08 ,mem_lpm_config + 1 
+01b8 20200805 branch soft_reset + 4 
+
+p_enable_rc_clock:
+01b9 6ff20138 fetch 4 ,core_lpm_ctrl 
+01ba 79207e02 set1 2 ,pdata 
+01bb 67f2004c store 4 ,core_lpm_reg 
+01bc 58000001 setarg lpmreg_sel_ctrl 
+01bd 37d98200 until null ,lpo_edge 
+01be 67f08005 store 1 ,core_lpm_wr 
+01bf 37d98200 until null ,lpo_edge 
+01c0 37d98200 until null ,lpo_edge 
+01c1 37d98200 until null ,lpo_edge 
+01c2 20002710 nop 10000 
+01c3 20600000 rtn 
+
+p_shutdown_radio:
+01c4 6fe0c1ea fetch 1 ,mem_gain_fix 
+01c5 67e08964 store 1 ,mem_temp 
+01c6 2040114c call shutdown_radio + 1 
+01c7 708a0a00 jam 0 ,core_rf_ldo_en0 
+01c8 6fe08964 fetch 1 ,mem_temp 
+01c9 67e0c1ea store 1 ,mem_gain_fix 
+01ca 20600000 rtn 
+
+p_set_sync_on:
+01cb 70890005 jam 0x5 ,modem_en 
+01cc 20000002 nop 2 
+01cd 70890000 jam 0x0 ,modem_en 
+01ce 6fe0c0c5 fetch 1 ,mem_fcomp_div 
+01cf c00c1164 beq xtal_24m ,set_sync_on_24m 
+
+p_set_sync_on_16m:
+01d0 708a8729 jam 0x29 ,core_syn_afc_cfg1 
+01d1 20201179 branch set_sync_on_16m 
+
+p_rf_da_ldo_abb_en_init:
+01d2 6ff08a0a fetch 1 ,core_rf_ldo_en0 
+01d3 79207e03 set1 3 ,pdata 
+01d4 67f08a0a store 1 ,core_rf_ldo_en0 
+01d5 200000f0 nop 240 
+01d6 793ffe03 set0 3 ,pdata 
+01d7 67f08a0a store 1 ,core_rf_ldo_en0 
+01d8 20600000 rtn 
+
+p_initialize_radio_cont:
+01d9 7041eaff jam 0xff ,mem_gain_fix 
+01da 708a8500 jam 0x00 ,core_syn_loopdiv_dsm_cfg 
+01db 70892140 jam 0x40 ,core_rx_ctrl1 
+01dc 204001d2 call p_rf_da_ldo_abb_en_init 
+01dd 20201252 branch initialize_radio_cont + 1 
+
+p_txon_next:
+01de 6fe0c1e8 fetch 1 ,mem_tx_power 
+01df c05501e2 beq tx_power_fast_conn ,p_set_tx_power_f17db 
+01e0 c04a81e5 beq tx_power_pair ,p_set_tx_power_pair 
+01e1 20201237 branch set_tx_power_10db 
+
+p_set_tx_power_f17db:
+01e2 708a390a jam 0x0a ,core_tx_pwr_ctrl0 
+01e3 708a3a00 jam 0x00 ,core_tx_pwr_ctrl1 
+01e4 20201226 branch set_rf_ldo_cfg89 
+
+p_set_tx_power_pair:
+01e5 708a390a jam 0x0a ,core_tx_pwr_ctrl0 
+01e6 708a3a00 jam 0x00 ,core_tx_pwr_ctrl1 
+01e7 20201226 branch set_rf_ldo_cfg89 
+
+p_app_init:
+
+p_mouse_init:
+01e8 20406e5e call enable_authrom 
+01e9 204006ec call p_mouse_setting_config 
+01ea 204006fd call p_mouse_report_param_set 
+01eb 204041e7 call mouse_init_sunt 
+01ec 20758000 rtn wake 
+01ed 204004e3 call p_mouse_seting_sensor_type 
+01ee 20404766 call mouse_drawing_optima_init 
+01ef 204006ef call p_mouse_cb_fuction 
+01f0 20400484 call p_mouse_sensor_powerdown 
+01f1 20203c7f branch mouse_init_wireless 
+
+p_twspi_reset:
+01f2 6fe0c923 fetch 1 ,mem_mouse_sensor_sclk_gpio 
+01f3 20205b56 branch twspi_reset + 1 
+
+p_mouse_le_name_load:
+01f4 6fe0cbff fetch 1 ,mem_le_name_patch_len 
+01f5 207a0000 rtn blank 
+01f6 1fe0f201 add pdata ,1 ,loopcnt 
+01f7 d8c04bff arg mem_le_name_patch_len ,contr 
+01f8 d8a042f7 arg mem_le_name_len ,contw 
+01f9 20207dd4 branch memcpy 
+
+p_mouse_fetch_normal_tx_power:
+01fa 6fe0cc72 fetch 1 ,mem_normal_tx_power 
+01fb 67e0c1e8 store 1 ,mem_tx_power 
+01fc 20600000 rtn 
+
+p_mouse_24g_package_data:
+01fd c6930000 rtnmark0 mark_24g 
+01fe 20403fb0 call mouse_motion 
+01ff 204000c0 call p_mouse_g24_tx_protocol_info_check 
+0200 24740000 nrtn user 
+0201 6fe0cc32 fetch 1 ,mem_long_sleep_flag 
+0202 704c3200 jam 0 ,mem_long_sleep_flag 
+0203 245a0490 ncall p_mouse_short_sleep_clear_wake ,blank 
+0204 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+0205 c30a8208 bbit0 mouse_enable_keyboard ,p_mouse_24g_mouse_package_data 
+0206 6fe0cb9c fetch 1 ,mem_customer_key 
+0207 243a48c1 nbranch mouse_24g_keyboard_package_data ,blank 
+
+p_mouse_24g_mouse_package_data:
+0208 20400220 call p_mouse_data_xy_release 
+0209 6fe0c839 fetch 1 ,mem_24g_data_type 
+020a c2808217 bbit1 1 ,p_mouse_24g_mouse_package_data_now 
+020b 6848ccfc fetcht 1 ,mem_24g_txbuf_new + 1 
+020c 6fe0c8d4 fetch 1 ,mem_mouse_key 
+020d 9841fe00 ior temp ,pdata 
+020e 67e0c8d4 store 1 ,mem_mouse_key 
+020f 6848cd01 fetcht 1 ,mem_24g_txbuf_new + 6 
+0210 6fe0c8d9 fetch 1 ,mem_mouse_z 
+0211 9840fe00 iadd temp ,pdata 
+0212 67e0c8d9 store 1 ,mem_mouse_z 
+0213 6848cd02 fetcht 1 ,mem_24g_txbuf_new + 7 
+0214 6fe0c8da fetch 1 ,mem_mouse_tz 
+0215 9840fe00 iadd temp ,pdata 
+0216 67e0c8da store 1 ,mem_mouse_tz 
+
+p_mouse_24g_mouse_package_data_now:
+0217 70483901 jam type_ms ,mem_24g_data_type 
+0218 da200007 arg 7 ,rega 
+0219 da4048d4 arg mem_mouse_key ,regb 
+021a 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+021b c28ca6e8 bbit1 mouse_enable_24g_500hz ,g24_transmit_by_interrupt_enable 
+021c c28d26e8 bbit1 mouse_enable_24g_1000 ,g24_transmit_by_interrupt_enable 
+021d 6fe148d9 fetch 2 ,mem_mouse_z 
+021e 207a0000 rtn blank 
+021f 202026e8 branch g24_transmit_by_interrupt_enable 
+
+p_mouse_data_xy_release:
+0220 6fe0cde0 fetch 1 ,mem_24g_rf_data_flag 
+0221 207a0000 rtn blank 
+0222 2020430d branch mouse_data_xy_release + 2 
+
+p_mouse_24g_fast_conn_mode_check:
+0223 6fe24895 fetch 4 ,mem_24g_receiver_addr 
+0224 684a4891 fetcht 4 ,mem_24g_fast_conn_addr 
+0225 98467c00 isub temp ,null 
+0226 20228229 branch p_mouse_soft_agc_enable ,zero 
+
+p_mouse_soft_agc_disable:
+0227 7041eaff jam 0xff ,mem_gain_fix 
+0228 20600000 rtn 
+
+p_mouse_soft_agc_enable:
+0229 7041ea00 jam 0 ,mem_gain_fix 
+022a 7041e8aa jam tx_power_fast_conn ,mem_tx_power 
+022b 20600000 rtn 
+
+p_g24_transmit_no_interrupt:
+022c 2040009a call p_g24_txdata_prep 
+022d 2434051d nbranch p_g24_nodata_transmit ,user 
+
+p_g24_transmit_start:
+022e 204002d9 call p_g24_transmit_process 
+022f 20400223 call p_mouse_24g_fast_conn_mode_check 
+0230 6fe0cbf2 fetch 1 ,mem_sensor_shutdown_flag 
+0231 243a0236 nbranch p_g24_short_sleep ,blank 
+0232 6fe448b4 fetch 8 ,mem_24g_long_sleep_set 
+0233 67e4485f store 8 ,mem_24g_enter_hibernate 
+0234 6fe148c6 fetch 2 ,mem_24g_long_sleep_param_update_timer_init 
+0235 67e148c8 store 2 ,mem_24g_long_sleep_param_update_timer 
+
+p_g24_short_sleep:
+0236 204026c2 call g24_lpm_wait 
+0237 24740000 nrtn user 
+0238 20407f52 call clear_wake 
+0239 6fe0ce36 fetch 1 ,mem_mouse_repair_pack_flag 
+023a 203a026f branch p_g24_short_sleep_default ,blank 
+023b 6fe0cc31 fetch 1 ,mem_sleep_miss 
+023c 704c3100 jam 0 ,mem_sleep_miss 
+023d 1fe67c00 sub pdata ,0 ,null 
+023e 24228244 nbranch p_g24_short_sleep_last_miss ,zero 
+023f 68494c2f fetcht 2 ,mem_retransmit 
+0240 18467c00 sub temp ,0 ,null 
+0241 2022826f branch p_g24_short_sleep_default ,zero 
+0242 6fe24c21 fetch 4 ,mem_tx_time_last_delt 
+0243 203a026f branch p_g24_short_sleep_default ,blank 
+
+p_g24_short_sleep_last_miss:
+0244 684a4c33 fetcht 4 ,mem_sleep_miss_temp 
+0245 284ffe1f isolate1 31 ,temp 
+0246 2020826a branch p_sub_miss_temp ,true 
+0247 6fe24c21 fetch 4 ,mem_tx_time_last_delt 
+0248 9840fe00 iadd temp ,pdata 
+
+p_g24_short_sleep_notify:
+0249 684a4c16 fetcht 4 ,mem_24g_tsniff 
+024a 98460400 isub temp ,temp 
+024b 604a4c33 storet 4 ,mem_sleep_miss_temp 
+024c 24210272 nbranch p_g24_short_sleep_long ,positive 
+024d 6fe1c8b1 fetch 3 ,mem_24g_short_sleep_set 
+024e 98467e00 isub temp ,pdata 
+024f 24210279 nbranch p_g24_short_sleep_2 ,positive 
+0250 d8400600 arg 0x600 ,temp 
+0251 98467c00 isub temp ,null 
+0252 24210279 nbranch p_g24_short_sleep_2 ,positive 
+
+p_g24_short_sleep2:
+0253 20407e1f call clk2lpo 
+0254 604a4160 storet 4 ,mem_sleep_counter 
+
+p_lpm_short_sleep:
+0255 6fe0c0c5 fetch 1 ,mem_fcomp_div 
+0256 c0040259 beq xtal_16m ,p_lpm_short_sleep_skip_pll_set 
+0257 58000000 setarg 0 
+0258 67f18a00 store 3 ,core_clkpll_ctrl0 
+
+p_lpm_short_sleep_skip_pll_set:
+0259 704c2bfa jam 250 ,mem_tx_time_offset 
+025a 204012d1 call xtal_fast_wake 
+025b 6fe24164 fetch 4 ,mem_sleep_counter_all 
+025c 9840fe00 iadd temp ,pdata 
+025d 67e24164 store 4 ,mem_sleep_counter_all 
+025e 18027e00 deposit mark 
+025f 67e4419d store 8 ,mem_saved_mark 
+0260 d8c08070 arg core_gpio_conf ,contr 
+0261 d8a04186 arg mem_saved_gpio ,contw 
+0262 20407d74 call memcpy20 
+0263 6ff08086 fetch 1 ,core_spid_ctrl 
+0264 67e0c1a5 store 1 ,mem_saved_spidctrl 
+0265 20401410 call lpm_ctrl3_cfg_dig_vsel 
+0266 6ff08042 fetch 1 ,core_clksel 
+0267 1fe1fe14 or_into 0x14 ,pdata 
+0268 67f08042 store 1 ,core_clksel 
+0269 2020146d branch lpm_sleep_next 
+
+p_sub_miss_temp:
+026a dfffffff arg -1 ,pdata 
+026b 98465e00 isub temp ,regext 
+026c 6fe24c21 fetch 4 ,mem_tx_time_last_delt 
+026d 9de67e00 isub regext ,pdata 
+026e 20200249 branch p_g24_short_sleep_notify 
+
+p_g24_short_sleep_default:
+026f 20400276 call p_g24_miss_temp_clear 
+0270 6fe1c8b1 fetch 3 ,mem_24g_short_sleep_set 
+0271 20200253 branch p_g24_short_sleep2 
+
+p_g24_short_sleep_long:
+0272 18460400 sub temp ,0 ,temp 
+0273 6fe1c8b1 fetch 3 ,mem_24g_short_sleep_set 
+0274 9840fe00 iadd temp ,pdata 
+0275 20200253 branch p_g24_short_sleep2 
+
+p_g24_miss_temp_clear:
+0276 58000000 setarg 0 
+0277 67e24c33 store 4 ,mem_sleep_miss_temp 
+0278 20600000 rtn 
+
+p_g24_short_sleep_2:
+0279 704c3101 jam 1 ,mem_sleep_miss 
+027a 20600000 rtn 
+
+p_mouse_repair_pack_check_timer:
+027b 6fe0ce35 fetch 1 ,mem_device_pair_flag 
+027c 207a0000 rtn blank 
+027d 6fe0ce36 fetch 1 ,mem_mouse_repair_pack_flag 
+027e 247a0000 nrtn blank 
+027f 6fe0ce37 fetch 1 ,mem_mouse_g24_pack_conut 
+0280 1fe0fe01 increase 1 ,pdata 
+0281 67e0ce37 store 1 ,mem_mouse_g24_pack_conut 
+0282 c1850000 rtnne 0x0a 
+0283 704e3700 jam 0 ,mem_mouse_g24_pack_conut 
+0284 704e3601 jam 1 ,mem_mouse_repair_pack_flag 
+0285 20600000 rtn 
+
+p_mouse_send_pack_by_interrupt:
+0286 704e3709 jam 9 ,mem_mouse_g24_pack_conut 
+0287 704e3600 jam 0 ,mem_mouse_repair_pack_flag 
+0288 20600000 rtn 
+
+p_send_time_check:
+0289 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+028a c38c8000 rtnbit1 mouse_enable_24g_500hz 
+028b c38d0000 rtnbit1 mouse_enable_24g_1000 
+028c 6fe0c8c1 fetch 1 ,mem_24g_transmit_by_interrupt 
+028d c0008286 beq g24_tx_timer_int_enable ,p_mouse_send_pack_by_interrupt 
+028e 6fe0ce36 fetch 1 ,mem_mouse_repair_pack_flag 
+028f 203a02ac branch p_send_time_long_wake ,blank 
+0290 6fe0cc1a fetch 1 ,mem_tx_count 
+0291 203a02d5 branch p_send_timer_first ,blank 
+0292 1b227e00 copy clkn ,pdata 
+0293 684b4c1b fetcht 6 ,mem_tx_time_last 
+0294 67e34c1b store 6 ,mem_tx_time_last 
+0295 20407e0a call clk_diff_rt 
+0296 67e24c21 store 4 ,mem_tx_time_last_delt 
+0297 6fe0cc31 fetch 1 ,mem_sleep_miss 
+0298 247a0000 nrtn blank 
+0299 6fe14c2f fetch 2 ,mem_retransmit 
+029a 247a0000 nrtn blank 
+029b 6fe24c33 fetch 4 ,mem_sleep_miss_temp 
+029c 247a0000 nrtn blank 
+029d 6fe24c21 fetch 4 ,mem_tx_time_last_delt 
+029e 684a4c16 fetcht 4 ,mem_24g_tsniff 
+029f 18438400 lshift temp ,temp 
+02a0 98467c00 isub temp ,null 
+02a1 202102ac branch p_send_time_long_wake ,positive 
+02a2 684acc25 fetcht 5 ,mem_tx_time_sum 
+02a3 9840fe00 iadd temp ,pdata 
+02a4 67e2cc25 store 5 ,mem_tx_time_sum 
+02a5 6848cc1a fetcht 1 ,mem_tx_count 
+02a6 6fe0cc2a fetch 1 ,mem_tx_time_sum_count 
+02a7 98467c00 isub temp ,null 
+02a8 202282b0 branch p_send_time_check_average ,zero 
+02a9 18408401 increase 1 ,temp 
+02aa 6048cc1a storet 1 ,mem_tx_count 
+02ab 20600000 rtn 
+
+p_send_time_long_wake:
+02ac 58000000 setarg 0 
+02ad 67e0cc1a store 1 ,mem_tx_count 
+02ae 67e2cc25 store 5 ,mem_tx_time_sum 
+02af 20600000 rtn 
+
+p_send_time_check_average:
+02b0 704c1a01 jam 1 ,mem_tx_count 
+02b1 d8400000 arg 0 ,temp 
+02b2 6fe2cc25 fetch 5 ,mem_tx_time_sum 
+02b3 604acc25 storet 5 ,mem_tx_time_sum 
+02b4 6848cc2a fetcht 1 ,mem_tx_time_sum_count 
+02b5 9846fc00 idiv temp 
+02b6 20407e64 call wait_div_end 
+02b7 1807a200 quotient rega 
+02b8 6fe24c16 fetch 4 ,mem_24g_tsniff 
+02b9 6848cc2b fetcht 1 ,mem_tx_time_offset 
+02ba 98460400 isub temp ,temp 
+02bb 1a227e00 copy rega ,pdata 
+02bc 98467e00 isub temp ,pdata 
+02bd 202102c9 branch p_send_time_check_average_late ,positive 
+02be 1fe67e00 sub pdata ,0 ,pdata 
+02bf 1feb7e00 rshift2 pdata ,pdata 
+02c0 6849c8b1 fetcht 3 ,mem_24g_short_sleep_set 
+02c1 98408400 iadd temp ,temp 
+02c2 6fe1cc2c fetch 3 ,mem_24g_short_sleep_set_init 
+02c3 da201800 arg 0x1800 ,rega 
+02c4 9a20fe00 iadd rega ,pdata 
+02c5 98467c00 isub temp ,null 
+02c6 242102d3 nbranch p_send_time_check_average_min ,positive 
+02c7 6049c8b1 storet 3 ,mem_24g_short_sleep_set 
+02c8 20600000 rtn 
+
+p_send_time_check_average_late:
+02c9 1feb0400 rshift2 pdata ,temp 
+02ca 6fe1c8b1 fetch 3 ,mem_24g_short_sleep_set 
+02cb 98460400 isub temp ,temp 
+02cc 6fe1cc2c fetch 3 ,mem_24g_short_sleep_set_init 
+02cd da201800 arg 0x1800 ,rega 
+02ce 9a267e00 isub rega ,pdata 
+02cf 98467c00 isub temp ,null 
+02d0 202102d3 branch p_send_time_check_average_min ,positive 
+02d1 6049c8b1 storet 3 ,mem_24g_short_sleep_set 
+02d2 20600000 rtn 
+
+p_send_time_check_average_min:
+02d3 67e1c8b1 store 3 ,mem_24g_short_sleep_set 
+02d4 20600000 rtn 
+
+p_send_timer_first:
+02d5 704c1a01 jam 1 ,mem_tx_count 
+02d6 1b227e00 copy clkn ,pdata 
+02d7 67e34c1b store 6 ,mem_tx_time_last 
+02d8 20600000 rtn 
+
+p_g24_transmit_process:
+02d9 58000000 setarg 0 
+02da 67e0c8aa store 1 ,mem_24g_retry 
+02db 67e14c2f store 2 ,mem_retransmit 
+02dc 67e0ce34 store 1 ,mem_retransmit_flag 
+
+p_g24_transmit_loop:
+02dd 20402662 call g24_transmit_receive_ack 
+02de 242c0304 nbranch p_g24_retransmit ,sync 
+02df 24378304 nbranch p_g24_retransmit ,user3 
+02e0 20400289 call p_send_time_check 
+02e1 204002ef call p_g24_ackpayload_parse 
+02e2 20400138 call p_g24_parse_receive_work_data 
+02e3 20400370 call p_mouse_wakeup_24g 
+
+p_g24_transmit_no_ack:
+02e4 20402727 call power_ctrl_pac_succ_incrs 
+
+p_g24_transmit_next_packet:
+02e5 204005ca call p_g24_txbuf_clear 
+02e6 204005cd call p_g24_rxpayload_clear 
+02e7 6fe0c82e fetch 1 ,mem_24g_pid 
+02e8 1fe0fe01 increase 1 ,pdata 
+02e9 67e0c82e store 1 ,mem_24g_pid 
+02ea 204002ec call p_g24_hop_enable_packet 
+02eb 2020265e branch g24_transmit_abandon 
+
+p_g24_hop_enable_packet:
+02ec 6fe0c839 fetch 1 ,mem_24g_data_type 
+02ed c4020000 rtnbit0 bit_hop 
+02ee 20200348 branch p_g24_hop_ch_disable 
+
+p_g24_ackpayload_parse:
+02ef 204002f6 call p_g24_read_len_pid_crc 
+02f0 6fe0c82d fetch 1 ,mem_24g_rxdata_length 
+02f1 207a0000 rtn blank 
+02f2 98007200 iforce loopcnt 
+02f3 d8c04cb7 arg mem_24g_rxbuf_new + 2 ,contr 
+02f4 d8a04d87 arg mem_24g_rxpayload_new ,contw 
+02f5 20207dd4 branch memcpy 
+
+p_g24_read_len_pid_crc:
+02f6 6fe0ccb6 fetch 1 ,mem_24g_rxbuf_new + 1 
+02f7 67e0c82d store 1 ,mem_24g_rxdata_length 
+02f8 1fe0fe01 increase 1 ,pdata 
+02f9 d8c04cb6 arg mem_24g_rxbuf_new + 1 ,contr 
+02fa 98c08c00 iadd contr ,contr 
+02fb efe18006 ifetch 3 ,contr 
+02fc 67e1c830 store 3 ,mem_24g_sta_crc 
+02fd 6fe0ccb5 fetch 1 ,mem_24g_rxbuf_new 
+02fe 1fe30400 rshift pdata ,temp 
+02ff 18410403 and temp ,0x03 ,temp 
+0300 6048c836 storet 1 ,mem_24g_sta_pid 
+0301 1fe97e00 rshift3 pdata ,pdata 
+0302 67e0ccb5 store 1 ,mem_24g_rxbuf_new 
+0303 20600000 rtn 
+
+p_g24_retransmit:
+0304 6fe0cad6 fetch 1 ,mem_mouse_need_soft_reset 
+0305 247a0000 nrtn blank 
+0306 20400314 call p_mouse_g24_retransmit_100ms_timer 
+0307 6fe0c8ab fetch 1 ,mem_24g_abort_pac 
+0308 247a0000 nrtn blank 
+0309 6fe148a7 fetch 2 ,mem_24g_txfail_cnt 
+030a 1fe0fe01 increase 1 ,pdata 
+030b 67e148a7 store 2 ,mem_24g_txfail_cnt 
+030c 6fe148a7 fetch 2 ,mem_24g_txfail_cnt 
+030d c2842680 bbit1 8 ,g24_tx_attempt_fail 
+030e 2040032c call p_g24_transmit_hop_process 
+030f 6fe14c2f fetch 2 ,mem_retransmit 
+0310 1fe0fe01 increase 1 ,pdata 
+0311 67e14c2f store 2 ,mem_retransmit 
+0312 2040031b call p_mouse_retransmit_count_set 
+0313 202002dd branch p_g24_transmit_loop 
+
+p_mouse_g24_retransmit_100ms_timer:
+0314 d8e0000c arg 12 ,queue 
+0315 20407de9 call timer_check 
+0316 247a0000 nrtn blank 
+0317 20400360 call p_mouse_select_device_by_pb_button 
+
+p_mouse_g24_retransmit_timer_init:
+0318 d8e0000c arg 12 ,queue 
+0319 580000a0 setarg 160 
+031a 20207ddb branch timer_init 
+
+p_mouse_retransmit_count_set:
+031b 6fe14c2f fetch 2 ,mem_retransmit 
+031c 1fe67c14 sub pdata ,0x14 ,null 
+031d 20610000 rtn positive 
+031e 20400327 call p_mouse_g24_sensor_clr_data 
+031f 6fe14c2f fetch 2 ,mem_retransmit 
+0320 1fe67c32 sub pdata ,0x32 ,null 
+0321 20610000 rtn positive 
+0322 6fe0ce34 fetch 1 ,mem_retransmit_flag 
+0323 247a0000 nrtn blank 
+0324 704e3401 jam 1 ,mem_retransmit_flag 
+0325 704e3700 jam 0 ,mem_mouse_g24_pack_conut 
+0326 704e3600 jam 0 ,mem_mouse_repair_pack_flag 
+
+p_mouse_g24_sensor_clr_data:
+0327 6fe0c9cd fetch 1 ,mem_mouse_move_flag 
+0328 207a0000 rtn blank 
+0329 704abf01 jam 1 ,mem_mouse_long_mult_flag 
+032a 7049cd00 jam 0 ,mem_mouse_move_flag 
+032b 20600000 rtn 
+
+p_g24_transmit_hop_process:
+032c 6848c8aa fetcht 1 ,mem_24g_retry 
+032d 6fe0c8ca fetch 1 ,mem_24g_fast_hop_count 
+032e 98467c00 isub temp ,null 
+032f 24210359 nbranch p_g24_tx_fast_hop ,positive 
+0330 18408401 increase 1 ,temp 
+0331 6048c8aa storet 1 ,mem_24g_retry 
+0332 6fe0c8ca fetch 1 ,mem_24g_fast_hop_count 
+0333 c0028344 beq 5 ,p_g24_transmit_hop_process_1ms 
+0334 c0048340 beq 9 ,p_g24_transmit_hop_process_2ms 
+0335 c007833c beq 15 ,p_g24_transmit_hop_process_4ms 
+0336 c00f0338 beq 30 ,p_g24_transmit_hop_process_8ms 
+0337 20600000 rtn 
+
+p_g24_transmit_hop_process_8ms:
+0338 6fe0c8aa fetch 1 ,mem_24g_retry 
+0339 c00a0348 beq 20 ,p_g24_hop_ch_disable 
+033a c00f0348 beq 30 ,p_g24_hop_ch_disable 
+033b 20600000 rtn 
+
+p_g24_transmit_hop_process_4ms:
+033c 6fe0c8aa fetch 1 ,mem_24g_retry 
+033d c0050348 beq 10 ,p_g24_hop_ch_disable 
+033e c0078348 beq 15 ,p_g24_hop_ch_disable 
+033f 20600000 rtn 
+
+p_g24_transmit_hop_process_2ms:
+0340 6fe0c8aa fetch 1 ,mem_24g_retry 
+0341 c0030348 beq 6 ,p_g24_hop_ch_disable 
+0342 c0048348 beq 9 ,p_g24_hop_ch_disable 
+0343 20600000 rtn 
+
+p_g24_transmit_hop_process_1ms:
+0344 6fe0c8aa fetch 1 ,mem_24g_retry 
+0345 c0018348 beq 3 ,p_g24_hop_ch_disable 
+0346 c0028348 beq 5 ,p_g24_hop_ch_disable 
+0347 20600000 rtn 
+
+p_g24_hop_ch_disable:
+0348 6fe0c839 fetch 1 ,mem_24g_data_type 
+0349 793ffe04 set0 bit_hop ,pdata 
+034a 67e0c839 store 1 ,mem_24g_data_type 
+034b 2040034d call p_g24_txpayload_type_update 
+034c 202026a1 branch g24_hop_ch_disable + 4 
+
+p_g24_txpayload_type_update:
+034d 1fe9fe00 lshift3 pdata ,pdata 
+034e 6848c82e fetcht 1 ,mem_24g_pid 
+034f 18410403 and temp ,0x03 ,temp 
+0350 18438400 lshift temp ,temp 
+0351 9841fe00 ior temp ,pdata 
+0352 6848c82f fetcht 1 ,mem_24g_no_ack 
+0353 9840fe00 iadd temp ,pdata 
+0354 c5178357 bmark1 mark_ble_lr ,p_g24_lr_type_update 
+0355 67e0cd42 store 1 ,mem_24g_txpayload_new + offset_data_type 
+0356 20600000 rtn 
+
+p_g24_lr_type_update:
+0357 67e0cd43 store 1 ,mem_24g_txpayload_new + offset_lr_data_type 
+0358 20600000 rtn 
+
+p_g24_tx_fast_hop:
+0359 2040035b call p_delay_40ms 
+035a 20202281 branch g24_ch 
+
+p_delay_40ms:
+035b 6fe0c8a7 fetch 1 ,mem_24g_txfail_cnt 
+035c 1fe67c80 sub pdata ,0x80 ,null 
+035d 20610000 rtn positive 
+035e df200028 arg 40 ,loopcnt 
+035f 20207d86 branch delay_ms_wait 
+
+p_mouse_select_device_by_pb_button:
+0360 6fe0c91f fetch 1 ,mem_config_select_device_button_gpio 
+0361 c17f8000 rtneq gpio_disable 
+0362 da200000 arg 0 ,rega 
+0363 704ba706 jam mouse_pb_key ,mem_mouse_key_temp 
+0364 6848c91f fetcht 1 ,mem_config_select_device_button_gpio 
+0365 204046a8 call mouse_pb_button_check 
+0366 67e0cba5 store 1 ,mem_mouse_pbkey_press_status 
+0367 6fe0c914 fetch 1 ,mem_matrix_public_gpio 
+0368 c07f836d beq gpio_disable ,p_mouse_3io6key_pb_button_check_end 
+0369 204041a8 call mouse_matrix_public_gpio_reset 
+
+p_mouse_select_device_by_pb_button_exit:
+036a 1a227e00 copy rega ,pdata 
+036b c28346cb bbit1 mouse_pb_key ,mouse_select_device_button_down + 2 
+036c 202046be branch mouse_select_device_button_up 
+
+p_mouse_3io6key_pb_button_check_end:
+036d 6848c91f fetcht 1 ,mem_config_select_device_button_gpio 
+036e 20403f96 call mouse_gpio_config_input_pu 
+036f 2020036a branch p_mouse_select_device_by_pb_button_exit 
+
+p_mouse_wakeup_24g:
+0370 6fe0cbf2 fetch 1 ,mem_sensor_shutdown_flag 
+0371 245a0374 ncall p_mouse_wakeup_24g_from_long_sleep ,blank 
+0372 704bf200 jam 0 ,mem_sensor_shutdown_flag 
+0373 20600000 rtn 
+
+p_mouse_wakeup_24g_from_long_sleep:
+0374 2040046c call p_mouse_init_sensor_wakeup 
+0375 704abf01 jam 1 ,mem_mouse_long_mult_flag 
+0376 704b030a jam 10 ,mem_le_battery_level_updata_timer 
+0377 704de305 jam 5 ,mem_device_tx_dpi_data_delay_timer 
+0378 6848c915 fetcht 1 ,mem_sensor_motion_gpio 
+0379 20403f96 call mouse_gpio_config_input_pu 
+037a 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+037b c41e0000 rtnbit0 mouse_enable_wheel_wake_up_cancel 
+
+p_mouse_wheel_set_wakeup:
+037c 6848c917 fetcht 1 ,mem_whee_a_data_gpio 
+037d 20403f96 call mouse_gpio_config_input_pu 
+037e 6848c918 fetcht 1 ,mem_whee_b_data_gpio 
+037f 20203f96 branch mouse_gpio_config_input_pu 
+
+p_mouse_app_enter_hibernate:
+0380 58000006 setarg pan_reg_config 
+0381 20405d65 call twspi_read 
+0382 c2818385 bbit1 3 ,p_mouse_app_enter_hibernate_set 
+0383 2040048b call p_mouse_sensor_reset 
+0384 20400484 call p_mouse_sensor_powerdown 
+
+p_mouse_app_enter_hibernate_set:
+0385 204006f5 call p_mouse_setgpio_hibernate 
+0386 20203289 branch app_enter_hibernate 
+
+p_mouse_before_hibernate:
+0387 6ff20138 fetch 4 ,core_lpm_ctrl 
+0388 79207e1a set1 26 ,pdata 
+0389 67f2004c store 4 ,core_lpm_reg 
+038a 2040154c call lpm_write_ctrl 
+038b 20406e62 call disable_authrom 
+038c 2040495b call mouse_device_led_all_off 
+038d 20404055 call mouse_before_hibernate_wheel_gpio_set 
+038e 20403e6a call mouse_setgpio_hibernate 
+038f 2040466d call mouse_flash_power_down 
+0390 6848c915 fetcht 1 ,mem_sensor_motion_gpio 
+0391 20403f96 call mouse_gpio_config_input_pu 
+0392 6848c915 fetcht 1 ,mem_sensor_motion_gpio 
+0393 202060e6 branch gpio_clr_wake 
+
+p_mouse_start_work:
+0394 202006f1 branch p_mouse_start_work_next 
+
+p_mouse_bb_event_timer:
+0395 204022e1 call g24_pair_timeout_timer 
+0396 2040255f call g24_reconn_timeout_timer 
+0397 204003a9 call p_mouse_24g_long_sleep_param_update_timer 
+0398 2040027b call p_mouse_repair_pack_check_timer 
+0399 204000a9 call p_mouse_send_dpi_info_timer 
+039a 204003cd call p_mouse_led_multi_timer 
+039b 204003b3 call p_mouse_dpi_led_timer 
+039c 204040bc call mouse_dpi_key_check_long_press 
+039d 204004b5 call p_mouse_bt_discovery_check 
+039e 20400419 call p_mouse_commbination_key_process 
+039f 2040453f call mouse_check_discovery_timeout_timer 
+03a0 20400430 call p_mouse_check_direct_timeout_timer 
+03a1 20404552 call mouse_le_enable_att_list_timer 
+03a2 20400434 call p_mouse_le_battery_updata_timer 
+03a3 20404555 call mouse_le_send_smp_security_request_timer 
+03a4 2040043f call p_mouse_le_send_conn_param_update_timer 
+03a5 20404575 call mouse_current_mult_update_timer 
+03a6 20404062 call mouse_wheel_trigger_timer 
+03a7 2040044a call p_mouse_store_information_delay_timer 
+03a8 20200442 branch p_mouse_check_no_data_timeout_timer 
+
+p_mouse_24g_long_sleep_param_update_timer:
+03a9 da6048c8 arg mem_24g_long_sleep_param_update_timer ,regc 
+03aa da4003ac arg p_mouse_24g_long_sleep_normal_param ,regb 
+03ab 202031fc branch timer_single_step 
+
+p_mouse_24g_long_sleep_normal_param:
+03ac 204003af call p_mouse_24g_hibernate_set_check 
+03ad 704de501 jam 1 ,mem_device_tx_heart_data_flag 
+03ae 2020480e branch mouse_24g_long_sleep_normal_param 
+
+p_mouse_24g_hibernate_set_check:
+03af 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+03b0 c28ca6d7 bbit1 mouse_enable_24g_500hz ,g24_transmit_by_interrupt_exit 
+03b1 c28d26d7 bbit1 mouse_enable_24g_1000 ,g24_transmit_by_interrupt_exit 
+03b2 20600000 rtn 
+
+p_mouse_dpi_led_timer:
+03b3 6fe0ccb2 fetch 1 ,mem_mouse_dpi_led_blink_enable 
+03b4 207a0000 rtn blank 
+03b5 6fe0ccb4 fetch 1 ,mem_mouse_dpi_blink_time 
+03b6 1fe0fe01 pincrease 1 
+03b7 67e0ccb4 store 1 ,mem_mouse_dpi_blink_time 
+03b8 c00183bb beq 3 ,p_mouse_dpi_led_on 
+03b9 c00303bf beq 6 ,p_mouse_dpi_led_off_check 
+03ba 20600000 rtn 
+
+p_mouse_dpi_led_on:
+03bb 6fe0cca8 fetch 1 ,mem_mouse_led_multi_type 
+03bc c28003e0 bbit1 led_multi_dpi ,p_mouse_device_multi_led_on 
+03bd 6848ccaf fetcht 1 ,mem_mouse_1io2led_dpi_led 
+03be 2020610d branch gpio_out_active 
+
+p_mouse_dpi_led_off_check:
+03bf 704cb400 jam 0 ,mem_mouse_dpi_blink_time 
+03c0 6fe0ccb3 fetch 1 ,mem_mouse_dpi_blink_count 
+03c1 1fe0ffff increase -1 ,pdata 
+03c2 67e0ccb3 store 1 ,mem_mouse_dpi_blink_count 
+03c3 243a03c5 nbranch p_mouse_dpi_led_off ,blank 
+03c4 704cb200 jam 0 ,mem_mouse_dpi_led_blink_enable 
+
+p_mouse_dpi_led_off:
+03c5 6fe0cca8 fetch 1 ,mem_mouse_led_multi_type 
+03c6 c28003e6 bbit1 led_multi_dpi ,p_mouse_device_multi_led_off 
+03c7 6848ccaf fetcht 1 ,mem_mouse_1io2led_dpi_led 
+03c8 20206109 branch gpio_out_inactive 
+
+p_mouse_device_led_all_off:
+03c9 204003f2 call p_mouse_device_24g_led_off 
+03ca 204003f4 call p_mouse_device_bt1_led_off 
+03cb 204003f6 call p_mouse_device_bt2_led_off 
+03cc 202003c5 branch p_mouse_dpi_led_off 
+
+p_mouse_led_multi_timer:
+03cd 6fe0cca4 fetch 1 ,mem_mouse_multi_led_blink_enable 
+03ce 207a0000 rtn blank 
+03cf 6fe0cca5 fetch 1 ,mem_mouse_multi_led_type 
+03d0 c00083da beq multi_led_blink ,p_mouse_multi_led_type_blink 
+
+p_mouse_device_multi_led_type_on:
+03d1 6fe0cca9 fetch 1 ,mem_mouse_multi_led_powon_timer 
+03d2 203a03d6 branch p_mouse_device_poweron_led_off ,blank 
+03d3 1fe0ffff increase -1 ,pdata 
+03d4 67e0cca9 store 1 ,mem_mouse_multi_led_powon_timer 
+03d5 202003e0 branch p_mouse_device_multi_led_on 
+
+p_mouse_device_poweron_led_off:
+03d6 704cb101 jam 1 ,mem_mouse_pair_success 
+03d7 704ca900 jam 0 ,mem_mouse_multi_led_powon_timer 
+
+p_mouse_multi_led_blink_disable:
+03d8 704ca400 jam 0 ,mem_mouse_multi_led_blink_enable 
+03d9 202003e6 branch p_mouse_device_multi_led_off 
+
+p_mouse_multi_led_type_blink:
+03da da604cab arg mem_mouse_multi_led_blink_timer ,regc 
+03db da4003dd arg p_mouse_multi_led_blink_start ,regb 
+03dc 202031fc branch timer_single_step 
+
+p_mouse_multi_led_blink_start:
+03dd 204003f8 call p_mouse_multi_led_blink_timer_init 
+03de 6fe0cca6 fetch 1 ,mem_mouse_multi_led_state 
+03df c00083e6 beq on ,p_mouse_device_multi_led_off 
+
+p_mouse_device_multi_led_on:
+03e0 704ca601 jam on ,mem_mouse_multi_led_state 
+03e1 6fe0c93d fetch 1 ,mem_device_flag 
+03e2 c00003ec beq mode_24g_device ,p_mouse_device_24g_led_on 
+03e3 c00083ee beq mode_bt_device1 ,p_mouse_device_bt1_led_on 
+03e4 c00103f0 beq mode_bt_device2 ,p_mouse_device_bt2_led_on 
+03e5 20600000 rtn 
+
+p_mouse_device_multi_led_off:
+03e6 704ca600 jam off ,mem_mouse_multi_led_state 
+03e7 6fe0c93d fetch 1 ,mem_device_flag 
+03e8 c00003f2 beq mode_24g_device ,p_mouse_device_24g_led_off 
+03e9 c00083f4 beq mode_bt_device1 ,p_mouse_device_bt1_led_off 
+03ea c00103f6 beq mode_bt_device2 ,p_mouse_device_bt2_led_off 
+03eb 20600000 rtn 
+
+p_mouse_device_24g_led_on:
+03ec 6848ccac fetcht 1 ,mem_mouse_1io2led_multi_24gled 
+03ed 2020610d branch gpio_out_active 
+
+p_mouse_device_bt1_led_on:
+03ee 6848ccad fetcht 1 ,mem_mouse_1io2led_multi_bt1led 
+03ef 2020610d branch gpio_out_active 
+
+p_mouse_device_bt2_led_on:
+03f0 6848ccae fetcht 1 ,mem_mouse_1io2led_multi_bt2led 
+03f1 2020610d branch gpio_out_active 
+
+p_mouse_device_24g_led_off:
+03f2 6848ccac fetcht 1 ,mem_mouse_1io2led_multi_24gled 
+03f3 20206109 branch gpio_out_inactive 
+
+p_mouse_device_bt1_led_off:
+03f4 6848ccad fetcht 1 ,mem_mouse_1io2led_multi_bt1led 
+03f5 20206109 branch gpio_out_inactive 
+
+p_mouse_device_bt2_led_off:
+03f6 6848ccae fetcht 1 ,mem_mouse_1io2led_multi_bt2led 
+03f7 20206109 branch gpio_out_inactive 
+
+p_mouse_multi_led_blink_timer_init:
+03f8 6fe0ccaa fetch 1 ,mem_mouse_multi_led_blink_timer_init 
+03f9 67e0ccab store 1 ,mem_mouse_multi_led_blink_timer 
+03fa 20600000 rtn 
+
+p_mouse_device_poweron_led_config:
+03fb 6fe0cca3 fetch 1 ,mem_mouse_led_new_interface_enable 
+03fc 207a0000 rtn blank 
+03fd 704ca914 jam 20 ,mem_mouse_multi_led_powon_timer 
+03fe 704ca500 jam multi_led_on ,mem_mouse_multi_led_type 
+03ff 704ca401 jam on ,mem_mouse_multi_led_blink_enable 
+0400 20600000 rtn 
+
+p_mouse_device_24g_led_config:
+0401 6fe0cca3 fetch 1 ,mem_mouse_led_new_interface_enable 
+0402 207a0000 rtn blank 
+0403 6fe24998 fetch 4 ,mem_mouse_24g_addr 
+0404 684a4979 fetcht 4 ,mem_mouse_compare_addr_ff 
+0405 98467c00 isub temp ,null 
+0406 2022840b branch p_mouse_device_pair_led_config ,zero 
+
+p_mouse_device_reconn_led_config:
+0407 6fe0cca3 fetch 1 ,mem_mouse_led_new_interface_enable 
+0408 207a0000 rtn blank 
+0409 704caa05 jam 5 ,mem_mouse_multi_led_blink_timer_init 
+040a 2020040e branch p_mouse_multi_led_blink_enable 
+
+p_mouse_device_pair_led_config:
+040b 6fe0cca3 fetch 1 ,mem_mouse_led_new_interface_enable 
+040c 207a0000 rtn blank 
+040d 704caa02 jam 2 ,mem_mouse_multi_led_blink_timer_init 
+
+p_mouse_multi_led_blink_enable:
+040e 704ca600 jam off ,mem_mouse_multi_led_state 
+040f 704cab03 jam 3 ,mem_mouse_multi_led_blink_timer 
+0410 704ca401 jam on ,mem_mouse_multi_led_blink_enable 
+0411 704ca501 jam multi_led_blink ,mem_mouse_multi_led_type 
+0412 202003e0 branch p_mouse_device_multi_led_on 
+
+p_mouse_device_le_reconn_led_config:
+0413 6fe0cca3 fetch 1 ,mem_mouse_led_new_interface_enable 
+0414 207a0000 rtn blank 
+0415 6fe0cca7 fetch 1 ,mem_mouse_le_reconn_led_fuction_enable 
+0416 207a0000 rtn blank 
+0417 704caa05 jam 5 ,mem_mouse_multi_led_blink_timer_init 
+0418 2020040e branch p_mouse_multi_led_blink_enable 
+
+p_mouse_commbination_key_process:
+0419 6fe0c93d fetch 1 ,mem_device_flag 
+041a c000041f beq mode_24g_device ,p_mouse_24g_commbination_key_process 
+041b 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+041c c41a8000 rtnbit0 mouse_enable_commbination_key_by_bt_discovery 
+041d 6848cbdb fetcht 1 ,mem_mouse_commbination_key_bt 
+041e 20200422 branch p_mouse_commbination_key_start 
+
+p_mouse_24g_commbination_key_process:
+041f 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+0420 c4190000 rtnbit0 mouse_enable_commbination_key_by_24g_pairing 
+0421 6848cbdc fetcht 1 ,mem_mouse_commbination_key_24g 
+
+p_mouse_commbination_key_start:
+0422 6048cbae storet 1 ,mem_mouse_commbination_key 
+0423 20404155 call mouse_check_key_gpio 
+0424 1fe17e07 and pdata ,0x07 ,pdata 
+0425 6848cbae fetcht 1 ,mem_mouse_commbination_key 
+0426 98467c00 isub temp ,null 
+0427 20228429 branch p_mouse_commbination_key_down ,zero 
+0428 2020452b branch mouse_commbination_key_up 
+
+p_mouse_commbination_key_down:
+0429 2040042e call p_mouse_combination_ui_timer 
+042a 6fe0cbb0 fetch 1 ,mem_commbination_key_statue 
+042b c1008000 rtneq commbination_key_state_down 
+042c 704bb001 jam commbination_key_state_down ,mem_commbination_key_statue 
+042d 20600000 rtn 
+
+p_mouse_combination_ui_timer:
+042e da40054d arg p_mouse_24g_start_pair_mode ,regb 
+042f 20204537 branch mouse_combination_ui_timer + 1 
+
+p_mouse_check_direct_timeout_timer:
+0430 da604b88 arg mem_mouse_direct_timer ,regc 
+0431 da40454a arg mouse_check_direct_timeout ,regb 
+0432 204031fc call timer_single_step 
+0433 20204547 branch mouse_check_direct_timeout_timer + 3 
+
+p_mouse_le_battery_updata_timer:
+0434 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+0435 c40a0000 rtnbit0 mouse_enable_adc 
+0436 da604b03 arg mem_le_battery_level_updata_timer ,regc 
+0437 da400439 arg p_mouse_le_battery_level_updata ,regb 
+0438 202031fc branch timer_single_step 
+
+p_mouse_le_battery_level_updata:
+0439 6fe14b01 fetch 2 ,mem_le_battery_level_updata_timer_init 
+043a 67e14b03 store 2 ,mem_le_battery_level_updata_timer 
+043b 6fe0c93d fetch 1 ,mem_device_flag 
+043c c080440b bne mode_24g_device ,mouse_fill_battery_level_le 
+043d 704de401 jam 1 ,mem_device_tx_battery_data_flag 
+043e 20600000 rtn 
+
+p_mouse_le_send_conn_param_update_timer:
+043f da604c70 arg mem_mouse_le_send_conn_param_update_timer ,regc 
+0440 da4043ac arg mouse_updata_le_param ,regb 
+0441 202031fc branch timer_single_step 
+
+p_mouse_check_no_data_timeout_timer:
+0442 da604ac3 arg mem_mouse_no_data_timer ,regc 
+0443 da400445 arg p_mouse_check_no_data_timeout ,regb 
+0444 20203203 branch timer_single_step_2b 
+
+p_mouse_check_no_data_timeout:
+0445 6fe0c92f fetch 1 ,mem_usb_addr 
+0446 c3838000 rtnbit1 7 
+0447 6fe0c93d fetch 1 ,mem_device_flag 
+0448 c080435b bne mode_24g_device ,mouse_disconnect 
+0449 2020050f branch p_mouse_24g_hibernate_set 
+
+p_mouse_store_information_delay_timer:
+044a da6049c4 arg mem_store_information_delay_timer ,regc 
+044b da40044d arg p_mouse_store_device_info_check ,regb 
+044c 202031fc branch timer_single_step 
+
+p_mouse_store_device_info_check:
+044d 6848c915 fetcht 1 ,mem_sensor_motion_gpio 
+044e 204060fd call gpio_get_bit 
+044f 2020c62e branch mouse_store_device_info_delay ,true 
+0450 20400457 call p_mouse_sensor_spi_clr 
+0451 20400463 call p_mouse_store_device_info 
+0452 2040045b call p_mouse_flash_spi_clr 
+0453 6fe0cad6 fetch 1 ,mem_mouse_need_soft_reset 
+0454 207a0000 rtn blank 
+
+p_mouse_soft_reset:
+0455 204001b9 call p_enable_rc_clock 
+0456 202046fe branch mouse_soft_reset 
+
+p_mouse_sensor_spi_clr:
+0457 6848c923 fetcht 1 ,mem_mouse_sensor_sclk_gpio 
+0458 20403f96 call mouse_gpio_config_input_pu 
+0459 6848c924 fetcht 1 ,mem_mouse_sensor_sdio_gpio 
+045a 20203f96 branch mouse_gpio_config_input_pu 
+
+p_mouse_flash_spi_clr:
+045b 6848c4b7 fetcht 1 ,mem_spi_cs_gpio 
+045c 20403f96 call mouse_gpio_config_input_pu 
+045d 6848c4ba fetcht 1 ,mem_spi_sclk_gpio 
+045e 20403f96 call mouse_gpio_config_input_pu 
+045f 6848c4b8 fetcht 1 ,mem_spi_si_gpio 
+0460 20403f96 call mouse_gpio_config_input_pu 
+0461 6848c4b9 fetcht 1 ,mem_spi_so_gpio 
+0462 20203f96 branch mouse_gpio_config_input_pu 
+
+p_mouse_store_device_info:
+0463 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+0464 c289c67f bbit1 mouse_enable_eeprom ,mouse_store_eeprom_device_info 
+0465 20405daf call spid_init_flash 
+0466 2040464a call mouse_spid_flash_release_form_powerdown 
+0467 2040465f call mouse_flash_erase_sector 
+0468 20405db4 call spid_unlock_flash 
+0469 20204646 branch mouse_store_flash_device_info + 3 
+
+p_mouse_init_sunt:
+046a 20403fa5 call mouse_sensor_spi_init 
+046b 20758000 rtn wake 
+
+p_mouse_init_sensor_wakeup:
+046c 20404276 call mouse_sensor_poweron 
+
+p_mouse_init_sensor:
+046d 204041f5 call mouse_read_sensor_id 
+046e c0180474 beq p32xx_id1 ,p_mouse_init_p32xx_id2_judge 
+046f c018c257 beq p3065_id1 ,mouse_init_p3065 
+0470 c02c4260 beq pka8g2_id1 ,mouse_ka8g2_id2_judge 
+0471 204041f2 call mouse_twspi_reset 
+0472 20001af4 nop 6900 
+0473 2020046d branch p_mouse_init_sensor 
+
+p_mouse_init_p32xx_id2_judge:
+0474 6fe0c9c7 fetch 1 ,mem_sensor_id2 
+0475 1fe17ef0 and_into 0xf0 ,pdata 
+0476 1fe67cc0 sub pdata ,p3204_tjdm_id2 ,null 
+0477 2022c25e branch mouse_p3065xy_init_param ,zero 
+0478 6fe0c9c7 fetch 1 ,mem_sensor_id2 
+0479 202041fc branch mouse_init_p32xx_id2_judge 
+
+p_mouse_sensor_poweron:
+047a 20403fa5 call mouse_sensor_spi_init 
+047b 6fe0c92c fetch 1 ,mem_config_sensor_type 
+047c c0058481 beq ka8g2 ,p_mouse_ka8g2_sensor_init 
+
+p_mouse_sensor_poweron_next:
+047d 20404272 call mouse_sensor_reset 
+047e da604ab4 arg mem_sensor_poweron_init ,regc 
+
+p_mouse_sensor_poweron_end:
+047f 2040426b call mouse_sensor_wr_seq 
+0480 202004e3 branch p_mouse_seting_sensor_type 
+
+p_mouse_ka8g2_sensor_init:
+0481 2040048e call p_mouse_ka8g2_sensor_reset 
+0482 da604bf5 arg mem_ka8g2_sensor_poweron_init ,regc 
+0483 2020047f branch p_mouse_sensor_poweron_end 
+
+p_mouse_sensor_powerdown:
+0484 204041e7 call mouse_init_sunt 
+0485 20403fa5 call mouse_sensor_spi_init 
+0486 6fe0c92c fetch 1 ,mem_config_sensor_type 
+0487 c0058489 beq ka8g2 ,p_mouse_ka8g2_sensor_powerdown 
+0488 2020427e branch mouse_sensor_powerdown_end 
+
+p_mouse_ka8g2_sensor_powerdown:
+0489 58001f06 setarg 0x1f06 
+048a 20205d5e branch twspi_write 
+
+p_mouse_sensor_reset:
+048b 6fe0c92c fetch 1 ,mem_config_sensor_type 
+048c c005848e beq ka8g2 ,p_mouse_ka8g2_sensor_reset 
+048d 20204272 branch mouse_sensor_reset 
+
+p_mouse_ka8g2_sensor_reset:
+048e 58009706 setarg 0x9706 
+048f 20204273 branch mouse_sensor_reset_end 
+
+p_mouse_short_sleep_clear_wake:
+0490 20407f52 call clear_wake 
+0491 2020155d branch lpm_write_gpio_wakeup 
+
+p_mouse_lpm_before_common:
+0492 20407f52 call clear_wake 
+0493 6848c914 fetcht 1 ,mem_matrix_public_gpio 
+0494 2040610d call gpio_out_active 
+0495 6848c914 fetcht 1 ,mem_matrix_public_gpio 
+0496 204060e6 call gpio_clr_wake 
+0497 2040037c call p_mouse_wheel_set_wakeup 
+0498 20203e81 branch mouse_lpm_before_common + 1 
+
+p_mouse_idle:
+0499 204049dd call mouse_low_voltage_led_no_enter_lpm 
+049a 204079a1 call ui_check_paring_button 
+049b 204004b8 call p_mouse_dpi_check 
+049c 204004a1 call p_mouse_select_device_check 
+049d 204004a4 call p_mouse_check_select_device_by_switch 
+049e 20404714 call mouse_bt_button_check 
+049f 20403fc8 call mouse_wheel_check 
+04a0 20600000 rtn 
+
+p_mouse_select_device_check:
+04a1 6fe0cca2 fetch 1 ,mem_usb_mode_enable 
+04a2 247a0000 nrtn blank 
+04a3 20204693 branch mouse_select_device_check 
+
+p_mouse_check_select_device_by_switch:
+04a4 6fe0cca2 fetch 1 ,mem_usb_mode_enable 
+04a5 247a0000 nrtn blank 
+04a6 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+04a7 c4150000 rtnbit0 mouse_enable_select_device_by_switch_gpio 
+04a8 6848c922 fetcht 1 ,mem_device_switch_gpio 
+04a9 20403f96 call mouse_gpio_config_input_pu 
+04aa 6848c922 fetcht 1 ,mem_device_switch_gpio 
+04ab 204060fd call gpio_get_bit 
+04ac 2020c6ef branch mouse_check_select_24g_device ,true 
+
+p_mouse_select_btdevice:
+04ad 6fe0c93d fetch 1 ,mem_device_flag 
+04ae c1008000 rtneq mode_bt_device1 
+04af 70493d01 jam mode_bt_device1 ,mem_device_flag 
+04b0 202046fe branch mouse_soft_reset 
+
+p_mouse_check_select_24g_device:
+04b1 6fe0c93d fetch 1 ,mem_device_flag 
+04b2 c1000000 rtneq mode_24g_device 
+04b3 70493d00 jam mode_24g_device ,mem_device_flag 
+04b4 202046fe branch mouse_soft_reset 
+
+p_mouse_bt_discovery_check:
+04b5 6fe0cca2 fetch 1 ,mem_usb_mode_enable 
+04b6 247a0000 nrtn blank 
+04b7 2020450c branch mouse_bt_discovery_check 
+
+p_mouse_dpi_check:
+04b8 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+04b9 c2974076 bbit1 mouse_enable_dpi_key_connect_adc ,mouse_dpi_check_connect_adc 
+04ba 6fe0c913 fetch 1 ,mem_dpi_button_gpio 
+04bb c17f8000 rtneq gpio_disable 
+04bc da200000 arg 0 ,rega 
+04bd 704ba705 jam mouse_dpi_key ,mem_mouse_key_temp 
+04be 6848c913 fetcht 1 ,mem_dpi_button_gpio 
+04bf 204004cf call p_mouse_dpi_key_check 
+04c0 67e0cba4 store 1 ,mem_mouse_dpikey_press_status 
+04c1 6fe0c914 fetch 1 ,mem_matrix_public_gpio 
+04c2 c07f84cc beq gpio_disable ,p_mouse_3io6key_dpi_check_end 
+04c3 204041a8 call mouse_matrix_public_gpio_reset 
+
+p_mouse_dpi_check_exit:
+04c4 1a227e00 copy rega ,pdata 
+04c5 c282c092 bbit1 mouse_dpi_key ,mouse_dpi_down 
+
+p_mouse_dpi_up:
+04c6 6fe0c9e2 fetch 1 ,mem_mouse_dpi_button_state 
+04c7 c1000000 rtneq dpi_button_state_up 
+04c8 7049e200 jam dpi_button_state_up ,mem_mouse_dpi_button_state 
+04c9 2040462e call mouse_store_device_info_delay 
+04ca 704de301 jam 1 ,mem_device_tx_dpi_data_delay_timer 
+04cb 2020409c branch mouse_dpi_up + 3 
+
+p_mouse_3io6key_dpi_check_end:
+04cc 6848c913 fetcht 1 ,mem_dpi_button_gpio 
+04cd 20403f96 call mouse_gpio_config_input_pu 
+04ce 202004c4 branch p_mouse_dpi_check_exit 
+
+p_mouse_dpi_key_check:
+04cf 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+04d0 c2964088 bbit1 mouse_enable_dpi_key_connect_gnd ,mouse_dpi_key_connect_gnd 
+04d1 6fe0cba4 fetch 1 ,mem_mouse_dpikey_press_status 
+04d2 1fe22600 copy pdata ,regc 
+04d3 6fe0c914 fetch 1 ,mem_matrix_public_gpio 
+04d4 c07f84d6 beq gpio_disable ,p_mouse_3io6key_dpi_check 
+04d5 2020407f branch mouse_dpi_key_check_next 
+
+p_mouse_3io6key_dpi_check:
+04d6 6fe0c913 fetch 1 ,mem_dpi_button_gpio 
+04d7 204006e9 call p_mouse_gpio_config_output_low 
+04d8 6848c913 fetcht 1 ,mem_dpi_button_gpio 
+04d9 202041d5 branch mouse_3io6key_check 
+
+p_mouse_dpi_process:
+04da 204040b2 call mouse_dpi_ghost_check 
+04db 20740000 rtn user 
+04dc 6fe0c997 fetch 1 ,mem_mouse_dpi 
+04dd 1fe0fe01 increase 1 ,pdata 
+04de 1fe17e03 and pdata ,0x03 ,pdata 
+04df 67e0c997 store 1 ,mem_mouse_dpi 
+04e0 202004e1 branch p_mouse_seting_dpi 
+
+p_mouse_seting_dpi:
+04e1 204040cf call mouse_setting_dpi_4_level 
+04e2 204004e4 call p_mouse_dpi_led_blink_init 
+
+p_mouse_seting_sensor_type:
+04e3 202040d8 branch mouse_seting_sensor_type 
+
+p_mouse_dpi_led_blink_init:
+04e4 6fe0ccb1 fetch 1 ,mem_mouse_pair_success 
+04e5 207a0000 rtn blank 
+04e6 6fe0c997 fetch 1 ,mem_mouse_dpi 
+04e7 c00004ed beq mouse_dpi_level1 ,p_mouse_dpi_level_2 
+04e8 c00084ef beq mouse_dpi_level2 ,p_mouse_dpi_level_3 
+04e9 c00104eb beq mouse_dpi_level3 ,p_mouse_dpi_level_1 
+04ea 20600000 rtn 
+
+p_mouse_dpi_level_1:
+04eb 58000001 setarg 1 
+04ec 202004f0 branch p_mouse_dpi_blink_count_init 
+
+p_mouse_dpi_level_2:
+04ed 58000002 setarg 2 
+04ee 202004f0 branch p_mouse_dpi_blink_count_init 
+
+p_mouse_dpi_level_3:
+04ef 58000003 setarg 3 
+
+p_mouse_dpi_blink_count_init:
+04f0 67e0ccb3 store 1 ,mem_mouse_dpi_blink_count 
+04f1 704cb201 jam 1 ,mem_mouse_dpi_led_blink_enable 
+04f2 20600000 rtn 
+
+p_mouse_priority_bb_event:
+04f3 1a627e00 copy regc ,pdata 
+04f4 c01e06f7 beq bt_evt_24g_attempt_success ,p_mouse_24g_attempt_success 
+04f5 c01c86f3 beq bt_evt_24g_pairing_complete ,p_mouse_24g_pairing_complete 
+04f6 c01d0506 beq bt_evt_24g_attempt_fail ,p_mouse_24g_attempt_fail 
+04f7 c0190550 beq bt_evt_le_start_enc ,p_mouse_le_ll_start_encryt 
+04f8 c00a86f9 beq bt_evt_le_disconnected ,p_mouse_le_bb_disconnected 
+04f9 c00a055c beq bt_evt_le_connected ,p_mouse_le_bb_event_connected 
+04fa c0200557 beq bt_evt_le_parse_conn_papa_update_rsp ,p_mouse_le_conn_param_update_rsp_recieved 
+04fb c00104fd beq bt_evt_bb_disconnected ,p_mouse_bb_disconnected 
+04fc 20204376 branch mouse_priority_bb_event + 2 
+
+p_mouse_bb_disconnected:
+04fd 704b9000 jam 0 ,mem_mouse_enter_sniff_count 
+04fe 704b9900 jam 0 ,mem_mouse_bt_send_first_package_flag 
+04ff 20404433 call mouse_bt_sniff_param_interval_setup 
+0500 20404449 call mouse_bb_discon_clear_stack 
+0501 6fe0cca2 fetch 1 ,mem_usb_mode_enable 
+0502 247a0000 nrtn blank 
+0503 20204442 branch mouse_bb_disconnected + 4 
+
+p_mouse_agc_disable_nomal_power:
+0504 20400227 call p_mouse_soft_agc_disable 
+0505 202001fa branch p_mouse_fetch_normal_tx_power 
+
+p_mouse_24g_attempt_fail:
+0506 704cb100 jam 0 ,mem_mouse_pair_success 
+0507 20400504 call p_mouse_agc_disable_nomal_power 
+0508 6fe0c8a9 fetch 1 ,mem_24g_attempt_fail_flag 
+0509 243a050f nbranch p_mouse_24g_hibernate_set ,blank 
+050a 6fe0c88f fetch 1 ,mem_24g_reconn_type 
+050b c0010540 beq fast_conn_and_3_0_addr ,p_mouse_24g_fast_conn_attempt_fail 
+050c c0008540 beq fast_conn_and_receiver ,p_mouse_24g_fast_conn_attempt_fail 
+050d c002c883 beq pair_and_receiver ,mouse_24g_auto_pair_attempt_fail 
+050e 20204876 branch mouse_24g_attempt_fail + 4 
+
+p_mouse_24g_hibernate_set:
+050f 7048a900 jam 0 ,mem_24g_attempt_fail_flag 
+0510 204002e5 call p_g24_transmit_next_packet 
+0511 5fffffff setarg -1 
+0512 67e4485f store 8 ,mem_24g_enter_hibernate 
+0513 58000000 setarg 0 
+0514 67e3c8d4 store 7 ,mem_mouse_key 
+0515 67e0c8ab store 1 ,mem_24g_abort_pac 
+0516 67e14e36 store 2 ,mem_mouse_repair_pack_flag 
+0517 67e0cb03 store 1 ,mem_le_battery_level_updata_timer 
+0518 67e0cde3 store 1 ,mem_device_tx_dpi_data_delay_timer 
+0519 704bf201 jam 1 ,mem_sensor_shutdown_flag 
+051a 20400484 call p_mouse_sensor_powerdown 
+051b 204003af call p_mouse_24g_hibernate_set_check 
+051c 20200524 branch p_g24_long_sleep 
+
+p_g24_nodata_transmit:
+051d 6fe0c8ab fetch 1 ,mem_24g_abort_pac 
+051e 205a052e call p_g24_send_abort_packet ,blank 
+051f 6fe0cde5 fetch 1 ,mem_device_tx_heart_data_flag 
+0520 245a00fd ncall p_g24_send_slow_heart_info ,blank 
+0521 6fe0c8c1 fetch 1 ,mem_24g_transmit_by_interrupt 
+0522 c1008000 rtneq g24_tx_timer_int_enable 
+0523 204026a6 call g24_search_receiver 
+
+p_g24_long_sleep:
+0524 204026c2 call g24_lpm_wait 
+0525 24740000 nrtn user 
+0526 204026cb call g24_setgpio_lpm_before 
+0527 704c3100 jam 0 ,mem_sleep_miss 
+0528 704c3201 jam 1 ,mem_long_sleep_flag 
+0529 204002ac call p_send_time_long_wake 
+052a 6fe0cbf2 fetch 1 ,mem_sensor_shutdown_flag 
+052b 245a06f5 ncall p_mouse_setgpio_hibernate ,blank 
+052c 6fe4485f fetch 8 ,mem_24g_enter_hibernate 
+052d 202026bf branch g24_long_seep2 
+
+p_g24_send_abort_packet:
+052e 6fe0cde5 fetch 1 ,mem_device_tx_heart_data_flag 
+052f 247a0000 nrtn blank 
+0530 70483901 jam type_ms ,mem_24g_data_type 
+0531 6fe0cbf2 fetch 1 ,mem_sensor_shutdown_flag 
+0532 79407e00 setflip 0 ,pdata 
+0533 67e0c8ab store 1 ,mem_24g_abort_pac 
+0534 20402649 call g24_transmit_rf_ctrl_clear 
+0535 67e0ccfb store 1 ,mem_24g_txbuf_new 
+0536 58000000 setarg 0 
+0537 67e3ccfc store 7 ,mem_24g_txbuf_new + 1 
+0538 6fe248ad fetch 4 ,mem_24g_device_addr 
+0539 67e24d03 store 4 ,mem_24g_txbuf_new + 8 
+053a 7048380c jam 12 ,mem_24g_datalen 
+053b 6fe0c839 fetch 1 ,mem_24g_data_type 
+053c 79207e03 set1 bit_abort ,pdata 
+053d 67e0c839 store 1 ,mem_24g_data_type 
+053e 2040006f call p_g24_transmit_prep 
+053f 2020022e branch p_g24_transmit_start 
+
+p_mouse_24g_fast_conn_attempt_fail:
+0540 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+0541 c2978549 bbit1 mouse_enable_24g_first_auto_pairing ,p_mouse_24g_start_auto_pair 
+0542 c2980549 bbit1 mouse_enable_auto_24g_paring ,p_mouse_24g_start_auto_pair 
+0543 c31d4845 bbit0 mouse_enable_24g_auto_pair_nerver_been_paired ,mouse_24g_reconn_dongle_start 
+0544 6fe24998 fetch 4 ,mem_mouse_24g_addr 
+0545 684a4979 fetcht 4 ,mem_mouse_compare_addr_ff 
+0546 98467c00 isub temp ,null 
+0547 2022854d branch p_mouse_24g_start_pair_mode ,zero 
+0548 20204845 branch mouse_24g_reconn_dongle_start 
+
+p_mouse_24g_start_auto_pair:
+0549 6fe14885 fetch 2 ,mem_24g_pair_timeout_init 
+054a 67e1488b store 2 ,mem_24g_reconn_timeout 
+054b 70488f05 jam pair_and_receiver ,mem_24g_reconn_type 
+054c 20202562 branch g24_reconn_start 
+
+p_mouse_24g_start_pair_mode:
+054d 70488f00 jam 0 ,mem_24g_reconn_type 
+054e 2040040b call p_mouse_device_pair_led_config 
+054f 20204866 branch mouse_24g_start_pair_mode 
+
+p_mouse_le_ll_start_encryt:
+0550 6fe0cad8 fetch 1 ,mem_mouse_le_reconnect_flag 
+0551 c0008554 beq 1 ,p_mouse_le_ll_reconn_start_encryt 
+0552 704b8714 jam 20 ,mem_le_start_encrypt_timer 
+0553 202043b3 branch mouse_le_ll_enable_start_enc_flag 
+
+p_mouse_le_ll_reconn_start_encryt:
+0554 204043ac call mouse_updata_le_param 
+0555 704b870a jam 10 ,mem_le_start_encrypt_timer 
+0556 202043b3 branch mouse_le_ll_enable_start_enc_flag 
+
+p_mouse_le_conn_param_update_rsp_recieved:
+0557 6fe0cc6f fetch 1 ,mem_mouse_le_send_conn_param_update 
+0558 247a0000 nrtn blank 
+0559 704c6f01 jam 1 ,mem_mouse_le_send_conn_param_update 
+055a 704c701e jam 30 ,mem_mouse_le_send_conn_param_update_timer 
+055b 20600000 rtn 
+
+p_mouse_le_bb_event_connected:
+055c 704de305 jam 5 ,mem_device_tx_dpi_data_delay_timer 
+055d 204003fb call p_mouse_device_poweron_led_config 
+055e 20204390 branch mouse_le_bb_event_connected 
+
+p_mouse_stop_discovery:
+055f 58000000 setarg 0 
+0560 67e14ad3 store 2 ,mem_mouse_discovery_timer 
+0561 202045b7 branch mouse_stop_discovery + 1 
+
+p_g24_pair_dispatch:
+0562 70488f00 jam default_24g_device ,mem_24g_reconn_type 
+0563 6fe14bfd fetch 2 ,mem_24g_pair_count 
+0564 1fe0fe01 increase 1 ,pdata 
+0565 67e14bfd store 2 ,mem_24g_pair_count 
+0566 6fe0cbfd fetch 1 ,mem_24g_pair_count 
+0567 1fe17eff and pdata ,0xff ,pdata 
+0568 c000056a beq 0 ,p_g24_pair_dispatch2 
+0569 20600000 rtn 
+
+p_g24_pair_dispatch2:
+056a 6fe0c883 fetch 1 ,mem_24g_pair_sm 
+056b c07fa344 beq state_24g_pairing_success ,g24_pair_exit 
+056c c0008571 beq state_24g_pairing_1 ,p_g24_pair_sm_1 
+056d c0010573 beq state_24g_pairing_2 ,p_g24_pair_sm_2 
+056e c0018579 beq state_24g_pairing_3 ,p_g24_pair_sm_3 
+056f c002057f beq state_24g_pairing_4 ,p_g24_pair_sm_4 
+0570 20600000 rtn 
+
+p_g24_pair_sm_1:
+0571 704cfbff jam datatype_attemp ,mem_24g_txbuf_new 
+0572 20200580 branch p_g24_pair_sm_prep 
+
+p_g24_pair_sm_2:
+0573 6fe0c85e fetch 1 ,mem_24g_pair_switch 
+0574 203a0577 branch p_g24_pair_sm_2_skip ,blank 
+0575 6fe248ad fetch 4 ,mem_24g_device_addr 
+0576 20402292 call g24_update_addr_and_synccrc8 
+
+p_g24_pair_sm_2_skip:
+0577 704cfbaa jam datatype_bind ,mem_24g_txbuf_new 
+0578 20200580 branch p_g24_pair_sm_prep 
+
+p_g24_pair_sm_3:
+0579 704cfb55 jam datatype_config ,mem_24g_txbuf_new 
+057a 6fe0c85e fetch 1 ,mem_24g_pair_switch 
+057b 203a0580 branch p_g24_pair_sm_prep ,blank 
+057c 6fe24895 fetch 4 ,mem_24g_receiver_addr 
+057d 67e24cfd store 4 ,mem_24g_txbuf_new + 2 
+057e 20200582 branch p_g24_pair_sm_common 
+
+p_g24_pair_sm_4:
+057f 704cfb22 jam datatype_ok ,mem_24g_txbuf_new 
+
+p_g24_pair_sm_prep:
+0580 6fe248ad fetch 4 ,mem_24g_device_addr 
+0581 67e24cfd store 4 ,mem_24g_txbuf_new + 2 
+
+p_g24_pair_sm_common:
+0582 6fe0c839 fetch 1 ,mem_24g_data_type 
+0583 1fe17e07 and_into bits_data ,pdata 
+0584 67e0ccfc store 1 ,mem_24g_txbuf_new + 1 
+0585 704d0100 jam 0 ,mem_24g_txbuf_new + 6 
+0586 70483807 jam 7 ,mem_24g_datalen 
+0587 2040006f call p_g24_transmit_prep 
+0588 20402662 call g24_transmit_receive_ack 
+0589 246c0000 nrtn sync 
+058a 24778000 nrtn user3 
+058b 204005ca call p_g24_txbuf_clear 
+058c 204002ef call p_g24_ackpayload_parse 
+
+p_g24_pair_sm_common_next:
+058d 6fe0c883 fetch 1 ,mem_24g_pair_sm 
+058e c17f8000 rtneq state_24g_pairing_success 
+058f c0010592 beq state_24g_pairing_2 ,p_g24_pair_sm_2_waiting_ack 
+0590 c0020598 beq state_24g_pairing_4 ,p_g24_pair_sm_4_waiting_ack 
+0591 2020231d branch g24_pair_sm_common_next + 2 
+
+p_g24_pair_sm_2_waiting_ack:
+0592 6fe0c85e fetch 1 ,mem_24g_pair_switch 
+0593 203a232d branch g24_pair_sm_2_waiting_ack_skip ,blank 
+0594 6fe24d89 fetch 4 ,mem_24g_rxpayload_new + 2 
+0595 207a0000 rtn blank 
+0596 67e24895 store 4 ,mem_24g_receiver_addr 
+0597 2020232d branch g24_pair_sm_2_waiting_ack_skip 
+
+p_g24_pair_sm_4_waiting_ack:
+0598 6fe0c85e fetch 1 ,mem_24g_pair_switch 
+0599 203a059e branch p_g24_pair_sm_4_waiting_ack_skip ,blank 
+059a 6fe24d89 fetch 4 ,mem_24g_rxpayload_new + 2 
+059b 684a4895 fetcht 4 ,mem_24g_receiver_addr 
+059c 98467c00 isub temp ,null 
+059d 24628000 nrtn zero 
+
+p_g24_pair_sm_4_waiting_ack_skip:
+059e 704883ff jam state_24g_pairing_success ,mem_24g_pair_sm 
+059f 70095b39 jam bt_evt_24g_pairing_complete ,mem_fifo_temp 
+05a0 204078dc call ui_ipc_send_event 
+05a1 58000000 setarg 0 
+05a2 67e14887 store 2 ,mem_24g_pair_timeout 
+05a3 6fe24d89 fetch 4 ,mem_24g_rxpayload_new + 2 
+05a4 20402292 call g24_update_addr_and_synccrc8 
+05a5 20202344 branch g24_pair_exit 
+
+p_g24_reconn_dispatch:
+05a6 6fe1488d fetch 2 ,mem_24g_reconn_count 
+05a7 d84001f8 arg 0x01f8 ,temp 
+05a8 98417e00 iand temp ,pdata 
+05a9 203a05b2 branch p_g24_reconn_dispatch_next ,blank 
+05aa 6fe1488d fetch 2 ,mem_24g_reconn_count 
+05ab 1fe0fe01 increase 1 ,pdata 
+05ac 67e1488d store 2 ,mem_24g_reconn_count 
+05ad 20600000 rtn 
+
+p_g24_reconn_mode_judge:
+05ae 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+05af c298486d bbit1 mouse_enable_auto_24g_paring ,mouse_24g_pair_mode_check 
+05b0 c297c86d bbit1 mouse_enable_24g_first_auto_pairing ,mouse_24g_pair_mode_check 
+05b1 20202577 branch g24_reconn_receiver_addr 
+
+p_g24_reconn_dispatch_next:
+05b2 204005db call p_g24_reconn_data_prep 
+05b3 20402662 call g24_transmit_receive_ack 
+05b4 242c05e2 nbranch p_g24_reconn_device_fail ,sync 
+05b5 243785e2 nbranch p_g24_reconn_device_fail ,user3 
+05b6 204002ef call p_g24_ackpayload_parse 
+05b7 6fe0c82d fetch 1 ,mem_24g_rxdata_length 
+05b8 203a05d0 branch p_receiver_addr_zero_handle ,blank 
+
+p_g24_reconn_receiver_addr_handle:
+05b9 6fe2487b fetch 4 ,mem_24g_pair_addr 
+05ba 684a483f fetcht 4 ,mem_24g_addr 
+05bb 98467c00 isub temp ,null 
+05bc 202285ae branch p_g24_reconn_mode_judge ,zero 
+05bd 6fe248ad fetch 4 ,mem_24g_device_addr 
+05be 684a483f fetcht 4 ,mem_24g_addr 
+05bf 98467c00 isub temp ,null 
+05c0 204285d7 call p_g24_store_receiver_addr ,zero 
+05c1 6fe0c8a5 fetch 1 ,mem_24g_conn_sm 
+05c2 793ffe02 set0 state_24g_reconn ,pdata 
+05c3 67e0c8a5 store 1 ,mem_24g_conn_sm 
+05c4 58000000 setarg 0 
+05c5 67e14887 store 2 ,mem_24g_pair_timeout 
+05c6 67e1488d store 2 ,mem_24g_reconn_count 
+05c7 67e1488b store 2 ,mem_24g_reconn_timeout 
+05c8 70095b3c jam bt_evt_24g_attempt_success ,mem_fifo_temp 
+05c9 204078dc call ui_ipc_send_event 
+
+p_g24_txbuf_clear:
+05ca df200004 arg 4 ,loopcnt 
+05cb d8a04cfb arg mem_24g_txbuf_new ,contw 
+05cc 20207d8c branch memset0 
+
+p_g24_rxpayload_clear:
+05cd df200002 arg 2 ,loopcnt 
+05ce d8a04d87 arg mem_24g_rxpayload_new ,contw 
+05cf 20207d8c branch memset0 
+
+p_receiver_addr_zero_handle:
+05d0 6fe24891 fetch 4 ,mem_24g_fast_conn_addr 
+05d1 684a483f fetcht 4 ,mem_24g_addr 
+05d2 98467c00 isub temp ,null 
+05d3 202285b9 branch p_g24_reconn_receiver_addr_handle ,zero 
+05d4 6fe24d89 fetch 4 ,mem_24g_rxpayload_new + 2 
+05d5 207a0000 rtn blank 
+05d6 202005b9 branch p_g24_reconn_receiver_addr_handle 
+
+p_g24_store_receiver_addr:
+05d7 6fe24d89 fetch 4 ,mem_24g_rxpayload_new + 2 
+05d8 207a0000 rtn blank 
+05d9 67e24895 store 4 ,mem_24g_receiver_addr 
+05da 20202587 branch g24_ch_syncword_crc8_init 
+
+p_g24_reconn_data_prep:
+05db 704cfbff jam datatype_attemp ,mem_24g_txbuf_new 
+05dc 6fe0c839 fetch 1 ,mem_24g_data_type 
+05dd 67e0ccfc store 1 ,mem_24g_txbuf_new + 1 
+05de 6fe248ad fetch 4 ,mem_24g_device_addr 
+05df 67e24cfd store 4 ,mem_24g_txbuf_new + 2 
+05e0 70483806 jam 6 ,mem_24g_datalen 
+05e1 2020006f branch p_g24_transmit_prep 
+
+p_g24_reconn_device_fail:
+05e2 6fe0c890 fetch 1 ,mem_24g_fast_conn_enable 
+05e3 203a2281 branch g24_ch ,blank 
+05e4 6fe1488d fetch 2 ,mem_24g_reconn_count 
+05e5 1fe0fe01 increase 1 ,pdata 
+05e6 67e1488d store 2 ,mem_24g_reconn_count 
+05e7 2feffe09 isolate1 9 ,pdata 
+05e8 6fe0c88f fetch 1 ,mem_24g_reconn_type 
+05e9 c00285ec beq pair_and_receiver ,p_g24_reconn_pair_receiver 
+05ea c00105ee beq fast_conn_and_3_0_addr ,p_g24_reconn_fast_conn_and_3_0 
+05eb 202025b1 branch g24_reconn_device_fail + 7 
+
+p_g24_reconn_pair_receiver:
+05ec 2020a577 branch g24_reconn_receiver_addr ,true 
+05ed 202022ef branch g24_pair_init_param 
+
+p_g24_reconn_fast_conn_and_3_0:
+05ee 2020a57e branch g24_reconn_device_3_0_addr ,true 
+05ef 7041e8aa jam tx_power_fast_conn ,mem_tx_power 
+05f0 20202571 branch g24_reconn_fast_conn + 2 
+
+p_g24_lpm_wait:
+05f1 78347c00 enable user 
+05f2 20401436 call lpo_calibration 
+05f3 6fe1c174 fetch 3 ,mem_clks_per_lpo 
+05f4 203a7ec7 branch disable_user ,blank 
+05f5 6fe0c099 fetch 1 ,mem_lpm_mode 
+05f6 203a7ec7 branch disable_user ,blank 
+05f7 6fe0c8c1 fetch 1 ,mem_24g_transmit_by_interrupt 
+05f8 c000fec7 beq g24_tx_timer_int_enable ,disable_user 
+05f9 20600000 rtn 
+
+p_lpm_sleep:
+05fa 204012d1 call xtal_fast_wake 
+05fb 20201468 branch lpm_sleep_skip_cb_function 
+
+p_ui_timer_check:
+05fc 6fe0cbf4 fetch 1 ,mem_power_on_flag 
+05fd 245a78cc ncall ui_timer_init ,blank 
+05fe 704bf400 jam 0 ,mem_power_on_flag 
+05ff 202078bc branch ui_timer_check + 1 
+
+p_mouse_le:
+0600 20401b24 call le_fifo_check_nearly_full 
+0601 247a0000 nrtn blank 
+0602 6fe0cad2 fetch 1 ,mem_mouse_bluetooth_fast_conn_flag 
+0603 c07f8607 beq 0xff ,p_mouse_le_next 
+0604 6fe0cb86 fetch 1 ,mem_le_connect_status_flag 
+0605 1fe17e03 and pdata ,0x03 ,pdata 
+0606 c1818000 rtnne 0x03 
+
+p_mouse_le_next:
+0607 6fe0cabd fetch 1 ,mem_mouse_clear_sensor_data_flag 
+0608 205a4308 call mouse_clear_sensor_data_by_reset ,blank 
+0609 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+060a c280c411 bbit1 mouse_24g_pairing_flag ,mouse_le_send_empty_packet 
+060b c2804411 bbit1 mouse_select_device_flag ,mouse_le_send_empty_packet 
+060c c282c411 bbit1 mouse_bt_discovery_button_down_flag ,mouse_le_send_empty_packet 
+060d c2834411 bbit1 mouse_bt_discovery_button_long_down_flag ,mouse_le_send_empty_packet 
+060e 20403fb0 call mouse_motion 
+060f 20404364 call mouse_check_125hz 
+0610 24740000 nrtn user 
+0611 20404371 call mouse_current_mult_update + 2 
+0612 20400220 call p_mouse_data_xy_release 
+0613 202043f3 branch mouse_le_next + 12 
+
+p_le_slave_match:
+0614 6fe0c3dd fetch 1 ,mem_le_md_count 
+0615 1fe0fe01 pincrease 1 
+0616 67e0c3dd store 1 ,mem_le_md_count 
+0617 c0061606 beq le_md_max_count ,le_slave_cont 
+0618 204018c7 call le_acknowledge 
+0619 20401916 call le_prepare_tx 
+061a 6fe082bd fetch 1 ,mem_le_tx_phy 
+061b 20401637 call le_enable_phy_by_pdata 
+061c 204017e4 call le_transmit 
+061d 20201601 branch le_slave_match + 10 
+
+p_le_slave_unsync:
+061e 20400e7c call end_of_packet 
+061f 2020160d branch le_slave_unsync + 1 
+
+p_le_parse_l2cap:
+0620 efe10006 ifetch 2 ,contr 
+0621 c0020623 beq le_l2cap_cid_att ,p_le_parse_att 
+0622 20201990 branch le_parse_l2cap + 10 
+
+p_le_parse_att:
+0623 efe18006 ifetch 3 ,contr 
+0624 67e1c436 store 3 ,mem_le_att_opcode 
+0625 c005062a beq attop_read_request ,p_le_parse_att_read_request 
+0626 c0090639 beq attop_write_request ,p_le_parse_att_write_request 
+0627 c0080657 beq attop_read_by_group_type_request ,p_le_parse_att_read_by_group_type_request 
+0628 c0040666 beq attop_read_by_type_request ,p_le_parse_att_read_by_type_request 
+0629 20201c7f branch le_parse_att + 2 
+
+p_le_parse_att_read_request:
+062a 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+062b c31d9d93 bbit0 mouse_enable_le_battery_service_cancel ,le_parse_att_read_request 
+062c 20401e39 call le_check_encrypt_state 
+062d 68494437 fetcht 2 ,mem_le_att_handle 
+062e 6fe0c3c0 fetch 1 ,mem_le_configuration 
+062f c2818634 bbit1 bit_ble_read_auth ,p_le_send_att_read_response_check_auth 
+
+p_le_send_att_read_response:
+0630 6fe14437 fetch 2 ,mem_le_att_handle 
+0631 c0181e74 beq 0x30 ,le_send_att_error_response_notfound 
+0632 68494437 fetcht 2 ,mem_le_att_handle 
+0633 20201d97 branch le_send_att_read_response 
+
+p_le_send_att_read_response_check_auth:
+0634 6fe143d1 fetch 2 ,mem_le_pairing_handle 
+0635 98467c00 isub temp ,null 
+0636 24228630 nbranch p_le_send_att_read_response ,zero 
+0637 24340630 nbranch p_le_send_att_read_response ,user 
+0638 20201dbc branch le_send_att_read_response_error_insufficient_auth 
+
+p_le_parse_att_write_request:
+0639 18c22200 copy contr ,rega 
+063a 6fe143d4 fetch 2 ,mem_le_l2cap_size 
+063b 1fe0a5fd add pdata ,-3 ,regb 
+063c 204019d1 call le_writeatt_cb 
+063d 68494437 fetcht 2 ,mem_le_att_handle 
+063e 6fe0ce2e fetch 1 ,mem_le_protocol_rx_handle 
+063f 98467c00 isub temp ,null 
+0640 2042864c call p_mouse_le_receive_driver_data ,zero 
+0641 6fe0cad2 fetch 1 ,mem_mouse_bluetooth_fast_conn_flag 
+0642 c07f9e1f beq 0xff ,le_send_att_write_response_check_auth 
+0643 6fe0cad8 fetch 1 ,mem_mouse_le_reconnect_flag 
+0644 203a1e1f branch le_send_att_write_response_check_auth ,blank 
+0645 6fe0cb86 fetch 1 ,mem_le_connect_status_flag 
+0646 c2809e1f bbit1 ll_start_enc_flag ,le_send_att_write_response_check_auth 
+0647 5800001a setarg 0x001a 
+0648 68494437 fetcht 2 ,mem_le_att_handle 
+0649 98467c00 isub temp ,null 
+064a 24229e1f nbranch le_send_att_write_response_check_auth ,zero 
+064b 20201dbc branch le_send_att_read_response_error_insufficient_auth 
+
+p_mouse_le_receive_driver_data:
+064c efe18011 ifetch 3 ,rega 
+064d 67e1ce30 store 3 ,mem_le_protocol_rx_data 
+064e 6fe14e30 fetch 2 ,mem_le_protocol_rx_data 
+064f c07a8653 beq dpi_ack ,p_mouse_le_receive_dpi_data_set 
+0650 c07a0655 beq report_ack ,p_mouse_le_receive_report_data_set 
+0651 c07980b8 beq get_dpi ,p_mouse_le_get_dpi_data_info 
+0652 20600000 rtn 
+
+p_mouse_le_receive_dpi_data_set:
+0653 6fe0ce32 fetch 1 ,mem_le_protocol_rx_data + 2 
+0654 20200146 branch p_mouse_dpi_set 
+
+p_mouse_le_receive_report_data_set:
+0655 6fe0ce32 fetch 1 ,mem_le_protocol_rx_data + 2 
+0656 20200153 branch p_mouse_report_set 
+
+p_le_parse_att_read_by_group_type_request:
+0657 20401eb0 call le_get_search_handle_start_end_common 
+0658 18c20400 copy contr ,temp 
+0659 2040065d call p_mouse_le_service_change 
+065a 18420c00 copy ,temp ,contr 
+065b 20401ebd call le_get_search_att_type 
+065c 20201ddb branch le_send_att_read_by_group_type_response 
+
+p_mouse_le_service_change:
+065d 6fe1099e fetch 2 ,mem_le_search_handle_start 
+065e 1fe67c33 sub pdata ,rom_max_handle ,null 
+065f 20610000 rtn positive 
+0660 6fe0ce33 fetch 1 ,mem_le_service_change_flag 
+0661 247a0000 nrtn blank 
+0662 704e3301 jam 1 ,mem_le_service_change_flag 
+0663 58004df0 setarg mem_ui_le_uuid_table_new 
+0664 67e14396 store 2 ,mem_ui_le_uuid_table 
+0665 20600000 rtn 
+
+p_le_parse_att_read_by_type_request:
+0666 20401eb0 call le_get_search_handle_start_end_common 
+0667 18c20400 copy contr ,temp 
+0668 2040066d call p_mouse_le_uuid_reinit 
+0669 2040065d call p_mouse_le_service_change 
+066a 18420c00 copy ,temp ,contr 
+066b 20401ebd call le_get_search_att_type 
+066c 20201d18 branch le_send_att_read_by_type_response 
+
+p_mouse_le_uuid_reinit:
+066d 6fe0ce33 fetch 1 ,mem_le_service_change_flag 
+066e 207a0000 rtn blank 
+066f 704e3300 jam 0 ,mem_le_service_change_flag 
+0670 58009732 setarg mouse_ble_att_list_addr 
+0671 67e14396 store 2 ,mem_ui_le_uuid_table 
+0672 20600000 rtn 
+
+p_le_pairing_sm:
+0673 20401b24 call le_fifo_check_nearly_full 
+0674 247a0000 nrtn blank 
+0675 6fe0c39b fetch 1 ,mem_le_pairing_state 
+0676 c0060678 beq flag_le_paring_send_master_identification ,p_le_pairng_sm_send_master_indentification 
+0677 2020202e branch le_pairing_sm + 4 
+
+p_le_pairng_sm_send_master_indentification:
+0678 6fe0c34f fetch 1 ,mem_le_preq_resp_key_distribution 
+0679 6848c356 fetcht 1 ,mem_le_pres_resp_key_distribution 
+067a 98417e00 iand temp ,pdata 
+067b 2fec0001 isolate0 le_initator_irk_bit ,pdata 
+067c 2020a05e branch le_parse_start_enc_rsp_after_auth_end ,true 
+067d 70439b0d jam flag_le_paring_send_indentity_information ,mem_le_pairing_state 
+067e 2020067f branch p_le_send_smp_identity_information 
+
+p_le_send_smp_identity_information:
+067f 18002211 force 17 ,rega 
+0680 204020b6 call le_fifo_malloc_tx_l2cap_smp 
+0681 58000008 setarg smp_identity_information 
+0682 e7e08005 istore 1 ,contw 
+0683 df200010 arg 16 ,loopcnt 
+0684 d8c04316 arg mem_le_ltk ,contr 
+0685 20207dd4 branch memcpy 
+
+p_mouse_motion:
+0686 78547c00 disable user 
+0687 58000000 setarg 0 
+0688 67e348d5 store 6 ,mem_mouse_x 
+0689 2040069a call p_mouse_check_sensor_data 
+068a 58000089 setarg 0x0089 
+068b 20405d5e call twspi_write 
+068c 204004e3 call p_mouse_seting_sensor_type 
+068d 20403fbe call mouse_zwheel 
+068e 20403fc3 call mouse_t_zwheel 
+068f 204006b3 call p_mouse_key 
+0690 6fe0c8d4 fetch 1 ,mem_mouse_key 
+0691 1fe17e1f and_into 0x1f ,pdata 
+0692 67e0c8d4 store 1 ,mem_mouse_key 
+0693 24340698 nbranch p_mouse_drawing_optima_init ,user 
+0694 704de500 jam 0 ,mem_device_tx_heart_data_flag 
+0695 704de001 jam 1 ,mem_24g_rf_data_flag 
+0696 204006a9 call p_mouse_drawing_optima 
+0697 20204584 branch mouse_no_data_timer_init 
+
+p_mouse_drawing_optima_init:
+0698 704de000 jam 0 ,mem_24g_rf_data_flag 
+0699 20204766 branch mouse_drawing_optima_init 
+
+p_mouse_check_sensor_data:
+069a 6fe0c4ae fetch 1 ,mem_spi_write_flash_sm 
+069b c1800000 rtnne flash_sm_no_buys 
+069c 6fe0c92c fetch 1 ,mem_config_sensor_type 
+069d c005869f beq ka8g2 ,p_mouse_ka8g2_sensor_motion 
+069e 20204283 branch mouse_check_sensor_data + 3 
+
+p_mouse_ka8g2_sensor_motion:
+069f 20404304 call mouse_clear_sensor_data 
+06a0 6fe0c915 fetch 1 ,mem_sensor_motion_gpio 
+06a1 c07f86a5 beq gpio_disable ,p_mouse_ka8g2_sensor_motion_1 
+06a2 6848c915 fetcht 1 ,mem_sensor_motion_gpio 
+06a3 204060fd call gpio_get_bit 
+06a4 24608000 nrtn true 
+
+p_mouse_ka8g2_sensor_motion_1:
+06a5 58000000 setarg pan_reg_pid_l 
+06a6 20405d65 call twspi_read 
+06a7 c0ac41f2 bne pka8g2_id1 ,mouse_twspi_reset 
+06a8 202042b9 branch mouse_p3212_sensor_motion_2 
+
+p_mouse_drawing_optima:
+06a9 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+06aa c38c8000 rtnbit1 mouse_enable_24g_500hz 
+06ab c38d0000 rtnbit1 mouse_enable_24g_1000 
+06ac c38f0000 rtnbit1 mouse_enable_usb_500 
+06ad c38f8000 rtnbit1 mouse_enable_usb_1000 
+06ae 6fe0c92c fetch 1 ,mem_config_sensor_type 
+06af c1018000 rtneq p3212 
+06b0 c1058000 rtneq ka8g2 
+06b1 20404758 call mouse_drawing_optima 
+06b2 20600000 rtn 
+
+p_mouse_key:
+06b3 204006b6 call p_mouse_check_key_gpio 
+06b4 2040412d call mouse_ghost_key_check 
+06b5 2020411e branch mouse_key + 2 
+
+p_mouse_check_key_gpio:
+06b6 6fe0cbf2 fetch 1 ,mem_sensor_shutdown_flag 
+06b7 245a4161 ncall mouse_check_key_gpio_once ,blank 
+06b8 da200000 arg 0 ,rega 
+06b9 204006bd call p_mouse_check_lkey_gpio 
+06ba 204006cc call p_mouse_check_bkkey_gpio 
+06bb 204006d9 call p_mouse_check_fwkey_gpio 
+06bc 2020415e branch mouse_check_key_gpio_next 
+
+p_mouse_check_lkey_gpio:
+06bd 6fe0c91c fetch 1 ,mem_lbutton_gpio 
+06be 204006e6 call p_mouse_gpio_config_output_high 
+06bf 20404164 call mouse_check_lkey_gpio 
+06c0 6848c91c fetcht 1 ,mem_lbutton_gpio 
+06c1 20403f96 call mouse_gpio_config_input_pu 
+
+p_mouse_check_rkey_gpio:
+06c2 6fe0c91d fetch 1 ,mem_rbutton_gpio 
+06c3 204006e6 call p_mouse_gpio_config_output_high 
+06c4 2040416a call mouse_check_rkey_gpio 
+06c5 6848c91d fetcht 1 ,mem_rbutton_gpio 
+06c6 20403f96 call mouse_gpio_config_input_pu 
+
+p_mouse_check_mkey_gpio:
+06c7 6fe0c91e fetch 1 ,mem_mbutton_gpio 
+06c8 204006e6 call p_mouse_gpio_config_output_high 
+06c9 20404170 call mouse_check_mkey_gpio 
+06ca 6848c91e fetcht 1 ,mem_mbutton_gpio 
+06cb 20203f96 branch mouse_gpio_config_input_pu 
+
+p_mouse_check_bkkey_gpio:
+06cc 6fe0c911 fetch 1 ,mem_bk_button_gpio 
+06cd c17f8000 rtneq gpio_disable 
+06ce 704ba703 jam mouse_bk_key ,mem_mouse_key_temp 
+06cf 6fe0cba2 fetch 1 ,mem_mouse_bkkey_press_status 
+06d0 1fe22600 copy pdata ,regc 
+06d1 6848c911 fetcht 1 ,mem_bk_button_gpio 
+06d2 6fe0c914 fetch 1 ,mem_matrix_public_gpio 
+06d3 c07f86d5 beq gpio_disable ,p_mouse_3io6key_bk_check 
+06d4 2020417e branch mouse_check_bkkey_gpio_next 
+
+p_mouse_3io6key_bk_check:
+06d5 6fe0c911 fetch 1 ,mem_bk_button_gpio 
+06d6 204006e9 call p_mouse_gpio_config_output_low 
+06d7 6848c911 fetcht 1 ,mem_bk_button_gpio 
+06d8 2020418b branch mouse_3io6key_bk_check 
+
+p_mouse_check_fwkey_gpio:
+06d9 6fe0c912 fetch 1 ,mem_fw_button_gpio 
+06da c17f8000 rtneq gpio_disable 
+06db 704ba704 jam mouse_fw_key ,mem_mouse_key_temp 
+06dc 6fe0cba3 fetch 1 ,mem_mouse_fwkey_press_status 
+06dd 1fe22600 copy pdata ,regc 
+06de 6848c912 fetcht 1 ,mem_fw_button_gpio 
+06df 6fe0c914 fetch 1 ,mem_matrix_public_gpio 
+06e0 c07f86e2 beq gpio_disable ,p_mouse_3io6key_fw_check 
+06e1 20204197 branch mouse_check_fwkey_gpio_next 
+
+p_mouse_3io6key_fw_check:
+06e2 6fe0c912 fetch 1 ,mem_fw_button_gpio 
+06e3 204006e9 call p_mouse_gpio_config_output_low 
+06e4 6848c912 fetcht 1 ,mem_fw_button_gpio 
+06e5 202041a4 branch mouse_3io6key_fw_check 
+
+p_mouse_gpio_config_output_high:
+06e6 c17f8000 rtneq gpio_disable 
+06e7 d840003f arg gpcfg_output_high ,temp 
+06e8 2020612c branch gpio_config_function_int 
+
+p_mouse_gpio_config_output_low:
+06e9 c17f8000 rtneq gpio_disable 
+06ea d840003e arg gpcfg_output_low ,temp 
+06eb 2020612c branch gpio_config_function_int 
+
+p_mouse_setting_config:
+06ec 20758000 rtn wake 
+06ed 704dcd00 jam zcode_00 ,mem_zcode_temp_param0 
+06ee 20200700 branch p_zcode_entrance 
+
+p_mouse_cb_fuction:
+06ef 704dcd01 jam zcode_01 ,mem_zcode_temp_param0 
+06f0 20200700 branch p_zcode_entrance 
+
+p_mouse_start_work_next:
+06f1 704dcd10 jam zcode_10 ,mem_zcode_temp_param0 
+06f2 20200700 branch p_zcode_entrance 
+
+p_mouse_24g_pairing_complete:
+06f3 704dcd11 jam zcode_11 ,mem_zcode_temp_param0 
+06f4 20200700 branch p_zcode_entrance 
+
+p_mouse_setgpio_hibernate:
+06f5 704dcd20 jam zcode_20 ,mem_zcode_temp_param0 
+06f6 20200700 branch p_zcode_entrance 
+
+p_mouse_24g_attempt_success:
+06f7 704dcd21 jam zcode_21 ,mem_zcode_temp_param0 
+06f8 20200700 branch p_zcode_entrance 
+
+p_mouse_le_bb_disconnected:
+06f9 704dcd30 jam zcode_30 ,mem_zcode_temp_param0 
+06fa 20200700 branch p_zcode_entrance 
+
+p_mouse_start_discovery:
+06fb 704dcd31 jam zcode_31 ,mem_zcode_temp_param0 
+06fc 20200700 branch p_zcode_entrance 
+
+p_mouse_report_param_set:
+06fd 20758000 rtn wake 
+06fe 704dcd40 jam zcode_40 ,mem_zcode_temp_param0 
+06ff 20200700 branch p_zcode_entrance 
+
+p_zcode_entrance:
+0700 6848cdcd fetcht 1 ,mem_zcode_temp_param0 
+0701 18518400 rshift4 temp ,temp 
+0702 6fe0cdd2 fetch 1 ,mem_zcode_current_number 
+0703 98467c00 isub temp ,null 
+0704 2022871c branch p_zcode_run ,zero 
+0705 6048cdd2 storet 1 ,mem_zcode_current_number 
+0706 18408401 increase 1 ,temp 
+0707 58000100 setarg zcode_buff_size 
+0708 984f8400 imul32 temp ,temp 
+0709 6fe1cdd3 fetch 3 ,mem_xip_flash_offset 
+070a 98467e00 isub temp ,pdata 
+070b 6849cdd6 fetcht 3 ,mem_flash_start_addr 
+070c 9840fe00 iadd temp ,pdata 
+070d 67e1cdd9 store 3 ,mem_flash_address 
+
+p_zcode_read_loop:
+070e 2040071e call p_zcode_buff_clear 
+070f 2040072a call p_read_data_from_flash 
+0710 20400721 call p_zcode_data_check 
+0711 2422870e nbranch p_zcode_read_loop ,zero 
+0712 6fe20e00 fetch 4 ,mem_zcode_buff 
+0713 684a4ddc fetcht 4 ,mem_zcode_head 
+0714 98467c00 isub temp ,null 
+0715 2422870e nbranch p_zcode_read_loop ,zero 
+0716 58000e00 setarg mem_zcode_buff 
+0717 67e141a6 store 2 ,mem_patch_ptr 
+0718 7041a840 jam zcode_code_size ,mem_patch_len 
+0719 20405ca3 call load_ucode 
+071a 58000000 setarg 0 
+071b 67e241a6 store 4 ,mem_patch_ptr 
+
+p_zcode_run:
+071c 6fe0cdcd fetch 1 ,mem_zcode_temp_param0 
+071d 20200001 branch p_zcode 
+
+p_zcode_buff_clear:
+071e d8a00e00 arg mem_zcode_buff ,contw 
+071f df200100 arg 256 ,loopcnt 
+0720 20207d9b branch clear_mem 
+
+p_zcode_data_check:
+0721 d8c00e00 arg mem_zcode_buff ,contr 
+0722 da200000 arg 0 ,rega 
+0723 df20003f arg 63 ,loopcnt 
+
+p_zcode_data_loop:
+0724 efe20006 ifetch 4 ,contr 
+0725 9a20a200 iadd rega ,rega 
+0726 c2000724 loop p_zcode_data_loop 
+0727 efe20006 ifetch 4 ,contr 
+0728 9a267c00 isub rega ,null 
+0729 20600000 rtn 
+
+p_read_data_from_flash:
+072a 20405daf call spid_init_flash 
+072b 2040464a call mouse_spid_flash_release_form_powerdown 
+072c 6fe1cdd9 fetch 3 ,mem_flash_address 
+072d d8400100 arg zcode_buff_size ,temp 
+072e da200e00 arg mem_zcode_buff ,rega 
+072f 20405dd2 call spid_read_flash 
+0730 20404651 call mouse_spid_flash_powerdown 
+0731 20203fa5 branch mouse_sensor_spi_init 
+              org 0x10001
+
+z_entrance0:
+10001 c0000004 beq zcode_00 ,z_mouse_init_set_config 
+10002 c000803a beq zcode_01 ,z_mouse_cb_fuction 
+10003 20600000 rtn 
+
+z_mouse_init_set_config:
+10004 2040260e call g24_transmit_init 
+10005 204022b5 call g24_chmap_param_init 
+10006 204002ac call p_send_time_long_wake 
+10007 20403f60 call mouse_gpio_init 
+10008 204001f4 call p_mouse_le_name_load 
+10009 20403dd6 call mouse_param_init 
+1000a 20400036 call z_mouse_led_multi_parm_init 
+1000b 20400033 call z_mouse_store_normal_tx_power 
+1000c 20401ac2 call le_set_config_fixed_ltk 
+1000d 20400014 call z_le_set_justwork 
+1000e 20401ade call le_set_fixed_ltk 
+1000f 20401aca call le_set_config_read_authentication 
+10010 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+10011 c289c675 bbit1 mouse_enable_eeprom ,mouse_load_eeprom_info_check 
+10012 c289001a bbit1 mouse_enable_flash ,z_mouse_load_flash_info_check 
+10013 20600000 rtn 
+
+z_le_set_justwork:
+10014 59000302 setarg 0x01000302 
+10015 67e24350 store 4 ,mem_le_pres 
+10016 58030010 setarg 0x030010 
+10017 67e1c354 store 3 ,mem_le_pres_max_keysize 
+10018 70439d01 jam 1 ,mem_le_pairing_mode 
+10019 20600000 rtn 
+
+z_mouse_load_flash_info_check:
+1001a 20405daf call spid_init_flash 
+1001b 2040464a call mouse_spid_flash_release_form_powerdown 
+1001c 2040463d call mouse_information_flash_parameters 
+1001d 20405dd2 call spid_read_flash 
+1001e 20404651 call mouse_spid_flash_powerdown 
+1001f 20400021 call z_mouse_app_initflag_check 
+10020 20203fa5 branch mouse_sensor_spi_init 
+
+z_mouse_app_initflag_check:
+10021 6fe14995 fetch 2 ,mem_store_flag 
+10022 d840aa55 arg eeprom_init_flag ,temp 
+10023 98467c00 isub temp ,null 
+10024 2022c622 branch mouse_load_device_info ,zero 
+10025 20400027 call z_mouse_24g_report_param_init 
+10026 20204618 branch mouse_app_initflag_check + 4 
+
+z_mouse_24g_report_param_init:
+10027 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+10028 c28c002d bbit1 mouse_enable_24g_250hz ,z_mouse_set_report_250hz 
+10029 c28c802f bbit1 mouse_enable_24g_500hz ,z_mouse_set_report_500hz 
+1002a c28d0031 bbit1 mouse_enable_24g_1000 ,z_mouse_set_report_1000hz 
+
+z_mouse_set_report_125hz:
+1002b 70499e01 jam report_125 ,mem_mouse_24g_report 
+1002c 20600000 rtn 
+
+z_mouse_set_report_250hz:
+1002d 70499e02 jam report_250 ,mem_mouse_24g_report 
+1002e 20600000 rtn 
+
+z_mouse_set_report_500hz:
+1002f 70499e03 jam report_500 ,mem_mouse_24g_report 
+10030 20600000 rtn 
+
+z_mouse_set_report_1000hz:
+10031 70499e04 jam report_1000 ,mem_mouse_24g_report 
+10032 20600000 rtn 
+
+z_mouse_store_normal_tx_power:
+10033 6fe0c1e8 fetch 1 ,mem_tx_power 
+10034 67e0cc72 store 1 ,mem_normal_tx_power 
+10035 20600000 rtn 
+
+z_mouse_led_multi_parm_init:
+10036 704ca400 jam 0 ,mem_mouse_multi_led_blink_enable 
+10037 704cb200 jam 0 ,mem_mouse_dpi_led_blink_enable 
+10038 704cb400 jam 0 ,mem_mouse_dpi_blink_time 
+10039 202003c9 branch p_mouse_device_led_all_off 
+
+z_mouse_cb_fuction:
+1003a 580001fd setarg p_mouse_24g_package_data 
+1003b 67e1489f store 2 ,mem_cb_24g_transmit_data 
+1003c 20203c89 branch mouse_cb_fuction + 6 
+              org 0x20001
+
+z_entrance1:
+20001 c0080004 beq zcode_10 ,z_mouse_start_work_next 
+20002 c008802a beq zcode_11 ,z_mouse_24g_pairing_complete 
+20003 20600000 rtn 
+
+z_mouse_start_work_next:
+20004 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+20005 c2978023 bbit1 mouse_enable_24g_first_auto_pairing ,z_mouse_24g_first_start_auto_pair_mode 
+20006 6fe0c93d fetch 1 ,mem_device_flag 
+20007 c0000015 beq mode_24g_device ,z_mouse_24g_start_mode 
+
+z_mouse_le_fast_conn_judge:
+20008 20400413 call p_mouse_device_le_reconn_led_config 
+20009 20404354 call mouse_bluetooth_fast_conn_disable 
+2000a 6fe0c93d fetch 1 ,mem_device_flag 
+2000b c000800e beq mode_bt_device1 ,z_mouse_le_device1_judge 
+2000c c0010010 beq mode_bt_device2 ,z_mouse_le_device2_judge 
+2000d 20600000 rtn 
+
+z_mouse_le_device1_judge:
+2000e 6fe3493f fetch 6 ,mem_device1_addr 
+2000f 20200011 branch z_mouse_le_addr_compare 
+
+z_mouse_le_device2_judge:
+20010 6fe3495c fetch 6 ,mem_device2_addr 
+
+z_mouse_le_addr_compare:
+20011 684b4979 fetcht 6 ,mem_mouse_compare_addr_ff 
+20012 98467c00 isub temp ,null 
+20013 2022c32b branch mouse_buletooth_fast_conn_init ,zero 
+20014 20203e1c branch mouse_start_reconnect_device 
+
+z_mouse_24g_start_mode:
+20015 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+20016 c308c842 bbit0 mouse_enable_24g ,mouse_24g_mode_setup_error 
+20017 20400401 call p_mouse_device_24g_led_config 
+20018 20403e28 call mouse_wakeup_from_power_check 
+20019 20344845 branch mouse_24g_reconn_dongle_start ,user 
+2001a 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+2001b c2980025 bbit1 mouse_enable_auto_24g_paring ,z_mouse_24g_reconn_general_dongle 
+2001c c3188025 bbit0 mouse_enable_24g_power_on_pairing ,z_mouse_24g_reconn_general_dongle 
+2001d 20404150 call mouse_key_check_once 
+2001e 1a217e07 and rega ,0x07 ,pdata 
+2001f 6848cbdc fetcht 1 ,mem_mouse_commbination_key_24g 
+20020 98467c00 isub temp ,null 
+20021 2022854d branch p_mouse_24g_start_pair_mode ,zero 
+20022 2020484b branch mouse_24g_reconn_general_dongle 
+
+z_mouse_24g_first_start_auto_pair_mode:
+20023 20403e28 call mouse_wakeup_from_power_check 
+20024 20344855 branch mouse_24g_first_start_reconn ,user 
+
+z_mouse_24g_reconn_general_dongle:
+20025 70493d00 jam mode_24g_device ,mem_device_flag 
+20026 6fe14bcb fetch 2 ,mem_mouse_24g_power_on_fast_conn_timer 
+20027 67e1488b store 2 ,mem_24g_reconn_timeout 
+20028 70488f01 jam fast_conn_and_receiver ,mem_24g_reconn_type 
+20029 20202562 branch g24_reconn_start 
+
+z_mouse_24g_pairing_complete:
+2002a 704e3501 jam 1 ,mem_device_pair_flag 
+2002b 704b030a jam 10 ,mem_le_battery_level_updata_timer 
+2002c 704de305 jam 5 ,mem_device_tx_dpi_data_delay_timer 
+2002d 20400504 call p_mouse_agc_disable_nomal_power 
+2002e 20404584 call mouse_no_data_timer_init 
+2002f 204003fb call p_mouse_device_poweron_led_config 
+20030 20204896 branch mouse_24g_pairing_complete 
+              org 0x30001
+
+z_entrance2:
+30001 c0100004 beq zcode_20 ,z_mouse_setgpio_hibernate 
+30002 c0108020 beq zcode_21 ,z_mouse_24g_attempt_success 
+30003 20600000 rtn 
+
+z_mouse_setgpio_hibernate:
+30004 20404329 call mouse_set_sdio_high 
+30005 20407f52 call clear_wake 
+30006 20404055 call mouse_before_hibernate_wheel_gpio_set 
+30007 6fe0c924 fetch 1 ,mem_mouse_sensor_sdio_gpio 
+30008 204006e6 call p_mouse_gpio_config_output_high 
+30009 20400492 call p_mouse_lpm_before_common 
+3000a 20403e72 call mouse_gpio_pu_idle 
+3000b 204003c9 call p_mouse_device_led_all_off 
+3000c 20400012 call z_mouse_device_switch_gpio_high_impedance 
+3000d 20400016 call z_mouse_wheel_gpio_set_before_hibernate 
+3000e 6848c915 fetcht 1 ,mem_sensor_motion_gpio 
+3000f 20403f94 call mouse_gpio_config_input_pd 
+30010 6848c915 fetcht 1 ,mem_sensor_motion_gpio 
+30011 202060e6 branch gpio_clr_wake 
+
+z_mouse_device_switch_gpio_high_impedance:
+30012 6fe0c922 fetch 1 ,mem_device_switch_gpio 
+30013 c17f8000 rtneq gpio_disable 
+30014 6848c922 fetcht 1 ,mem_device_switch_gpio 
+30015 20206121 branch gpio_set_high_impedance 
+
+z_mouse_wheel_gpio_set_before_hibernate:
+30016 6fe44bbc fetch mouse_flag_len ,mem_mouse_flag 
+30017 c41e0000 rtnbit0 mouse_enable_wheel_wake_up_cancel 
+
+z_mouse_wheel_clr_wakeup:
+30018 6848c917 fetcht 1 ,mem_whee_a_data_gpio 
+30019 204060e6 call gpio_clr_wake 
+3001a 6848c918 fetcht 1 ,mem_whee_b_data_gpio 
+3001b 204060e6 call gpio_clr_wake 
+3001c 6848c917 fetcht 1 ,mem_whee_a_data_gpio 
+3001d 20403f94 call mouse_gpio_config_input_pd 
+3001e 6848c918 fetcht 1 ,mem_whee_b_data_gpio 
+3001f 20203f94 branch mouse_gpio_config_input_pd 
+
+z_mouse_24g_attempt_success:
+30020 6fe2483f fetch 4 ,mem_24g_addr 
+30021 67e24895 store 4 ,mem_24g_receiver_addr 
+30022 67e24998 store 4 ,mem_mouse_24g_addr 
+30023 20402587 call g24_ch_syncword_crc8_init 
+30024 20404584 call mouse_no_data_timer_init 
+30025 2040430a call mouse_init_sensor_reset 
+30026 704abf01 jam 1 ,mem_mouse_long_mult_flag 
+30027 7048a500 jam 0 ,mem_24g_conn_sm 
+30028 70488f00 jam 0 ,mem_24g_reconn_type 
+30029 6fe24895 fetch 4 ,mem_24g_receiver_addr 
+3002a 684a4891 fetcht 4 ,mem_24g_fast_conn_addr 
+3002b 98467c00 isub temp ,null 
+3002c 20628000 rtn zero 
+3002d 704e3501 jam 1 ,mem_device_pair_flag 
+3002e 704b030a jam 10 ,mem_le_battery_level_updata_timer 
+3002f 704de305 jam 5 ,mem_device_tx_dpi_data_delay_timer 
+30030 204003fb call p_mouse_device_poweron_led_config 
+30031 20400504 call p_mouse_agc_disable_nomal_power 
+30032 20204861 branch mouse_24g_first_store_reconn_info 
+              org 0x40001
+
+z_entrance3:
+40001 c0180004 beq zcode_30 ,z_mouse_le_bb_disconnected 
+40002 c018800e beq zcode_31 ,z_mouse_start_discovery 
+40003 20600000 rtn 
+
+z_mouse_le_bb_disconnected:
+40004 58000000 setarg 0 
+40005 67e14b03 store 2 ,mem_le_battery_level_updata_timer 
+40006 67e0cde3 store 1 ,mem_device_tx_dpi_data_delay_timer 
+40007 67e0cc6f store 1 ,mem_mouse_le_send_conn_param_update 
+40008 67e0cc70 store 1 ,mem_mouse_le_send_conn_param_update_timer 
+40009 67e0cad7 store 1 ,mem_mouse_le_bb_connected_flag 
+4000a 704b0500 jam le_lpm_enable ,mem_mouse_le_conn_param_reject 
+4000b 704abd00 jam 0 ,mem_mouse_clear_sensor_data_flag 
+4000c 20401ac8 call le_clr_config_more_data 
+4000d 202004fd branch p_mouse_bb_disconnected 
+
+z_mouse_start_discovery:
+4000e 20400018 call z_mouse_device_discovery_led_config 
+4000f 6fe1478f fetch 2 ,mem_ui_state_map 
+40010 2feffe0b isolate1 ui_state_ble_adv ,pdata 
+40011 2040c5c1 call mouse_stop_le_adv ,true 
+40012 6fe1478f fetch 2 ,mem_ui_state_map 
+40013 2feffe07 isolate1 ui_state_bt_reconnect ,pdata 
+40014 2040c362 call mouse_cancel_reconnect ,true 
+40015 58000000 setarg 0 
+40016 67e14b03 store 2 ,mem_le_battery_level_updata_timer 
+40017 20204594 branch mouse_start_discovery + 1 
+
+z_mouse_device_discovery_led_config:
+40018 6fe0cca3 fetch 1 ,mem_mouse_led_new_interface_enable 
+40019 207a0000 rtn blank 
+4001a 704caa02 jam 2 ,mem_mouse_multi_led_blink_timer_init 
+4001b 2020040e branch p_mouse_multi_led_blink_enable 
+              org 0x50001
+
+z_entrance4:
+50001 c0200003 beq zcode_40 ,z_mouse_report_param_set 
+50002 20600000 rtn 
+
+z_mouse_report_param_set:
+50003 6fe0c99e fetch 1 ,mem_mouse_24g_report 
+50004 c0008009 beq report_125 ,z_mouse_g24_report_125hz 
+50005 c001000e beq report_250 ,z_mouse_g24_report_250hz 
+50006 c0018015 beq report_500 ,z_mouse_g24_report_500hz 
+50007 c002001b beq report_1000 ,z_mouse_g24_report_1000hz 
+50008 20600000 rtn 
+
+z_mouse_g24_report_125hz:
+50009 58017700 setarg 0x17700 
+5000a 67e1cc16 store 3 ,mem_24g_tsniff 
+5000b 7048ca1e jam 30 ,mem_24g_fast_hop_count 
+5000c 58010d88 setarg 0x10d88 
+5000d 20200012 branch z_mouse_24g_short_sleep_set 
+
+z_mouse_g24_report_250hz:
+5000e 5800bb80 setarg 0xbb80 
+5000f 67e1cc16 store 3 ,mem_24g_tsniff 
+50010 7048ca0f jam 15 ,mem_24g_fast_hop_count 
+50011 58004cf4 setarg 0x4cf4 
+
+z_mouse_24g_short_sleep_set:
+50012 67e1c8b1 store 3 ,mem_24g_short_sleep_set 
+50013 67e1cc2c store 3 ,mem_24g_short_sleep_set_init 
+50014 20600000 rtn 
+
+z_mouse_g24_report_500hz:
+50015 7048ca09 jam 9 ,mem_24g_fast_hop_count 
+50016 58080606 setarg 0x080606 
+50017 67e1c857 store 3 ,mem_24g_interval 
+50018 58005c1c setarg 0x5c1c 
+50019 67e1cc16 store 3 ,mem_24g_tsniff 
+5001a 202026e8 branch g24_transmit_by_interrupt_enable 
+
+z_mouse_g24_report_1000hz:
+5001b 7048ca05 jam 5 ,mem_24g_fast_hop_count 
+5001c 58010101 setarg 0x010101 
+5001d 67e1c857 store 3 ,mem_24g_interval 
+5001e 58002ee0 setarg 0x2ee0 
+5001f 67e1cc16 store 3 ,mem_24g_tsniff 
+50020 202026e8 branch g24_transmit_by_interrupt_enable 
+              org 0x60001
+
+z_entrance5:
+60001 20600000 rtn 
+
Index: output/romcode.rom
===================================================================
--- /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/output/romcode.rom	(nonexistent)
+++ /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/output/romcode.rom	(working copy)
@@ -0,0 +1,219 @@
+c0000004
+c000803a
+20600000
+2040260e
+204022b5
+204002ac
+20403f60
+204001f4
+20403dd6
+20400036
+20400033
+20401ac2
+20400014
+20401ade
+20401aca
+6fe44bbc
+c289c675
+c289001a
+20600000
+59000302
+67e24350
+58030010
+67e1c354
+70439d01
+20600000
+20405daf
+2040464a
+2040463d
+20405dd2
+20404651
+20400021
+20203fa5
+6fe14995
+d840aa55
+98467c00
+2022c622
+20400027
+20204618
+6fe44bbc
+c28c002d
+c28c802f
+c28d0031
+70499e01
+20600000
+70499e02
+20600000
+70499e03
+20600000
+70499e04
+20600000
+6fe0c1e8
+67e0cc72
+20600000
+704ca400
+704cb200
+704cb400
+202003c9
+580001fd
+67e1489f
+20203c89
+c0080004
+c008802a
+20600000
+6fe44bbc
+c2978023
+6fe0c93d
+c0000015
+20400413
+20404354
+6fe0c93d
+c000800e
+c0010010
+20600000
+6fe3493f
+20200011
+6fe3495c
+684b4979
+98467c00
+2022c32b
+20203e1c
+6fe44bbc
+c308c842
+20400401
+20403e28
+20344845
+6fe44bbc
+c2980025
+c3188025
+20404150
+1a217e07
+6848cbdc
+98467c00
+2022854d
+2020484b
+20403e28
+20344855
+70493d00
+6fe14bcb
+67e1488b
+70488f01
+20202562
+704e3501
+704b030a
+704de305
+20400504
+20404584
+204003fb
+20204896
+c0100004
+c0108020
+20600000
+20404329
+20407f52
+20404055
+6fe0c924
+204006e6
+20400492
+20403e72
+204003c9
+20400012
+20400016
+6848c915
+20403f94
+6848c915
+202060e6
+6fe0c922
+c17f8000
+6848c922
+20206121
+6fe44bbc
+c41e0000
+6848c917
+204060e6
+6848c918
+204060e6
+6848c917
+20403f94
+6848c918
+20203f94
+6fe2483f
+67e24895
+67e24998
+20402587
+20404584
+2040430a
+704abf01
+7048a500
+70488f00
+6fe24895
+684a4891
+98467c00
+20628000
+704e3501
+704b030a
+704de305
+204003fb
+20400504
+20204861
+c0180004
+c018800e
+20600000
+58000000
+67e14b03
+67e0cde3
+67e0cc6f
+67e0cc70
+67e0cad7
+704b0500
+704abd00
+20401ac8
+202004fd
+20400018
+6fe1478f
+2feffe0b
+2040c5c1
+6fe1478f
+2feffe07
+2040c362
+58000000
+67e14b03
+20204594
+6fe0cca3
+207a0000
+704caa02
+2020040e
+c0200003
+20600000
+6fe0c99e
+c0008009
+c001000e
+c0018015
+c002001b
+20600000
+58017700
+67e1cc16
+7048ca1e
+58010d88
+20200012
+5800bb80
+67e1cc16
+7048ca0f
+58004cf4
+67e1c8b1
+67e1cc2c
+20600000
+7048ca09
+58080606
+67e1c857
+58005c1c
+67e1cc16
+202026e8
+7048ca05
+58010101
+67e1c857
+58002ee0
+67e1cc16
+202026e8
+20600000
+0000186b
Index: program/patch.prog
===================================================================
--- /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/program/patch.prog	(nonexistent)
+++ /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/program/patch.prog	(working copy)
@@ -0,0 +1,3475 @@
+define BLE
+//define CLASSIC
+//define PW_CTRL
+//define UART_LOG
+//define RSSI_PATCH
+//define RSSI_SORT
+//define LOGO_LED
+//define SEARCH_DONGLE
+//define USB
+//define AUTO_SEND
+//define ADC
+
+p_start:
+	branch p_patch_array
+
+// zcode start
+p_zcode:
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+	nop 1
+
+
+p_patch_array:
+	bbit1 8,pf_patch_ext
+	beq patch00_0,p_soft_reset
+	beq patch10_2,p_shutdown_radio
+	beq patch10_3,p_set_sync_on
+	beq patch11_2,p_txon_next
+	beq patch11_3,p_initialize_radio_cont
+ifdef RSSI_PATCH
+	beq patch11_4,p_save_rssi			/**RSSI PATCH**/
+endif
+	beq patch14_2,p_lpm_sleep
+	beq patch14_4,p_lpm_dispatch
+	beq patch15_5,p_app_init
+	beq patch18_3,p_mouse_start_work
+	beq patch18_6,p_mouse_app_enter_hibernate
+	beq patch18_7,p_mouse_before_hibernate
+	beq patch19_0,p_mouse_setgpio_hibernate
+	beq patch19_1,p_mouse_lpm_before_common
+ifdef ADC
+	beq patch19_3,p_mouse_adc_read_start
+endif
+	beq patch19_5,p_mouse_motion
+	beq patch19_6,p_mouse_dpi_process
+	beq patch19_7,p_mouse_seting_dpi
+	beq patch1a_0,p_mouse_check_key_gpio
+	beq patch1a_2,p_mouse_init_sunt
+	beq patch1a_3,p_mouse_sensor_poweron
+	beq patch1a_5,p_mouse_priority_bb_event
+	beq patch1b_0,p_mouse_bb_event_timer
+	beq patch1b_5,p_mouse_idle	
+	beq patch1b_6,p_mouse_ready_reconnection_by_button
+	beq patch1c_0,p_mouse_led_off
+	beq patch1c_1,p_mouse_led_on
+ifdef BLE
+	beq patch1a_6,p_mouse_le
+	beq patch1b_1,p_mouse_start_discovery	/**BT PATCH,APPLY TO 3.0/4.0**/
+	beq patch1b_2,p_mouse_stop_discovery	/**BT PATCH,APPLY TO 3.0/4.0**/
+endif
+	beq patch1b_4,p_mouse_store_device_info
+ifdef CLASSIC
+	beq patch13_7,p_init_param				/**CLASSIC PATCH**/
+	beq patch1c_7,p_hid_rx_process		/**CLASSIC PATCH**/
+endif
+	branch loop
+
+pf_patch_ext:
+ifdef CLASSIC
+	beq patch22_7,p_parse_lmp_accepted
+	beq patch23_1,p_send_lmp			/**CLASSIC PATCH**/
+	beq patch23_6,p_process_conn_sm
+endif
+	beq patch23_7,p_twspi_reset
+	beq patch30_5,p_ui_timer_check
+ifdef USB
+	beq patch31_6,p_usb_class_type	/**USB PATCH**/
+	beq patch32_3,p_usb_tx			/**USB PATCH**/
+endif
+	beq patch3b_5,p_g24_dispatch
+	beq patch3b_6,p_g24_receive_packet
+	beq patch3b_7,p_g24_receive_data_info
+	beq patch3c_1,p_g24_transmit
+	beq patch3c_2,p_g24_pair_dispatch
+	beq patch3c_3,p_g24_pair_sm_common_next
+	beq patch3d_1,p_g24_reconn_dispatch
+	beq patch3d_2,p_g24_transmit_no_interrupt
+	beq patch3d_4,p_g24_lpm_wait
+ifdef BLE
+	beq patch33_7,p_le_slave_match	/**BLE PATCH**/
+	beq patch34_1,p_le_slave_unsync	/**BLE PATCH**/
+	beq patch37_6,p_le_parse_l2cap		/**BLE PATCH**/
+	beq patch3b_1,p_le_pairing_sm
+endif
+ifdef PW_CTRL
+	beq patch3d_5,p_power_ctrl_start	/**PWR PATCH**/
+endif
+	branch loop
+
+//=====================================YICHIP PROTOCOL FIXED=============================//
+p_g24_transmit_prep:
+// total length
+	fetch 1,mem_24g_datalen
+	increase 3,pdata	//hec/type/data_len
+	store 1,mem_24g_txlen
+// hec
+	fetch 1,mem_24g_syncword_crc8
+	store 1,mem_24g_txpayload_new
+// prepare 5bit data type , 2bit PID, 1bit NO_ACK
+	fetch 1,mem_24g_data_type
+	lshift3 pdata,pdata
+	fetcht 1,mem_24g_pid
+	and temp,0x03,temp
+	lshift temp,temp
+	ior temp,pdata
+	fetcht 1,mem_24g_no_ack
+	iadd temp,pdata
+	istore 1,contw
+// data len
+	fetch 1,mem_24g_datalen
+	istore 1,contw
+//prepare payload data
+	fetch 1,mem_24g_datalen
+	iforce loopcnt
+	arg mem_24g_txbuf_new,contr
+	call memcpy
+	branch g24_transmit_prep_rssi
+
+p_g24_transmit:
+	fetch 1,mem_24g_tx_phy
+	call le_enable_phy_by_pdata
+	fetch 4,mem_24g_addr
+	iforce access
+	call g24_prep
+	call g24_set_freq_tx
+	set1 TXGFSK,radio_ctrl
+	enable encode_fec0
+	enable is_tx
+	disable is_rx
+	call rf_debug_tx_on_line
+	disable lr_s2en
+	rshift16 access,pdata
+	rshift8 pdata,pdata
+	rshift4 pdata,pdata
+	inject mod,40
+p_g24_transmit_packet:
+p_g24_transmit_nolr:
+	enable enable_white
+	enable enable_crc
+	fetch 1,mem_24g_txlen
+	iforce loopcnt
+	arg mem_24g_txpayload_new,contr
+	branch g24tr_loop
+
+p_g24_txdata_prep:
+	call p_g24_package_data
+	nrtn user
+	branch p_g24_transmit_prep
+
+p_g24_package_data:
+	fetch 2,mem_cb_24g_transmit_data
+	call callback_func
+	branch p_g24_accumulate_data_set,user
+	fetch 7,mem_24g_txbuf_new+1	//mouse data
+	rtn blank
+	branch enable_user	// retransmit
+
+p_g24_accumulate_data:
+	jam 0,mem_24g_abort_pac
+	add rega,1,pdata
+	store 1,mem_24g_datalen
+	call g24_transmit_rf_ctrl_clear
+	store 1,mem_24g_txbuf_new
+	branch g24_accumulate_data+5
+
+//=====================protocol fuction========================//
+
+/*****************************************************
+* Description:  send dpi info check
+* Parameters: 1byte type
+******************************************************/
+p_mouse_send_dpi_info_timer:
+	arg mem_device_tx_dpi_data_delay_timer,regc
+	arg p_mouse_send_dpi_data_enable,regb
+	branch timer_single_step
+
+p_mouse_send_dpi_data_enable:
+	fetch 1,mem_device_flag
+	bne MODE_24G_DEVICE,p_mouse_le_tx_dpi_data_info
+	jam 1,mem_device_tx_dpi_data_flag
+	rtn
+
+// 1byte dpi +1byte data in type: 00(in by oneself)
+p_mouse_le_tx_dpi_data_info:
+	arg 2,rega
+	fetcht 2,mem_le_protocol_tx_handle
+	call le_att_malloc_tx_notify
+	fetch 1,mem_mouse_dpi
+	istore 1,contw
+	setarg 0
+	istore 1,contw
+	rtn
+
+p_mouse_le_get_dpi_data_info:
+	arg 2,rega
+	fetcht 2,mem_le_protocol_tx_handle
+	call le_att_malloc_tx_notify
+	fetch 1,mem_mouse_dpi
+	istore 1,contw
+	setarg 1
+	istore 1,contw
+	rtn
+
+/*****************************************************
+* Description: send protocol data enable check
+******************************************************/
+p_mouse_g24_tx_protocol_info_check:
+	call p_mouse_g24_tx_flag_check
+	fetch 1,mem_device_tx_protocol_data_type
+	rtn blank
+	branch enable_user
+
+p_mouse_g24_tx_flag_check:
+	fetch 1,mem_device_tx_dpi_data_flag
+	nbranch p_g24_send_dpi_info_enable,blank
+	fetch 1,mem_device_tx_battery_data_flag
+	nbranch p_g24_send_battery_info_enable,blank
+	rtn
+
+/*****************************************************
+* Description: protocol type enable set
+******************************************************/
+p_g24_send_heart_info_enable:
+	fetch 1,mem_device_tx_protocol_data_type
+	set1 DATA_HEART,pdata
+	branch p_g24_store_device_tx_flag
+
+p_g24_send_dpi_info_enable:
+	jam 0,mem_device_tx_dpi_data_flag
+	fetch 1,mem_device_tx_protocol_data_type
+	set1 DATA_DPI,pdata
+	branch p_g24_store_device_tx_flag
+
+p_g24_send_battery_info_enable:
+	jam 0,mem_device_tx_battery_data_flag
+	fetch 1,mem_device_tx_protocol_data_type
+	set1 DATA_BATTERY,pdata
+p_g24_store_device_tx_flag:
+	store 1,mem_device_tx_protocol_data_type
+	rtn
+
+/************************************************************
+* Description: priorty:device info>dpi>battery>heart
+************************************************************/
+p_g24_accumulate_data_set:
+	jam 0,mem_24g_abort_pac
+	fetch 1,mem_device_tx_protocol_data_type
+	beq 0,p_g24_accumulate_data
+	bbit1 DATA_DPI,p_g24_send_dpi_info_check
+	bbit1 DATA_BATTERY,p_g24_send_battery_info_check
+	rtn
+
+/****************************************************************************
+* Description:  send dpi info
+* Parameters: 1byte type + 1byte dpi 
+****************************************************************************/
+p_g24_send_dpi_info_check:
+	fetch 1,mem_24g_rf_data_flag
+	branch p_g24_only_send_dpi_info,blank
+p_g24_send_dpi_info:
+	fetch 1,mem_24g_data_type
+	set1 DATA_DPI,pdata
+	store 1,mem_mouse_temp_buff
+	fetch 1,mem_mouse_dpi
+	store 1,mem_mouse_temp_buff+1
+	arg 2,temp
+	arg mem_mouse_temp_buff,rega
+	branch p_g24_send_rf_other_data
+
+p_g24_only_send_dpi_info:
+	jam 2,mem_24g_datalen
+	fetch 1,mem_24g_data_type
+	set1 DATA_DPI,pdata
+	store 1,mem_24g_txbuf_new
+	fetch 1,mem_mouse_dpi
+	store 1,mem_24g_txbuf_new+1
+	rtn	
+
+/****************************************************************************
+* Description:  send battery info
+* Parameters: 1byte type + 1byte battery 
+****************************************************************************/
+p_g24_send_battery_info_check:
+	fetch 1,mem_24g_rf_data_flag
+	branch p_g24_only_send_battery_info,blank
+p_g24_send_battery_info:
+	fetch 1,mem_24g_data_type
+	set1 DATA_BATTERY,pdata
+	store 1,mem_mouse_temp_buff
+	fetch 1,mem_le_battery_level_percentage
+	store 1,mem_mouse_temp_buff+1
+	arg 2,temp
+	arg mem_mouse_temp_buff,rega
+	branch p_g24_send_rf_other_data
+
+p_g24_only_send_battery_info:
+	jam 2,mem_24g_datalen
+	fetch 1,mem_24g_data_type
+	set1 DATA_BATTERY,pdata
+	store 1,mem_24g_txbuf_new
+	fetch 1,mem_le_battery_level_percentage
+	store 1,mem_24g_txbuf_new+1
+	rtn
+
+/****************************************************************************
+* Description:  send heart info
+* Parameters: 1byte type 
+****************************************************************************/
+p_g24_send_slow_heart_info:
+	jam 0,mem_24g_abort_pac
+	jam TYPE_MS,mem_24g_data_type
+	call g24_transmit_rf_ctrl_clear
+	jam 1,mem_24g_datalen
+	fetch 1,mem_24g_data_type
+	set1 DATA_HEART,pdata
+	store 1,mem_24g_txbuf_new
+	call p_g24_transmit_prep
+	branch p_g24_transmit_process
+
+/****************************************************************************
+* Description:  send rf+other info
+* Parameters: temp=len  rega=ptr
+****************************************************************************/
+p_g24_send_rf_other_data:
+	add temp,8,pdata
+	store 1,mem_24g_datalen
+	call g24_transmit_rf_ctrl_clear
+	store 1,mem_24g_txbuf_new
+	fetch 7,mem_mouse_key
+	store 7,mem_24g_txbuf_new+1
+	copy temp,loopcnt
+	copy rega,contr
+	arg mem_24g_txbuf_new+8,contw
+	branch memcpy
+
+//================RX FIXED===========//
+p_g24_receive_packet:
+	fetch 1,mem_24g_rx_phy
+	call le_enable_phy_by_pdata
+	fetch 4,mem_24g_addr
+	iforce access
+	call calc_mod_value_scale_le
+	call set_sync_on
+	fetcht 1,mem_24g_ch
+	call le_rf_rx_enable
+p_g24_receive_rxon:
+	call g24_prep
+	bmark0 mark_ble_lr,p_g24_receive_nolr
+	pulse dewhiten_code_calc
+	nop 30
+	call g24_prep
+p_g24_receive_nolr:
+	disable user3
+	enable decode_fec0
+	enable is_rx
+	disable is_tx
+	enable swfine
+	fetch 2,mem_24g_rx_window
+	iforce stop_watch
+	correlate null,timeout
+	nbranch g24_sync_timeout,sync
+	call rf_debug_rx_sync_line
+	bmark1 mark_ble_lr,g24_receive_skip_fec1
+	branch g24_receive_skip_fec1
+
+p_g24_receive_data_info:	
+	call g24_receive_byte
+	store 1,mem_24g_rxbuf_new
+	bmark1 mark_24g_rxmode,p_g24_receive_skip
+	fetch 1,mem_24g_rxbuf_new
+	rshift3 pdata,pdata			//device id
+	fetcht 1,mem_24g_data_type
+	icompare bits_data,temp
+	nbranch g24_end_of_packet,true
+p_g24_receive_skip:
+	call g24_receive_byte
+	istore 1,contw
+	sub pdata,68,null
+	nbranch g24_end_of_packet,positive	//max payload: 68bytes
+	copy pdata,loopcnt
+	branch g24rx_nopayload,zero
+	branch g24rx_loop
+
+/****************************************************************************
+* Description:  receive ack data deal
+* Parameters: none
+****************************************************************************/
+p_g24_parse_receive_work_data:
+	call p_g24_device_flag_clr
+	fetch 1,mem_24g_rxdata_length
+	rtn blank
+p_g24_receive_ack_data:
+	fetch 2,mem_24g_rxpayload_new
+	beq DPI_ACK,p_g24_receive_dpi_data_set
+	beq REPORT_ACK,p_g24_receive_report_data_set
+	rtn
+
+//input: contr--buff ptr, loopcnt--data len
+//output:rega--checksum
+p_checksum_calcu:
+	arg 0,rega
+p_dongle_data_checksum:
+	ifetch 1,contr
+	iadd rega,rega
+	loop p_dongle_data_checksum
+	and_into 0xff,rega
+	rtn
+
+/****************************************************************************
+* Description:  receive dpi set data	
+* Parameters: opcode:f5 + datatype:05(mouse) + dpi level
+****************************************************************************/
+p_g24_receive_dpi_data_set:
+	fetch 1,mem_24g_rxpayload_new+2
+p_mouse_dpi_set:
+	beq DPI_800,p_mouse_dpi_800_set
+//	beq DPI_1000,p_mouse_dpi_1000_set
+	beq DPI_1200,p_mouse_dpi_1200_set
+	beq DPI_1600,p_mouse_dpi_1600_set
+	rtn
+p_mouse_dpi_800_set:
+	jam MOUSE_DPI_LEVEL3,mem_mouse_dpi
+	branch p_mouse_seting_dpi+1
+p_mouse_dpi_1000_set:
+	jam MOUSE_DPI_LEVEL4,mem_mouse_dpi
+	branch p_mouse_seting_dpi+1
+p_mouse_dpi_1200_set:
+	jam MOUSE_DPI_LEVEL1,mem_mouse_dpi
+	branch p_mouse_seting_dpi+1
+p_mouse_dpi_1600_set:
+	jam MOUSE_DPI_LEVEL2,mem_mouse_dpi
+	branch p_mouse_seting_dpi+1
+
+/****************************************************************************
+* Description:  receive report set data
+* Parameters: opcode:f4 + datatype:05(mouse) + report data 
+****************************************************************************/
+p_g24_receive_report_data_set:
+	fetch 1,mem_24g_rxpayload_new+2
+p_mouse_report_set:
+	beq REPORT_125,p_mouse_24g_125hz_report_set
+	beq REPORT_250,p_mouse_24g_250hz_report_set
+	beq REPORT_500,p_mouse_24g_500hz_report_set
+	beq REPORT_1000,p_mouse_24g_1000hz_report_set
+	rtn
+p_mouse_24g_125hz_report_set:
+	jam REPORT_125,mem_mouse_24g_report
+	branch mouse_store_device_info_delay
+p_mouse_24g_250hz_report_set:
+	jam REPORT_250,mem_mouse_24g_report
+	branch mouse_store_device_info_delay
+p_mouse_24g_500hz_report_set:
+	jam REPORT_500,mem_mouse_24g_report
+	branch mouse_store_device_info_delay
+p_mouse_24g_1000hz_report_set:
+	jam REPORT_1000,mem_mouse_24g_report
+	branch mouse_store_device_info_delay
+
+/****************************************************************************
+* Description:  clr tx protocol flag
+* Parameters: none
+****************************************************************************/
+p_g24_device_flag_clr:
+	fetch 1,mem_device_tx_protocol_data_type
+	isolate1 DATA_BATTERY,pdata
+	call p_g24_clr_battery_info_flag,true
+	isolate1 DATA_DPI,pdata
+	call p_g24_clr_dpi_info_flag,true
+	isolate1 DATA_HEART,pdata
+	call p_g24_clr_heart_info_flag,true
+	rtn
+p_g24_clr_dpi_info_flag:
+	set0 DATA_DPI,pdata
+	branch p_g24_store_device_tx_flag
+p_g24_clr_battery_info_flag:
+	set0 DATA_BATTERY,pdata
+	branch p_g24_store_device_tx_flag
+p_g24_clr_heart_info_flag:
+	set0 DATA_HEART,pdata
+	branch p_g24_store_device_tx_flag
+
+//=====================================YICHIP FUCTION FIXED=============================//
+
+p_lpm_dispatch:
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+	fetch 1,mem_mouse_dpi_led_blink_enable
+	rtneq ON
+	branch lpm_dispatch+4
+
+
+p_mouse_led_on:
+	sub temp,GPIO_DISABLE,null
+	rtneq zero
+	branch mouse_led_on+1
+
+p_mouse_led_off:
+	sub temp,GPIO_DISABLE,null
+	rtneq zero
+	branch mouse_led_off+1
+
+p_led_num_check:		
+	fetch 1,mem_mouse_flag+4
+	nrtn blank
+	jam 0,mem_ui_led_struct_num
+	rtn
+
+p_g24_dispatch:
+	bmark1 mark_24g_rxmode,g24_receive_dispatch
+	rtnmark0 mark_24g
+	fetch 1,mem_24g_conn_sm
+	bbit1 STATE_24G_PAIR,g24_pair_dispatch
+	bbit1 STATE_24G_RECONN,g24_reconn_dispatch
+	fetch 1,mem_24g_transmit_by_interrupt
+	beq G24_TX_TIMER_INT_ENABLE,p_g24_transmit_by_interrupt_check
+	branch p_g24_transmit_no_interrupt
+
+p_g24_transmit_by_interrupt_check:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit1 MOUSE_ENABLE_24G_1000,p_g24_transmit_by_interrupt_high_reoport_set
+	bbit1 MOUSE_ENABLE_24G_500Hz,p_g24_transmit_by_interrupt_high_reoport_set
+	branch g24_transmit_by_interrupt
+	
+p_g24_transmit_by_interrupt_high_reoport_set:
+	call g24_timer_check
+	nrtn user
+	call g24_interval_calibrate
+	branch g24_transmit_no_interrupt
+
+p_mouse_ready_reconnection_by_button:	
+	fetch 1,mem_device_number
+	rtneq 1		// 1channel
+	call p_mouse_multi_led_blink_disable
+	call mouse_select_device_number
+	storet 1,mem_device_flag
+p_mouse_store_device_number_before_reset:	
+	jam 0,mem_link_key_exists
+	call mouse_select_device_enable
+	call mouse_stop_bluetooth_mode
+	call app_evt_button_long_pressed //fixed le disconneted,enter hibernate
+	branch mouse_store_device_number_before_reset+3
+
+
+p_set_mem_xtal_cache:
+	fetch 1,mem_lpm_config+1
+	store 1,mem_xtal_cache
+	rtn
+p_soft_reset:
+	clear_stack
+	jam 0x73,core_spid_ctrl
+	ncall p_set_mem_xtal_cache,wake
+	call app_param_init
+	ncall p_led_num_check,wake
+ifdef RSSI_SORT
+	setarg mem_mouse_rssi_signal_buf_patch
+	store 2,mem_rssi_signal_buf_ptr
+endif
+	call mouse_matrix_public_gpio_reset,wake
+	call mouse_xtal_init		// 16M / 24M
+//	branch soft_reset+3
+	call initialize_radio
+	jam clksel_xtal,core_clksel
+	fetch 1,mem_fcomp_div
+	beq XTAL_24M,p_soft_reset_next
+	jam clksel_dpll,core_clksel
+p_soft_reset_next:	
+	fetch 1,mem_xtal_cache
+	store 1,mem_lpm_config+1
+	setarg 0xf0f
+	arg 0xfff,contw
+	iand contw,contw
+	fetch 1,mem_lpm_config
+	and_into 0xf0,pdata
+	lshift8 pdata,pdata
+	ior contw,pdata
+	set0 2,pdata
+	store 2,core_lpm_reg
+	ifetch 2,contr
+	istore 2,contw
+	setarg lpmreg_sel_ctrl
+	until null,lpo_edge
+	store 1,core_lpm_wr
+	jam 0x08,mem_lpm_config+1	
+	branch soft_reset+4
+
+p_enable_rc_clock:
+	fetch 4,core_lpm_ctrl
+	set1 2,pdata
+	store 4,core_lpm_reg
+
+	setarg lpmreg_sel_ctrl
+	until null,lpo_edge
+	store 1,core_lpm_wr
+	until null,lpo_edge
+	until null,lpo_edge
+	until null,lpo_edge
+	nop 10000
+	rtn
+
+p_shutdown_radio:
+	fetch 1,mem_gain_fix	//filter gain_control
+	store 1,mem_temp
+	call shutdown_radio+1
+	jam 0,core_rf_ldo_en0	//RFPLL vco_LDO disable
+	fetch 1,mem_temp
+	store 1,mem_gain_fix
+	rtn
+
+p_set_sync_on:
+	jam 0x5,modem_en
+	nop 2
+	jam 0x0,modem_en					/* if called from tx or rx */
+	fetch 1,mem_fcomp_div
+	beq XTAL_24M,set_sync_on_24m
+p_set_sync_on_16m:
+	jam 0x29,core_syn_afc_cfg1
+	branch set_sync_on_16m	
+
+
+//fixed lpm abnormal current
+p_rf_da_ldo_abb_en_init:
+	fetch 1,core_rf_ldo_en0
+	set1 3,pdata
+	store 1,core_rf_ldo_en0
+	nop 240	//20us,waiting ldo steady
+	set0 3,pdata
+	store 1,core_rf_ldo_en0
+	rtn
+
+p_initialize_radio_cont:
+	//hw agc
+	jam 0xff,mem_gain_fix
+
+	jam 0x00,core_syn_loopdiv_dsm_cfg
+	jam 0x40,core_rx_ctrl1
+	
+	call p_rf_da_ldo_abb_en_init
+	branch initialize_radio_cont+1
+
+ifdef CLASSIC
+p_init_param:
+	jam 0,mem_lmo_tid2			// classic can't reconnect
+	branch init_param_next+1
+endif
+
+p_txon_next:
+	fetch 1,mem_tx_power
+	beq TX_POWER_FAST_CONN,p_set_tx_power_f17db	//fast conn
+	beq TX_POWER_PAIR,p_set_tx_power_pair	//pair mode
+	branch set_tx_power_10db	//others
+
+p_set_tx_power_f17db:	//F17dbm
+	jam 0x0a,core_tx_pwr_ctrl0		
+	jam 0x00,core_tx_pwr_ctrl1
+	branch set_rf_ldo_cfg89
+
+p_set_tx_power_pair:
+	jam 0x0a,core_tx_pwr_ctrl0
+	jam 0x00,core_tx_pwr_ctrl1
+	branch set_rf_ldo_cfg89
+
+
+	
+p_app_init:
+p_mouse_init:
+ifdef UART_LOG
+	call p_device_hardware_init
+endif	
+	call enable_authrom
+ifdef USB
+	call p_mouse_usb_offline_gpio_init
+endif
+	call p_mouse_setting_config
+	call p_mouse_report_param_set
+	call mouse_init_sunt
+	rtn wake
+	call p_mouse_seting_sensor_type
+ifdef USB
+	call p_mouse_usb_check_enable
+endif
+	call mouse_drawing_optima_init
+	call p_mouse_cb_fuction
+	call p_mouse_sensor_powerdown
+	branch mouse_init_wireless
+
+p_twspi_reset:
+	fetch 1,mem_mouse_sensor_sclk_gpio
+	branch twspi_reset+1
+
+ifdef BLE
+p_mouse_le_name_load:
+	fetch 1,mem_le_name_patch_len
+	rtn blank
+	add pdata,1,loopcnt
+	arg mem_le_name_patch_len,contr
+	arg mem_le_name_len,contw
+	branch memcpy
+endif
+p_mouse_fetch_normal_tx_power:
+	fetch 1,mem_normal_tx_power
+	store 1,mem_tx_power
+	rtn
+
+p_mouse_24g_package_data:		// 250Hz
+	rtnmark0 mark_24g
+	call mouse_motion
+	call p_mouse_g24_tx_protocol_info_check
+	nrtn user
+	fetch 1,mem_long_sleep_flag
+	jam 0,mem_long_sleep_flag
+	ncall p_mouse_short_sleep_clear_wake,blank
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit0 MOUSE_ENABLE_KEYBOARD,p_mouse_24g_mouse_package_data
+	fetch 1,mem_customer_key
+	nbranch mouse_24g_keyboard_package_data,blank
+p_mouse_24g_mouse_package_data:
+	call p_mouse_data_xy_release
+	fetch 1,mem_24g_data_type
+	bbit1 1,p_mouse_24g_mouse_package_data_now	// last package is keyboard data
+	fetcht 1,mem_24g_txbuf_new+1
+	fetch 1,mem_mouse_key
+	ior temp,pdata
+	store 1,mem_mouse_key
+	fetcht 1,mem_24g_txbuf_new+6
+	fetch 1,mem_mouse_z
+	iadd temp,pdata
+	store 1,mem_mouse_z
+	fetcht 1,mem_24g_txbuf_new+7
+	fetch 1,mem_mouse_tz
+	iadd temp,pdata
+	store 1,mem_mouse_tz	
+p_mouse_24g_mouse_package_data_now:	
+	jam TYPE_MS,mem_24g_data_type
+	arg 7,rega	//length
+	arg mem_mouse_key,regb //tx buff
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit1 MOUSE_ENABLE_24G_500Hz,g24_transmit_by_interrupt_enable
+	bbit1 MOUSE_ENABLE_24G_1000,g24_transmit_by_interrupt_enable
+	fetch 2,mem_mouse_z
+	rtn blank
+	branch g24_transmit_by_interrupt_enable
+
+p_mouse_data_xy_release:
+//	fetch 1,mem_sensor_motion_gpio
+//	rtnne GPIO_DISABLE
+//	fetch 1,mem_mouse_long_mult_flag
+//	rtnne 1
+//	fetcht 1,mem_sensor_motion_gpio
+//	call mouse_gpio_config_input_pd
+//	setarg 0
+//	store 1,mem_mouse_long_mult_flag
+//	store 4,mem_mouse_x
+//	branch mouse_init_sensor_reset
+	fetch 1,mem_24g_rf_data_flag
+	rtn blank
+	branch mouse_data_xy_release+2
+
+	
+p_mouse_24g_fast_conn_mode_check:
+	fetch 4,mem_24g_receiver_addr
+	fetcht 4,mem_24g_fast_conn_addr
+	isub temp,null
+	branch p_mouse_soft_agc_enable,zero
+p_mouse_soft_agc_disable:
+	jam 0xff,mem_gain_fix
+	rtn
+
+p_mouse_soft_agc_enable:
+	jam 0,mem_gain_fix
+	jam TX_POWER_FAST_CONN,mem_tx_power
+	rtn
+
+
+p_g24_transmit_no_interrupt:
+	call p_g24_txdata_prep
+	nbranch p_g24_nodata_transmit,user
+p_g24_transmit_start:
+	call p_g24_transmit_process
+ifdef PW_CTRL
+	call power_ctrl_start
+endif
+	call p_mouse_24g_fast_conn_mode_check
+	fetch 1,mem_sensor_shutdown_flag
+	nbranch p_g24_short_sleep,blank
+	fetch 8,mem_24g_long_sleep_set
+	store 8,mem_24g_enter_hibernate
+	fetch 2,mem_24g_long_sleep_param_update_timer_init
+	store 2,mem_24g_long_sleep_param_update_timer
+p_g24_short_sleep:
+	call g24_lpm_wait
+	nrtn user
+	call clear_wake
+	fetch 1,mem_mouse_repair_pack_flag
+	branch p_g24_short_sleep_default,blank
+	fetch 1,mem_sleep_miss
+	jam 0,mem_sleep_miss
+	sub pdata,0,null
+	nbranch p_g24_short_sleep_last_miss,zero
+	fetcht 2,mem_retransmit
+	sub temp,0,null
+	branch p_g24_short_sleep_default,zero
+	fetch 4,mem_tx_time_last_delt
+	branch p_g24_short_sleep_default,blank
+p_g24_short_sleep_last_miss:
+	fetcht 4,mem_sleep_miss_temp
+	isolate1 31,temp
+	branch p_sub_miss_temp,true
+	fetch 4,mem_tx_time_last_delt
+	iadd temp,pdata	
+p_g24_short_sleep_notify:
+	fetcht 4,mem_24g_tsniff
+	isub temp,temp
+	storet 4,mem_sleep_miss_temp
+	nbranch p_g24_short_sleep_long,positive
+	fetch 3,mem_24g_short_sleep_set
+	isub temp,pdata
+	nbranch p_g24_short_sleep_2,positive	
+	arg 0x600,temp
+	isub temp,null
+	nbranch p_g24_short_sleep_2,positive
+p_g24_short_sleep2:
+	call clk2lpo
+	storet 4,mem_sleep_counter
+p_lpm_short_sleep:	
+	fetch 1,mem_fcomp_div
+	beq XTAL_16M,p_lpm_short_sleep_skip_pll_set
+	setarg 0
+	store 3,core_clkpll_ctrl0// close pll
+p_lpm_short_sleep_skip_pll_set:
+	jam 250,mem_tx_time_offset
+	call xtal_fast_wake
+	fetch 4,mem_sleep_counter_all
+	iadd temp,pdata
+	store 4,mem_sleep_counter_all
+	deposit mark
+	store 8,mem_saved_mark
+	arg core_gpio_conf,contr
+	arg mem_saved_gpio,contw
+	call memcpy20
+	fetch 1,core_spid_ctrl
+	store 1,mem_saved_spidctrl
+	call lpm_ctrl3_cfg_dig_vsel
+	fetch 1,core_clksel
+	or_into 0x14,pdata
+	store 1,core_clksel
+	branch lpm_sleep_next
+
+p_sub_miss_temp:
+	arg -1,pdata
+	isub temp,regext
+	fetch 4,mem_tx_time_last_delt
+	isub  regext,pdata	
+	branch p_g24_short_sleep_notify
+
+p_g24_short_sleep_default:
+	call p_g24_miss_temp_clear
+	fetch 3,mem_24g_short_sleep_set
+	branch p_g24_short_sleep2
+
+p_g24_short_sleep_long:
+	sub temp,0,temp
+	fetch 3,mem_24g_short_sleep_set
+	iadd temp,pdata
+	branch p_g24_short_sleep2
+
+p_g24_miss_temp_clear:
+	setarg 0
+	store 4,mem_sleep_miss_temp
+	rtn
+
+p_g24_short_sleep_2:
+	jam 1,mem_sleep_miss
+	rtn
+
+p_mouse_repair_pack_check_timer:
+	fetch 1,mem_device_pair_flag
+	rtn blank
+	fetch 1,mem_mouse_repair_pack_flag
+	nrtn blank
+	fetch 1,mem_mouse_g24_pack_conut
+	increase 1,pdata
+	store 1,mem_mouse_g24_pack_conut
+	rtnne 0x0a
+	jam 0,mem_mouse_g24_pack_conut
+	jam 1,mem_mouse_repair_pack_flag
+	rtn
+
+p_mouse_send_pack_by_interrupt:
+	jam 9,mem_mouse_g24_pack_conut
+	jam 0,mem_mouse_repair_pack_flag
+	rtn
+
+p_send_time_check:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	rtnbit1 MOUSE_ENABLE_24G_500Hz
+	rtnbit1 MOUSE_ENABLE_24G_1000
+	fetch 1,mem_24g_transmit_by_interrupt
+	beq G24_TX_TIMER_INT_ENABLE,p_mouse_send_pack_by_interrupt
+	fetch 1,mem_mouse_repair_pack_flag
+	branch p_send_time_long_wake,blank
+	fetch 1,mem_tx_count
+	branch p_send_timer_first,blank
+	copy clkn,pdata
+	fetcht 6,mem_tx_time_last
+	store 6,mem_tx_time_last
+	call clk_diff_rt
+	store 4,mem_tx_time_last_delt			//unit: 312.5us
+	fetch 1,mem_sleep_miss
+	nrtn blank
+	fetch 2,mem_retransmit
+	nrtn blank
+	fetch 4,mem_sleep_miss_temp
+	nrtn blank
+	fetch 4,mem_tx_time_last_delt
+	fetcht 4,mem_24g_tsniff
+	lshift temp,temp
+	isub temp,null
+	branch p_send_time_long_wake,positive		//losed two package 
+	fetcht 5,mem_tx_time_sum
+	iadd temp,pdata
+	store 5,mem_tx_time_sum	
+	fetcht 1,mem_tx_count
+	fetch 1,mem_tx_time_sum_count
+	isub temp,null
+	branch p_send_time_check_average,zero
+	increase 1,temp
+	storet 1,mem_tx_count
+	rtn
+
+p_send_time_long_wake:
+	setarg 0
+	store 1,mem_tx_count
+	store 5,mem_tx_time_sum
+	rtn
+
+p_send_time_check_average:
+	jam 1,mem_tx_count
+	arg 0,temp
+	fetch 5,mem_tx_time_sum
+	storet 5,mem_tx_time_sum
+	fetcht 1,mem_tx_time_sum_count
+	idiv temp
+	call wait_div_end
+  	quotient rega
+
+	fetch 4,mem_24g_tsniff
+	fetcht 1,mem_tx_time_offset
+	isub temp,temp
+	
+	copy rega,pdata
+	isub temp,pdata
+	branch p_send_time_check_average_late,positive		//averg interval>4ms
+	sub pdata,0,pdata					//averg interval<4ms	
+
+	rshift2 pdata,pdata
+	fetcht 3,mem_24g_short_sleep_set
+	iadd temp,temp
+	fetch 3,mem_24g_short_sleep_set_init
+	arg 0x1800,rega
+	iadd rega,pdata
+	isub temp,null
+	nbranch p_send_time_check_average_min,positive
+	storet 3,mem_24g_short_sleep_set
+	rtn
+
+p_send_time_check_average_late:
+	rshift2 pdata,temp
+	fetch 3,mem_24g_short_sleep_set
+	isub temp,temp
+	fetch 3,mem_24g_short_sleep_set_init
+	arg 0x1800,rega
+	isub rega,pdata
+	isub temp,null
+	branch p_send_time_check_average_min,positive
+	storet 3,mem_24g_short_sleep_set
+	rtn
+
+p_send_time_check_average_min:
+	store 3,mem_24g_short_sleep_set
+	rtn
+
+p_send_timer_first:
+	jam 1,mem_tx_count
+	copy clkn,pdata
+	store 6,mem_tx_time_last
+	rtn
+
+p_g24_transmit_process:
+	setarg 0
+	store 1,mem_24g_retry
+	store 2,mem_retransmit
+	store 1,mem_retransmit_flag
+p_g24_transmit_loop:
+	call g24_transmit_receive_ack
+//	fetch 1,mem_24g_no_ack	//tx noack
+//	beq no_ack_24g,g24_transmit_no_ack
+	nbranch p_g24_retransmit,sync
+	nbranch p_g24_retransmit,user3
+	call p_send_time_check
+	call p_g24_ackpayload_parse
+	call p_g24_parse_receive_work_data
+	call p_mouse_wakeup_24g
+p_g24_transmit_no_ack:
+	call power_ctrl_pac_succ_incrs
+p_g24_transmit_next_packet:
+	call p_g24_txbuf_clear
+	call p_g24_rxpayload_clear
+	fetch 1,mem_24g_pid
+	increase 1,pdata
+	store 1,mem_24g_pid
+	call p_g24_hop_enable_packet
+	branch g24_transmit_abandon
+
+p_g24_hop_enable_packet:
+	fetch 1,mem_24g_data_type
+	rtnbit0 bit_hop
+	branch p_g24_hop_ch_disable
+
+p_g24_ackpayload_parse:
+	call p_g24_read_len_pid_crc
+	fetch 1,mem_24g_rxdata_length	//ack payload length 
+	rtn blank
+	iforce loopcnt
+	arg mem_24g_rxbuf_new+2,contr
+	arg mem_24g_rxpayload_new,contw	//ack payload buffer 
+	branch memcpy
+
+p_g24_read_len_pid_crc:
+	//read control
+	fetch 1,mem_24g_rxbuf_new+1
+	store 1,mem_24g_rxdata_length
+//get crc
+	increase 1,pdata
+	arg mem_24g_rxbuf_new+1,contr
+	iadd contr,contr
+	ifetch 3,contr
+	store 3,mem_24g_sta_crc
+//read pid
+	fetch 1,mem_24g_rxbuf_new
+	rshift pdata,temp
+	and temp,0x03,temp
+	storet 1,mem_24g_sta_pid
+	rshift3 pdata,pdata
+	store 1,mem_24g_rxbuf_new
+	rtn
+
+p_g24_retransmit:
+	fetch 1,mem_mouse_need_soft_reset
+	nrtn blank
+	call p_mouse_g24_retransmit_100ms_timer
+	fetch 1,mem_24g_abort_pac
+	nrtn  blank
+	fetch 2,mem_24g_txfail_cnt
+	increase 1,pdata
+	store 2,mem_24g_txfail_cnt	
+	fetch 2,mem_24g_txfail_cnt
+	bbit1 8,g24_tx_attempt_fail
+	call p_g24_transmit_hop_process
+	fetch 2,mem_retransmit
+	increase 1,pdata
+	store 2,mem_retransmit
+	call p_mouse_retransmit_count_set
+//	call p_delay_40ms
+	branch p_g24_transmit_loop
+
+p_mouse_g24_retransmit_100ms_timer:
+	arg 12,queue
+	call timer_check
+	nrtn blank
+	call p_mouse_select_device_by_pb_button
+p_mouse_g24_retransmit_timer_init:
+	arg 12,queue
+	setarg 160
+	branch timer_init
+
+p_mouse_retransmit_count_set:
+	fetch 2,mem_retransmit
+	sub pdata,0x14,null
+	rtn positive
+	call p_mouse_g24_sensor_clr_data
+	fetch 2,mem_retransmit
+	sub pdata,0x32,null
+	rtn positive
+	fetch 1,mem_retransmit_flag
+	nrtn blank
+	jam 1,mem_retransmit_flag
+	jam 0,mem_mouse_g24_pack_conut
+	jam 0,mem_mouse_repair_pack_flag
+p_mouse_g24_sensor_clr_data:
+	fetch 1,mem_mouse_move_flag
+	rtn blank
+	jam 1,mem_mouse_long_mult_flag
+	jam 0,mem_mouse_move_flag
+	rtn
+
+p_g24_transmit_hop_process:
+	fetcht 1,mem_24g_retry
+	fetch 1,mem_24g_fast_hop_count		// 125Hz=30  250Hz=15
+	isub temp,null
+	nbranch p_g24_tx_fast_hop,positive		// >= (6+6)or(3+3) hop fast    fail packet count >= 2
+	increase 1,temp
+	storet 1,mem_24g_retry
+	fetch 1,mem_24g_fast_hop_count
+	beq 5,p_g24_transmit_hop_process_1ms
+	beq 9,p_g24_transmit_hop_process_2ms
+	beq 15,p_g24_transmit_hop_process_4ms
+	beq 30,p_g24_transmit_hop_process_8ms
+	rtn
+
+p_g24_transmit_hop_process_8ms:
+	fetch 1,mem_24g_retry
+	beq 20,p_g24_hop_ch_disable
+	beq 30,p_g24_hop_ch_disable
+	rtn		
+p_g24_transmit_hop_process_4ms:
+	fetch 1,mem_24g_retry
+	beq 10,p_g24_hop_ch_disable
+	beq 15,p_g24_hop_ch_disable
+	rtn
+
+p_g24_transmit_hop_process_2ms:
+	fetch 1,mem_24g_retry
+	beq 6,p_g24_hop_ch_disable
+	beq 9,p_g24_hop_ch_disable
+	rtn
+
+p_g24_transmit_hop_process_1ms:
+	fetch 1,mem_24g_retry
+	beq 3,p_g24_hop_ch_disable
+	beq 5,p_g24_hop_ch_disable
+	rtn
+
+p_g24_hop_ch_disable:
+	fetch 1,mem_24g_data_type
+	set0 bit_hop,pdata
+	store 1,mem_24g_data_type
+	call p_g24_txpayload_type_update
+	branch g24_hop_ch_disable+4
+
+p_g24_txpayload_type_update:	
+	lshift3 pdata,pdata
+	fetcht 1,mem_24g_pid
+	and temp,0x03,temp
+	lshift temp,temp
+	ior temp,pdata
+	fetcht 1,mem_24g_no_ack
+	iadd temp,pdata
+	bmark1 mark_ble_lr,p_g24_lr_type_update
+	store 1,mem_24g_txpayload_new+OFFSET_DATA_TYPE
+	rtn
+p_g24_lr_type_update:
+	store 1,mem_24g_txpayload_new+OFFSET_LR_DATA_TYPE
+	rtn
+
+p_g24_tx_fast_hop:
+ifdef PW_CTRL
+	call power_ctrl_txpower_incrs
+	call power_ctrl_pac_succ_decrs
+endif
+	call p_delay_40ms
+	branch g24_ch
+
+p_delay_40ms:
+	fetch 1,mem_24g_txfail_cnt
+	sub pdata,0x80,null
+	rtn positive
+	arg 40,loopcnt
+	branch delay_ms_wait
+
+p_mouse_select_device_by_pb_button:
+	fetch 1,mem_config_select_device_button_gpio
+	rtneq GPIO_DISABLE
+	arg 0,rega
+	jam MOUSE_PB_KEY,mem_mouse_key_temp
+	fetcht 1,mem_config_select_device_button_gpio
+	call mouse_pb_button_check
+	store 1,mem_mouse_pbkey_press_status
+	fetch 1,mem_matrix_public_gpio
+	beq GPIO_DISABLE,p_mouse_3io6key_pb_button_check_end	
+	call mouse_matrix_public_gpio_reset
+p_mouse_select_device_by_pb_button_exit:	
+	copy rega,pdata
+	bbit1 MOUSE_PB_KEY,mouse_select_device_button_down+2
+	branch mouse_select_device_button_up
+
+p_mouse_3io6key_pb_button_check_end:
+	fetcht 1,mem_config_select_device_button_gpio
+	call mouse_gpio_config_input_pu
+	branch p_mouse_select_device_by_pb_button_exit
+
+p_mouse_wakeup_24g:
+	fetch 1,mem_sensor_shutdown_flag
+	ncall p_mouse_wakeup_24g_from_long_sleep,blank
+	jam 0,mem_sensor_shutdown_flag
+	rtn	
+
+p_mouse_wakeup_24g_from_long_sleep:
+	call p_mouse_init_sensor_wakeup
+	jam 1,mem_mouse_long_mult_flag
+	jam 10,mem_le_battery_level_updata_timer
+	jam 5,mem_device_tx_dpi_data_delay_timer
+	fetcht 1,mem_sensor_motion_gpio
+	call mouse_gpio_config_input_pu
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	rtnbit0 MOUSE_ENABLE_WHEEL_WAKE_UP_CANCEL
+p_mouse_wheel_set_wakeup:
+	fetcht 1,mem_whee_a_data_gpio
+	call mouse_gpio_config_input_pu
+	fetcht 1,mem_whee_b_data_gpio
+	branch mouse_gpio_config_input_pu
+
+p_mouse_app_enter_hibernate:	// 1.3mA hibernate after sensroe reset
+	setarg PAN_REG_CONFIG
+	call twspi_read
+	bbit1 3,p_mouse_app_enter_hibernate_set
+	call p_mouse_sensor_reset
+	call p_mouse_sensor_powerdown
+p_mouse_app_enter_hibernate_set:
+	call p_mouse_setgpio_hibernate
+	branch app_enter_hibernate
+
+p_mouse_before_hibernate:
+	fetch 4,core_lpm_ctrl
+	set1 26,pdata
+	store 4,core_lpm_reg
+	call lpm_write_ctrl
+	call disable_authrom
+	call mouse_device_led_all_off
+	call mouse_before_hibernate_wheel_gpio_set
+	call mouse_setgpio_hibernate
+	call mouse_flash_power_down
+	fetcht 1,mem_sensor_motion_gpio
+	call mouse_gpio_config_input_pu
+	fetcht 1,mem_sensor_motion_gpio
+	branch gpio_clr_wake
+
+p_mouse_start_work:
+ifdef ADC
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit0 MOUSE_ENABLE_ADC,p_mouse_start_work_next
+	call enable_adc
+	call vdd_calculate_by_mode
+	store 2,mem_mouse_vdd_now_vol
+	fetcht 2,mem_2v_adc_vinlpm_data
+	fetch 2,mem_adc_current_value
+	isub temp,null
+	branch p_mouse_start_work,positive
+	arg mem_mouse_vdd_calculate_set,rega
+	call mouse_adc_bat_percent_lowpower_out
+	fetch 1,mem_adc_power_flag
+	bbit1 1,mouse_app_enter_hibernate
+endif
+	branch p_mouse_start_work_next	
+
+////////////////////////////////////////////////led multi start////////////////////////////////////////////////
+
+
+p_mouse_bb_event_timer:
+ifdef ADC
+	call mouse_adc_read
+	call p_mouse_low_voltage_led_timer
+endif
+	//24g
+	call g24_pair_timeout_timer
+	call g24_reconn_timeout_timer
+	call p_mouse_24g_long_sleep_param_update_timer
+	call p_mouse_repair_pack_check_timer
+	call p_mouse_send_dpi_info_timer
+	//led
+	call p_mouse_led_multi_timer
+	call p_mouse_dpi_led_timer
+	call mouse_dpi_key_check_long_press
+	call p_mouse_bt_discovery_check
+	call p_mouse_commbination_key_process
+	call mouse_check_discovery_timeout_timer
+ifdef BLE
+	//ble
+	call p_mouse_check_direct_timeout_timer
+	call mouse_le_enable_att_list_timer
+	call p_mouse_le_battery_updata_timer
+	call mouse_le_send_smp_security_request_timer
+	call p_mouse_le_send_conn_param_update_timer
+endif
+ifdef CLASSIC
+	//bt
+	call mouse_check_hid_handshake_timer
+	call mouse_bt_check_sniff_req_timeout_timer
+	call mouse_check_reconnect_delay_long_sleep		//delete 3.0,reconnect fail
+endif
+	call mouse_current_mult_update_timer
+	call mouse_wheel_trigger_timer
+	call p_mouse_store_information_delay_timer
+ifdef LOGO_LED
+	call p_mouse_logo_led_on_timer
+endif
+	branch p_mouse_check_no_data_timeout_timer
+
+p_mouse_24g_long_sleep_param_update_timer:
+	arg mem_24g_long_sleep_param_update_timer,regc
+	arg p_mouse_24g_long_sleep_normal_param,regb
+	branch timer_single_step
+
+p_mouse_24g_long_sleep_normal_param:
+	call p_mouse_24g_hibernate_set_check
+	jam 1,mem_device_tx_heart_data_flag
+	branch mouse_24g_long_sleep_normal_param
+
+p_mouse_24g_hibernate_set_check:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit1 MOUSE_ENABLE_24G_500Hz,g24_transmit_by_interrupt_exit
+	bbit1 MOUSE_ENABLE_24G_1000,g24_transmit_by_interrupt_exit
+	rtn
+
+//-------------------------dpi led fuction--------------------------//
+p_mouse_dpi_led_timer:
+	fetch 1,mem_mouse_dpi_led_blink_enable
+	rtn blank
+	fetch 1,mem_mouse_dpi_blink_time
+	pincrease 1
+	store 1,mem_mouse_dpi_blink_time
+	beq 3,p_mouse_dpi_led_on
+	beq 6,p_mouse_dpi_led_off_check
+	rtn
+p_mouse_dpi_led_on:
+	fetch 1,mem_mouse_led_multi_type
+	bbit1 LED_MULTI_DPI,p_mouse_device_multi_led_on
+	fetcht 1,mem_mouse_1io2led_dpi_led
+	branch gpio_out_active
+
+p_mouse_dpi_led_off_check:
+	jam 0,mem_mouse_dpi_blink_time
+	fetch 1,mem_mouse_dpi_blink_count
+	increase -1,pdata
+	store 1,mem_mouse_dpi_blink_count
+	nbranch p_mouse_dpi_led_off,blank
+	jam 0,mem_mouse_dpi_led_blink_enable
+p_mouse_dpi_led_off:
+	fetch 1,mem_mouse_led_multi_type
+	bbit1 LED_MULTI_DPI,p_mouse_device_multi_led_off
+	fetcht 1,mem_mouse_1io2led_dpi_led
+	branch gpio_out_inactive
+
+ifdef ADC
+//-------------------------adc fuction--------------------------//
+p_mouse_adc_read_start:
+	jam 0,mem_adc_read_timer
+	call enable_adc
+	call vdd_calculate_by_mode
+	store 2,mem_mouse_vdd_now_vol
+	fetch 1,mem_adc_config_flag
+	bne ADC_CONFIG_GPIO, p_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
+p_mouse_adc_data_process:	
+	arg mem_mouse_vdd_calculate_set,rega
+	call mouse_adc_bat_percent_lowpower_out
+	fetch 1,mem_adc_power_flag
+	bbit1 1,mouse_power_down
+	bbit0 0,p_mouse_adc_no_low_voltage
+	jam 1,mem_mouse_adc_last_low_voltage_flag
+	branch mouse_adc_low_voltage
+
+p_mouse_adc_no_low_voltage:
+	arg MOUSE_LOW_VOLTAGE_FLAG,queue
+	call mouse_disable_function_flag
+	jam 12,mem_adc_low_volatage_led_timer_count
+	fetch 1,mem_mouse_adc_last_low_voltage_flag
+	rtn blank
+	jam 0,mem_mouse_adc_last_low_voltage_flag
+p_mouse_low_voltage_led_off:
+	fetch 1,mem_mouse_led_multi_type
+	bbit1 LED_MULTI_LOW,p_mouse_device_multi_led_off
+	fetcht 1,mem_mouse_1io2led_low_led
+	branch gpio_out_inactive
+
+//-------------------------low voltage led fuction--------------------------//
+p_mouse_low_voltage_led_timer:
+	fetch 1,mem_mouse_pair_success
+	rtn blank
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	rtnbit0 MOUSE_LOW_VOLTAGE_FLAG
+	fetch 1,mem_adc_low_volatage_led_timer_count
+	increase 1,pdata
+	store 1,mem_adc_low_volatage_led_timer_count
+	sub pdata,20,null
+	ncall p_mouse_low_volatage_led_timer_count_clean,positive
+	sub pdata,10,null
+	branch p_mouse_low_voltage_led_off,positive
+p_mouse_low_voltage_led_on:
+	fetch 1,mem_mouse_led_multi_type
+	bbit1 LED_MULTI_LOW,p_mouse_device_multi_led_on
+	fetcht 1,mem_mouse_1io2led_low_led
+	branch gpio_out_active
+	
+p_mouse_low_volatage_led_timer_count_clean:
+	jam 1,mem_adc_low_volatage_led_timer_count
+	rtn
+endif
+//----------------------------------led function start--------------------------------//
+p_mouse_device_led_all_off:
+ifdef ADC
+	call p_mouse_low_voltage_led_off
+endif
+	call p_mouse_device_24g_led_off
+	call p_mouse_device_bt1_led_off
+	call p_mouse_device_bt2_led_off
+	branch p_mouse_dpi_led_off
+
+p_mouse_led_multi_timer:
+	fetch 1,mem_mouse_multi_led_blink_enable
+	rtn blank
+	fetch 1,mem_mouse_multi_led_type
+	beq MULTI_LED_BLINK,p_mouse_multi_led_type_blink
+p_mouse_device_multi_led_type_on:
+	fetch 1,mem_mouse_multi_led_powon_timer
+	branch p_mouse_device_poweron_led_off,blank
+	increase -1,pdata
+	store 1,mem_mouse_multi_led_powon_timer
+	branch p_mouse_device_multi_led_on
+
+p_mouse_device_poweron_led_off:
+	jam 1,mem_mouse_pair_success
+	jam 0,mem_mouse_multi_led_powon_timer
+p_mouse_multi_led_blink_disable:
+	jam 0,mem_mouse_multi_led_blink_enable
+	branch p_mouse_device_multi_led_off
+
+p_mouse_multi_led_type_blink:
+	arg mem_mouse_multi_led_blink_timer,regc
+	arg p_mouse_multi_led_blink_start,regb
+	branch timer_single_step
+
+p_mouse_multi_led_blink_start:
+	call p_mouse_multi_led_blink_timer_init
+	fetch 1,mem_mouse_multi_led_state
+	beq ON,p_mouse_device_multi_led_off
+p_mouse_device_multi_led_on:
+	jam ON,mem_mouse_multi_led_state
+	fetch 1,mem_device_flag
+	beq MODE_24G_DEVICE,p_mouse_device_24g_led_on
+	beq MODE_BT_DEVICE1,p_mouse_device_bt1_led_on
+	beq MODE_BT_DEVICE2,p_mouse_device_bt2_led_on
+	rtn
+p_mouse_device_multi_led_off:
+	jam OFF,mem_mouse_multi_led_state
+	fetch 1,mem_device_flag
+	beq MODE_24G_DEVICE,p_mouse_device_24g_led_off
+	beq MODE_BT_DEVICE1,p_mouse_device_bt1_led_off
+	beq MODE_BT_DEVICE2,p_mouse_device_bt2_led_off
+	rtn
+
+p_mouse_device_24g_led_on:
+	fetcht 1,mem_mouse_1io2led_multi_24gled
+	branch gpio_out_active
+p_mouse_device_bt1_led_on:
+	fetcht 1,mem_mouse_1io2led_multi_bt1led
+	branch gpio_out_active
+p_mouse_device_bt2_led_on:
+	fetcht 1,mem_mouse_1io2led_multi_bt2led
+	branch gpio_out_active
+
+p_mouse_device_24g_led_off:
+	fetcht 1,mem_mouse_1io2led_multi_24gled
+	branch gpio_out_inactive
+p_mouse_device_bt1_led_off:
+	fetcht 1,mem_mouse_1io2led_multi_bt1led
+	branch gpio_out_inactive
+p_mouse_device_bt2_led_off:
+	fetcht 1,mem_mouse_1io2led_multi_bt2led
+	branch gpio_out_inactive
+
+p_mouse_multi_led_blink_timer_init:
+	fetch 1,mem_mouse_multi_led_blink_timer_init
+	store 1,mem_mouse_multi_led_blink_timer
+	rtn
+
+//-----led enable confuction-----//
+p_mouse_device_poweron_led_config:		//power on
+	fetch 1,mem_mouse_led_new_interface_enable
+	rtn blank
+	jam 20,mem_mouse_multi_led_powon_timer
+	jam MULTI_LED_ON,mem_mouse_multi_led_type
+	jam ON,mem_mouse_multi_led_blink_enable
+	rtn
+
+p_mouse_device_24g_led_config:				//24g pair led config
+	fetch 1,mem_mouse_led_new_interface_enable
+	rtn blank
+	fetch 4,mem_mouse_24g_addr
+	fetcht 4,mem_mouse_compare_addr_ff
+	isub temp,null
+	branch p_mouse_device_pair_led_config,zero
+p_mouse_device_reconn_led_config:
+	fetch 1,mem_mouse_led_new_interface_enable
+	rtn blank
+	jam 5,mem_mouse_multi_led_blink_timer_init
+	branch p_mouse_multi_led_blink_enable
+
+p_mouse_device_pair_led_config:
+	fetch 1,mem_mouse_led_new_interface_enable
+	rtn blank
+	jam 2,mem_mouse_multi_led_blink_timer_init
+p_mouse_multi_led_blink_enable:
+	jam OFF,mem_mouse_multi_led_state
+	jam 3,mem_mouse_multi_led_blink_timer
+	jam ON,mem_mouse_multi_led_blink_enable
+	jam MULTI_LED_BLINK,mem_mouse_multi_led_type
+	branch p_mouse_device_multi_led_on
+
+p_mouse_device_le_reconn_led_config:		//le recon led config
+	fetch 1,mem_mouse_led_new_interface_enable
+	rtn blank
+	fetch 1,mem_mouse_le_reconn_led_fuction_enable
+	rtn blank
+	jam 5,mem_mouse_multi_led_blink_timer_init
+	branch p_mouse_multi_led_blink_enable
+
+//---------------------------------led function end--------------------------------//
+
+
+p_mouse_commbination_key_process:
+	fetch 1,mem_device_flag
+	beq MODE_24G_DEVICE,p_mouse_24g_commbination_key_process
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	rtnbit0 MOUSE_ENABLE_COMMBINATION_KEY_BY_BT_DISCOVERY
+	fetcht 1,mem_mouse_commbination_key_bt
+	branch p_mouse_commbination_key_start
+
+p_mouse_24g_commbination_key_process:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	rtnbit0 MOUSE_ENABLE_COMMBINATION_KEY_BY_24G_PAIRING
+	fetcht 1,mem_mouse_commbination_key_24g
+p_mouse_commbination_key_start:
+	storet 1,mem_mouse_commbination_key
+	call mouse_check_key_gpio
+	and pdata,0x07,pdata
+	fetcht 1,mem_mouse_commbination_key
+	isub temp,null
+	branch p_mouse_commbination_key_down,zero
+	branch mouse_commbination_key_up
+
+p_mouse_commbination_key_down:		// enter hibernate when reconnect
+	call p_mouse_combination_ui_timer
+	fetch 1,mem_commbination_key_statue
+	rtneq COMMBINATION_KEY_STATE_DOWN
+	jam COMMBINATION_KEY_STATE_DOWN,mem_commbination_key_statue
+	rtn
+
+p_mouse_combination_ui_timer:
+	arg p_mouse_24g_start_pair_mode,regb
+	branch mouse_combination_ui_timer+1
+
+ifdef BLE
+p_mouse_check_direct_timeout_timer:
+	arg mem_mouse_direct_timer,regc
+	arg mouse_check_direct_timeout,regb
+	call timer_single_step
+	branch mouse_check_direct_timeout_timer+3
+
+p_mouse_le_battery_updata_timer:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	rtnbit0 MOUSE_ENABLE_ADC
+	arg mem_le_battery_level_updata_timer,regc
+	arg p_mouse_le_battery_level_updata,regb
+	branch timer_single_step
+
+p_mouse_le_battery_level_updata:
+	fetch 2,mem_le_battery_level_updata_timer_init
+	store 2,mem_le_battery_level_updata_timer
+	fetch 1,mem_device_flag
+	bne MODE_24G_DEVICE,mouse_fill_battery_level_le
+	jam 1,mem_device_tx_battery_data_flag
+	rtn 
+
+p_mouse_le_send_conn_param_update_timer:
+	arg mem_mouse_le_send_conn_param_update_timer,regc
+	arg mouse_updata_le_param,regb
+	branch timer_single_step
+endif
+
+p_mouse_check_no_data_timeout_timer:
+	arg mem_mouse_no_data_timer,regc
+	arg p_mouse_check_no_data_timeout,regb
+	branch timer_single_step_2B
+
+p_mouse_check_no_data_timeout:
+	fetch 1,mem_usb_addr
+	rtnbit1 7
+	fetch 1,mem_device_flag
+	bne MODE_24G_DEVICE,mouse_disconnect
+	branch p_mouse_24g_hibernate_set
+	
+p_mouse_store_information_delay_timer:
+	arg mem_store_information_delay_timer,regc
+	arg p_mouse_store_device_info_check,regb
+	branch timer_single_step
+p_mouse_store_device_info_check:
+	fetcht 1,mem_sensor_motion_gpio
+	call gpio_get_bit
+	branch mouse_store_device_info_delay,true
+	call p_mouse_sensor_spi_clr
+	call p_mouse_store_device_info
+	call p_mouse_flash_spi_clr
+	fetch 1,mem_mouse_need_soft_reset
+	rtn blank
+p_mouse_soft_reset:
+	call p_enable_rc_clock
+	branch mouse_soft_reset
+
+p_mouse_sensor_spi_clr:
+	fetcht 1,mem_mouse_sensor_sclk_gpio
+ 	call mouse_gpio_config_input_pu
+ 	fetcht 1,mem_mouse_sensor_sdio_gpio
+ 	branch mouse_gpio_config_input_pu
+
+p_mouse_flash_spi_clr:
+	fetcht 1,mem_spi_cs_gpio
+	call mouse_gpio_config_input_pu
+	fetcht 1,mem_spi_sclk_gpio
+	call mouse_gpio_config_input_pu
+	fetcht 1,mem_spi_si_gpio
+	call mouse_gpio_config_input_pu
+	fetcht 1,mem_spi_so_gpio
+	branch mouse_gpio_config_input_pu
+
+p_mouse_store_device_info:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit1 MOUSE_ENABLE_EEPROM,mouse_store_eeprom_device_info
+	call spid_init_flash
+	call mouse_spid_flash_release_form_powerdown
+	call mouse_flash_erase_sector
+	call spid_unlock_flash
+	branch mouse_store_flash_device_info+3
+
+	
+ifdef LOGO_LED
+p_mouse_logo_led_on_timer:
+	fetch 1,mem_mouse_logo_led_gpio
+	rtneq GPIO_DISABLE
+	fetch 2,mem_mouse_no_data_timer
+	rtn blank
+	fetch 2,mem_mouse_no_data_timeout
+	fetcht 2,mem_mouse_no_data_timer
+	isub temp,temp
+	fetch 2,mem_mouse_logo_led_on_time_init
+	isub temp,pdata
+	branch p_mouse_logo_led_on,positive
+p_mouse_logo_led_off:
+	fetcht 1,mem_mouse_logo_led_gpio
+	branch gpio_out_inactive
+
+p_mouse_logo_led_on:
+	fetcht 1,mem_mouse_logo_led_gpio
+	branch gpio_out_active	
+endif
+
+////////////////////////////////////////////////led multi end////////////////////////////////////////////////
+
+
+////////////////////////////////////////////////sensor init start////////////////////////////////////////////
+p_mouse_init_sunt:
+	call mouse_sensor_spi_init
+	rtn wake
+p_mouse_init_sensor_wakeup:	
+	call mouse_sensor_poweron
+p_mouse_init_sensor:
+	call mouse_read_sensor_id
+	beq P32XX_ID1,p_mouse_init_p32xx_id2_judge
+	beq P3065_ID1,mouse_init_p3065
+	beq PKA8G2_ID1,mouse_ka8g2_id2_judge
+	call mouse_twspi_reset
+	nop 6900
+	branch p_mouse_init_sensor
+
+p_mouse_init_p32xx_id2_judge:
+	fetch 1,mem_sensor_id2
+	and_into 0xf0,pdata
+	sub pdata,P3204_TJDM_ID2,null
+	branch mouse_p3065xy_init_param,zero
+	fetch 1,mem_sensor_id2
+	branch mouse_init_p32xx_id2_judge
+
+p_mouse_sensor_poweron:
+	call mouse_sensor_spi_init
+	fetch 1,mem_config_sensor_type
+	beq KA8G2,p_mouse_ka8g2_sensor_init
+p_mouse_sensor_poweron_next:
+	call mouse_sensor_reset
+	arg mem_sensor_poweron_init,regc
+p_mouse_sensor_poweron_end:
+	call mouse_sensor_wr_seq
+	branch p_mouse_seting_sensor_type
+	
+p_mouse_ka8g2_sensor_init:
+	call p_mouse_ka8g2_sensor_reset
+	arg mem_ka8g2_sensor_poweron_init,regc
+	branch p_mouse_sensor_poweron_end
+	
+p_mouse_sensor_powerdown:
+	call mouse_init_sunt
+	call mouse_sensor_spi_init
+	fetch 1,mem_config_sensor_type
+	beq KA8G2,p_mouse_ka8g2_sensor_powerdown
+	branch mouse_sensor_powerdown_end
+p_mouse_ka8g2_sensor_powerdown:
+	setarg 0x1f06		
+	branch twspi_write
+
+p_mouse_sensor_reset:
+	fetch 1,mem_config_sensor_type
+	beq KA8G2,p_mouse_ka8g2_sensor_reset
+	branch mouse_sensor_reset
+
+p_mouse_ka8g2_sensor_reset:
+	setarg 0x9706		// reset to factory settings
+	branch mouse_sensor_reset_end
+
+////////////////////////////////////////////////sensor init end////////////////////////////////////////////
+
+p_mouse_short_sleep_clear_wake:
+	call clear_wake
+	branch lpm_write_gpio_wakeup
+
+p_mouse_lpm_before_common:
+	call clear_wake
+	fetcht 1,mem_matrix_public_gpio		// enable b4/b5/dpi wakeup
+	call gpio_out_active
+	fetcht 1,mem_matrix_public_gpio
+	call gpio_clr_wake
+	call p_mouse_wheel_set_wakeup
+	branch mouse_lpm_before_common+1
+	
+
+/////////////////////////////////////////////////dpi process start////////////////////////////////////////////
+p_mouse_idle:
+	call mouse_low_voltage_led_no_enter_lpm
+	call ui_check_paring_button
+	call p_mouse_dpi_check
+	call p_mouse_select_device_check
+	call p_mouse_check_select_device_by_switch
+	call mouse_bt_button_check
+	call mouse_wheel_check
+ifdef USB
+	call p_mouse_usb_isr
+	call p_mouse_usb_mode
+	call p_mouse_usb_mode_flag_check
+endif
+	rtn
+
+p_mouse_select_device_check:
+	fetch 1,mem_usb_mode_enable
+	nrtn blank
+	branch mouse_select_device_check
+
+p_mouse_check_select_device_by_switch:
+	fetch 1,mem_usb_mode_enable
+	nrtn blank
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	rtnbit0 MOUSE_ENABLE_SELECT_DEVICE_BY_SWITCH_GPIO	
+	fetcht 1,mem_device_switch_gpio
+	call mouse_gpio_config_input_pu
+	fetcht 1,mem_device_switch_gpio
+	call gpio_get_bit
+	branch mouse_check_select_24g_device,true
+p_mouse_select_btdevice:
+	fetch 1,mem_device_flag
+	rtneq MODE_BT_DEVICE1
+	jam MODE_BT_DEVICE1,mem_device_flag
+	branch mouse_soft_reset
+	
+p_mouse_check_select_24g_device:	
+	fetch 1,mem_device_flag
+	rtneq MODE_24G_DEVICE
+	jam MODE_24G_DEVICE,mem_device_flag
+	branch mouse_soft_reset
+	
+p_mouse_bt_discovery_check:
+	fetch 1,mem_usb_mode_enable
+	nrtn blank
+	branch mouse_bt_discovery_check
+
+
+p_mouse_dpi_check:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit1 MOUSE_ENABLE_DPI_KEY_CONNECT_ADC,mouse_dpi_check_connect_adc
+	fetch 1,mem_dpi_button_gpio
+	rtneq GPIO_DISABLE
+	arg 0,rega
+	jam MOUSE_DPI_KEY,mem_mouse_key_temp
+	fetcht 1,mem_dpi_button_gpio
+	call p_mouse_dpi_key_check
+//	branch mouse_dpi_check_next
+	store 1,mem_mouse_dpikey_press_status
+	fetch 1,mem_matrix_public_gpio
+	beq GPIO_DISABLE,p_mouse_3io6key_dpi_check_end
+	call mouse_matrix_public_gpio_reset
+p_mouse_dpi_check_exit:	
+	copy rega,pdata
+	bbit1 MOUSE_DPI_KEY,mouse_dpi_down
+p_mouse_dpi_up:
+	fetch 1,mem_mouse_dpi_button_state
+	rtneq DPI_BUTTON_STATE_UP
+	jam DPI_BUTTON_STATE_UP,mem_mouse_dpi_button_state
+	call mouse_store_device_info_delay
+	jam 1,mem_device_tx_dpi_data_delay_timer	//delay 100ms tx dpi level data
+	branch mouse_dpi_up+3
+
+p_mouse_3io6key_dpi_check_end:
+	fetcht 1,mem_dpi_button_gpio
+	call mouse_gpio_config_input_pu
+	branch p_mouse_dpi_check_exit
+
+p_mouse_dpi_key_check:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit1 MOUSE_ENABLE_DPI_KEY_CONNECT_GND,mouse_dpi_key_connect_gnd
+	fetch 1,mem_mouse_dpikey_press_status
+	copy pdata,regc
+	fetch 1,mem_matrix_public_gpio
+	beq GPIO_DISABLE,p_mouse_3io6key_dpi_check
+	branch mouse_dpi_key_check_next
+p_mouse_3io6key_dpi_check:
+	fetch 1,mem_dpi_button_gpio
+	call p_mouse_gpio_config_output_low
+	fetcht 1,mem_dpi_button_gpio
+	branch mouse_3io6key_check
+
+p_mouse_dpi_process:
+	call mouse_dpi_ghost_check
+	rtn user
+	fetch 1,mem_mouse_dpi
+	increase 1,pdata
+	and pdata,0x03,pdata
+	store 1,mem_mouse_dpi
+	branch p_mouse_seting_dpi
+
+p_mouse_seting_dpi:
+	call mouse_setting_dpi_4_level
+	call p_mouse_dpi_led_blink_init
+p_mouse_seting_sensor_type:
+	branch mouse_seting_sensor_type
+
+p_mouse_dpi_led_blink_init:
+	fetch 1,mem_mouse_pair_success
+	rtn blank
+	fetch 1,mem_mouse_dpi
+	beq MOUSE_DPI_LEVEL1,p_mouse_dpi_level_2
+	beq MOUSE_DPI_LEVEL2,p_mouse_dpi_level_3
+	beq MOUSE_DPI_LEVEL3,p_mouse_dpi_level_1
+	rtn
+
+p_mouse_dpi_level_1:
+	setarg 1
+	branch p_mouse_dpi_blink_count_init
+p_mouse_dpi_level_2:
+	setarg 2
+	branch p_mouse_dpi_blink_count_init
+p_mouse_dpi_level_3:
+	setarg 3	
+p_mouse_dpi_blink_count_init:
+	store 1,mem_mouse_dpi_blink_count
+	jam 1,mem_mouse_dpi_led_blink_enable
+	rtn
+
+/////////////////////////////////////////////////dpi process end////////////////////////////////////////////
+
+
+////////////////////////////////////////////////bb event start///////////////////////////////////////////////
+p_mouse_priority_bb_event:	
+	copy regc,pdata
+	beq BT_EVT_24G_ATTEMPT_SUCCESS,p_mouse_24g_attempt_success
+	beq BT_EVT_24G_PAIRING_COMPLETE,p_mouse_24g_pairing_complete
+	beq BT_EVT_24G_ATTEMPT_FAIL,p_mouse_24g_attempt_fail
+ifdef BLE	
+	beq BT_EVT_LE_START_ENC,p_mouse_le_ll_start_encryt
+	beq BT_EVT_LE_DISCONNECTED,p_mouse_le_bb_disconnected
+	beq BT_EVT_LE_CONNECTED,p_mouse_le_bb_event_connected
+	beq BT_EVT_LE_PARSE_CONN_PAPA_UPDATE_RSP,p_mouse_le_conn_param_update_rsp_recieved	
+endif
+	beq BT_EVT_BB_DISCONNECTED,p_mouse_bb_disconnected
+ifdef CLASSIC
+	beq BT_EVT_BB_CONNECTED,p_mouse_bb_event_connected
+	beq BT_EVT_HID_HANDSHAKE,p_mouse_bt_hid_handshake
+	beq BT_EVT_HID_CONNECTED,p_app_hid_connected
+endif
+	branch mouse_priority_bb_event+2
+
+ifdef CLASSIC	
+p_mouse_bt_hid_handshake:
+	jam APP_HANDSHAKE_DONE,mem_app_handshake_flag
+	call app_lpm_mult_enable
+	branch mouse_bt_hid_handshake+3
+
+p_app_hid_connected:
+	call mouse_no_data_timer_init
+	call mouse_init_sensor_reset
+	call p_mouse_device_poweron_led_config
+	branch app_hid_connected
+
+p_mouse_bb_event_connected:
+	jam 0,mem_mouse_long_mult_flag
+	branch mouse_bb_event_connected+2
+endif
+
+p_mouse_bb_disconnected:
+	jam 0,mem_mouse_enter_sniff_count	
+	jam 0,mem_mouse_bt_send_first_package_flag
+	call mouse_bt_sniff_param_interval_setup
+	call mouse_bb_discon_clear_stack
+	fetch 1,mem_usb_mode_enable
+	nrtn blank
+	branch mouse_bb_disconnected+4
+
+p_mouse_agc_disable_nomal_power:
+	call p_mouse_soft_agc_disable
+	branch p_mouse_fetch_normal_tx_power
+
+p_mouse_24g_attempt_fail:
+	jam 0,mem_mouse_pair_success
+	call p_mouse_agc_disable_nomal_power
+	fetch 1,mem_24g_attempt_fail_flag
+	nbranch p_mouse_24g_hibernate_set,blank
+	fetch 1,mem_24g_reconn_type
+	beq FAST_CONN_AND_3_0_ADDR,p_mouse_24g_fast_conn_attempt_fail
+	beq FAST_CONN_AND_RECEIVER,p_mouse_24g_fast_conn_attempt_fail
+	beq PAIR_AND_RECEIVER,mouse_24g_auto_pair_attempt_fail
+	branch mouse_24g_attempt_fail+4
+
+p_mouse_24g_hibernate_set:
+	jam 0,mem_24g_attempt_fail_flag
+	call p_g24_transmit_next_packet
+	setarg -1
+	store 8,mem_24g_enter_hibernate
+	setarg 0
+	store 7,mem_mouse_key
+	store 1,mem_24g_abort_pac
+	store 2,mem_mouse_repair_pack_flag
+	store 1,mem_le_battery_level_updata_timer
+	store 1,mem_device_tx_dpi_data_delay_timer
+	jam 1,mem_sensor_shutdown_flag
+	call p_mouse_sensor_powerdown
+	call p_mouse_24g_hibernate_set_check
+	branch p_g24_long_sleep
+
+p_g24_nodata_transmit:
+	fetch 1,mem_24g_abort_pac
+	call p_g24_send_abort_packet,blank
+	fetch 1,mem_device_tx_heart_data_flag
+	ncall p_g24_send_slow_heart_info,blank
+	fetch 1,mem_24g_transmit_by_interrupt
+	rtneq G24_TX_TIMER_INT_ENABLE
+	call g24_search_receiver
+p_g24_long_sleep:
+	call g24_lpm_wait
+	nrtn user
+	call g24_setgpio_lpm_before
+	jam 0,mem_sleep_miss
+	jam 1,mem_long_sleep_flag
+	call p_send_time_long_wake
+	fetch 1,mem_sensor_shutdown_flag
+	ncall p_mouse_setgpio_hibernate,blank
+	fetch 8,mem_24g_enter_hibernate
+	branch g24_long_seep2
+
+p_g24_send_abort_packet:
+	fetch 1,mem_device_tx_heart_data_flag
+	nrtn blank
+	jam TYPE_MS,mem_24g_data_type
+	fetch 1,mem_sensor_shutdown_flag
+	setflip 0,pdata
+	store 1,mem_24g_abort_pac
+	call g24_transmit_rf_ctrl_clear
+	store 1,mem_24g_txbuf_new
+	setarg 0
+	store 7,mem_24g_txbuf_new+1
+	fetch 4,mem_24g_device_addr
+	store 4,mem_24g_txbuf_new+8
+	jam 12,mem_24g_datalen
+	fetch 1,mem_24g_data_type
+	set1 bit_abort,pdata
+	store 1,mem_24g_data_type
+	call p_g24_transmit_prep
+	branch p_g24_transmit_start
+
+p_mouse_24g_fast_conn_attempt_fail:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag 
+	bbit1 MOUSE_ENABLE_24G_FIRST_AUTO_PAIRING,p_mouse_24g_start_auto_pair
+	bbit1 MOUSE_ENABLE_AUTO_24G_PARING,p_mouse_24g_start_auto_pair
+	bbit0 MOUSE_ENABLE_24G_AUTO_PAIR_NERVER_BEEN_PAIRED,mouse_24g_reconn_dongle_start
+	fetch 4,mem_mouse_24g_addr		// auto pair first time
+	fetcht 4,mem_mouse_compare_addr_ff
+	isub temp,null
+	branch p_mouse_24g_start_pair_mode,zero
+	branch mouse_24g_reconn_dongle_start
+
+p_mouse_24g_start_auto_pair:
+	fetch 2,mem_24g_pair_timeout_init
+	store 2,mem_24g_reconn_timeout
+	jam PAIR_AND_RECEIVER,mem_24g_reconn_type
+	branch g24_reconn_start
+
+p_mouse_24g_start_pair_mode:
+	jam 0,mem_24g_reconn_type
+	call p_mouse_device_pair_led_config
+	branch mouse_24g_start_pair_mode
+
+ifdef BLE
+p_mouse_le_ll_start_encryt:
+	fetch 1,mem_mouse_le_reconnect_flag
+	beq 1,p_mouse_le_ll_reconn_start_encryt
+	jam 20,mem_le_start_encrypt_timer
+	branch mouse_le_ll_enable_start_enc_flag
+p_mouse_le_ll_reconn_start_encryt:
+	call mouse_updata_le_param
+	jam 10,mem_le_start_encrypt_timer
+	branch mouse_le_ll_enable_start_enc_flag
+
+p_mouse_le_conn_param_update_rsp_recieved:
+	fetch 1,mem_mouse_le_send_conn_param_update
+	nrtn blank
+	jam 1,mem_mouse_le_send_conn_param_update
+	jam 30,mem_mouse_le_send_conn_param_update_timer
+	rtn
+
+p_mouse_le_bb_event_connected:
+	jam 5,mem_device_tx_dpi_data_delay_timer
+	call p_mouse_device_poweron_led_config
+	branch mouse_le_bb_event_connected
+
+p_mouse_stop_discovery:
+	setarg 0
+	store 2,mem_mouse_discovery_timer
+	branch mouse_stop_discovery+1
+
+endif
+
+////////////////////////////////////////////////bb event end///////////////////////////////////////////////
+
+p_g24_pair_dispatch:
+	jam DEFAULT_24G_DEVICE,mem_24g_reconn_type
+	fetch 2,mem_24g_pair_count
+	increase 1,pdata
+	store 2,mem_24g_pair_count
+	fetch 1,mem_24g_pair_count
+	and pdata,0xff,pdata
+	beq 0,p_g24_pair_dispatch2
+	rtn
+
+p_g24_pair_dispatch2:
+	fetch 1,mem_24g_pair_sm
+	beq STATE_24G_PAIRING_SUCCESS,g24_pair_exit
+	beq STATE_24G_PAIRING_1,p_g24_pair_sm_1
+	beq STATE_24G_PAIRING_2,p_g24_pair_sm_2
+	beq STATE_24G_PAIRING_3,p_g24_pair_sm_3
+	beq STATE_24G_PAIRING_4,p_g24_pair_sm_4
+	rtn
+
+p_g24_pair_sm_1:
+	jam DATATYPE_ATTEMP,mem_24g_txbuf_new
+	branch p_g24_pair_sm_prep
+
+p_g24_pair_sm_2:
+	fetch 1,mem_24g_pair_switch
+	branch p_g24_pair_sm_2_skip,blank
+	fetch 4,mem_24g_device_addr
+	call g24_update_addr_and_synccrc8	//use transmitter addr
+p_g24_pair_sm_2_skip:
+	jam DATATYPE_BIND,mem_24g_txbuf_new	
+	branch p_g24_pair_sm_prep
+
+p_g24_pair_sm_3:
+	jam DATATYPE_CONFIG,mem_24g_txbuf_new	
+	fetch 1,mem_24g_pair_switch
+	branch p_g24_pair_sm_prep,blank
+	fetch 4,mem_24g_receiver_addr		//prep receiver addr
+	store 4,mem_24g_txbuf_new+2
+	branch p_g24_pair_sm_common
+
+p_g24_pair_sm_4:
+	jam DATATYPE_OK,mem_24g_txbuf_new
+p_g24_pair_sm_prep:
+	fetch 4,mem_24g_device_addr
+	store 4,mem_24g_txbuf_new+2
+p_g24_pair_sm_common:
+	fetch 1,mem_24g_data_type
+	and_into bits_data,pdata
+	store 1,mem_24g_txbuf_new+1
+	jam 0,mem_24g_txbuf_new+6
+	jam 7,mem_24g_datalen
+	call p_g24_transmit_prep
+	call g24_transmit_receive_ack
+	nrtn sync
+	nrtn user3
+	call p_g24_txbuf_clear
+	call p_g24_ackpayload_parse
+p_g24_pair_sm_common_next:
+	fetch 1,mem_24g_pair_sm
+	rtneq STATE_24G_PAIRING_SUCCESS
+	beq STATE_24G_PAIRING_2,p_g24_pair_sm_2_waiting_ack
+	beq STATE_24G_PAIRING_4,p_g24_pair_sm_4_waiting_ack
+	branch g24_pair_sm_common_next+2
+	
+p_g24_pair_sm_2_waiting_ack:
+	fetch 1,mem_24g_pair_switch
+	branch g24_pair_sm_2_waiting_ack_skip,blank
+	fetch 4,mem_24g_rxpayload_new+2
+	rtn blank
+	store 4,mem_24g_receiver_addr
+	branch g24_pair_sm_2_waiting_ack_skip
+
+p_g24_pair_sm_4_waiting_ack:
+	fetch 1,mem_24g_pair_switch
+	branch p_g24_pair_sm_4_waiting_ack_skip,blank
+	fetch 4,mem_24g_rxpayload_new+2
+	fetcht 4,mem_24g_receiver_addr
+	isub temp,null
+	nrtn zero
+p_g24_pair_sm_4_waiting_ack_skip:	
+	jam STATE_24G_PAIRING_SUCCESS,mem_24g_pair_sm
+	jam BT_EVT_24G_PAIRING_COMPLETE,mem_fifo_temp
+	call ui_ipc_send_event
+	setarg 0
+	store 2,mem_24g_pair_timeout
+	fetch 4,mem_24g_rxpayload_new+2
+	call g24_update_addr_and_synccrc8
+	branch g24_pair_exit	
+
+p_g24_reconn_dispatch:
+	fetch 2,mem_24g_reconn_count
+	arg 0x01f8,temp
+	iand temp,pdata
+	branch p_g24_reconn_dispatch_next,blank
+	fetch 2,mem_24g_reconn_count
+	increase 1,pdata
+	store 2,mem_24g_reconn_count
+	rtn
+
+p_g24_reconn_mode_judge:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit1 MOUSE_ENABLE_AUTO_24G_PARING,mouse_24g_pair_mode_check
+	bbit1 MOUSE_ENABLE_24G_FIRST_AUTO_PAIRING,mouse_24g_pair_mode_check
+	branch g24_reconn_receiver_addr
+	
+p_g24_reconn_dispatch_next:
+	call p_g24_reconn_data_prep
+	call g24_transmit_receive_ack
+	nbranch p_g24_reconn_device_fail,sync
+	nbranch p_g24_reconn_device_fail,user3
+	call p_g24_ackpayload_parse
+	fetch 1,mem_24g_rxdata_length	//ack payload length 
+	branch p_receiver_addr_zero_handle,blank
+p_g24_reconn_receiver_addr_handle:
+	fetch 4,mem_24g_pair_addr
+	fetcht 4,mem_24g_addr
+	isub temp,null
+	branch p_g24_reconn_mode_judge,zero
+	fetch 4,mem_24g_device_addr
+	fetcht 4,mem_24g_addr
+	isub temp,null
+	call p_g24_store_receiver_addr,zero
+	fetch 1,mem_24g_conn_sm
+	set0 STATE_24G_RECONN,pdata
+	store 1,mem_24g_conn_sm
+	setarg 0
+	store 2,mem_24g_pair_timeout
+	store 2,mem_24g_reconn_count
+	store 2,mem_24g_reconn_timeout	
+	jam BT_EVT_24G_ATTEMPT_SUCCESS,mem_fifo_temp
+	call ui_ipc_send_event
+p_g24_txbuf_clear:
+	arg 4,loopcnt
+	arg mem_24g_txbuf_new,contw
+	branch memset0
+
+p_g24_rxpayload_clear:
+	arg 2,loopcnt
+	arg mem_24g_rxpayload_new,contw
+	branch memset0
+
+p_receiver_addr_zero_handle:
+	fetch 4,mem_24g_fast_conn_addr
+	fetcht 4,mem_24g_addr
+	isub temp,null
+	branch p_g24_reconn_receiver_addr_handle,zero
+	fetch 4,mem_24g_rxpayload_new+2
+	rtn blank
+	branch p_g24_reconn_receiver_addr_handle
+	
+p_g24_store_receiver_addr:
+	fetch 4,mem_24g_rxpayload_new+2
+	rtn blank
+	store 4,mem_24g_receiver_addr	
+	branch g24_ch_syncword_crc8_init
+
+p_g24_reconn_data_prep:
+	jam DATATYPE_ATTEMP,mem_24g_txbuf_new
+	fetch 1,mem_24g_data_type
+	store 1,mem_24g_txbuf_new+1
+	fetch 4,mem_24g_device_addr
+	store 4,mem_24g_txbuf_new+2
+	jam 6,mem_24g_datalen
+	branch p_g24_transmit_prep
+
+p_g24_reconn_device_fail:
+	fetch 1,mem_24g_fast_conn_enable
+	branch g24_ch,blank
+	fetch 2,mem_24g_reconn_count
+	increase 1,pdata
+	store 2,mem_24g_reconn_count
+	isolate1 9,pdata	
+	fetch 1,mem_24g_reconn_type
+	beq PAIR_AND_RECEIVER,p_g24_reconn_pair_receiver
+	beq FAST_CONN_AND_3_0_ADDR,p_g24_reconn_fast_conn_and_3_0
+	branch g24_reconn_device_fail+7
+
+p_g24_reconn_pair_receiver:
+	branch g24_reconn_receiver_addr,true
+	branch g24_pair_init_param
+
+p_g24_reconn_fast_conn_and_3_0:
+	branch g24_reconn_device_3_0_addr,true
+	jam TX_POWER_FAST_CONN,mem_tx_power
+	branch g24_reconn_fast_conn+2
+
+p_g24_lpm_wait:			// ice connect led
+	enable user
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	branch disable_user,blank
+	fetch 1,mem_lpm_mode
+	branch disable_user,blank
+	fetch 1,mem_24g_transmit_by_interrupt
+	beq G24_TX_TIMER_INT_ENABLE,disable_user
+	rtn
+
+p_lpm_sleep:
+	call xtal_fast_wake
+	branch lpm_sleep_skip_cb_function
+
+p_ui_timer_check:		// 100ms timer will return 4 or 5 times when power on
+	fetch 1,mem_power_on_flag
+	ncall ui_timer_init,blank
+	jam 0,mem_power_on_flag
+	branch ui_timer_check+1
+
+
+ifdef CLASSIC
+p_hid_rx_process:
+	fetch 2,mem_l2cap_payload_ptr
+	copy pdata,contr
+	ifetch 1,contr
+	store 1,mem_l2cap_rcv_hidtype
+	and pdata,0x0f,temp
+	rshift4 pdata,pdata //hidtype
+	beq hid_type_set_idle,p_hid_rx_process_handshake
+	branch hid_rx_process+7
+
+p_hid_rx_process_handshake:
+	arg 1,rega//payload length
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_ctrl_remote_cid
+	istore 2,contw
+	setarg 0
+	istore 1,contw
+	jam 1,mem_ui_data_txbuff_length
+	fetch 1,mem_hid_control_state
+	set1 l2cap_channel_hid_handshake_done,pdata
+	store 1,mem_hid_control_state
+	jam BT_EVT_HID_HANDSHAKE,mem_fifo_temp
+	branch ui_ipc_send_event
+
+p_send_lmp:
+	disable user
+	call lmo_fifo_process
+	fetch 1,mem_lmp_to_send
+	rtn blank
+/* lmp message to be processed. this will either be because host??? */
+/* wants to send a lmp message or because one resulted from the LMP */
+/* processing section */
+/********* outgoing lmp lookup table *************/
+	bbit1 7,send_lmp_escape
+p_send_lmp0:
+	beq LMP_DETACH,p_send_lmp_detach
+	branch send_lmp0
+
+p_send_lmp_detach:
+	call send_lmp_detach
+	jam 120,mem_conn_timer
+	rtn
+
+p_parse_lmp_accepted:
+	fetch 1,mem_rxbuf+1
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_SWITCH_REQ,p_parse_lmp_accepted_switch
+	branch parse_lmp_accepted+3
+p_parse_lmp_accepted_switch:
+	fetch 1,mem_connection_options
+	set0 CONNECTION_SWITCH,pdata
+	store 1,mem_connection_options
+	jam BT_EVT_SWITCH_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	branch role_switch_prepare0
+
+p_process_conn_sm:
+	call lmo_fifo_check
+	nrtn blank
+p_process_conn_sm_continue:
+	fetch 1,mem_conn_sm
+	rtn blank
+	fetch 1,mem_conn_sm
+	beq CONN_SM_SEND_CONN_REQ,p_host_create_conn_send_conn_req
+	branch process_conn_sm_continue+2
+p_host_create_conn_send_conn_req:
+	jam CONN_SM_WAIT_CONN_ACCEPT,mem_conn_sm
+	jam 0xfff,mem_soft_timer
+	set0 mark_reconn_recieve_switch,mark
+	jam LMP_HOST_CONNECTION_REQ,mem_lmo_opcode2
+	branch init_lmp_reinit
+endif
+	
+
+ifdef BLE
+p_mouse_le:
+	call le_fifo_check_nearly_full
+	nrtn blank
+	fetch 1,mem_mouse_bluetooth_fast_conn_flag
+	beq 0xff,p_mouse_le_next
+	fetch 1,mem_le_connect_status_flag
+	and pdata,0x03,pdata
+	rtnne 0x03
+p_mouse_le_next:	
+	fetch 1,mem_mouse_clear_sensor_data_flag
+	call mouse_clear_sensor_data_by_reset,blank
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit1 MOUSE_24G_PAIRING_FLAG,mouse_le_send_empty_packet
+	bbit1 MOUSE_SELECT_DEVICE_FLAG,mouse_le_send_empty_packet
+	bbit1 MOUSE_BT_DISCOVERY_BUTTON_DOWN_FLAG,mouse_le_send_empty_packet
+	bbit1 MOUSE_BT_DISCOVERY_BUTTON_LONG_DOWN_FLAG,mouse_le_send_empty_packet
+	call mouse_motion
+	call mouse_check_125Hz
+	nrtn user
+	call mouse_current_mult_update+2
+	call p_mouse_data_xy_release
+	branch mouse_le_next+12
+
+p_le_slave_match:
+	fetch 1,mem_le_md_count
+	pincrease 1
+	store 1,mem_le_md_count
+	beq LE_MD_MAX_COUNT,le_slave_cont
+	call le_acknowledge
+	call le_prepare_tx
+	fetch 1,mem_le_tx_phy
+	call le_enable_phy_by_pdata
+	call le_transmit
+	branch le_slave_match+10
+
+p_le_slave_unsync:
+	call end_of_packet
+	branch le_slave_unsync+1
+
+p_le_parse_l2cap:
+	ifetch 2,contr
+	beq LE_L2CAP_CID_ATT,p_le_parse_att
+	branch le_parse_l2cap+10
+p_le_parse_att:
+	ifetch 3,contr
+	store 3,mem_le_att_opcode
+	beq ATTOP_READ_REQUEST,p_le_parse_att_read_request
+	beq ATTOP_WRITE_REQUEST,p_le_parse_att_write_request
+	beq ATTOP_READ_BY_GROUP_TYPE_REQUEST,p_le_parse_att_read_by_group_type_request
+	beq ATTOP_READ_BY_TYPE_REQUEST,p_le_parse_att_read_by_type_request
+	branch le_parse_att+2
+
+p_le_parse_att_read_request:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit0 MOUSE_ENABLE_LE_BATTERY_SERVICE_CANCEL,le_parse_att_read_request
+	call le_check_encrypt_state
+	fetcht 2,mem_le_att_handle
+	fetch 1,mem_le_configuration
+	bbit1 BIT_BLE_READ_AUTH,p_le_send_att_read_response_check_auth
+//input:temp is handle
+p_le_send_att_read_response:
+	fetch 2,mem_le_att_handle
+	beq 0x30,le_send_att_error_response_notfound
+	fetcht 2,mem_le_att_handle
+	branch le_send_att_read_response
+
+p_le_send_att_read_response_check_auth:
+	fetch 2,mem_le_pairing_handle
+	isub temp,null
+	nbranch p_le_send_att_read_response,zero
+	nbranch p_le_send_att_read_response,user
+	branch le_send_att_read_response_error_insufficient_auth
+
+p_le_parse_att_write_request:		// mac os 10.9.5 reconnect can't move
+	copy contr,rega
+	fetch 2,mem_le_l2cap_size
+	add pdata,-3,regb
+	call le_writeatt_cb
+
+	fetcht 2,mem_le_att_handle
+	fetch 1,mem_le_protocol_rx_handle
+	isub temp,null
+	call p_mouse_le_receive_driver_data,zero
+	
+	fetch 1,mem_mouse_bluetooth_fast_conn_flag
+	beq 0xff,le_send_att_write_response_check_auth	
+	fetch 1,mem_mouse_le_reconnect_flag
+	branch le_send_att_write_response_check_auth,blank
+	fetch 1,mem_le_connect_status_flag
+	bbit1 LL_START_ENC_FLAG,le_send_att_write_response_check_auth
+	setarg 0x001a		
+	fetcht 2,mem_le_att_handle
+	isub temp,null
+	nbranch le_send_att_write_response_check_auth,zero
+	branch le_send_att_read_response_error_insufficient_auth
+
+p_mouse_le_receive_driver_data:
+	ifetch 3,rega
+	store 3,mem_le_protocol_rx_data
+	fetch 2,mem_le_protocol_rx_data
+	beq DPI_ACK,p_mouse_le_receive_dpi_data_set
+	beq REPORT_ACK,p_mouse_le_receive_report_data_set
+	beq GET_DPI,p_mouse_le_get_dpi_data_info
+	rtn
+
+//opcode:f5 + datatype:05(mouse) +	dpi level
+p_mouse_le_receive_dpi_data_set:
+	fetch 1,mem_le_protocol_rx_data+2
+	branch p_mouse_dpi_set
+
+//opcode:f4 + datatype:05(mouse) +	report data
+p_mouse_le_receive_report_data_set:
+	fetch 1,mem_le_protocol_rx_data+2
+	branch p_mouse_report_set
+
+//add ff00 service, tx uuid=ff01 rx uuid=ff02
+p_le_parse_att_read_by_group_type_request:
+	call le_get_search_handle_start_end_common
+	copy contr,temp
+	call p_mouse_le_service_change
+	copy,temp,contr
+ 	call le_get_search_att_type
+	branch le_send_att_read_by_group_type_response
+
+p_mouse_le_service_change:
+	fetch 2,mem_le_search_handle_start
+	sub pdata,ROM_MAX_HANDLE,null
+	rtn positive
+	fetch 1,mem_le_service_change_flag
+	nrtn blank
+	jam 1,mem_le_service_change_flag
+	setarg mem_ui_le_uuid_table_new
+	store 2,mem_ui_le_uuid_table
+	rtn
+
+//ask service detail
+p_le_parse_att_read_by_type_request:
+	call le_get_search_handle_start_end_common
+	copy contr,temp
+	call p_mouse_le_uuid_reinit
+	call p_mouse_le_service_change
+	copy,temp,contr
+	call le_get_search_att_type
+	branch le_send_att_read_by_type_response
+
+//service reinit rom service
+p_mouse_le_uuid_reinit:
+	fetch 1,mem_le_service_change_flag
+	rtn blank
+	jam 0,mem_le_service_change_flag
+	setarg MOUSE_BLE_ATT_LIST_ADDR
+	store 2,mem_ui_le_uuid_table
+	rtn
+
+p_le_pairing_sm:
+	call le_fifo_check_nearly_full
+	nrtn blank	
+	fetch 1,mem_le_pairing_state
+	beq FLAG_LE_PARING_SEND_MASTER_IDENTIFICATION,p_le_pairng_sm_send_master_indentification
+	branch le_pairing_sm+4
+p_le_pairng_sm_send_master_indentification:	
+	fetch 1,mem_le_preq_resp_key_distribution
+	fetcht 1,mem_le_pres_resp_key_distribution
+	iand temp,pdata
+	isolate0 LE_INITATOR_IRK_BIT,pdata
+	branch le_parse_start_enc_rsp_after_auth_end,true
+	jam FLAG_LE_PARING_SEND_INDENTITY_INFORMATION,mem_le_pairing_state
+	branch p_le_send_smp_identity_information	
+p_le_send_smp_identity_information:
+	force 17,rega
+	call le_fifo_malloc_tx_l2cap_smp
+	setarg SMP_IDENTITY_INFORMATION
+	istore 1,contw
+	arg 16,loopcnt
+	arg mem_le_ltk,contr
+	branch memcpy
+endif
+
+
+p_mouse_motion:
+ifdef AUTO_SEND
+	branch p_mouse_motion_auto
+endif
+	disable user
+	setarg 0
+	store 6,mem_mouse_x
+	call p_mouse_check_sensor_data
+	setarg 0x0089			
+	call twspi_write
+	call p_mouse_seting_sensor_type
+	call mouse_zwheel
+	call mouse_t_zwheel
+	call p_mouse_key
+	fetch 1,mem_mouse_key
+	and_into 0x1f,pdata
+	store 1,mem_mouse_key
+	nbranch p_mouse_drawing_optima_init,user
+	jam 0,mem_device_tx_heart_data_flag
+	jam 1,mem_24g_rf_data_flag
+	call p_mouse_drawing_optima
+	branch mouse_no_data_timer_init
+
+p_mouse_drawing_optima_init:
+	jam 0,mem_24g_rf_data_flag
+	branch mouse_drawing_optima_init
+
+p_mouse_check_sensor_data:
+	fetch 1,mem_spi_write_flash_sm
+	rtnne FLASH_SM_NO_BUYS
+	fetch 1,mem_config_sensor_type
+	beq KA8G2,p_mouse_ka8g2_sensor_motion
+	branch mouse_check_sensor_data+3
+
+p_mouse_ka8g2_sensor_motion:
+	call mouse_clear_sensor_data
+	fetch 1,mem_sensor_motion_gpio
+	beq GPIO_DISABLE,p_mouse_ka8g2_sensor_motion_1
+	fetcht 1,mem_sensor_motion_gpio
+	call gpio_get_bit
+	nrtn true
+p_mouse_ka8g2_sensor_motion_1:	
+	setarg PAN_REG_PID_L
+	call twspi_read
+	bne PKA8G2_ID1,mouse_twspi_reset
+	branch mouse_p3212_sensor_motion_2
+	
+p_mouse_drawing_optima:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	rtnbit1 MOUSE_ENABLE_24G_500Hz
+	rtnbit1 MOUSE_ENABLE_24G_1000
+	rtnbit1 MOUSE_ENABLE_USB_500
+	rtnbit1 MOUSE_ENABLE_USB_1000
+	fetch 1,mem_config_sensor_type
+	rtneq P3212
+	rtneq KA8G2
+ifdef USB
+	call p_usb_store_mem
+endif
+	call mouse_drawing_optima
+ifdef USB
+	call p_usb_get_mem
+endif
+	rtn
+
+p_mouse_key:
+	call p_mouse_check_key_gpio
+	call mouse_ghost_key_check
+	branch mouse_key+2
+
+p_mouse_check_key_gpio:
+	fetch 1,mem_sensor_shutdown_flag
+	ncall mouse_check_key_gpio_once,blank
+	arg 0,rega
+	call p_mouse_check_lkey_gpio
+	//call p_mouse_check_rkey_gpio
+	//call p_mouse_check_mkey_gpio
+	call p_mouse_check_bkkey_gpio
+	call p_mouse_check_fwkey_gpio
+	branch mouse_check_key_gpio_next	
+
+p_mouse_check_lkey_gpio:
+	fetch 1,mem_lbutton_gpio
+	call p_mouse_gpio_config_output_high
+	call mouse_check_lkey_gpio
+	fetcht 1,mem_lbutton_gpio
+	call mouse_gpio_config_input_pu
+p_mouse_check_rkey_gpio:
+	fetch 1,mem_rbutton_gpio
+	call p_mouse_gpio_config_output_high
+	call mouse_check_rkey_gpio
+	fetcht 1,mem_rbutton_gpio
+	call mouse_gpio_config_input_pu
+p_mouse_check_mkey_gpio:
+	fetch 1,mem_mbutton_gpio
+	call p_mouse_gpio_config_output_high
+	call mouse_check_mkey_gpio
+	fetcht 1,mem_mbutton_gpio
+	branch mouse_gpio_config_input_pu	
+
+p_mouse_check_bkkey_gpio:
+	fetch 1,mem_bk_button_gpio
+	rtneq GPIO_DISABLE
+	jam MOUSE_BK_KEY,mem_mouse_key_temp
+	fetch 1,mem_mouse_bkkey_press_status
+	copy pdata,regc
+	fetcht 1,mem_bk_button_gpio
+	fetch 1,mem_matrix_public_gpio
+	beq GPIO_DISABLE,p_mouse_3io6key_bk_check
+	branch mouse_check_bkkey_gpio_next
+p_mouse_3io6key_bk_check:
+	fetch 1,mem_bk_button_gpio
+	call p_mouse_gpio_config_output_low
+	fetcht 1,mem_bk_button_gpio
+	branch mouse_3io6key_bk_check	
+
+p_mouse_check_fwkey_gpio:
+	fetch 1,mem_fw_button_gpio
+	rtneq GPIO_DISABLE
+	jam MOUSE_FW_KEY,mem_mouse_key_temp
+	fetch 1,mem_mouse_fwkey_press_status
+	copy pdata,regc
+	fetcht 1,mem_fw_button_gpio
+	fetch 1,mem_matrix_public_gpio
+	beq GPIO_DISABLE,p_mouse_3io6key_fw_check
+	branch mouse_check_fwkey_gpio_next
+p_mouse_3io6key_fw_check:
+	fetch 1,mem_fw_button_gpio
+	call p_mouse_gpio_config_output_low
+	fetcht 1,mem_fw_button_gpio
+	branch mouse_3io6key_fw_check
+
+//input:pdata gpio number
+p_mouse_gpio_config_output_high:
+	rtneq GPIO_DISABLE
+	arg gpcfg_output_high,temp
+	branch gpio_config_function_int
+		
+//input:pdata gpio number
+p_mouse_gpio_config_output_low:
+	rtneq GPIO_DISABLE
+	arg gpcfg_output_low,temp
+	branch gpio_config_function_int
+/*
+p_mouse_ghost_key_check:
+	jam 0,mem_mouse_matrix_key_cow_count
+	jam 0,mem_mouse_matrix_key_row_count
+	jam 0,mem_mouse_ghost_flag
+	copy pdata,temp
+	call p_mouse_ghost_key_check_L_FW
+	call p_mouse_ghost_key_check_R_BK
+	branch mouse_ghost_key_check+6
+
+p_mouse_ghost_key_check_L_FW:
+	and temp,MOUSE_L_FW_BUTTON,pdata
+	beq MOUSE_L_FW_BUTTON,mouse_matrix_cow_more_than_one_key
+	rtn
+
+p_mouse_ghost_key_check_R_BK:
+	and temp,MOUSE_R_BK_BUTTON,pdata
+	beq MOUSE_R_BK_BUTTON,mouse_matrix_cow_more_than_one_key
+	rtn
+*/
+
+//=============================USB CODE PATCH =============================//
+
+ifdef USB
+p_mouse_usb_offline_gpio_init:
+	fetch 1,mem_usb_offline_gpio_retention
+	store 1,mem_usb_offline_check_gpio
+	rtn
+
+/************************set report patch************************/
+p_usb_class_type:
+	set0 mark_isstr,mark
+	fetch 1,mem_usb_setup_bmRequestType
+	and_into 0x80,pdata
+	beq OUT_DEVICE,p_usb_out_device
+	branch usb_class_type+4
+
+p_usb_out_device:
+	fetch 1,mem_usb_setup_bmRequestType
+	rshift4 pdata,pdata
+	rshift pdata,pdata
+	and_into 0x03,pdata
+	beq STANDARD_REQ,usb_out_standard_req
+	beq CLASS_REQ,p_usb_out_class_req
+	branch usb_out_device+4
+
+p_usb_out_class_req:
+	fetch 1,mem_usb_setup_bRequest
+	beq SET_REPORT,p_usb_set_report
+	branch usb_out_class_req+1
+
+p_usb_set_report:
+	nop 15000	//delay 1ms
+	branch usb_set_report
+
+/************************usb mac wakeup patch************************/
+p_usb_tx:
+	fetch 1,mem_usb_tx_enable
+	rtn blank
+	fetch 1,core_usb_txbusy
+	and_into 0x0f,pdata
+	nbranch usb_inwake_state_tx_dispose,blank
+	branch usb_tx+3
+
+
+/************************usb and mouse memalloc conflict patch************************/
+//0x09f6 mem_usb_status
+//0x09f6 mem_init_cnt
+p_usb_store_mem:
+	arg mem_usb_status,contr
+	arg mem_usb_mem_temp,contw
+	branch memcpy16
+	
+p_usb_get_mem:
+	arg mem_usb_status,contw
+	arg mem_usb_mem_temp,contr
+	branch memcpy16
+
+
+/************************add usb name patch************************/
+p_mouse_usb_check_enable:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	rtnbit0 MOUSE_ENABLE_USB
+	jam MOUSE_USB_INTERFACE_REMOVE,mem_mouse_usb_vdd_status
+	rtn
+
+p_mouse_usb_config_param:
+	call p_mouse_usb_config_kb_check
+	call p_mouse_usb_report_rate_set
+	call p_mouse_usb_config_param_setup
+p_mouse_usb_device_name_config:
+	fetch 1,mem_usb_device_name_retention
+	rtn blank
+	arg mem_usb_device_name_retention,contr
+	arg mem_string2,contw
+	arg 30,loopcnt
+	branch memcpy
+
+p_mouse_usb_config_kb_check:
+	jam DONGLE_KB_BIND_EEPROM_OFFECT,mem_mouse_usb_keyboard_flag
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	rtnbit0 MOUSE_ENABLE_KEYBOARD
+	jam DONGLE_KB_BIND_SUCCESS,mem_mouse_usb_keyboard_flag
+	rtn
+
+p_mouse_usb_config_param_setup:
+	call usb_tx_interval_config
+	call p_mouse_usb_vid_pid_config
+p_mouse_usb_hid_icon_config:
+	fetch 1,mem_mouse_usb_keyboard_flag
+	branch dongle_usb_hid_icon_config+1
+	
+p_mouse_usb_vid_pid_config:
+	fetch 1,mem_usb_vid_pid
+	rtn blank
+	fetch 1,mem_mouse_usb_keyboard_flag
+	beq DONGLE_KB_BIND_SUCCESS,dongle_usb_vid_pid_for_suit
+	branch dongle_usb_vid_pid_for_mouse_only_auto_pair
+
+p_usb_timer_check:
+	call disable_user
+	fetcht 4,mem_btclk_sensor
+	copy clkn_bt,pdata
+	isub temp,null
+	ncall p_usb_timer_timeout,positive
+	copy pdata,regb
+	fetch 4,mem_btclk_sensor
+	fetcht 1,mem_wire_usb_interval
+	iadd temp,temp
+	copy regb,pdata
+	isub temp,null		
+	nrtn positive
+	set0 28,pdata
+	store 4,mem_btclk_sensor
+	branch enable_user
+
+p_usb_timer_timeout:
+	rtn zero
+	set1 28,pdata
+	rtn
+p_usb_timer_init:
+	setarg 0
+	store 4,mem_btclk_sensor
+	rtn
+
+p_select_system_clk_24M_dpll:
+	jam SYSTEM_CLK_24M,mem_system_clk
+	jam clksel_dpll_24M,core_clksel
+	setarg 5999
+	store 2,core_halfslot	//about 250us
+	branch calc_new_param
+
+p_mouse_usb_report_rate_set:
+	call p_usb_timer_init
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit1 MOUSE_ENABLE_USB_250,p_usb_report_rate_set_250hz
+	bbit1 MOUSE_ENABLE_USB_500,p_usb_report_rate_set_500hz
+	bbit1 MOUSE_ENABLE_USB_1000,p_usb_report_rate_set_1000hz
+p_usb_report_rate_set_125hz:
+	jam 32,mem_wire_usb_interval
+	rtn
+p_usb_report_rate_set_250hz:
+	jam 16,mem_wire_usb_interval
+	rtn
+p_usb_report_rate_set_500hz:
+	jam 8,mem_wire_usb_interval
+	rtn
+p_usb_report_rate_set_1000hz:
+	jam 4,mem_wire_usb_interval
+	rtn
+	
+p_mouse_usb_isr:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	rtnbit0 MOUSE_ENABLE_USB
+	call p_mouse_usb_interface_check
+	fetch 1,mem_mouse_usb_vdd_status
+	rtnne MOUSE_USB_INTERFACE_INSERT
+	branch usb_isr
+
+
+p_mouse_usb_interface_check:
+	fetcht 1,mem_usb_offline_check_gpio
+	call gpio_get_bit
+	nbranch p_mouse_usb_gpio_low,true
+	branch p_mouse_usb_gpio_high
+
+p_mouse_usb_gpio_low:
+	fetch 1,mem_mouse_usb_vdd_status
+	rtneq MOUSE_USB_INTERFACE_REMOVE
+	jam MOUSE_USB_INTERFACE_REMOVE,mem_mouse_usb_vdd_status
+	jam 0,mem_usb_mode_enable		//enable select device
+	jam 0,mem_usb_device_enumeration_endflag
+	jam 0,mem_usb_status
+	jam 0,mem_usb_state
+	fetch 2,core_clkoff
+	set1 CLOCK_OFF_USB,pdata
+	store 2,core_clkoff
+	jam 1,mem_lpm_mode
+	call select_system_clk_12M_dpll
+	branch mouse_soft_reset
+//	call mouse_drawing_optima_init	
+//	call p_mouse_sensor_powerdown
+//	disable wake	//using for mouse_init_sensor_reset	
+//	branch mouse_init_wireless
+
+p_mouse_usb_gpio_high:
+	fetch 1,mem_mouse_usb_vdd_status
+	rtneq MOUSE_USB_INTERFACE_INSERT
+	jam MOUSE_USB_INTERFACE_INSERT,mem_mouse_usb_vdd_status
+	jam 1,mem_usb_mode_enable		//disabl select device
+	setarg 0
+	store 2,mem_24g_pair_timeout
+	store 2,mem_24g_reconn_timeout
+	call p_mouse_multi_led_blink_disable
+	jam 0,mem_lpm_mode
+	call p_select_system_clk_24M_dpll
+	call mouse_24g_stop
+	call mouse_stop_bluetooth_mode
+	disable wake
+	call mouse_init_sensor_reset
+
+	setarg p_mouse_usb_config_param
+	store 2,mem_cb_usb_config
+	fetch 1,mem_usb_tx_interval_retention
+	store 1,mem_usb_tx_interval
+	arg mem_usb_vid_pid_retention,contr
+	arg mem_usb_vid_pid,contw
+	arg 9,loopcnt
+	call memcpy
+	branch usb_init
+
+p_mouse_usb_mode_flag_check:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	rtnbit0 MOUSE_ENABLE_USB
+	fetch 1,mem_mouse_usb_vdd_status
+	beq MOUSE_USB_INTERFACE_INSERT,p_mouse_usb_mode_flag_enable
+	beq MOUSE_USB_INTERFACE_REMOVE,p_mouse_usb_mode_flag_disable
+	rtn
+
+p_mouse_usb_mode_flag_enable:
+	fetch 1,mem_usb_mode_enable
+	rtn blank
+	jam 1,mem_mouse_pair_success	
+	rtn
+p_mouse_usb_mode_flag_disable:
+	fetch 1,mem_usb_mode_enable
+	rtn blank
+	jam 0,mem_mouse_pair_success	
+	rtn
+
+p_mouse_usb_mode:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	rtnbit0 MOUSE_ENABLE_USB
+	fetch 1,core_usb_addr
+	store 1,mem_usb_addr
+	rtnbit0 7
+	call p_usb_timer_check
+	nrtn user
+	call mouse_motion
+	nrtn user
+	fetch 1,core_usb_txbusy
+	rtnbit1 2
+	branch p_mouse_push_data_to_usb
+
+p_mouse_push_data_to_usb:
+	fetch 1,core_usb_addr
+	rtnbit0 7
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit0 MOUSE_ENABLE_KEYBOARD,p_mouse_push_mouse_data_to_usb
+	fetch 1,mem_customer_key
+	beq 1,p_mouse_push_keyboard_data_to_usb
+p_mouse_push_mouse_data_to_usb:
+	call dongle_usb_tx_ms_data
+	setarg MS_REPORT_ID
+	store 1,mem_usb_mouse_data
+	fetch 7,mem_mouse_key
+	istore 7,contw
+	rtn
+
+p_mouse_push_keyboard_data_to_usb:
+	fetch 1,mem_customer_data_trigger
+	branch p_mouse_push_release_keyboard_data_to_usb,blank
+	fetch 8,mem_customer_key_press+1
+p_mouse_push_keyboard_package_data_to_usb:
+	store 8,mem_pdatatemp
+	fetch 1,mem_customer_key_press
+	beq KB_MULTIKEY_REPORT_ID,p_mouse_push_multimedia_key_data_to_usb
+	beq KB_SYSTEM_CONCTRL_REPORT_ID,p_mouse_push_systemctrl_key_data_to_usb
+	call dongle_usb_tx_kb_data
+	fetch 8,mem_pdatatemp
+	store 8,mem_usb_kb_data
+	rtn
+
+p_mouse_push_release_keyboard_data_to_usb:
+	fetch 8,mem_customer_key_release+1
+	branch p_mouse_push_keyboard_package_data_to_usb
+
+p_mouse_push_multimedia_key_data_to_usb:
+	call dongle_usb_tx_enable_ep2
+	jam USB_EP2_MULTIKEY,mem_usb_ep2_data
+	setarg KB_MULTIKEY_REPORT_ID
+	store 1,mem_usb_kb_multikey
+	fetch 2,mem_pdatatemp
+	istore 2,contw
+	rtn
+
+p_mouse_push_systemctrl_key_data_to_usb:
+	call dongle_usb_tx_enable_ep2
+	jam USB_EP2_SYSTEMKEY,mem_usb_ep2_data
+	setarg KB_SYSTEM_CONCTRL_REPORT_ID
+	store 1,mem_usb_kb_system
+	fetch 1,mem_pdatatemp
+	istore 1,contw
+	rtn
+
+endif
+
+
+//=============================ZCODE CODE PATCH =============================//
+p_mouse_setting_config:
+	rtn wake
+	jam ZCODE_00,mem_zcode_temp_param0
+	branch p_zcode_entrance
+
+p_mouse_cb_fuction:
+	jam ZCODE_01,mem_zcode_temp_param0
+	branch p_zcode_entrance
+
+p_mouse_start_work_next:
+	jam ZCODE_10,mem_zcode_temp_param0
+	branch p_zcode_entrance
+
+p_mouse_24g_pairing_complete:
+	jam ZCODE_11,mem_zcode_temp_param0
+	branch p_zcode_entrance
+
+p_mouse_setgpio_hibernate:
+	jam ZCODE_20,mem_zcode_temp_param0
+	branch p_zcode_entrance
+
+p_mouse_24g_attempt_success:
+	jam ZCODE_21,mem_zcode_temp_param0
+	branch p_zcode_entrance
+
+ifdef BLE
+p_mouse_le_bb_disconnected:
+	jam ZCODE_30,mem_zcode_temp_param0
+	branch p_zcode_entrance
+	
+p_mouse_start_discovery:
+	jam ZCODE_31,mem_zcode_temp_param0
+	branch p_zcode_entrance
+endif
+
+p_mouse_report_param_set:
+	rtn wake
+	jam ZCODE_40,mem_zcode_temp_param0
+	branch p_zcode_entrance
+	
+//=============================ZCODE PATCH ===================================//
+p_zcode_entrance:
+	fetcht 1,mem_zcode_temp_param0 // zcode number @ high 4bit
+	rshift4 temp,temp
+	fetch 1,mem_zcode_current_number
+	isub temp,null
+	branch p_zcode_run,zero // if this zcode is already loaded, do not load again
+	storet 1,mem_zcode_current_number
+	increase 1,temp
+	setarg ZCODE_BUFF_SIZE
+	imul32 temp,temp
+	fetch 3,mem_xip_flash_offset
+	isub temp,pdata
+	fetcht 3,mem_flash_start_addr
+	iadd temp,pdata
+	store 3,mem_flash_address
+p_zcode_read_loop:
+	call p_zcode_buff_clear
+	call p_read_data_from_flash
+	call p_zcode_data_check
+	nbranch p_zcode_read_loop,zero
+	
+	fetch 4,mem_zcode_buff
+	fetcht 4,mem_zcode_head	//p_start
+	isub temp,null
+	nbranch p_zcode_read_loop,zero	//sometimes we will lost p_start,read flash again
+
+	setarg mem_zcode_buff
+	store 2,mem_patch_ptr
+	jam ZCODE_CODE_SIZE,mem_patch_len
+	call load_ucode
+	setarg 0
+	store 4,mem_patch_ptr
+p_zcode_run:
+	fetch 1,mem_zcode_temp_param0
+	branch p_zcode
+
+p_zcode_buff_clear:
+	arg mem_zcode_buff,contw
+	arg 256,loopcnt
+	branch clear_mem	
+
+p_zcode_data_check:
+	arg mem_zcode_buff,contr
+	arg 0,rega
+	arg 63,loopcnt
+p_zcode_data_loop:
+	ifetch 4,contr
+	iadd rega,rega
+	loop p_zcode_data_loop
+	ifetch 4,contr
+	isub rega,null
+	rtn
+
+p_read_data_from_flash:
+	call spid_init_flash
+	call mouse_spid_flash_release_form_powerdown
+	fetch 3,mem_flash_address
+	arg ZCODE_BUFF_SIZE,temp
+	arg mem_zcode_buff,rega
+	call spid_read_flash
+	call mouse_spid_flash_powerdown
+	branch mouse_sensor_spi_init
+
+//==============================G24 SEARCH DONGLE===========================//
+ifdef SEARCH_DONGLE
+p_mouse_24g_search_dongle:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	rtnbit0 MOUSE_ENABLE_24G_SEARCH_DONGLE
+	fetch 1,mem_mouse_long_mult_flag
+	rtn blank
+	fetch 1,mem_24g_abort_pac
+	rtn blank
+	fetch 1,mem_mouse_search_dongle_interval
+	increase 1,pdata
+	and_into 3,pdata
+	store 1,mem_mouse_search_dongle_interval
+	nrtn blank	//400ms
+	jam 0,mem_mouse_search_dongle_ch
+p_mouse_24g_search_dongle_loop:
+	fetch 1,mem_mouse_search_dongle_ch
+	increase 1,pdata
+	store 1,mem_mouse_search_dongle_ch
+	sub pdata,G24_CH_NUMBER,null
+	nbranch p_mouse_24g_search_dongle_loop_end,positive
+	call p_g24_reconn_data_prep
+	call g24_transmit_receive_ack
+	nbranch p_mouse_24g_search_dongle_loop_retry,sync
+	nbranch p_mouse_24g_search_dongle_loop_retry,user3
+	call p_mouse_24g_search_dongle_success
+p_mouse_24g_search_dongle_loop_end:
+	call p_g24_txbuf_clear
+	fetch 1,mem_mouse_search_dongle_count
+	increase 1,pdata
+	store 1,mem_mouse_search_dongle_count
+	beq G24_CH_POLL_COUNT,p_mouse_24g_search_dongle_check
+	rtn
+
+p_mouse_24g_search_dongle_loop_retry:
+	call g24_ch
+	branch p_mouse_24g_search_dongle_loop
+
+p_mouse_24g_search_dongle_check:
+	jam 0,mem_mouse_search_dongle_count
+	fetch 1,mem_mouse_search_dongle_action
+	rtnbit1 G24_DISCONN_STATE
+	set1 G24_DISCONN_STATE,pdata
+	store 1,mem_mouse_search_dongle_action
+	fetch 2,mem_mouse_24g_search_dongle_time_init		
+	store 2,mem_mouse_no_data_timer
+	branch p_mouse_sensor_powerdown
+
+p_mouse_24g_search_dongle_success:
+	fetch 1,mem_24g_abort_pac
+	branch mouse_24g_search_dongle_init,blank
+	jam 0,mem_mouse_search_dongle_count
+	fetch 1,mem_mouse_search_dongle_action
+	rtnbit0 G24_DISCONN_STATE
+	set0 G24_DISCONN_STATE,pdata
+	store 1,mem_mouse_search_dongle_action
+	call mouse_no_data_timer_init
+	branch p_mouse_init_sensor_wakeup
+endif
+
+//==============================POWER CTRL===========================//
+
+ifdef PW_CTRL	
+p_power_ctrl_start:
+	fetch 2,mem_ui_state_map
+	rtnbit1 UI_STATE_BLE_ADV
+	rtnbit1 UI_STATE_BT_RECONNECT
+	rtnbit1 UI_STATE_BT_DISCOVERY	
+ifdef RSSI_SORT
+	call p_rssi_sort	
+	call p_rssi_average
+else
+	fetchr rega,2,mem_rssi_signal_buf_ptr
+	call rssi_average
+endif
+	storet 1,mem_rssi_avg_received
+	branch power_ctrl_rssi_avg_compare
+
+ifdef RSSI_SORT
+p_rssi_average:
+	arg mem_mouse_rssi_signal_buf_temp+6,rega
+	arg 10,pdata
+	branch rssi_average+2
+
+p_rssi_sort:
+	call p_memcpy16
+	arg mem_mouse_rssi_signal_buf_temp,regb
+	fetch 1,mem_rssi_buff_index
+	increase 1,pdata
+	copy pdata,loopcnt
+	branch p_bubble_sort
+
+p_memcpy16:
+	arg mem_mouse_rssi_signal_buf_patch,contr
+	arg mem_mouse_rssi_signal_buf_temp,contw
+	branch memcpy16	
+
+//input:regb buff ptr,pdata buff length
+p_bubble_sort:
+	increase -1,loopcnt
+	deposit loopcnt
+	rtn blank
+p_external_loop:
+	copy loopcnt,rega
+	increase -1,rega
+	copy regb,contr
+p_internal_loop:
+	ifetch 1,contr
+	copy contr,contw
+	ifetcht 1,contr
+	isub temp,null
+	call p_sort_up
+	increase -1,contr
+	increase -1,rega
+	branch p_internal_loop,positive
+	loop p_external_loop
+	rtn
+p_sort_up:
+	call p_exchange_data,positive
+	rtn
+p_exchange_data:
+	increase -1,contw
+	istoret 1,contw
+	istore 1,contw
+	rtn
+endif
+endif
+
+
+//==============================RSSI PATCH===========================//
+
+ifdef RSSI_PATCH
+p_save_rssi:
+	// bit6 is signed bit. 
+	fetch 1,modem_nb_pow 
+	isolate1 6,pdata 
+	setflag true,7,pdata 
+	store 1,mem_modem_rssi 
+	
+	fetch 1,modem_gain 
+	and pdata,0x0f,temp 
+	lshift temp,temp 
+	rshift4 pdata,pdata 
+	iadd temp,temp 
+	mul32 temp,3,rega // (abb_gain + lna_gain*2)*3 
+
+	fetch 1,mem_modem_rssi 
+	call p_byte_sign_extern 
+	sub pdata,0,pdata //-modem_nb_pow 
+	iadd rega,pdata // (abb_gain + lna_gain*2)*3 + (-modem_nb_pow) 
+	increase -9,pdata // (abb_gain + lna_gain*2)*3 + (-modem_nb_pow) - 9 
+	and pdata,0x1ff,pdata 
+	isolate1 8,pdata 
+	nbranch p_save_rssi_store,true 
+	setarg 0 
+p_save_rssi_store:
+	store 1,mem_rssi_hex
+	rtn
+p_byte_sign_extern:
+	isolate1 7,pdata
+	nrtn true
+	arg 0xff00,temp
+	ior temp,pdata
+	rtn
+
+endif
+
+
+//=============================G24 DEBUG  PATCH ===================================//
+
+ifdef UART_LOG
+
+p_device_hardware_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
+	rtn
+
+p_g24_txbuf_data_print:
+	arg 12,loopcnt
+	arg mem_24g_txbuf_new,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
+	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
+	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
+
+log_len0:
+	call uarta_prepare_tx
+	setarg 0x656c
+	istore 2,contwu
+	setarg 0x306e
+	istore 2,contwu
+	call uarta_send
+	branch log_end
+
+//input 1byte @pdata
+log_byte:
+	call uarta_prepare_tx
+	call hex2ascii
+//	istore 4,contu	//0x
+	istore 2,contwu
+	branch uarta_send
+
+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
+
+log_colon:
+	call uarta_prepare_tx
+	setarg 0x3a
+	istore 1,contwu
+	branch uarta_send	
+endif
+
+ifdef AUTO_SEND
+p_mouse_motion_auto:
+	disable user
+	setarg 0
+	store 6,mem_mouse_x
+	fetch 1,0X4FF0
+	increase 1,pdata
+	store 1,0X4FF0
+	sub pdata,50,null
+	branch p_ms_x_right,positive
+
+	sub pdata,100,null
+	branch p_ms_y_up,positive
+
+	sub pdata,150,null
+	branch p_ms_x_left,positive
+	sub pdata,200,null
+	branch p_ms_y_down,positive
+	rtn
+
+p_ms_x_right:
+	setarg 5
+	store 2,mem_mouse_x
+p_data:
+	enable user
+	branch mouse_no_data_timer_init
+
+p_ms_y_up:
+	setarg 5
+	store 2,mem_mouse_y
+	branch p_data
+
+p_ms_x_left:
+	setarg -5
+	store 2,mem_mouse_x
+	branch p_data
+p_ms_y_down:
+	fetch 1,0X4FF0
+	beq 200,p_mem_usb_data_square_cnt_set0
+	setarg -5
+	store 2,mem_mouse_y
+	branch p_data
+p_mem_usb_data_square_cnt_set0:
+	jam 0,0X4FF0
+	branch p_ms_y_down+2
+
+endif
+
+
+
+
Index: program/patch_sdk.prog
===================================================================
--- /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/program/patch_sdk.prog	(nonexistent)
+++ /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/program/patch_sdk.prog	(working copy)
@@ -0,0 +1,11 @@
+define DEBUG_RF_INIT
+define SECURE_CONNECTION
+define SIMPLE_PAIRING
+define REVD
+define ROMCODE
+define PATCH
+define SDKCODE
+ifdef SDKCODE
+INCLUDE "bt_format"
+org 0x0000  // start from patch ram address start
+endif
Index: program/z.prog
===================================================================
--- /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/program/z.prog	(nonexistent)
+++ /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/program/z.prog	(working copy)
@@ -0,0 +1,359 @@
+org 0x10001
+z_entrance0:
+	beq ZCODE_00,z_mouse_init_set_config
+	beq ZCODE_01,z_mouse_cb_fuction
+	rtn
+z_mouse_init_set_config:
+	call g24_transmit_init
+	call g24_chmap_param_init
+	call p_send_time_long_wake
+	call mouse_gpio_init
+ifdef BLE	
+	call p_mouse_le_name_load
+endif
+	call mouse_param_init
+	call z_mouse_led_multi_parm_init
+	call z_mouse_store_normal_tx_power
+	call le_set_config_fixed_ltk
+	call z_le_set_justwork
+	call le_set_fixed_ltk
+	call le_set_config_read_authentication
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit1 MOUSE_ENABLE_EEPROM,mouse_load_eeprom_info_check
+	bbit1 MOUSE_ENABLE_FLASH,z_mouse_load_flash_info_check
+	rtn
+
+z_le_set_justwork:
+	setarg 0x01000302
+	store 4,mem_le_pres
+	setarg 0x030010
+	store 3,mem_le_pres_max_keysize
+	jam 1,mem_le_pairing_mode
+	rtn
+
+z_mouse_load_flash_info_check:
+	call spid_init_flash
+	call mouse_spid_flash_release_form_powerdown
+	call mouse_information_flash_parameters
+	call spid_read_flash
+	call mouse_spid_flash_powerdown
+	call z_mouse_app_initflag_check
+	branch mouse_sensor_spi_init
+
+z_mouse_app_initflag_check:
+	fetch 2,mem_store_flag
+	arg EEPROM_INIT_FLAG,temp
+	isub temp,null
+	branch mouse_load_device_info,zero
+	call z_mouse_24g_report_param_init
+	branch mouse_app_initflag_check+4
+
+z_mouse_24g_report_param_init:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit1 MOUSE_ENABLE_24G_250Hz,z_mouse_set_report_250hz
+	bbit1 MOUSE_ENABLE_24G_500Hz,z_mouse_set_report_500hz
+	bbit1 MOUSE_ENABLE_24G_1000,z_mouse_set_report_1000hz
+z_mouse_set_report_125hz:
+	jam REPORT_125,mem_mouse_24g_report
+	rtn
+z_mouse_set_report_250hz:
+	jam REPORT_250,mem_mouse_24g_report
+	rtn
+z_mouse_set_report_500hz:
+	jam REPORT_500,mem_mouse_24g_report
+	rtn
+z_mouse_set_report_1000hz:
+	jam REPORT_1000,mem_mouse_24g_report
+	rtn	
+
+z_mouse_store_normal_tx_power:
+	fetch 1,mem_tx_power
+	store 1,mem_normal_tx_power
+	rtn
+
+z_mouse_led_multi_parm_init:
+	jam 0,mem_mouse_multi_led_blink_enable		//led new interface init
+	jam 0,mem_mouse_dpi_led_blink_enable
+	jam 0,mem_mouse_dpi_blink_time
+	branch p_mouse_device_led_all_off
+
+z_mouse_cb_fuction:
+//	setarg mouse_24g_before_lpm_sleep
+//	store 2,mem_cb_before_lpm_sleep
+	setarg p_mouse_24g_package_data
+	store 2,mem_cb_24g_transmit_data
+ifdef SEARCH_DONGLE
+	setarg p_mouse_24g_search_dongle
+	store 2,mem_cb_24g_search_receiver
+endif
+	branch mouse_cb_fuction+6
+
+org 0x20001
+z_entrance1:
+	beq ZCODE_10,z_mouse_start_work_next
+	beq ZCODE_11,z_mouse_24g_pairing_complete
+	rtn
+
+z_mouse_start_work_next:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit1 MOUSE_ENABLE_24G_FIRST_AUTO_PAIRING,z_mouse_24g_first_start_auto_pair_mode
+	fetch 1,mem_device_flag
+	beq MODE_24G_DEVICE,z_mouse_24g_start_mode
+z_mouse_le_fast_conn_judge:
+	call p_mouse_device_le_reconn_led_config
+	call mouse_bluetooth_fast_conn_disable
+	fetch 1,mem_device_flag
+	beq MODE_BT_DEVICE1,z_mouse_le_device1_judge
+	beq MODE_BT_DEVICE2,z_mouse_le_device2_judge
+	rtn
+
+z_mouse_le_device1_judge:
+	fetch 6,mem_device1_addr
+	branch z_mouse_le_addr_compare
+
+z_mouse_le_device2_judge:
+	fetch 6,mem_device2_addr
+z_mouse_le_addr_compare:
+	fetcht 6,mem_mouse_compare_addr_ff
+	isub temp,null
+	branch mouse_buletooth_fast_conn_init,zero
+	branch mouse_start_reconnect_device	
+
+z_mouse_24g_start_mode:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	bbit0 MOUSE_ENABLE_24G,mouse_24g_mode_setup_error
+	call p_mouse_device_24g_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,z_mouse_24g_reconn_general_dongle
+	bbit0 MOUSE_ENABLE_24G_POWER_ON_PAIRING,z_mouse_24g_reconn_general_dongle
+	call mouse_key_check_once		// pdata output:00
+	and rega,0x07,pdata
+	fetcht 1,mem_mouse_commbination_key_24g
+	isub temp,null
+	branch p_mouse_24g_start_pair_mode,zero
+	branch mouse_24g_reconn_general_dongle
+
+z_mouse_24g_first_start_auto_pair_mode:
+	call mouse_wakeup_from_power_check
+	branch mouse_24g_first_start_reconn,user  	// wake from hibernate :enble user
+z_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
+
+z_mouse_24g_pairing_complete:
+	jam 1,mem_device_pair_flag
+	jam 10,mem_le_battery_level_updata_timer
+	jam 5,mem_device_tx_dpi_data_delay_timer
+	call p_mouse_agc_disable_nomal_power
+	call mouse_no_data_timer_init
+	call p_mouse_device_poweron_led_config
+	branch mouse_24g_pairing_complete
+
+org 0x30001
+z_entrance2:
+	beq ZCODE_20,z_mouse_setgpio_hibernate
+	beq ZCODE_21,z_mouse_24g_attempt_success
+	rtn	
+
+z_mouse_setgpio_hibernate:
+//	call z_mouse_read_sensor_common
+//	fetcht 1,mem_sensor_motion_gpio
+//	call gpio_get_bit
+//	branch z_mouse_setgpio_hibernate,true
+	call mouse_set_sdio_high
+	call clear_wake
+	call mouse_before_hibernate_wheel_gpio_set
+	fetch 1,mem_mouse_sensor_sdio_gpio
+	call p_mouse_gpio_config_output_high
+	call p_mouse_lpm_before_common
+	call mouse_gpio_pu_idle
+ifdef LOGO_LED
+	call p_mouse_logo_led_off
+endif
+	call p_mouse_device_led_all_off
+	call z_mouse_device_switch_gpio_high_impedance
+ifdef ADC
+	call p_mouse_adc_gpio_set_before_hibernate
+endif
+	call z_mouse_wheel_gpio_set_before_hibernate
+	fetcht 1,mem_sensor_motion_gpio
+	call mouse_gpio_config_input_pd
+	fetcht 1,mem_sensor_motion_gpio
+	branch gpio_clr_wake
+
+//z_mouse_read_sensor_common:
+//	arg PAN_REG_MOTION_STAUS,pdata
+//	call twspi_read
+//	branch mouse_read_sensor_common
+
+z_mouse_device_switch_gpio_high_impedance:
+	fetch 1,mem_device_switch_gpio
+	rtneq GPIO_DISABLE
+	fetcht 1,mem_device_switch_gpio
+	branch gpio_set_high_impedance
+
+z_mouse_wheel_gpio_set_before_hibernate:
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	rtnbit0 MOUSE_ENABLE_WHEEL_WAKE_UP_CANCEL
+z_mouse_wheel_clr_wakeup:
+	fetcht 1,mem_whee_a_data_gpio
+	call gpio_clr_wake
+	fetcht 1,mem_whee_b_data_gpio
+	call gpio_clr_wake	
+	fetcht 1,mem_whee_a_data_gpio
+	call mouse_gpio_config_input_pd
+	fetcht 1,mem_whee_b_data_gpio
+	branch mouse_gpio_config_input_pd
+
+/*
+p_mouse_gpio_set_high_impedance:
+	fetch 3,mem_mouse_set_high_impedance_bit_set
+	store 3,mem_pdatatemp
+	arg 20,loopcnt
+	arg 0,temp
+p_mouse_gpio_set_high_impedance_bit_loop:	
+	fetch 3,mem_pdatatemp
+	isolate1 0,pdata
+	call gpio_set_high_impedance,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
+*/
+ifdef ADC
+p_mouse_adc_gpio_set_before_hibernate:	
+	fetch MOUSE_FLAG_LEN,mem_mouse_flag
+	rtnbit0 MOUSE_ENABLE_ADC
+	fetch 1,mem_adc_config_flag_init
+	rtnne ADC_CONFIG_GPIO
+	fetch 1,mem_adc_channel_gpio	
+//	arg 0x0a,pdata
+	arg gpcfg_no_ie,temp
+ 	branch gpio_config_function_int
+endif
+
+z_mouse_24g_attempt_success:
+	fetch 4,mem_24g_addr
+	store 4,mem_24g_receiver_addr
+	store 4,mem_mouse_24g_addr		// if need store 24g address to eeprom/flash,need get mem_24g_addr
+	call g24_ch_syncword_crc8_init
+	call mouse_no_data_timer_init
+	call mouse_init_sensor_reset
+	jam 1,mem_mouse_long_mult_flag
+	jam 0,mem_24g_conn_sm
+	jam 0,mem_24g_reconn_type
+	fetch 4,mem_24g_receiver_addr
+	fetcht 4,mem_24g_fast_conn_addr
+	isub temp,null
+	rtn zero
+	jam 1,mem_device_pair_flag
+	jam 10,mem_le_battery_level_updata_timer
+	jam 5,mem_device_tx_dpi_data_delay_timer
+	call p_mouse_device_poweron_led_config
+	call p_mouse_agc_disable_nomal_power
+	branch mouse_24g_first_store_reconn_info
+
+org 0x40001
+z_entrance3:
+ifdef BLE
+	beq ZCODE_30,z_mouse_le_bb_disconnected
+	beq ZCODE_31,z_mouse_start_discovery
+endif
+	rtn
+
+ifdef BLE
+z_mouse_le_bb_disconnected:
+	setarg 0
+	store 2,mem_le_battery_level_updata_timer
+	store 1,mem_device_tx_dpi_data_delay_timer
+	store 1,mem_mouse_le_send_conn_param_update
+	store 1,mem_mouse_le_send_conn_param_update_timer
+	store 1,mem_mouse_le_bb_connected_flag
+	jam LE_LPM_ENABLE,mem_mouse_le_conn_param_reject
+	jam 0,mem_mouse_clear_sensor_data_flag
+	call le_clr_config_more_data
+	branch p_mouse_bb_disconnected
+
+z_mouse_start_discovery:
+	call z_mouse_device_discovery_led_config
+	fetch 2,mem_ui_state_map
+	isolate1 UI_STATE_BLE_ADV,pdata
+	call mouse_stop_le_adv,true		//reconnect adv
+	fetch 2,mem_ui_state_map
+	isolate1 UI_STATE_BT_RECONNECT,pdata
+	call mouse_cancel_reconnect,true
+	setarg 0
+	store 2,mem_le_battery_level_updata_timer
+	branch mouse_start_discovery+1
+
+z_mouse_device_discovery_led_config:		//ble discovery led config
+	fetch 1,mem_mouse_led_new_interface_enable
+	rtn blank
+	jam 2,mem_mouse_multi_led_blink_timer_init
+	branch p_mouse_multi_led_blink_enable
+endif
+
+org 0x50001
+z_entrance4:
+	beq ZCODE_40,z_mouse_report_param_set
+	rtn
+
+z_mouse_report_param_set:
+	fetch 1,mem_mouse_24g_report
+	beq REPORT_125,z_mouse_g24_report_125hz
+	beq REPORT_250,z_mouse_g24_report_250hz
+	beq REPORT_500,z_mouse_g24_report_500hz
+	beq REPORT_1000,z_mouse_g24_report_1000hz
+	rtn
+
+z_mouse_g24_report_125hz:
+	setarg 0x17700
+	store 3,mem_24g_tsniff	
+	jam 30,mem_24g_fast_hop_count
+	setarg 0x10d88
+	branch z_mouse_24g_short_sleep_set
+
+z_mouse_g24_report_250hz:
+	setarg 0xbb80
+	store 3,mem_24g_tsniff
+	jam 15,mem_24g_fast_hop_count
+	setarg 0x4cf4
+z_mouse_24g_short_sleep_set:
+	store 3,mem_24g_short_sleep_set
+	store 3,mem_24g_short_sleep_set_init		
+	rtn
+
+z_mouse_g24_report_500hz:
+	jam 9,mem_24g_fast_hop_count
+	setarg 0x080606
+	store 3,mem_24g_interval
+	setarg 0x5c1c		//standard:0x5dc0
+	store 3,mem_24g_tsniff
+	branch g24_transmit_by_interrupt_enable
+
+z_mouse_g24_report_1000hz:
+	jam 5,mem_24g_fast_hop_count
+	setarg 0x010101
+	store 3,mem_24g_interval
+	setarg 0x2ee0		//standard:0x5dc0
+	store 3,mem_24g_tsniff
+	branch g24_transmit_by_interrupt_enable
+
+/*
+p_mouse_report_500hz_clk_init:
+	setarg 0
+	store 6,mem_mouse_24g_now_rtclk
+	store 6,mem_mouse_24g_last_rtclk
+	rtn
+*/
+
+org 0x60001
+z_entrance5:
+	rtn
\ No newline at end of file
Index: sched/mouse.dat
===================================================================
--- /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/sched/mouse.dat	(nonexistent)
+++ /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/sched/mouse.dat	(working copy)
@@ -0,0 +1,584 @@
+mem_device_option:08	#08 mouse
+
+mem_lpm_config:88 16 ce	#1khz
+mem_fcomp_div:18
+
+mem_rf_init_data:ff
+mem_rf_init_ptr:mem_rf_init_data
+mem_lpm_xtalcnt:38
+
+mem_dig_aon_vsel:00
+mem_gain_fix:ff
+mem_gain_table:04 00 00
+mem_gain_second_agc_en:08	#00-disbale,08-enable
+
+mem_mouse_flag:
+#mouse flag byte1
+#bit0 MOUSE_SELECT_DEVICE_FLAG
+#bit1 MOUSE_24G_PAIRING_FLAG
+#bit2 MOUSE_STORE_EEPROM_FLAG
+#bit3 MOUSE_BT_CANNEL_RECONN_FLAG
+#bit4 MOUSE_LOW_VOLTAGE_FLAG
+#bit5 MOUSE_BT_DISCOVERY_BUTTON_DOWN_FLAG
+#bit6 MOUSE_BT_DISCOVERY_BUTTON_LONG_DOWN_FLAG
+04
+
+#mouse flag byte2
+#bit0 MOUSE_ENABLE_BLE_RANDOM_ADDRE
+#bit1 MOUSE_ENABLE_2K_EEPROM
+#bit2 MOUSE_ENABLE_INIT_DELAY
+#bit3 MOUSE_ENABLE_WAKEUP_FROM_POWER
+#bit4 MOUSE_ENABLE_16M
+#bit5 MOUSE_ENABLE_USB
+09
+
+#mouse flag byte3
+#bit0 MOUSE_ENABLE_SPI2
+#bit1 MOUSE_ENABLE_24G
+#bit2 MOUSE_ENABLE_FLASH
+#bit3 MOUSE_ENABLE_EEPROM
+#bit4 MOUSE_ENABLE_ADC
+#bit5 MOUSE_ENABLE_KEYBOARD
+#bit6 MOUSE_ENABLE_24G_SEARCH_DONGLE
+06
+
+#mouse flag byte4
+#bit0 MOUSE_ENABLE_24G_250Hz
+#bit1 MOUSE_ENABLE_24G_500Hz
+#bit2 MOUSE_ENABLE_24G_1000
+#bit3 MOUSE_ENABLE_BT_125Hz
+#bit4 MOUSE_ENABLE_DPI_LEVEL_4
+#bit5 MOUSE_ENABLE_USB_250
+#bit6 MOUSE_ENABLE_USB_500
+#bit7 MOUSE_ENABLE_USB_1000
+00
+
+#mouse flag byte5
+#bit0 MOUSE_ENABLE_POWER_ON_LED
+#bit1 MOUSE_ENABLE_LOW_VOLTAGE_LED
+#bit2 MOUSE_ENABLE_LOW_VOLTAGE_USE_MODE_LED
+#bit3 MOUSE_ENABLE_LOW_VOLTAGE_LED_BLINK_N_SECOND
+#bit4 MOUSE_ENABLE_4_LED
+#bit5 MOUSE_ENABLE_DPI_FOR_4_LED
+#bit6 MOUSE_ENABLE_BT2_FOR_4_LED
+#bit7 MOUSE_ENABLE_LOW_V_FOR_4_LED
+00
+
+#mouse flag byte6 
+#bit0 MOUSE_ENABLE_SELECT_DEVICE_BY_DPI_BUTTON
+#bit1 MOUSE_ENABLE_SELECT_DEVICE_BY_PB_BUTTON
+#bit2 MOUSE_ENABLE_SELECT_DEVICE_BY_SWITCH_GPIO
+#bit3 MOUSE_ENABLE_SELECT_DEVICE_BY_SWITCH_ADC
+#bit4 MOUSE_ENABLE_DPI_KEY_CONNECT_GND
+#bit5 MOUSE_ENABLE_PB_BUTTON_CONNECT_GND
+#bit6 MOUSE_ENABLE_DPI_KEY_CONNECT_ADC
+#bit7 MOUSE_ENABLE_24G_FIRST_AUTO_PAIRING
+12
+
+#mouse flag byte7
+#bit0 MOUSE_ENABLE_AUTO_24G_PARING
+#bit1 MOUSE_ENABLE_24G_POWER_ON_PAIRING
+#bit2 MOUSE_ENABLE_COMMBINATION_KEY_BY_24G_PAIRING
+#bit3 MOUSE_ENABLE_BT_RECONNECT_TIMEOUT_ENTER_DISCOVERY
+#bit4 MOUSE_ENABLE_PB_BUTTON_SHORT_PRESS_ENTER_DISCOVERY
+#bit5 MOUSE_ENABLE_COMMBINATION_KEY_BY_BT_DISCOVERY
+#bit6 MOUSE_ENABLE_DPI_KEY_LONG_PRESS_DISCONVERY
+#bit7 MOUSE_ENABLE_PB_BUTTON_LONG_PRESS_DISCONVERY
+82
+
+#mouse flag byte8
+#bit0 MOUSE_ENABLE_SMOOTHER
+#bit1 MOUSE_ENABLE_XY_OFFSET
+#bit2 MOUSE_ENABLE_24G_AUTO_PAIR_NERVER_BEEN_PAIRED
+#bit3 MOUSE_ENABLE_LE_BATTERY_SERVICE_CANCEL
+#bit4 MOUSE_ENABLE_WHEEL_WAKE_UP_CANCEL
+#bit5 MOUSE_ENABLE_DOUBLE_DPI_KEY
+1f
+
+
+mem_mouse_discovery_timeout:08 07	#3min
+mem_mouse_24g_pair_timeout_init:58 02  #1min    24g reconn timer&pair timer
+mem_mouse_direct_timeout:64  #10s
+mem_mouse_24g_reconn_timeout_init:64 #10s
+
+mem_mouse_24g_pair_tx_power:95 #-20dBm
+mem_rssi_dis_min_24g_init:75
+mem_rssi_dis_max_24g_init:85
+mem_rssi_hex_received_max_value_init:63
+mem_rssi_dis_min_ble_init:75
+mem_rssi_dis_max_ble_init:80
+
+mem_bk_button_gpio:0d
+mem_fw_button_gpio:0e
+mem_dpi_button_gpio:0f
+mem_matrix_public_gpio:07
+mem_sensor_motion_gpio:03
+mem_customer_key_gpio:ff
+mem_whee_a_data_gpio:0c
+mem_whee_b_data_gpio:0b
+mem_select_sensor_angle_gpio:ff
+mem_mouse_reuse_2ice_gpio:ff
+
+mem_lbutton_gpio:0d
+mem_rbutton_gpio:0a
+mem_mbutton_gpio:0e
+mem_config_select_device_button_gpio:0a
+mem_whee_ta_data_gpio:ff
+mem_whee_tb_data_gpio:ff
+mem_device_switch_gpio:ff
+mem_mouse_sensor_sclk_gpio:05
+mem_mouse_sensor_sdio_gpio:04
+
+mem_sensor_angle_default:03	#00--6CLK   01--9CLK   02--12CLK   03--3CLK
+mem_sensor_angle_switch:03	#00--6CLK   01--9CLK   02--12CLK   03--3CLK
+mem_config_sensor_dpi:00		#00--1200   01--1600
+
+#new led interface configure
+mem_mouse_led_new_interface_enable:01
+mem_mouse_led_multi_type:01	#bit0=1:led+dpi   bit1=1:led+low
+mem_mouse_le_reconn_led_fuction_enable:01	#01:enable  00:disable
+mem_mouse_1io2led_multi_24gled:02
+mem_mouse_1io2led_multi_bt1led:01
+mem_mouse_1io2led_multi_bt2led:00
+mem_mouse_1io2led_dpi_led:ff
+mem_mouse_1io2led_low_led:ff
+
+mem_mouse_logo_led_gpio:ff
+mem_mouse_logo_led_on_time_init:58 02	#1min
+
+
+mem_customer_key_press:
+#03 ea 00 00 00 00 00 00 00 #VOL DOWN
+#02 01 00 00 00 00 00 00 00 #POWERDOWN
+00 05 00 04 00 00 00 00 00#CTRL+ALT+A
+#00 08 00 07 00 00 00 00 00#One-click desktop
+
+mem_customer_key_release:
+#03 00 00 00 00 00 00 00 00 #MEDIA RELEASE
+#02 00 00 00 00 00 00 00 00 #SYSTEM CRTL RELEASE
+00 00 00 00 00 00 00 00 00#STANDARD KEY RELEASE
+#00 00 00 00 00 00 00 00 00#One-click desktop
+
+mem_lpm_mode:01
+
+mem_mouse_bluetooth_type:02	#03 bt3.0+ble   #02 ble   #01 bt3.0
+mem_device_number:03  #max device number   value:01,02,03
+
+mem_device_flag:
+00
+34
+ff ff ff ff ff ff
+mem_device2_type:
+34
+ff ff ff ff ff ff
+mem_device3_type:
+33
+ff ff ff ff ff ff
+ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff	# 3.0 fast  conn
+
+mem_mouse_page_to:00 40		# 16384*0.625ms=10s
+mem_mouse_fast_direct_timeout:0a #1s
+mem_mouse_fast_page_to:60 06	# 1600*0.625ms = 1s
+mem_mouse_24g_power_on_fast_conn_timer:0a 00 #1s
+mem_mouse_24g_search_dongle_time_init: 64 00
+mem_mouse_no_data_timeout:70 17 #10min
+
+#bit0:mouse_key_l    bit1:mouse_key_r  bit2:mouse_key_m
+mem_mouse_commbination_key_bt:07
+mem_mouse_commbination_key_24g:07
+
+mem_store_information_delay_timer_init:01
+
+#adc start
+mem_adc_config_flag_init:02 		#00-vinlpm   01-hvin   02-gpio
+mem_adc_channel:02		#00-gpio4   01-gpio5   02-gpio6  03-gpio7    04-gpio9  05-gpio10  06-gpio11  07-gpio12
+mem_mouse_vdd_full_vol:0f 01		#1.5V
+a2 00#mem_mouse_vdd_empty_vol  :0.9V
+b4 00#mem_mouse_vdd_low_vol   :1.0V
+#mem_mouse_vdd_full_vol:3c 01		#3.3V
+#1e 01#mem_mouse_vdd_empty_vol  :3.0V
+#30 01#mem_mouse_vdd_low_vol   :3.2V
+
+mem_adc_read_time_init:0a 	#1s
+#adc end
+
+mem_mouse_set_high_impedance_bit_set:00 00  00
+mem_sensor_reset_gpio:ff
+
+mem_power_on_flag:01
+
+mem_lpm_mult:20
+mem_lpm_mult_init:20
+
+mem_app_connection_options:06
+mem_lap:21 56 71 52 08 53
+mem_local_name_length:
+'BT3.0 Mouse
+mem_sniff_param_interval:
+0e 00 
+01 00 ##mem_sniff_param_attempt:01 00
+02##mem_sniff_param_timeout:00 00
+
+
+mem_unsniff2sniff_timer:0a
+mem_ssp_enable:00
+##mem_all_uuid_16bits:
+##06
+##03#Type: Complete list of 16-bit UUIDs
+##0011 0100 1002 1124  1200  0001
+mem_all_uuid_128bits:00
+mem_ptt:00
+
+mem_lmp_io_cap_payload_iocap:03 00 04
+mem_ui_profile_supported:01
+mem_eir_enable:01
+
+mem_le_adv_data_len:1f
+mem_le_adv_data:
+#flag 
+02 01 05
+
+#uuid
+03 03 12 18
+
+#appearance
+03 19 c2 03
+
+mem_le_adv_swift_pair:
+#microsoft swift pair
+06 ff 06 00 03 00 80
+#name
+'\09BT5.3 Mouse
+
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+#name
+'\09BT5.3 Mouse
+
+mem_le_name_len:
+'BT5.3 Mouse
+
+mem_le_name_patch_len:	#max 18bytes
+'BT5.3 Mouse
+
+mem_le_lap:03 b1 2a 4e 8e ed
+
+mem_le_interval_min:
+06 00 #min interval
+09 00 #max interval
+20 00 #latency
+2c 01 #timeout
+
+mem_le_adv_ind:03 12 18
+mem_le_adv_direct_ind:ff 00 00
+
+mem_le_adv_interval:00 00
+mem_le_adv_type:00 
+mem_le_adv_own_addr_type:00
+mem_le_adv_channel_map:07 
+mem_local_rx_max_octets:fb 00 48 08 fb 00 48 08  # 1b
+
+mem_le_keyboard_handle:15 00
+mem_le_notify_handle:19 00
+mem_le_multimedia_handle:1d 00
+mem_le_systemctrl_handle:21 00
+mem_le_battery_level_handle:30 00
+mem_le_pairing_handle:2d 00
+
+mem_le_battery_level_updata_timer_init:96 #15s
+
+mem_spi_ncs_gpio:ff
+
+mem_mouse_dpi_seting:
+03##mem_320x_dpi_0  	1200/1300
+04##mem_320x_dpi_1  	1600
+01##mem_320x_dpi_2   800
+02##mem_320x_dpi_3  	1000
+
+20##mem_3212_dpi_0	1200
+2a##mem_3212_dpi_1	1600
+3f ##mem_3212_dpi_2	2400
+15##mem_3212_dpi_3   800
+
+14##mem_ka8g2_dpi_0	1200
+1b##mem_ka8g2_dpi_1	1600
+11##mem_ka8g2_dpi_2	1000
+0e##mem_ka8g2_dpi_3	800
+
+mem_3212_dpi_new:
+2a##mem_3212_dpi_0_new 1600
+35##mem_3212_dpi_1_new	2000
+3f ##mem_3212_dpi_2_new	2400
+15##mem_3212_dpi_3_new 800
+20##mem_3212_dpi_4_new 1200
+
+
+mem_sensor_3212_init:
+09 5a
+26 34
+19 04
+09 00
+ff ff
+
+mem_sensor_3204_init:
+09 5a
+0d f0
+1d e3
+7d d2
+ff ff
+
+mem_sensor_3205_init:
+09 5a
+0d 10
+1d ed
+7d 80
+ff ff
+
+mem_sensor_32xx_init:
+1b 35
+28 b4
+29 46
+2a 96
+2b 8c
+2c 6e
+2d 64
+38 5f
+39 0f
+3a 32
+3b 47
+42 10
+ff ff
+
+mem_sensor_32xx_init_1:
+54 2e
+55 f2
+61 f4
+63 70
+75 52 
+76 41
+77 ed
+78 23
+79 46
+7a e5
+7c 48
+7e 77
+7f 01
+0b 00
+7f 00
+09 00
+ff ff
+
+mem_sensor_8650_init:
+09 5a
+ff 27
+ab 40
+b3 56
+9b e6
+a8 12
+a9 c0
+be e6
+a5 af
+a0 21
+a1 02
+b8 10
+b9 0b
+a7 ff
+b5 d0
+b6 00
+ff 00
+09 00
+ff ff
+
+mem_sensor_ka8ul_init:
+09 5a
+0d 10
+0e c5
+5b 9a
+10 38
+11 42
+28 28
+41 23
+49 39
+4a b0
+4b a0
+4c 90
+4d 70
+09 00
+ff ff
+
+mem_sensor_8009_init:
+09 5a
+06 02
+09 69
+0d 48
+0e 9f
+0f ba
+09 00
+ff ff
+
+mem_sensor_ka8g2_init:
+09 a5
+26 34
+19 04
+60 07
+69 04
+7d 20
+7e 00
+09 00
+ff ff
+
+mem_sensor_poweron_init:
+09 5a
+0b f3
+09 00
+ff ff
+
+mem_ka8g2_sensor_poweron_init:
+09 a5
+0b f3
+09 00
+ff ff
+
+
+
+#24g init
+mem_24g_disable_fec1:01#0x00:disable/0x01:enable
+mem_24g_tx_phy:01#0x01:1M/0x02:2M/0x04:S2/0x84:S8
+mem_24g_rx_phy:01#0x01:1M/0x02:2M/0x04:S2/0x84:S8
+mem_24g_data_type:01        #mouse 1,kb 2
+mem_24g_max_retry:06#max tx retry
+mem_24g_rx_window:c0 12     #400us  ## e0 2e#1ms #transmitter long range min:520us
+mem_24g_interval:19
+mem_24g_interval_min:19
+mem_24g_interval_max:1c
+#mem_24g_ch_map1:00 13 2c 42
+#mem_24g_ch_map2:06 15 36 48
+#mem_24g_ch_map3:0f 1a 3a 4c
+#mem_24g_ch_map4:11 23 31 4d
+mem_24g_pair_switch:00
+mem_24g_pair_addr:20 15 10 05
+mem_24g_pair_ch:4e
+mem_24g_fast_conn_enable:01
+mem_24g_fast_conn_addr:0f 0f 0f 0f
+mem_24g_short_sleep_set:0c f8 00
+mem_24g_long_sleep_set:00 77 01
+mem_24g_enter_hibernate:00 48 60
+mem_rssi_buff_index:0f
+mem_rssi_signal_buf_ptr:mem_mouse_rssi_signal_buf_patch
+mem_power_ctrl_pac_succ_cnt_init:80
+mem_24g_long_sleep_param_update_timer_init:14 00
+mem_24g_transmit_by_interrupt_exit_count_init:50 00
+
+mem_24g_long_sleep_set1:00 a6 0e
+
+mem_flash_base:00 50 00
+mem_eeprom_base:80 1f
+mem_eeprom_block_size:80
+
+mem_tx_power:0a#10dbm
+
+mem_tx_time_sum_count:10 
+
+#zcode
+mem_zcode_current_number:ff
+mem_xip_flash_offset:00 00 00
+mem_zcode_head:20 20 00 40
+
+mem_spi_hold_gpio:ff
+
+########################################
+################USB config begin################
+
+mem_ui_led_struct_ptr:mem_mouse_led_type
+mem_ui_led_struct_num:00
+mem_ui_button_gpio:ff
+mem_ui_button_timeout:1e
+mem_usb_offline_check_gpio:ff
+
+#usb config
+mem_usb_vid_pid_retention:
+01 #enable
+#mouse only#auto pair
+53 31#VID
+30 10#PID
+#mouse & keyboard
+53 31#VID
+30 30#PID
+
+#usb tx interval
+mem_usb_tx_interval_retention:01
+
+#device name
+mem_usb_device_name_retention:
+'wired_mosue_1308
+
+#default value
+mem_usb_addr:00
+
+mem_usb_offline_gpio_retention:ff
+################USB end################
+########################################
+
+
+#log log log log log log log log log log log
+
+#uart config
+#mem_device_uart_tx_gpio:0d	#0d
+#mem_device_uart_rx_gpio:ff
+#mem_device_uart_baud_rate:d0 00	#115200
+#mem_device_uart_rx_buffer:00 1c
+#mem_device_uart_rx_buffer_end:ff 1f
+#mem_device_uart_tx_buffer:00 4f
+#mem_device_uart_tx_buffer_end:ff 4f
+
+
+#mem_rf_debug_rx_gpio:8d
+#mem_rf_debug_tx_gpio:8d
+
+#=================old led parm========================#
+mem_config_device_24g_led_gpio:ff
+mem_config_device_bt1_led_gpio:ff
+mem_config_device_bt2_led_gpio:ff
+mem_config_low_voltage_alarm_gpio:ff
+mem_dpi_led_gpio:ff
+
+mem_mouse_device_poweron_timer_count_init:14	#2s
+mem_mouse_dpi_led_delay_count_init:0a	#1s
+mem_mouse_dpi_led_blink_time: 90 01		#200ms on,200ms off
+mem_mouse_disconvey_led_blink_time: e8 03	#500ms on,500ms off
+mem_mouse_low_v_led_blink_time:90 01		#200ms on,200ms off
+mem_adc_low_volatage_led_blink_timer:64 00	#10s
+
+mem_mouse_vdd_button_press_vol:10 00
+mem_mouse_vdd_switch_gnd_24g_vol:52 00
+mem_mouse_vdd_switch_gnd_full_vol:35 00
+mem_mouse_vdd_switch_gnd_shutdown_voltage:21 00
+mem_mouse_vdd_switch_gnd_low_voltage:25 00
+
+mem_le_protocol_tx_handle:36 00
+mem_le_protocol_rx_handle:39 00
+
+mem_ui_le_uuid_table_new:
+#00 02--length  0x2800--primary service  02--len  ff00--uuid
+34 00 02 00 28 02 00 ff
+#TX--Notify
+#0x2803--Characteristic  01--len  16--notify
+35 00 02 03 28 01 10
+
+#0xff01--tx-uuid  01--data-len  
+36 00 02 01 ff 01 00
+
+#00 02--length  0x2902--Client Characteristic Configuration
+37 00 02 02 29 02 00 00
+
+#RX
+#0x2803--Characteristic  01--len  12--read&write without resp
+38 00 02 03 28 01 0c
+
+#0xff01--uuid  00--uuid type
+39 00 02 02 ff 01 00
+#End List
+00 00              
+
+
+
Index: util/crc16.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: util/crc16.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: util/crc16.pl
===================================================================
--- /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/util/crc16.pl	(nonexistent)
+++ /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/util/crc16.pl	(working copy)
@@ -0,0 +1,27 @@
+$debug = 0;
+$crc = 0xffff;
+$i = 0;
+$offset = 0xffff;
+$source_file = $ARGV[0];
+$offset = $ARGV[1];
+
+open(EEP,"$source_file") or die $!;
+
+while (<EEP>) {    
+	$c = hex();
+
+  if($i >= $offset){
+  	if($debug){printf "%02x\t", $c;}
+  	$crc  = ($crc >> 8) | ($crc << 8);
+		$crc ^= $c & 0xff;
+		$crc ^= ($crc & 0xff) >> 4;
+		$crc ^= $crc << 12;
+		$crc ^= ($crc & 0xff) << 5;
+		$crc &= 0xffff;
+  }
+  $i ++;
+  if($debug){printf "%02x\t", $crc;}
+  printf "%02x\n", $c;
+}
+
+printf "%02x\n%02x\n", (($crc >> 8) & 0xff),($crc & 0xff);
Index: util/eeprom2fulleeprom.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: util/eeprom2fulleeprom.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: util/eeprom2fulleeprom.pl
===================================================================
--- /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/util/eeprom2fulleeprom.pl	(nonexistent)
+++ /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/util/eeprom2fulleeprom.pl	(working copy)
@@ -0,0 +1,18 @@
+
+
+
+$source_file = $ARGV[0];
+$eeprom_size = $ARGV[1];
+
+open(EEP,"$source_file") or die("cannot open files");
+for ($i = 1 ;$i<=$eeprom_size*128-2;$i++)
+{
+
+    while (<EEP>) { 
+        $c = hex();
+        printf "%02x\n", $c;
+        $i++;
+    }
+
+	printf "FF\n";
+}
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
Index: util/mergepatch.pl
===================================================================
--- /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/util/mergepatch.pl	(nonexistent)
+++ /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/util/mergepatch.pl	(working copy)
@@ -0,0 +1,335 @@
+#!/usr/bin/perl
+$defs = "";
+
+sub alloc {
+	my($end, %mc) = @_;
+	my(%eadr) = ();
+	my($tstr, $str, $i, $j, $addr);
+	my($tstr) = "";
+	
+	foreach $i (sort keys %mc) {
+		if($i =~ /(.+)_(.+)/ && exists($eadr{$1})) {
+			$addr = $eadr{$1};
+		} else {
+			$addr = $end;
+		}
+		for($j = 0;$j <= $#{$mc{$i}};$j++) {
+			if($mc{$i}[$j] =~ /^\s*([0-9]+)\s+([a-zA-Z0-9_]+)\s*(.*)$/) {
+				$str = sprintf "0x%04x %s%s\n", $addr, $2, $3;
+				$var{$2} = $addr;
+				$addr += $1;
+				$tstr .= $str;
+			}
+		}
+		$eadr{$i} = $addr;
+	}
+	if($addr > 0x4000) {
+		$xend = $addr if($addr > $xend);
+	} else {
+		$bend = $addr if($addr > $bend);
+	}
+	return $tstr . "\n";
+}
+
+
+sub malloc {
+	$path="output/bt_format.meta";
+	open file, $path;
+	@f = <file>;
+	close file;
+	open file, ">$path";
+	$path =~ s/\/.*//;
+	open file1, ">output/memmap.format";
+	$xaddr = 0x4000;
+	$addr = 0;
+	if($#ARGV == 1) {
+		$addr = hex($ARGV[0]);
+		$xaddr = hex($ARGV[1]);
+	}
+	for($i = 0, $ocnt = 0;$i < @f;$i++) { 
+		$_ = $f[$i];
+		$start = 1 if(/^\s*memalloc\s*\(\s*$/);		# allocate from 0
+		$start = 2 if(/^\s*xmemalloc\s*\(\s*$/);	# allocate from 4000
+		$start = 3 if(/^\s*omemalloc\s*\(\s*$/);	# allocate after all xmemalloc, mutex from each other(obsolete, for compatibility)
+		if(/^\s*([ax]*)memalloc\s+([a-zA-Z_0-9]+)\s*\(\s*$/) {
+			$start = $1 eq 'a' ? 5 : $1 eq 'x' ? 6 : 7;
+			$basev = $2;
+		}
+		if($start) {
+			if(/^\s*([a-zA-Z0-9_]+)\s+([a-zA-Z0-9_]+)\s*(.*)$/ && exists($def2{$1})) {		# macro for size
+				$_ = sprintf("%s %s %s", $def2{$1}, $2, $3);
+			}
+			if(/^\s*([0-9]+)\s+([a-zA-Z0-9_]+)\s*(.*)$/) {
+				if($start == 1) {
+					$str = sprintf "0x%04x %s%s\n", $addr, $2, $3;
+					$var{$2} = $addr;
+					$addr += $1;
+					$bstr .= $str;
+				} elsif($start == 2) {
+					$str = sprintf "0x%04x %s%s\n", $xaddr, $2, $3;
+					$var{$2} = $xaddr;
+					$xaddr += $1;
+					$xstr .= $str;
+				} else {
+					push @ostr, $_;
+				}
+			}
+			if(/^\s*\)\s*$/) {
+				if(@ostr > 0) {
+					if($start == 3) {
+						push @{$xmalloc{$ocnt}}, @ostr;
+						$ocnt++;
+					} elsif($start == 5) {
+						push @aaddr,$basev;
+						push @amalloc,[@ostr];
+					} elsif($start == 6) {
+						push @{$xmalloc{$basev}}, @ostr;
+					} elsif($start == 7) {
+						push @{$malloc{$basev}}, @ostr;
+					} 
+				}
+				$start = 0;
+				@ostr = ();
+			}
+		} else {
+			$def2{$2} = $1 if(/^\s*([0-9]+)\s+([a-zA-Z0-9_]+)\s*(.*)$/);
+			$sstr .= $_;
+		}
+	}
+	
+#--------------------- o/x/memalloc process -----------------------
+	$bend = $addr, $xend = $xaddr;
+	$bstr .= alloc($addr, %malloc);
+	$xstr .= alloc($xaddr, %xmalloc);
+
+#--------------------- amemalloc process -----------------------
+	for($i = 0;$i <= $#aaddr;$i++) {
+		for($j = 0, $addr = $aaddr[$i] =~ /^0x([0-9a-f]+)/ ? hex($1) : $var{$aaddr[$i]};$addr != 0 && $j <= $#{$amalloc[$i]};$j++) {
+			if($amalloc[$i][$j] =~ /^\s*([0-9]+)\s+([a-zA-Z0-9_]+)\s*(.*)$/) {
+				$str = sprintf "0x%04x %s%s\n", $addr, $2, $3;
+				$addr += $1;
+				if($addr < 0x4000) {
+					$bstr .= $str;
+				} else  {
+					$xstr .= $str;
+				}
+			}
+		}
+	}
+
+	
+	print file $bstr, $xstr, $sstr;
+	print file1 $bstr, $xstr;
+	close file;
+	close file1;
+	printf "\nLast allocated address is %04x\n", $bend;
+	printf "\nLast allocated xmem address is %04x\n", $xend;
+}
+
+
+sub getdefs {
+	my($def) = @_;
+	my(@ifdefs) = split(/\s*\|\s*/, $def);
+	my $v = 0;
+	foreach (@ifdefs) {
+		s/\s//g;
+		$v = 1 if($defs =~ /(^|\s)$_(\s|$)/);
+	}
+	return $v;
+}
+
+sub parseif {
+	my($fname) = @_;
+	open file, $fname;
+	@f = <file>;
+	close file;
+	open file, ">$fname";
+	@valid = (1);
+	for($i = 0;$i < @f;$i++) { 
+		$_ = $f[$i];
+		s/\/\*.*\*\///g;
+		$comment = 1 if(/\/\*/ && !/\/\//);
+		if($comment) {
+			$comment = 0 if(/\*\//);
+			next;
+		}
+		if(/^\s*ifdef\s+(.+)$/) {
+			$v = getdefs($1) ? 1 : 0;
+			push @valid, $v & $valid[$#valid];
+		} elsif(/^\s*ifndef\s+(.+)$/) {
+			$v = getdefs($1) ? 0 : 1;
+			push @valid, $v & $valid[$#valid];
+		} elsif(/^\s*else/) {
+			printf "%s\nelse without if at line %d\n", $f[$i - 3], $i if($#valid == 0);
+			if($#valid == 0) {
+				for($j = -10;$j < 10;$j++) {
+					print $f[$i + $j];
+				}
+				last;
+ 				$i = $i;
+			}
+			$valid[$#valid] = (1 - $valid[$#valid]) & $valid[$#valid - 1];
+		} elsif(/^\s*endif/) {
+			printf "%s\nendif without if at line %d\n", $_, $i if($#valid == 0);
+			if($#valid == 0) {
+				for($j = -10;$j < 10;$j++) {
+					print $f[$i + $j];
+				}
+				last;
+ 				$i = $i;
+			}
+			pop @valid;
+		} elsif($valid[$#valid]) {
+			if(/^include\s+(.+)\s*/) {
+				open file2, "program/$1";
+				@f2 = <file2>;
+				close file2;
+				splice(@f, $i + 1, 0, @f2);
+			} else {
+			if(/^define\s+(\w+)\s*/) {
+				$defs .= $1 . " " 
+			}
+				print file $_;
+			}
+		}
+	}
+	close file;
+}
+
+sub genpatch
+{
+	print "genpatch\n";
+	$patched = 0;
+	open file,"output/bt_program23.meta";
+	while(<file>) {
+		if(/^\s*beq\s+patch([0-9a-f]+)_([0-7]),/) {
+			$a = hex($1), $b = hex($2);
+			$bits[$a] |= 1 << $b;
+			$patched = 1;
+		}
+	}
+	close file;
+	return if(!$patched);
+	open file,"output/sched.rom";
+	@sched = <file>;
+	close file;
+	for($j = 0;$j < 0x40;$j++) { 
+		$s .= sprintf ("%02x   #mem_patch%02x\n", $bits[$j], $j);
+	}
+	$s .= "\n\n";
+	for($i = $skip = 0;$i < @sched;$i++) {
+		$_ = $sched[$i];
+		if($skip > 0 && /:/) {
+			splice(@sched, $skip, $i - $skip, $s);
+			last;
+		}
+		$skip = $i + 1 if(/^mem_patch00:\s*$/);
+	}
+	if($skip == 0) {
+		$s = "mem_patch00:\n" . $s;
+		splice(@sched, 0, 0, $s);
+	}
+	open file,">output/sched.rom";
+	for($i = 0;$i < @sched;$i++) { print file $sched[$i]; }
+	close file;
+}
+
+sub zcode {
+	open file, "output/bt_program23.meta";
+	@f = <file>;
+	close file;
+	for($i = $label = $line[0] = 0, $z = 1;$i < @f;$i++) {
+		$_ = $f[$i];
+		$line[0] = $i - 1 if(/^org\s+0x([23]000|800)/ && $line[0] == 0);
+		if(/^org z\s*$/) {
+			$line[$z/0x10000 + 1] = $i - 1;
+			$z += 0x10000;
+			$f[$i] = sprintf("org 0x%x\n", $z);
+			$label = 1;
+		}
+		if(/^(\w+):\s*$/ && $label == 1) {
+			$lab{$1} = $z;
+			$label = 2;
+		}
+	}
+	return if($z == 1);
+	$line[$z/0x10000 + 1] = $i - 1;
+	for($i = 0;$i < @f;$i++) {
+		$_ = $f[$i];
+		$label = "";
+		if(/^\s*(branch|nbranch|call|ncall|setarg)\s+(\w+)\s*$/ || /^\s*(branch|nbranch|call|ncall|arg)\s+(\w+)\s*,\s*(\w+)\s*$/) {
+			$label = $2;
+		}
+		if(/^\s*(bmark|beq|bne|bbit[01])\s+(\w+)\s*,\s*(\w+)\s*$/) {
+			$label = $3;
+		}
+		$branch = /^\s+branch\s+$label\s*$/ ? 1 : 0;
+		if(exists($lab{$label})) {
+			$nlabel = "jmpz_" . $label;
+			$f[$i] =~ s/$label/eval "$nlabel"/e;
+			if($lab{$label} > 100) {
+				$z = int($lab{$label}/0x1000);
+				$l = $i < $line[1] ? $line[0] : $line[$z/10 - 1];
+				if($branch && $i >= $line[1]) {
+					$f[$i] = sprintf("\tsetarg 0x%x\n\tbranch p_zcode_entrance_2Bytes_common\n\n", $z);
+				} else {
+					$f[$l] .= sprintf("%s:\n\tsetarg 0x%x\n\tbranch p_zcode_entrance_2Bytes_common\n\n", $nlabel, $z);
+				}
+				$lab{$label} = 1;
+			}
+		}
+	}
+	open file, ">output/bt_program23.meta";
+	for($i = 0;$i < @f;$i++) {
+		if($f[$i] =~ /^\s*bbit1 8,pf_patch_ext\s*$/) {
+			printf file ("p_start:\n\tbranch p_patch_array\n\np_zcode:\n");
+			for($j = 0;$j < 63;$j++) {
+				printf file "\tnop %d\n", $j + 1;
+			}
+			printf file "p_patch_array:\n";
+		}
+		print file $f[$i];
+	}
+	close file;
+}
+
+sub authrom {
+	$addr = 0x9000;
+	foreach $s (@ARGV) {
+		open f, "../sched/" . $s . ".dat" or die "cannot open dat file $s";
+		@ff = <f>;
+		close f;
+		foreach (@ff) { $_ =~ s/\s//g;push @auth, $_ . "\n"; }
+		printf "0x%x %s_ADDR\n", $addr, uc($s);
+		$addr += $#ff + 1;
+	}
+	open f,">auth.rom";
+	print f @auth;
+	close f;
+	open f,"romcode.rom" or return;
+	@rom = <f>;
+	close f;
+	for($i = 0, $j = $#rom - 0x1ff;$i < 0x200;$i++,$j++) {
+		for($k = 0, $l = "";$k < 4;$k++) {
+			$_ = $auth[$i*4 + $k];
+			s/\s//g;
+			$_ = "00" if(/^$/);
+			$l =  $_ . $l;
+		}
+		$rom[$j] = $l . "\n";
+	}
+	open f,">romcode.rom";
+	print f @rom;
+	close f;
+}
+
+if(@ARGV > 0) {
+	authrom();
+	exit;
+}
+
+parseif("output/bt_program23.meta");
+parseif("output/bt_format.meta");
+genpatch() if($defs !~ / SIM /);
+malloc();
+zcode();
Index: util/patch.pl
===================================================================
--- /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/util/patch.pl	(nonexistent)
+++ /YC1308AF/branch/mouse/USB_4Mode_Project/RongYuan_Project/mouse_public_3mode_usb_sdk/util/patch.pl	(working copy)
@@ -0,0 +1,49 @@
+#!/usr/bin/perl
+
+
+
+@dirs = (".");
+while(@dirs){
+   $d = $dirs[0];
+   opendir folder, $d || die "Can not open this directory";
+   @filelist = readdir folder; 
+   closedir folder;
+   foreach (@filelist) {
+      $f = $d . "/" . $_;
+      next if($_ eq "." || $_ eq "..");
+      push(@dirs, $f) if(-d $f) ;
+      push(@files,$f) if(-f $f);
+    }
+   shift @dirs;
+}
+
+for($i = 0;$i < @files;$i++) {
+	if($files[$i] =~ /bt\.prog/) {
+		($files[$i],$files[0]) = ($files[0],$files[$i]);
+		last;
+	}
+}
+
+
+for($i = $byte = $bit = 0;$i < @files;$i++) {
+	next if($files[$i] =~ /patch\.prog|sim\.prog/ || $files[$i] !~ /\.prog/);
+	open(FILE, $files[$i]) or next;
+	@file = <FILE>;
+	close FILE;
+	open(FILE, "> $files[$i]");
+	for($j = 0;$j < @file;$j++) {
+		$_ = $file[$j];
+		if(/bpatch.*,.*/) {
+			printf FILE "\t%s patch%02x_%d,mem_patch%02x\n", $byte > 31 ? "bpatchx" : "bpatch" , $byte, $bit, $byte;
+			if(++$bit > 7)
+			{
+				$bit = 0;
+				$byte++;
+			}
+		} else {
+			print FILE $_;
+		}
+	}
+	close(FILE);
+}
+printf "Total patches : %d, last patch number is:%02x bit %d\n", $byte*8+$bit, $byte, $bit;
