Part Number: CC2640R2F
Tool/software: TI-RTOS
Hey, so I'm using this Launch pad http://www.ti.com/tool/launchxl-cc2640r2. I'm currently working with sensor composer studio but can't appear to get an output reading on the I2C Temp & humidity sensor I'm using https://www.silabs.com/documents/public/data-sheets/Si7021-A20.pdf. I've read several forums and Altered the clock frequency and stretch time out to no avail. I have also altered the code several times but the output graph while testing just flat lined bar i2cStatus the outputs a 1 value. Here is my code below. I'd appreciate the help, thanks.
i2cStart();
i2cRepeatedStart();
i2cTx(I2C_OP_READ|Temp_NHM);//0xf3
i2cRxAck(output.Temp);
i2cTx(I2C_OP_READ|Hum_NHM);//0xf5
i2cRxAck(output.Hum);
i2cStop();
// Read the result after 100 milliseconds + a 20% margin
evhSetupTimerTrigger(0, 120, 2);
// Schedule the next execution
fwScheduleTask(400);
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

