This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

RTOS/TM4C1294NCPDT: TM4C1294NCPDT

Part Number: TM4C1294NCPDT
Other Parts Discussed in Thread: EK-TM4C1294XL

Tool/software: TI-RTOS

hello
I  use TM4C1294NCPDT
init  i2c but can't see nothing in the scope. 
  //I2C0
 //This function is for eewiki and is to be updated to handle any port
 //enable I2C module
 SysCtlPeripheralEnable(SYSCTL_PERIPH_I2C0);
 //reset I2C module
 SysCtlPeripheralReset(SYSCTL_PERIPH_I2C0);
 //enable GPIO peripheral that contains I2C
 SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOB);
 // Configure the pin muxing for I2C0 functions on port B2 and B3.
 GPIOPinConfigure(GPIO_PB2_I2C0SCL);
 GPIOPinConfigure(GPIO_PB3_I2C0SDA);
 // Select the I2C function for these pins.
 GPIOPinTypeI2CSCL(GPIO_PORTB_BASE, GPIO_PIN_2);
 GPIOPinTypeI2C(GPIO_PORTB_BASE, GPIO_PIN_3);
 // Enable and initialize the I2C0 master module.  Use the system clock for
 // the I2C0 module.  The last parameter sets the I2C data transfer rate.
 // If false the data rate is set to 100kbps and if true the data rate will
 // be set to 400kbps.
 ///I2CMasterInitExpClk(I2C0_BASE, SysCtlClockGet(), false);
 I2CMasterInitExpClk(I2C0_BASE, ui32SysClock, true);
 //clear I2C FIFOs
 HWREG(I2C0_BASE + I2C_O_FIFOCTL) = 80008000;
need help
thanks