Can anyone be of assistance to help me accomplish a change in the drive level of the I2C bus output pins on the TM4C1290 device? Below is what I have tried and there seems to be NO change in the output drive levels. I can find no examples of this on the TI web site/blogs…
//
// Enable pin PA7 for I2C6 I2C6SDA
//
MAP_GPIOPinConfigure(GPIO_PA7_I2C6SDA);
MAP_GPIODirModeSet(GPIO_PORTA_BASE, GPIO_PIN_7, GPIO_DIR_MODE_HW);
MAP_GPIOPadConfigSet(GPIO_PORTA_BASE, GPIO_PIN_7, GPIO_STRENGTH_8MA, GPIO_PIN_TYPE_STD);
MAP_GPIOPinTypeI2C(GPIO_PORTA_BASE, GPIO_PIN_7);
//
// Enable pin PA6 for I2C6 I2C6SCL
//
MAP_GPIOPinConfigure(GPIO_PA6_I2C6SCL);
MAP_GPIODirModeSet(GPIO_PORTA_BASE, GPIO_PIN_6, GPIO_DIR_MODE_HW);
MAP_GPIOPadConfigSet(GPIO_PORTA_BASE, GPIO_PIN_6, GPIO_STRENGTH_8MA, GPIO_PIN_TYPE_STD);
MAP_GPIOPinTypeI2CSCL(GPIO_PORTA_BASE, GPIO_PIN_6);