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.

CCS/SIMPLELINK-CC13X2-26X2-SDK: Event handler task not working on Sensor Controller (Two tasks, one with an event handler and another one with a while True)

Part Number: SIMPLELINK-CC13X2-26X2-SDK

Tool/software: Code Composer Studio

Hello folks.

Setup: 

- Simplelink 3.10.01.11

- launchpad cc1352

- I have two sensor controller tasks,

- one (let's call it Task1) with an event handler waiting for interruptions from an external pin,

- and another task (let's call it Task2) a "while True {do stuff}" (long running task, generating events with a fwGenQuickAlertInterrupt)

Problem:

When only Task1 is active everything works normally, I receive the pin-interruptions alerts from the events generated by this Task1

When BOTH Task1 and Task2 are active I dont see the Task1 event handler working, I receive alerts from the events generated by this Task2 but not from Task1.

 

Is there a restriction on using a long running task on sensor controller and this task bloking all other tasks?

Cheers!