COMPA Event Trigger¶
Description¶
Use COMPA to trigger Event Handler Code
This resource uses COMPA (high-performance continuous time comparator) to trigger an Event Handler Code task code block. Triggering can either occur at high or low level (no transition required) or at rising or falling edge on the COMPA output.
This can typically be used to monitor analog signals when COMPB cannot be used or is already used for other purposes.
The COMPA peripheral must be enabled separately using the COMPA resource.
The trigger can be set up from within the Initialization Code , Execution Code or Event Handler Code task code blocks.
The trigger is one-shot.
Event Trigger Mapping¶
The CC13x2/CC26x2 and CC13x4/CC26x4 chip families support up to 3 event triggers in total per project. The Code Generator Panel displays an error message if this number is exceeded.
Access the Task Panel to map event trigger(s) to Event Handler Code task code blocks:
- Ensure that one or more event trigger resources are enabled
- Below these resources, select the number of simultaneous event triggers for the task
- Map the event index(es) to Event Handler Code task code blocks. The event indexes start at 0 for each task.
While the number of event triggers and mapping of event indexes to task code blocks are static, the event indexes can be reused for different types of event triggers. For example, it is possible to alternate between a timer trigger and a GPIO trigger for one event index.
If a new event trigger is set up using an already active event index, the previously set up event trigger is cancelled.
The Termination Code must call evhCancelTrigger()
for each used event index, so that the last set up event triggers do not occur after the task has been stopped.
Trigger Timing¶
Typical startup delays, from the COMPA event trigger to execution of the Event Handler Code task code block, are shown in the tables below.
For startup to low-power mode:
Scenario | No clock in standby mode | SCLK_LF in standby mode* |
From standby mode, SCLK_MF clock not running | 32 us | 47 - 77 us |
From standby mode, SCLK_MF clock already running | 30 us | 45 - 75 us |
Trigger occurs while Sensor Controller runs other code | 24 us or more (already running code must finish) |
For startup to active mode:
Scenario | No clock in standby mode | SCLK_LF in standby mode* |
From standby mode, SCLK_HF clock not running | 145 - 200 us | 145 - 215 us |
From standby mode, SCLK_HF clock already running | 7 us | 24 - 54 us |
Trigger occurs while Sensor Controller runs other code | 4 us or more (already running code must finish) |
* SCLK_LF is used in standby mode when one or more of these resources are enabled:
- Reference DAC
- RTC Multi-Event Capture
- Timer 0 Event Trigger
- Timer 1 Event Trigger
Examples¶
Initialization Code¶
// Enable COMPA
compaEnable(COMPA_PWRMODE_ANY);
// Select COMPA reference and input
compaSelectGpioRef(AUXIO_A_REFERENCE);
compaSelectGpioInput(AUXIO_A_SIGNAL);
// Wait for the COMPA output to settle
fwDelayUs(10);
// Setup the first event trigger, on high level
evhSetupCompaTrigger(0, 1, EVH_COMPA_TRIG_ON_MATCH);
Event Handler Code A¶
... Do something here ...
// Setup the next event trigger, on high level
evhSetupCompaTrigger(0, 1, EVH_COMPA_TRIG_ON_MATCH);
Termination Code¶
// The currently enabled event trigger must be cancelled manually
evhCancelTrigger(0);
// Disable COMPA
compaDisable();
Procedures Overview¶
Name | Brief description |
evhCancelTrigger() |
Cancels a previous call to an event trigger setup procedure (for example evhSetupGpioTrigger() ) with matching event index, including any pending Event Handler Code execution if the trigger already has occurred. More … |
evhGetActiveTrigger() |
This procedure can be called from event handler code to determine which event index triggered the event handler code. More … |
evhSetupCompaTrigger() |
Sets up the COMPA output to trigger execution of the Event Handler Code . More … |
Constants¶
Name | Description |
EVH_COMPA_TRIG_ON_EDGE |
COMPA trigger type: Generated on transition, edge from inverse level is required |
EVH_COMPA_TRIG_ON_MATCH |
COMPA trigger type: Generated on match, edge from inverse level is not required |
Global Variables¶
None.
Procedures¶
evhCancelTrigger¶
Prototype: evhCancelTrigger(#evIndex)
Cancels a previous call to an event trigger setup procedure (for example evhSetupGpioTrigger()
) with matching event index, including any pending Event Handler Code execution if the trigger already has occurred.
This procedure should be called from the Termination Code if the task can be stopped by the application while an event trigger is enabled.
Parameter value(s)¶
- #evIndex : Event index to be cancelled
evhGetActiveTrigger¶
Prototype: evhGetActiveTrigger(bvEvent)
This procedure can be called from event handler code to determine which event index triggered the event handler code.
Return value(s)¶
- bvEvent : Bit-vector indicating the event index that triggered the event handler code
evhSetupCompaTrigger¶
Prototype: evhSetupCompaTrigger(#evIndex, #level, #type)
Sets up the COMPA output to trigger execution of the Event Handler Code . The trigger is one-shot.
The trigger occurs as soon as the COMPA output matches or transitions to the selected level. The Event Handler Code then starts when the Sensor Controller is idle or in standby.
Parameter value(s)¶
- #evIndex : Event index to be triggered
- #level : The COMPA output level that shall generate the trigger (1 = high level / rising edge, 0 = low level / falling edge)
- #type : COMPA trigger type (EVH_COMPA_TRIG_ON_MATCH to trigger immediately on match, or EVH_COMPA_TRIG_ON_EDGE to wait for a transition to the level)