Hi,
I'm currently using SUB-20 as my USB to I2C interface.
There's 1 point I've found out when using SUB-20 DLL:
In sub_i2c_read and sub_i2c_write functions, the memory address variable is an integer (int ma). I find this quite strange, as in the implementation of the function, you would have to do bit shifting to get the actual memory address bytes. Additionally, with an integer, you can enter maximum of 4 bytes memory address with 32-bit system (this normally is not a problem, but probably there are users who want more address bytes). The same applies for bit bang I2C read and write.
Thus I think it would be better to change the memory address variable as an array of bytes just like the buffer to store I2C read and write data (char* ma). Then it would also be more clear for the user to know how to address the memory byte by byte.
Just a suggestion, please give me your opinion about it.
Kaz
I2C Memory Address suggestion
Moderator: serg
Re: I2C Memory Address suggestion
Hi,
int ma is treated by i2c functions as 4 bytes array. We ignore sign. I agree it could be unsigned int but it is not critical.
As for address size, I have not seen in my 20 year practice any I2C device with long memory address. 32-bit address allows access up to 4GByte of memory.
Having a memory address an integer variable and not byte array makes it simple to perform address operations. For instance increment and decrement.
int ma is treated by i2c functions as 4 bytes array. We ignore sign. I agree it could be unsigned int but it is not critical.
As for address size, I have not seen in my 20 year practice any I2C device with long memory address. 32-bit address allows access up to 4GByte of memory.
Having a memory address an integer variable and not byte array makes it simple to perform address operations. For instance increment and decrement.
Re: I2C Memory Address suggestion
Ah ok, I got it now.
Thanks for enlighten me
Thanks for enlighten me
