Hi TI,
I have a trouble when using Sensor Controller Studio. Now I have to take 2 continuous samples from DIO27 and DIO29 at the same time, but the DIO29 is normal while the DIO27 cannot get any ADC value(it remains 0). I have already tested the two tasks at Sensor Controller Studio and they run very well separately, but why can't they run normally at the same time?
Here's my code in IAR to start the 2 tasks. I tried to start them almost at the same time and both of them returned SCIF_SUCCESS(It means that both the 2 task threads created successfully). However, only DIO29 works.
scifStartTasksNbl(BV(SCIF_DIO29_TASK_ID));
scifStartTasksNbl(BV(SCIF_DIO27_TASK_ID));
Thanks.