Tool/software:
Hi team,
Can the registers of 948 be written continuously?
For example, write 0x50, 0x05, 0x08 to the registers 0x1e, 0x1f, and 0x20. Is it possible to do it in the following way?
write 0x1e, 0x50, 0x05, 0x08
After writing in the above writing method, and then reading 0x1e continuously for 3 bytes, the return value is 0x50, 0x05, 0x08, which is consistent with the written value;
By reading 0x1f single byte, the return value is 0x05; reading 0x20 single byte, the return value is 0x08; indicating that 0x05 and 0x08 are successfully written to the registers 0x1f and 0x20 respectively.
Is the above method feasible?