SemaphoreP.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015-2023, Texas Instruments Incorporated
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * * Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * * Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * * Neither the name of Texas Instruments Incorporated nor the names of
17  * its contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
56 #ifndef ti_dpl_SemaphoreP__include
57 #define ti_dpl_SemaphoreP__include
58 
59 #include <stdint.h>
60 #include <stdbool.h>
61 #include <stddef.h>
62 
63 #ifdef __cplusplus
64 extern "C" {
65 #endif
66 
76 #define SemaphoreP_STRUCT_SIZE (80)
77 
84 typedef union SemaphoreP_Struct
85 {
86  uint32_t dummy;
89 
93 #define SemaphoreP_WAIT_FOREVER ~(0)
94 
98 #define SemaphoreP_NO_WAIT (0)
99 
103 typedef enum
104 {
110 
118 typedef void *SemaphoreP_Handle;
119 
123 typedef enum
124 {
128 
138 typedef struct
139 {
141  void (*callback)(void);
143 
160 
161 /*
162  * SemaphoreP construct APIs can only be used if one of the OS's
163  * is defined. For FreeRTOS, configSUPPORT_STATIC_ALLOCATION also
164  * has to be set to 1 in FreeRTOSConfig.h.
165  */
166 extern SemaphoreP_Handle SemaphoreP_construct(SemaphoreP_Struct *handle, unsigned int count, SemaphoreP_Params *params);
167 
168 extern SemaphoreP_Handle SemaphoreP_constructBinary(SemaphoreP_Struct *handle, unsigned int count);
169 
170 extern void SemaphoreP_destruct(SemaphoreP_Struct *semP);
171 
184 extern SemaphoreP_Handle SemaphoreP_create(unsigned int count, SemaphoreP_Params *params);
185 
197 extern SemaphoreP_Handle SemaphoreP_createBinary(unsigned int count);
198 
211 extern SemaphoreP_Handle SemaphoreP_createBinaryCallback(unsigned int count, void (*callback)(void));
212 
218 extern void SemaphoreP_delete(SemaphoreP_Handle handle);
219 
230 
243 extern SemaphoreP_Status SemaphoreP_pend(SemaphoreP_Handle handle, uint32_t timeout);
244 
250 extern void SemaphoreP_post(SemaphoreP_Handle handle);
251 
252 #ifdef __cplusplus
253 }
254 #endif
255 
256 #endif /* ti_dpl_SemaphoreP__include */
void SemaphoreP_delete(SemaphoreP_Handle handle)
Function to delete a semaphore.
Basic SemaphoreP Parameters.
Definition: SemaphoreP.h:138
ADC_Params params
Definition: Driver_Init.h:11
void SemaphoreP_post(SemaphoreP_Handle handle)
Function to post (signal) a semaphore from task of ISR context.
#define SemaphoreP_STRUCT_SIZE
Number of bytes greater than or equal to the size of any RTOS SemaphoreP object.
Definition: SemaphoreP.h:76
uint32_t dummy
Definition: SemaphoreP.h:86
SemaphoreP_Status
Status codes for SemaphoreP APIs (for backwards compatibility)
Definition: SemaphoreP.h:103
Definition: SemaphoreP.h:108
SemaphoreP_Mode mode
Definition: SemaphoreP.h:140
SemaphoreP_Status SemaphoreP_pend(SemaphoreP_Handle handle, uint32_t timeout)
Function to pend (wait) on a semaphore.
void * SemaphoreP_Handle
Opaque client reference to an instance of a SemaphoreP.
Definition: SemaphoreP.h:118
SemaphoreP_Handle SemaphoreP_createBinary(unsigned int count)
Function to create a binary semaphore.
void SemaphoreP_destruct(SemaphoreP_Struct *semP)
SemaphoreP_Handle SemaphoreP_create(unsigned int count, SemaphoreP_Params *params)
Function to create a semaphore.
Definition: SemaphoreP.h:125
SemaphoreP_Mode
Mode of the semaphore.
Definition: SemaphoreP.h:123
void SemaphoreP_Params_init(SemaphoreP_Params *params)
Initialize params structure to default values.
SemaphoreP_Handle SemaphoreP_constructBinary(SemaphoreP_Struct *handle, unsigned int count)
uint8_t data[(80)]
Definition: SemaphoreP.h:87
Definition: SemaphoreP.h:106
SemaphoreP_Params SemaphoreP_defaultParams
Default SemaphoreP instance parameters.
union SemaphoreP_Struct SemaphoreP_Struct
SemaphoreP structure.
SemaphoreP_Handle SemaphoreP_createBinaryCallback(unsigned int count, void(*callback)(void))
Function to create a binary semaphore.
Definition: SemaphoreP.h:126
SemaphoreP_Handle SemaphoreP_construct(SemaphoreP_Struct *handle, unsigned int count, SemaphoreP_Params *params)
SemaphoreP structure.
Definition: SemaphoreP.h:84
© Copyright 1995-2023, Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy policy | Terms of use | Terms of sale