Re: Accessing other I2C ports on MOD54415
Posted: Fri May 17, 2013 8:34 pm
I guess when mbrown said:
"You shouldn't need to change any of your function calls, just include the new files. " I didn't realize that I could no longer use macros like I2C_SR in my own code. In i2cmaster.h that worked, but now I can see why it doesn't in the new multichanneli2c. So I can't just change the includes and get multi channel I2C functionality.
I used the macro I2C_SR (sim2.i2c0.i2sr) to use the status register to reset the bus. How should I do this with multichanneli2c? I can see that I can't just use sim2.i2c0.i2sr or I lose the multi channel ability. Should I use I2CMultiChannelResetPeripheral()?
Similarly with I2C_SR_BUSY (((0x20 & I2C_SR) == 0x20) expands to ((0x20 & sim2.i2c0.i2sr) == 0x20), how should I check that the busy is not busy?
Thanks,
Sam
"You shouldn't need to change any of your function calls, just include the new files. " I didn't realize that I could no longer use macros like I2C_SR in my own code. In i2cmaster.h that worked, but now I can see why it doesn't in the new multichanneli2c. So I can't just change the includes and get multi channel I2C functionality.
I used the macro I2C_SR (sim2.i2c0.i2sr) to use the status register to reset the bus. How should I do this with multichanneli2c? I can see that I can't just use sim2.i2c0.i2sr or I lose the multi channel ability. Should I use I2CMultiChannelResetPeripheral()?
Similarly with I2C_SR_BUSY (((0x20 & I2C_SR) == 0x20) expands to ((0x20 & sim2.i2c0.i2sr) == 0x20), how should I check that the busy is not busy?
Thanks,
Sam