Hello,
I did pin-muxing for pin 2 and 3 of portD as an SCL ans SDA line,but after pin configuration, the pins are not pulled high.
SysCtlClockSet(SYSCTL_SYSDIV_2_5 | SYSCTL_USE_PLL | SYSCTL_XTAL_25MHZ | SYSCTL_OSC_MAIN);
SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOD);
SysCtlPeripheralEnable(SYSCTL_PERIPH_I2C8);
ROM_GPIOPinTypeI2CSCL(GPIO_PORTD_BASE, GPIO_PIN_2);
ROM_GPIOPinTypeI2C(GPIO_PORTD_BASE, GPIO_PIN_3);
ROM_GPIOPinConfigure(GPIO_PD2_I2C8SCL);
ROM_GPIOPinConfigure(GPIO_PD3_I2C8SDA);
I put a breakpoint after this and check in oscilooscope, the pins of portD2 and D3 are not pulled up.
I read in forums that we donot require to pull-up the SDA and SCL line.
Is there anything missing , the lines are not getting High ?
Regards,
Sanchit

