Home
last modified time | relevance | path

Searched refs:RCL_Events (Results 1 – 18 of 18) sorted by relevance

/hal_ti-latest/simplelink_lpf3/source/ti/drivers/rcl/
DRCL_Event.h38 #define RCL_EventNone ((RCL_Events){ .value = (0 << 0)}) /*!< No events */
39 #define RCL_EventCmdStarted ((RCL_Events){ .value = (1 << 0)}) /*!< Command handler ha…
40 #define RCL_EventLastCmdDone ((RCL_Events){ .value = (1 << 1)}) /*!< The RCL is finishe…
41 #define RCL_EventRxEntryAvail ((RCL_Events){ .value = (1 << 2)}) /*!< An RX entry has be…
42 #define RCL_EventRxBufferFinished ((RCL_Events){ .value = (1 << 3)}) /*!< An RX multi-buffer…
43 #define RCL_EventTxBufferFinished ((RCL_Events){ .value = (1 << 4)}) /*!< A TX buffer is fin…
44 #define RCL_EventSoftwareTriggered ((RCL_Events){ .value = (1 << 5)}) /*!< Handler is trigger…
45 #define RCL_EventTimerStart ((RCL_Events){ .value = (1 << 6)}) /*!< Timer-based start …
46 #define RCL_EventDescheduleStop ((RCL_Events){ .value = (1 << 7)}) /*!< Deschedule-type st…
47 #define RCL_EventGracefulStop ((RCL_Events){ .value = (1 << 8)}) /*!< Timer-based gracef…
[all …]
DRCL_Command.h46 typedef RCL_Events (*RCL_CommandHandler)(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEven…
51 typedef void (*RCL_Callback)(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEvents);
62 RCL_Events rclCallbackMask; /*!< Callbacks enabled for events generated in RCL */
DRCL_Scheduler.h93 RCL_Events postedRclEvents; /* Events to be handled by the command handler */
357 bool RCL_Scheduler_postEvent(RCL_Command_Handle c, RCL_Events e);
DRCL.c115 RCL_Events rclEventsIn = rclSchedulerState.postedRclEvents; in rclCommandHwi()
116 RCL_Events rclEventsOut = RCL_EventNone; in rclCommandHwi()
268 RCL_Events rclEventMask = cmd->runtime.rclCallbackMask; in rclCommandHwi()
339RCL_Events rclEvents = { .value = currClient->deferredRclEvents.value & currCmd->runtime.rclCallba… in rclDispatchHwi()
340RCL_Events stopEvents = { .value = currClient->deferredRclEvents.value & ((RCL_Events){.stopDelay… in rclDispatchHwi()
361 RCL_Events rejectedEvents = RCL_EventNone; in rclDispatchHwi()
855 RCL_Events rclEvent = RCL_EventNone; in rclStop()
DRCL_Client.h50 RCL_Events deferredRclEvents; /* Deferred from cmd -> cmd */
DRCL_Types.h45 typedef union RCL_Events_u RCL_Events; typedef
DRCL_Scheduler.c741 bool RCL_Scheduler_postEvent(RCL_Command_Handle c, RCL_Events e) in RCL_Scheduler_postEvent()
/hal_ti-latest/simplelink_lpf3/source/ti/drivers/rcl/handlers/
Dgeneric.h40 RCL_Events RCL_Handler_Generic_Fs(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn);
41 RCL_Events RCL_Handler_Generic_FsOff(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn…
42 RCL_Events RCL_Handler_Generic_Tx(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn);
43 RCL_Events RCL_Handler_Generic_TxRepeat(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEvent…
44 RCL_Events RCL_Handler_Generic_TxTest(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsI…
45 RCL_Events RCL_Handler_Generic_Rx(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn);
46 RCL_Events RCL_Handler_Generic_PbeOperation(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclE…
47 RCL_Events RCL_Handler_Nesb_Ptx(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn);
48 RCL_Events RCL_Handler_Nesb_Prx(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn);
Dble5.h43 RCL_Events RCL_Handler_BLE5_adv(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn);
44 RCL_Events RCL_Handler_BLE5_scan_init(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsI…
45 RCL_Events RCL_Handler_BLE5_conn(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn);
46 RCL_Events RCL_Handler_BLE5_dtmTx(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn);
47 RCL_Events RCL_Handler_BLE5_genericRx(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsI…
48 RCL_Events RCL_Handler_BLE5_genericTx(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsI…
49 RCL_Events RCL_Handler_Ble5_txTest(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn);
50 RCL_Events RCL_Handler_BLE5_aux_adv(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn);
51 RCL_Events RCL_Handler_BLE5_periodicAdv(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEvent…
52 RCL_Events RCL_Handler_BLE5_periodicScan(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEven…
Dble_cs.h41 RCL_Events RCL_Handler_BLE_CS(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn);
42 RCL_Events RCL_Handler_BLE_CS_Precal(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn…
Dieee.h43 RCL_Events RCL_Handler_Ieee_RxTx(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn);
44 RCL_Events RCL_Handler_Ieee_TxTest(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn);
Dadc_noise.h40 RCL_Events RCL_Handler_ADC_Noise_getNoise(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEve…
Dgeneric.c136 RCL_Events RCL_Handler_Generic_Fs(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn) in RCL_Handler_Generic_Fs()
139 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_Generic_Fs()
227 RCL_Events RCL_Handler_Generic_FsOff(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn) in RCL_Handler_Generic_FsOff()
229 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_Generic_FsOff()
287 RCL_Events RCL_Handler_Generic_Tx(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn) in RCL_Handler_Generic_Tx()
290 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_Generic_Tx()
432 RCL_Events RCL_Handler_Generic_TxRepeat(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEvent… in RCL_Handler_Generic_TxRepeat()
435 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_Generic_TxRepeat()
694 RCL_Events RCL_Handler_Generic_TxTest(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsI… in RCL_Handler_Generic_TxTest()
697 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_Generic_TxTest()
[all …]
Dadc_noise.c80 RCL_Events RCL_Handler_ADC_Noise_getNoise(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEve… in RCL_Handler_ADC_Noise_getNoise()
83 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_ADC_Noise_getNoise()
Dble_cs.c505 static RCL_Events RCL_Handler_BLE_CS_preFillTxBuffer(RCL_CmdBleCs* pCmd);
506 static RCL_Events RCL_Handler_BLE_CS_readWriteBuffer(RCL_CmdBleCs* pCmd, bool forceBufferToFinishSt…
509 static RCL_Events RCL_Handler_BLE_CS_readS2RSamples(RCL_CmdBleCs *pCmd);
627 static RCL_Events RCL_Handler_BLE_CS_preFillTxBuffer(RCL_CmdBleCs* pCmd) in RCL_Handler_BLE_CS_preFillTxBuffer()
630 RCL_Events events = {.value = 0}; in RCL_Handler_BLE_CS_preFillTxBuffer()
806 static RCL_Events RCL_Handler_BLE_CS_readWriteBuffer(RCL_CmdBleCs* pCmd, bool forceBufferToFinishSt… in RCL_Handler_BLE_CS_readWriteBuffer()
809 RCL_Events events = {.value = 0}; in RCL_Handler_BLE_CS_readWriteBuffer()
874 RCL_Events RCL_Handler_BLE_CS_readS2RSamples(RCL_CmdBleCs *pCmd) in RCL_Handler_BLE_CS_readS2RSamples()
876 RCL_Events events = {.value = 0}; in RCL_Handler_BLE_CS_readS2RSamples()
1770 RCL_Events RCL_Handler_BLE_CS(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn) in RCL_Handler_BLE_CS()
[all …]
Dble5.c437 RCL_Events RCL_Handler_BLE5_adv(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn) in RCL_Handler_BLE5_adv()
445 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_BLE5_adv()
1430 RCL_Events RCL_Handler_BLE5_aux_adv(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn) in RCL_Handler_BLE5_aux_adv()
1436 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_BLE5_aux_adv()
2081 RCL_Events RCL_Handler_BLE5_periodicAdv(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEvent… in RCL_Handler_BLE5_periodicAdv()
2088 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_BLE5_periodicAdv()
2471 RCL_Events RCL_Handler_BLE5_scan_init(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsI… in RCL_Handler_BLE5_scan_init()
2476 RCL_Events rclEvents = RCL_EventNone; in RCL_Handler_BLE5_scan_init()
3473 RCL_Events RCL_Handler_BLE5_periodicScan(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEven… in RCL_Handler_BLE5_periodicScan()
3477 RCL_Events rclEvents = RCL_EventNone; in RCL_Handler_BLE5_periodicScan()
[all …]
Dieee.c163 RCL_Events RCL_Handler_Ieee_RxTx(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn) in RCL_Handler_Ieee_RxTx()
166 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_Ieee_RxTx()
1262 RCL_Events RCL_Handler_Ieee_TxTest(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEventsIn) in RCL_Handler_Ieee_TxTest()
1265 RCL_Events rclEvents = {.value = 0}; in RCL_Handler_Ieee_TxTest()
/hal_ti-latest/simplelink_lpf3/source/ti/drivers/rcl/wrappers/
DRCL_AdcNoise.c75 static void adcNoiseCallback(RCL_Command *cmd, LRF_Events lrfEvents, RCL_Events rclEvents) in adcNoiseCallback()