I am using a temperature sensor and the CC1350 Launchpad to read out the temperature using the Sensor Controller.
I have followed this guide:
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?