Hey folks, Trying to get some older code working with the latest Keil toolchain. I have some I2C code that uses I2C_BufferSend(). The target is an STR712, and uses the 71x stuff in the library. My problem is that there is NO I2C_BufferSend in the 71x/i2c.h (There is an I2C_ByteSend and I2C_AddressSend in 71x/i2c.h as well as both of those AND the I2C_BufferSend in the 73x/i2c.h. Is there equivalent functionality using a different call for the 71x target family? Thanks, Steve
In case anyone google's this and finds the question and no answer (don't you hate that?) ST wrote and maintains the STR71x libs. They've actually removed the I2C_BufferSend() between v3.0 and v3.1. (found this in the release notes) So, the solution is to build the equivalent functionality with the other I2C utilities. Steve