I'm using the bq27505 with MSP430.
I can't read the data flash of the bq27505.
I tried to read the data of configuration class (subclass ID is 48).
Offset of Device name is 16 in datasheet page 22.
But when I read the data flash, first character of device name start always at 15th offset.
below log is data which I read.
0 : 0x01
1 : 0xB0
2 : 0xF6
3 : 0xFE
4 : 0x0C
5 : 0x03
6 : 0x84
7 : 0x5A
8 : 0x03
9 : 0xE8
10 : 0xFE
11 : 0x70
12 : 0x0B
13 : 0xA6
14 : 0x07
15 : 0x62 'b'
16 : 0x71 'q'
17 : 0x32 '2'
18 : 0x37 '7'
19 : 0x35 '5'
20 : 0x30 '0'
21 : 0x35 '5'
22 : 0x00
23 : 0x00
24 : 0x00
25 : 0x00
26 : 0x00
27 : 0x00
28 : 0x00
29 : 0x00
30 : 0x22
31 : 0x00
I think offset of device name is 15.
Is it right?
Can I get the tips or examples for reading data flash?