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.

CC1352P: How to call an immediate trigger between events in sensor controller studio?

Part Number: CC1352P

Hi, 

I'm trying to write code in SCS which loops through events A->B->C->A.

The trigger between A->B and B->C is with evhSetupGpioTrigger(0, AUX_IO_NAME, 0, EVH_GPIO_TRIG_ON_EDGE), which works fine.

I want to trigger the move from event C->A immediately (without depending on other GPIO triggers), I tried using evhSetupTimer0Trigger(0,1,0) but this could lead to a delay of up to 250 us as I understand.

Is there a better way to implement immediate transitions between events?