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.

CC1350: Fetching from Sensor Controller Aux RAM using scifTaskData structure

Part Number: CC1350


I am using a temperature sensor and the CC1350 Launchpad to read out the temperature using the Sensor Controller.

I have followed this guide:

http://dev.ti.com/tirex/#/?link=Software%2FSimpleLink CC13x0 SDK%2FSimpleLink Academy%2FSensor Controller Studio%2FProject from Scratch

There is an error in the following lines, where the data is fetched from the SC AUX RAM using the scifTaskData structure to the RTOS application "rfPacketTx":

// Fetch 'output.tempMSB' & 'output.tempLSB' variable from SC
      uint16_t tempMSB = scifTaskData.i2c.state.tempMSB;
      uint16_t tempLSB = scifTaskData.i2c.state.tempLSB;

These are the errors:

struct "<unnamed>" has no field "tempMSB"
struct "<unnamed>" has no field "tempLSB"

How could I resolve it?