Hi TI:
Setup - TIVA TM4C123GH6PM, TI-RTOS 1.10.0.23, Compiler 5.06.
I started with the uartconsole_TIVA example. Compiled it. Ran it against putty. Worked great.
I decided to expand out a little bit and included a little bit of I2C.
1. I added I2C to the TI-RTOS Config.
I have the little Green Checkbox with the "var I2C = xdc.useModule('ti.drivers.I2C');" clearly showing in the script.
2. Added a header #include <ti/drivers/I2C.h>
3. I added Board_initI2C() amongst the other Init lines.
Board_initUART();
Board_initI2C(); <---- RIGHT HERE!!!!
Board_initUSB(Board_USBDEVICE);
That's it.
It compiles just fine.
When I Link, I come up with Undefined Symbol Board_initI2C
I am not sure where to turn to from here. I looked at the i2ceeprom example from the F28; but, it's not yielding any clues.
For instance, I'm not seeing any I2C.c / .h files in the F28 Project. I am seeing a "rtsv7M3_T_le_eabi.lib"; but, that does not appear to be compatible with my board. I tried "rtsv7M4_T_le_v4SPD16_eabi.lib"; but, that is not helping.
Lost on this one. Any help would be great.
Thanks
Rick