Other Parts Discussed in Thread: BQ30Z55, BQEVSW
Hello,
I'm trying to comunicate with BQ30Z554 using i2c and 8bit MCU.
I can read registers using following method:
send i2c_start
send device address
send parameter ID to read
send i2c_restart
send device address + read bit
read byte from bq30z55 throught i2c
I'm not able to get manufactureraccess() information, could you explain correct order od i2c commands?
I tryed a lot of possibilityes as:
send i2c_start
send device address
send 0x00 (manufactureraccess())
send i2c_restart
send 0x00 (manufacturerdata())
send 0x00 (manufacturerdata())
send i2c_restart
send device address + read bit
read byte from bq30z55 throught i2c
or:
send i2c_start
send device address
send 0x00 (manufactureraccess())
send 0x00 (manufacturerdata())
send 0x00 (manufacturerdata())
send i2c_restart
send device address + read bit
read byte from bq30z55 throught i2c
but I can't find correct sequence...
I can't find correct sequance in datasheet or others documents.
Could you help me?
Thank you