Other Parts Discussed in Thread: CC2650STK, CC2640
how can i modify my linker file?
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.
Just test with my CC2650STK and comment out the red code. The temperature doesn't show up in SensorTag App of my iPhone.
int main()
{
PIN_init(BoardGpioInitTable);
#ifndef POWER_SAVING
/* Set constraints for Standby and Idle mode */
Power_setConstraint(Power_SB_DISALLOW);
Power_setConstraint(Power_IDLE_PD_DISALLOW);
#endif // POWER_SAVING
/* Initialize ICall module */
ICall_init();
/* Start tasks of external images - Priority 5 */
ICall_createRemoteTasks();
/* Kick off profile - Priority 3 */
GAPRole_createTask();
/* Kick off application - Priority 1 */
SensorTag_createTask();
//SensorTagTmp_createTask();
SensorTagHum_createTask();
SensorTagBar_createTask();
BIOS_start(); /* enable interrupts and start SYS/BIOS */
return 0;
}