TI BLE5-Stack API Documentation
1.01.01.00
|
Util layer interface.
Go to the source code of this file.
Macros | |
#define | UTIL_QUEUE_EVENT_ID Event_Id_30 |
Util Queue Event ID. More... | |
Functions | |
Clock_Handle | Util_constructClock (Clock_Struct *pClock, Clock_FuncPtr clockCB, uint32_t clockDuration, uint32_t clockPeriod, uint8_t startFlag, UArg arg) |
Initialize a TIRTOS Clock instance. More... | |
Queue_Handle | Util_constructQueue (Queue_Struct *pQueue) |
Initialize an RTOS queue to hold messages from profile to be processed. More... | |
char * | Util_convertBdAddr2Str (uint8_t *pAddr) |
Convert Bluetooth address to string. Only needed when LCD display is used. More... | |
uint8_t * | Util_dequeueMsg (Queue_Handle msgQueue) |
Dequeues the message from the RTOS queue. More... | |
uint8_t | Util_enqueueMsg (Queue_Handle msgQueue, Event_Handle event, uint8_t *pMsg) |
Creates a queue node and puts the node in RTOS queue. More... | |
bool | Util_isActive (Clock_Struct *pClock) |
Determine if a clock is currently active. More... | |
uint8_t | Util_isBufSet (uint8_t *pBuf, uint8_t pattern, uint16_t len) |
Check if contents of buffer matches byte pattern. More... | |
void | Util_rescheduleClock (Clock_Struct *pClock, uint32_t clockPeriod) |
Reschedule a clock by changing the timeout and period values. More... | |
void | Util_restartClock (Clock_Struct *pClock, uint32_t clockTimeout) |
Restart a clock by changing the timeout. More... | |
void | Util_startClock (Clock_Struct *pClock) |
Start a clock. More... | |
void | Util_stopClock (Clock_Struct *pClock) |
Stop a clock. More... | |