cmsis_os.h 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721
  1. /* ----------------------------------------------------------------------
  2. * $Date: 5. February 2013
  3. * $Revision: V1.02
  4. *
  5. * Project: CMSIS-RTOS API
  6. * Title: cmsis_os.h template header file
  7. *
  8. * Version 0.02
  9. * Initial Proposal Phase
  10. * Version 0.03
  11. * osKernelStart added, optional feature: main started as thread
  12. * osSemaphores have standard behavior
  13. * osTimerCreate does not start the timer, added osTimerStart
  14. * osThreadPass is renamed to osThreadYield
  15. * Version 1.01
  16. * Support for C++ interface
  17. * - const attribute removed from the osXxxxDef_t typedef's
  18. * - const attribute added to the osXxxxDef macros
  19. * Added: osTimerDelete, osMutexDelete, osSemaphoreDelete
  20. * Added: osKernelInitialize
  21. * Version 1.02
  22. * Control functions for short timeouts in microsecond resolution:
  23. * Added: osKernelSysTick, osKernelSysTickFrequency, osKernelSysTickMicroSec
  24. * Removed: osSignalGet
  25. *----------------------------------------------------------------------------
  26. *
  27. * Copyright (c) 2013-2017 ARM LIMITED
  28. *
  29. * SPDX-License-Identifier: Apache-2.0
  30. *
  31. * Licensed under the Apache License, Version 2.0 (the License); you may
  32. * not use this file except in compliance with the License.
  33. * You may obtain a copy of the License at
  34. *
  35. * www.apache.org/licenses/LICENSE-2.0
  36. *
  37. * Unless required by applicable law or agreed to in writing, software
  38. * distributed under the License is distributed on an AS IS BASIS, WITHOUT
  39. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  40. * See the License for the specific language governing permissions and
  41. * limitations under the License.
  42. *---------------------------------------------------------------------------*/
  43. #ifndef ZEPHYR_INCLUDE_CMSIS_RTOS_V1_CMSIS_OS_H_
  44. #define ZEPHYR_INCLUDE_CMSIS_RTOS_V1_CMSIS_OS_H_
  45. /// \note MUST REMAIN UNCHANGED: \b osCMSIS identifies the CMSIS-RTOS API version.
  46. #define osCMSIS 0x10002 ///< API version (main [31:16] .sub [15:0])
  47. /// \note CAN BE CHANGED: \b osCMSIS_KERNEL identifies the underlying RTOS kernel and version number.
  48. #define osCMSIS_KERNEL 0x10000 ///< RTOS identification and version (main [31:16] .sub [15:0])
  49. /// \note MUST REMAIN UNCHANGED: \b osKernelSystemId shall be consistent in every CMSIS-RTOS.
  50. #define osKernelSystemId "KERNEL V1.00" ///< RTOS identification string
  51. /// \note MUST REMAIN UNCHANGED: \b osFeature_xxx shall be consistent in every CMSIS-RTOS.
  52. #define osFeature_MainThread 1 ///< main thread 1=main can be thread, 0=not available
  53. #define osFeature_Pool 1 ///< Memory Pools: 1=available, 0=not available
  54. #define osFeature_MailQ 1 ///< Mail Queues: 1=available, 0=not available
  55. #define osFeature_MessageQ 1 ///< Message Queues: 1=available, 0=not available
  56. #define osFeature_Signals 8 ///< maximum number of Signal Flags available per thread
  57. #define osFeature_Semaphore 30 ///< maximum count for \ref osSemaphoreCreate function
  58. #define osFeature_Wait 0 ///< osWait function: 1=available, 0=not available
  59. #define osFeature_SysTick 1 ///< osKernelSysTick functions: 1=available, 0=not available
  60. #include <stdint.h>
  61. #include <stddef.h>
  62. #include <kernel.h>
  63. #include <sys/bitarray.h>
  64. #ifdef __cplusplus
  65. extern "C"
  66. {
  67. #endif
  68. // ==== Enumeration, structures, defines ====
  69. /// Priority used for thread control.
  70. /// \note MUST REMAIN UNCHANGED: \b osPriority shall be consistent in every CMSIS-RTOS.
  71. typedef enum {
  72. osPriorityIdle = -3, ///< priority: idle (lowest)
  73. osPriorityLow = -2, ///< priority: low
  74. osPriorityBelowNormal = -1, ///< priority: below normal
  75. osPriorityNormal = 0, ///< priority: normal (default)
  76. osPriorityAboveNormal = +1, ///< priority: above normal
  77. osPriorityHigh = +2, ///< priority: high
  78. osPriorityRealtime = +3, ///< priority: realtime (highest)
  79. osPriorityError = 0x84 ///< system cannot determine priority or thread has illegal priority
  80. } osPriority;
  81. /// Timeout value.
  82. /// \note MUST REMAIN UNCHANGED: \b osWaitForever shall be consistent in every CMSIS-RTOS.
  83. #define osWaitForever 0xFFFFFFFF ///< wait forever timeout value
  84. /// Status code values returned by CMSIS-RTOS functions.
  85. /// \note MUST REMAIN UNCHANGED: \b osStatus shall be consistent in every CMSIS-RTOS.
  86. typedef enum {
  87. osOK = 0, ///< function completed; no error or event occurred.
  88. osEventSignal = 0x08, ///< function completed; signal event occurred.
  89. osEventMessage = 0x10, ///< function completed; message event occurred.
  90. osEventMail = 0x20, ///< function completed; mail event occurred.
  91. osEventTimeout = 0x40, ///< function completed; timeout occurred.
  92. osErrorParameter = 0x80, ///< parameter error: a mandatory parameter was missing or specified an incorrect object.
  93. osErrorResource = 0x81, ///< resource not available: a specified resource was not available.
  94. osErrorTimeoutResource = 0xC1, ///< resource not available within given time: a specified resource was not available within the timeout period.
  95. osErrorISR = 0x82, ///< not allowed in ISR context: the function cannot be called from interrupt service routines.
  96. osErrorISRRecursive = 0x83, ///< function called multiple times from ISR with same object.
  97. osErrorPriority = 0x84, ///< system cannot determine priority or thread has illegal priority.
  98. osErrorNoMemory = 0x85, ///< system is out of memory: it was impossible to allocate or reserve memory for the operation.
  99. osErrorValue = 0x86, ///< value of a parameter is out of range.
  100. osErrorOS = 0xFF, ///< unspecified RTOS error: run-time error but no other error message fits.
  101. os_status_reserved = 0x7FFFFFFF ///< prevent from enum down-size compiler optimization.
  102. } osStatus;
  103. /// Timer type value for the timer definition.
  104. /// \note MUST REMAIN UNCHANGED: \b os_timer_type shall be consistent in every CMSIS-RTOS.
  105. typedef enum {
  106. osTimerOnce = 0, ///< one-shot timer
  107. osTimerPeriodic = 1 ///< repeating timer
  108. } os_timer_type;
  109. /// Entry point of a thread.
  110. /// \note MUST REMAIN UNCHANGED: \b os_pthread shall be consistent in every CMSIS-RTOS.
  111. typedef void (*os_pthread) (void const *argument);
  112. /// Entry point of a timer call back function.
  113. /// \note MUST REMAIN UNCHANGED: \b os_ptimer shall be consistent in every CMSIS-RTOS.
  114. typedef void (*os_ptimer) (void const *argument);
  115. // >>> the following data type definitions may shall adapted towards a specific RTOS
  116. /// Thread ID identifies the thread (pointer to a thread control block).
  117. /// \note CAN BE CHANGED: \b os_thread_cb is implementation specific in every CMSIS-RTOS.
  118. typedef struct os_thread_cb *osThreadId;
  119. /// Timer ID identifies the timer (pointer to a timer control block).
  120. /// \note CAN BE CHANGED: \b os_timer_cb is implementation specific in every CMSIS-RTOS.
  121. typedef struct os_timer_cb *osTimerId;
  122. /// Mutex ID identifies the mutex (pointer to a mutex control block).
  123. /// \note CAN BE CHANGED: \b os_mutex_cb is implementation specific in every CMSIS-RTOS.
  124. typedef struct os_mutex_cb *osMutexId;
  125. /// Semaphore ID identifies the semaphore (pointer to a semaphore control block).
  126. /// \note CAN BE CHANGED: \b os_semaphore_cb is implementation specific in every CMSIS-RTOS.
  127. typedef struct os_semaphore_cb *osSemaphoreId;
  128. /// Pool ID identifies the memory pool (pointer to a memory pool control block).
  129. /// \note CAN BE CHANGED: \b os_pool_cb is implementation specific in every CMSIS-RTOS.
  130. typedef struct os_pool_cb *osPoolId;
  131. /// Message ID identifies the message queue (pointer to a message queue control block).
  132. /// \note CAN BE CHANGED: \b os_messageQ_cb is implementation specific in every CMSIS-RTOS.
  133. typedef struct os_messageQ_cb *osMessageQId;
  134. /// Mail ID identifies the mail queue (pointer to a mail queue control block).
  135. /// \note CAN BE CHANGED: \b os_mailQ_cb is implementation specific in every CMSIS-RTOS.
  136. typedef struct os_mailQ_cb *osMailQId;
  137. /// Thread Definition structure contains startup information of a thread.
  138. /// \note CAN BE CHANGED: \b os_thread_def is implementation specific in every CMSIS-RTOS.
  139. typedef struct os_thread_def {
  140. os_pthread pthread; ///< start address of thread function
  141. osPriority tpriority; ///< initial thread priority
  142. uint32_t instances; ///< maximum number of instances of that thread function
  143. uint32_t stacksize; ///< stack size requirements in bytes; 0 is default stack size
  144. void *stack_mem; ///< pointer to array of stack memory
  145. struct k_thread *cm_thread; ///< pointer to k_thread structure
  146. struct k_poll_signal *poll_signal;
  147. struct k_poll_event *poll_event;
  148. int32_t signal_results;
  149. ///< a bitarray used to indicate whether the thread is used or not, 0: unused, 1: used
  150. void *status_mask;
  151. } osThreadDef_t;
  152. /// Timer Definition structure contains timer parameters.
  153. /// \note CAN BE CHANGED: \b os_timer_def is implementation specific in every CMSIS-RTOS.
  154. typedef struct os_timer_def {
  155. os_ptimer ptimer; ///< start address of a timer function
  156. } osTimerDef_t;
  157. /// Mutex Definition structure contains setup information for a mutex.
  158. /// \note CAN BE CHANGED: \b os_mutex_def is implementation specific in every CMSIS-RTOS.
  159. typedef struct os_mutex_def {
  160. uint32_t dummy; ///< dummy value.
  161. } osMutexDef_t;
  162. /// Semaphore Definition structure contains setup information for a semaphore.
  163. /// \note CAN BE CHANGED: \b os_semaphore_def is implementation specific in every CMSIS-RTOS.
  164. typedef struct os_semaphore_def {
  165. uint32_t dummy; ///< dummy value.
  166. } osSemaphoreDef_t;
  167. /// Definition structure for memory block allocation.
  168. /// \note CAN BE CHANGED: \b os_pool_def is implementation specific in every CMSIS-RTOS.
  169. typedef struct os_pool_def {
  170. uint32_t pool_sz; ///< number of items (elements) in the pool
  171. uint32_t item_sz; ///< size of an item
  172. void *pool; ///< pointer to memory for pool
  173. } osPoolDef_t;
  174. /// Definition structure for message queue.
  175. /// \note CAN BE CHANGED: \b os_messageQ_def is implementation specific in every CMSIS-RTOS.
  176. typedef struct os_messageQ_def {
  177. uint32_t queue_sz; ///< number of elements in the queue
  178. uint32_t item_sz; ///< size of an item
  179. void *pool; ///< memory array for messages
  180. struct k_msgq *msgq;
  181. } osMessageQDef_t;
  182. /// Definition structure for mail queue.
  183. /// \note CAN BE CHANGED: \b os_mailQ_def is implementation specific in every CMSIS-RTOS.
  184. typedef struct os_mailQ_def {
  185. uint32_t queue_sz; ///< number of elements in the queue
  186. uint32_t item_sz; ///< size of an item
  187. void *pool; ///< memory array for mail
  188. struct k_mbox *mbox;
  189. } osMailQDef_t;
  190. /// Event structure contains detailed information about an event.
  191. /// \note MUST REMAIN UNCHANGED: \b os_event shall be consistent in every CMSIS-RTOS.
  192. /// However the struct may be extended at the end.
  193. typedef struct {
  194. osStatus status; ///< status code: event or error information
  195. union {
  196. uint32_t v; ///< message as 32-bit value
  197. void *p; ///< message or mail as void pointer
  198. int32_t signals; ///< signal flags
  199. } value; ///< event value
  200. union {
  201. osMailQId mail_id; ///< mail id obtained by \ref osMailCreate
  202. osMessageQId message_id; ///< message id obtained by \ref osMessageCreate
  203. } def; ///< event definition
  204. } osEvent;
  205. // ==== Kernel Control Functions ====
  206. /// Initialize the RTOS Kernel for creating objects.
  207. /// \return status code that indicates the execution status of the function.
  208. /// \note MUST REMAIN UNCHANGED: \b osKernelInitialize shall be consistent in every CMSIS-RTOS.
  209. osStatus osKernelInitialize (void);
  210. /// Start the RTOS Kernel.
  211. /// \return status code that indicates the execution status of the function.
  212. /// \note MUST REMAIN UNCHANGED: \b osKernelStart shall be consistent in every CMSIS-RTOS.
  213. osStatus osKernelStart (void);
  214. /// Check if the RTOS kernel is already started.
  215. /// \note MUST REMAIN UNCHANGED: \b osKernelRunning shall be consistent in every CMSIS-RTOS.
  216. /// \return 0 RTOS is not started, 1 RTOS is started.
  217. int32_t osKernelRunning(void);
  218. #if (defined (osFeature_SysTick) && (osFeature_SysTick != 0)) // System Timer available
  219. /// Get the RTOS kernel system timer counter
  220. /// \note MUST REMAIN UNCHANGED: \b osKernelSysTick shall be consistent in every CMSIS-RTOS.
  221. /// \return RTOS kernel system timer as 32-bit value
  222. uint32_t osKernelSysTick (void);
  223. /// The RTOS kernel system timer frequency in Hz
  224. /// \note Reflects the system timer setting and is typically defined in a configuration file.
  225. #define osKernelSysTickFrequency sys_clock_hw_cycles_per_sec
  226. /// Convert a microseconds value to a RTOS kernel system timer value.
  227. /// \param microsec time value in microseconds.
  228. /// \return time value normalized to the \ref osKernelSysTickFrequency
  229. #define osKernelSysTickMicroSec(microsec) (((uint64_t)microsec * (osKernelSysTickFrequency)) / 1000000U)
  230. #endif // System Timer available
  231. // ==== Thread Management ====
  232. /// Create a Thread Definition with function, priority, and stack requirements.
  233. /// \param name name of the thread function.
  234. /// \param priority initial priority of the thread function.
  235. /// \param instances number of possible thread instances.
  236. /// \param stacksz stack size (in bytes) requirements for the thread function.
  237. /// \note CAN BE CHANGED: The parameters to \b osThreadDef shall be consistent but the
  238. /// macro body is implementation specific in every CMSIS-RTOS.
  239. #if defined (osObjectsExternal) // object is external
  240. #define osThreadDef(name, priority, instances, stacksz) \
  241. extern const osThreadDef_t os_thread_def_##name
  242. #else // define the object
  243. #define osThreadDef(name, priority, instances, stacksz) \
  244. static K_THREAD_STACK_ARRAY_DEFINE(stacks_##name, instances, CONFIG_CMSIS_THREAD_MAX_STACK_SIZE); \
  245. static struct k_thread cm_thread_##name[instances]; \
  246. static struct k_poll_signal wait_signal_##name; \
  247. static struct k_poll_event wait_events_##name; \
  248. static SYS_BITARRAY_DEFINE(bitarray_##name, instances); \
  249. static osThreadDef_t os_thread_def_##name = \
  250. { (name), (priority), (instances), (stacksz), (void *)(stacks_##name), \
  251. (cm_thread_##name), (&wait_signal_##name), \
  252. (&wait_events_##name), 0, (void *)(&bitarray_##name)}
  253. #endif
  254. /// Access a Thread definition.
  255. /// \param name name of the thread definition object.
  256. /// \note CAN BE CHANGED: The parameter to \b osThread shall be consistent but the
  257. /// macro body is implementation specific in every CMSIS-RTOS.
  258. #define osThread(name) \
  259. &os_thread_def_##name
  260. /// Create a thread and add it to Active Threads and set it to state READY.
  261. /// \param[in] thread_def thread definition referenced with \ref osThread.
  262. /// \param[in] argument pointer that is passed to the thread function as start argument.
  263. /// \return thread ID for reference by other functions or NULL in case of error.
  264. /// \note MUST REMAIN UNCHANGED: \b osThreadCreate shall be consistent in every CMSIS-RTOS.
  265. osThreadId osThreadCreate (const osThreadDef_t *thread_def, void *argument);
  266. /// Return the thread ID of the current running thread.
  267. /// \return thread ID for reference by other functions or NULL in case of error.
  268. /// \note MUST REMAIN UNCHANGED: \b osThreadGetId shall be consistent in every CMSIS-RTOS.
  269. osThreadId osThreadGetId (void);
  270. /// Terminate execution of a thread and remove it from Active Threads.
  271. /// \param[in] thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId.
  272. /// \return status code that indicates the execution status of the function.
  273. /// \note MUST REMAIN UNCHANGED: \b osThreadTerminate shall be consistent in every CMSIS-RTOS.
  274. osStatus osThreadTerminate (osThreadId thread_id);
  275. /// Pass control to next thread that is in state \b READY.
  276. /// \return status code that indicates the execution status of the function.
  277. /// \note MUST REMAIN UNCHANGED: \b osThreadYield shall be consistent in every CMSIS-RTOS.
  278. osStatus osThreadYield (void);
  279. /// Change priority of an active thread.
  280. /// \param[in] thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId.
  281. /// \param[in] priority new priority value for the thread function.
  282. /// \return status code that indicates the execution status of the function.
  283. /// \note MUST REMAIN UNCHANGED: \b osThreadSetPriority shall be consistent in every CMSIS-RTOS.
  284. osStatus osThreadSetPriority (osThreadId thread_id, osPriority priority);
  285. /// Get current priority of an active thread.
  286. /// \param[in] thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId.
  287. /// \return current priority value of the thread function.
  288. /// \note MUST REMAIN UNCHANGED: \b osThreadGetPriority shall be consistent in every CMSIS-RTOS.
  289. osPriority osThreadGetPriority (osThreadId thread_id);
  290. // ==== Generic Wait Functions ====
  291. /// Wait for Timeout (Time Delay).
  292. /// \param[in] millisec \ref CMSIS_RTOS_TimeOutValue "time delay" value
  293. /// \return status code that indicates the execution status of the function.
  294. osStatus osDelay (uint32_t millisec);
  295. #if (defined (osFeature_Wait) && (osFeature_Wait != 0)) // Generic Wait available
  296. /// Wait for Signal, Message, Mail, or Timeout.
  297. /// \param[in] millisec \ref CMSIS_RTOS_TimeOutValue or 0 in case of no time-out
  298. /// \return event that contains signal, message, or mail information or error code.
  299. /// \note MUST REMAIN UNCHANGED: \b osWait shall be consistent in every CMSIS-RTOS.
  300. osEvent osWait (uint32_t millisec);
  301. #endif // Generic Wait available
  302. // ==== Timer Management Functions ====
  303. /// Define a Timer object.
  304. /// \param name name of the timer object.
  305. /// \param function name of the timer call back function.
  306. /// \note CAN BE CHANGED: The parameter to \b osTimerDef shall be consistent but the
  307. /// macro body is implementation specific in every CMSIS-RTOS.
  308. #if defined (osObjectsExternal) // object is external
  309. #define osTimerDef(name, function) \
  310. extern const osTimerDef_t os_timer_def_##name
  311. #else // define the object
  312. #define osTimerDef(name, function) \
  313. const osTimerDef_t os_timer_def_##name = \
  314. { (function) }
  315. #endif
  316. /// Access a Timer definition.
  317. /// \param name name of the timer object.
  318. /// \note CAN BE CHANGED: The parameter to \b osTimer shall be consistent but the
  319. /// macro body is implementation specific in every CMSIS-RTOS.
  320. #define osTimer(name) \
  321. &os_timer_def_##name
  322. /// Create a timer.
  323. /// \param[in] timer_def timer object referenced with \ref osTimer.
  324. /// \param[in] type osTimerOnce for one-shot or osTimerPeriodic for periodic behavior.
  325. /// \param[in] argument argument to the timer call back function.
  326. /// \return timer ID for reference by other functions or NULL in case of error.
  327. /// \note MUST REMAIN UNCHANGED: \b osTimerCreate shall be consistent in every CMSIS-RTOS.
  328. osTimerId osTimerCreate (const osTimerDef_t *timer_def, os_timer_type type, void *argument);
  329. /// Start or restart a timer.
  330. /// \param[in] timer_id timer ID obtained by \ref osTimerCreate.
  331. /// \param[in] millisec \ref CMSIS_RTOS_TimeOutValue "time delay" value of the timer.
  332. /// \return status code that indicates the execution status of the function.
  333. /// \note MUST REMAIN UNCHANGED: \b osTimerStart shall be consistent in every CMSIS-RTOS.
  334. osStatus osTimerStart (osTimerId timer_id, uint32_t millisec);
  335. /// Stop the timer.
  336. /// \param[in] timer_id timer ID obtained by \ref osTimerCreate.
  337. /// \return status code that indicates the execution status of the function.
  338. /// \note MUST REMAIN UNCHANGED: \b osTimerStop shall be consistent in every CMSIS-RTOS.
  339. osStatus osTimerStop (osTimerId timer_id);
  340. /// Delete a timer that was created by \ref osTimerCreate.
  341. /// \param[in] timer_id timer ID obtained by \ref osTimerCreate.
  342. /// \return status code that indicates the execution status of the function.
  343. /// \note MUST REMAIN UNCHANGED: \b osTimerDelete shall be consistent in every CMSIS-RTOS.
  344. osStatus osTimerDelete (osTimerId timer_id);
  345. // ==== Signal Management ====
  346. /// Set the specified Signal Flags of an active thread.
  347. /// \param[in] thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId.
  348. /// \param[in] signals specifies the signal flags of the thread that should be set.
  349. /// \return previous signal flags of the specified thread or 0x80000000 in case of incorrect parameters.
  350. /// \note MUST REMAIN UNCHANGED: \b osSignalSet shall be consistent in every CMSIS-RTOS.
  351. int32_t osSignalSet (osThreadId thread_id, int32_t signals);
  352. /// Clear the specified Signal Flags of an active thread.
  353. /// \param[in] thread_id thread ID obtained by \ref osThreadCreate or \ref osThreadGetId.
  354. /// \param[in] signals specifies the signal flags of the thread that shall be cleared.
  355. /// \return previous signal flags of the specified thread or 0x80000000 in case of incorrect parameters or call from ISR.
  356. /// \note MUST REMAIN UNCHANGED: \b osSignalClear shall be consistent in every CMSIS-RTOS.
  357. int32_t osSignalClear (osThreadId thread_id, int32_t signals);
  358. /// Wait for one or more Signal Flags to become signaled for the current \b RUNNING thread.
  359. /// \param[in] signals wait until all specified signal flags set or 0 for any single signal flag.
  360. /// \param[in] millisec \ref CMSIS_RTOS_TimeOutValue or 0 in case of no time-out.
  361. /// \return event flag information or error code.
  362. /// \note MUST REMAIN UNCHANGED: \b osSignalWait shall be consistent in every CMSIS-RTOS.
  363. osEvent osSignalWait (int32_t signals, uint32_t millisec);
  364. // ==== Mutex Management ====
  365. /// Define a Mutex.
  366. /// \param name name of the mutex object.
  367. /// \note CAN BE CHANGED: The parameter to \b osMutexDef shall be consistent but the
  368. /// macro body is implementation specific in every CMSIS-RTOS.
  369. #if defined (osObjectsExternal) // object is external
  370. #define osMutexDef(name) \
  371. extern const osMutexDef_t os_mutex_def_##name
  372. #else // define the object
  373. #define osMutexDef(name) \
  374. const osMutexDef_t os_mutex_def_##name = { 0 }
  375. #endif
  376. /// Access a Mutex definition.
  377. /// \param name name of the mutex object.
  378. /// \note CAN BE CHANGED: The parameter to \b osMutex shall be consistent but the
  379. /// macro body is implementation specific in every CMSIS-RTOS.
  380. #define osMutex(name) \
  381. &os_mutex_def_##name
  382. /// Create and Initialize a Mutex object.
  383. /// \param[in] mutex_def mutex definition referenced with \ref osMutex.
  384. /// \return mutex ID for reference by other functions or NULL in case of error.
  385. /// \note MUST REMAIN UNCHANGED: \b osMutexCreate shall be consistent in every CMSIS-RTOS.
  386. osMutexId osMutexCreate (const osMutexDef_t *mutex_def);
  387. /// Wait until a Mutex becomes available.
  388. /// \param[in] mutex_id mutex ID obtained by \ref osMutexCreate.
  389. /// \param[in] millisec \ref CMSIS_RTOS_TimeOutValue or 0 in case of no time-out.
  390. /// \return status code that indicates the execution status of the function.
  391. /// \note MUST REMAIN UNCHANGED: \b osMutexWait shall be consistent in every CMSIS-RTOS.
  392. osStatus osMutexWait (osMutexId mutex_id, uint32_t millisec);
  393. /// Release a Mutex that was obtained by \ref osMutexWait.
  394. /// \param[in] mutex_id mutex ID obtained by \ref osMutexCreate.
  395. /// \return status code that indicates the execution status of the function.
  396. /// \note MUST REMAIN UNCHANGED: \b osMutexRelease shall be consistent in every CMSIS-RTOS.
  397. osStatus osMutexRelease (osMutexId mutex_id);
  398. /// Delete a Mutex that was created by \ref osMutexCreate.
  399. /// \param[in] mutex_id mutex ID obtained by \ref osMutexCreate.
  400. /// \return status code that indicates the execution status of the function.
  401. /// \note MUST REMAIN UNCHANGED: \b osMutexDelete shall be consistent in every CMSIS-RTOS.
  402. osStatus osMutexDelete (osMutexId mutex_id);
  403. // ==== Semaphore Management Functions ====
  404. #if (defined (osFeature_Semaphore) && (osFeature_Semaphore != 0)) // Semaphore available
  405. /// Define a Semaphore object.
  406. /// \param name name of the semaphore object.
  407. /// \note CAN BE CHANGED: The parameter to \b osSemaphoreDef shall be consistent but the
  408. /// macro body is implementation specific in every CMSIS-RTOS.
  409. #if defined (osObjectsExternal) // object is external
  410. #define osSemaphoreDef(name) \
  411. extern const osSemaphoreDef_t os_semaphore_def_##name
  412. #else // define the object
  413. #define osSemaphoreDef(name) \
  414. const osSemaphoreDef_t os_semaphore_def_##name = { 0 }
  415. #endif
  416. /// Access a Semaphore definition.
  417. /// \param name name of the semaphore object.
  418. /// \note CAN BE CHANGED: The parameter to \b osSemaphore shall be consistent but the
  419. /// macro body is implementation specific in every CMSIS-RTOS.
  420. #define osSemaphore(name) \
  421. &os_semaphore_def_##name
  422. /// Create and Initialize a Semaphore object used for managing resources.
  423. /// \param[in] semaphore_def semaphore definition referenced with \ref osSemaphore.
  424. /// \param[in] count number of available resources.
  425. /// \return semaphore ID for reference by other functions or NULL in case of error.
  426. /// \note MUST REMAIN UNCHANGED: \b osSemaphoreCreate shall be consistent in every CMSIS-RTOS.
  427. osSemaphoreId osSemaphoreCreate (const osSemaphoreDef_t *semaphore_def, int32_t count);
  428. /// Wait until a Semaphore token becomes available.
  429. /// \param[in] semaphore_id semaphore object referenced with \ref osSemaphoreCreate.
  430. /// \param[in] millisec \ref CMSIS_RTOS_TimeOutValue or 0 in case of no time-out.
  431. /// \return number of available tokens, or -1 in case of incorrect parameters.
  432. /// \note MUST REMAIN UNCHANGED: \b osSemaphoreWait shall be consistent in every CMSIS-RTOS.
  433. int32_t osSemaphoreWait (osSemaphoreId semaphore_id, uint32_t millisec);
  434. /// Release a Semaphore token.
  435. /// \param[in] semaphore_id semaphore object referenced with \ref osSemaphoreCreate.
  436. /// \return status code that indicates the execution status of the function.
  437. /// \note MUST REMAIN UNCHANGED: \b osSemaphoreRelease shall be consistent in every CMSIS-RTOS.
  438. osStatus osSemaphoreRelease (osSemaphoreId semaphore_id);
  439. /// Delete a Semaphore that was created by \ref osSemaphoreCreate.
  440. /// \param[in] semaphore_id semaphore object referenced with \ref osSemaphoreCreate.
  441. /// \return status code that indicates the execution status of the function.
  442. /// \note MUST REMAIN UNCHANGED: \b osSemaphoreDelete shall be consistent in every CMSIS-RTOS.
  443. osStatus osSemaphoreDelete (osSemaphoreId semaphore_id);
  444. #endif // Semaphore available
  445. // ==== Memory Pool Management Functions ====
  446. #if (defined (osFeature_Pool) && (osFeature_Pool != 0)) // Memory Pool Management available
  447. /// \brief Define a Memory Pool.
  448. /// \param name name of the memory pool.
  449. /// \param no maximum number of blocks (objects) in the memory pool.
  450. /// \param type data type of a single block (object).
  451. /// \note CAN BE CHANGED: The parameter to \b osPoolDef shall be consistent but the
  452. /// macro body is implementation specific in every CMSIS-RTOS.
  453. #if defined (osObjectsExternal) // object is external
  454. #define osPoolDef(name, no, type) \
  455. extern const osPoolDef_t os_pool_def_##name
  456. #else // define the object
  457. #define osPoolDef(name, no, type) \
  458. K_MEM_SLAB_DEFINE(os_mem_##name, sizeof(type), no, 4); \
  459. const osPoolDef_t os_pool_def_##name = \
  460. { (no), sizeof(type), &os_mem_##name }
  461. #endif
  462. /// \brief Access a Memory Pool definition.
  463. /// \param name name of the memory pool
  464. /// \note CAN BE CHANGED: The parameter to \b osPool shall be consistent but the
  465. /// macro body is implementation specific in every CMSIS-RTOS.
  466. #define osPool(name) \
  467. &os_pool_def_##name
  468. /// Create and Initialize a memory pool.
  469. /// \param[in] pool_def memory pool definition referenced with \ref osPool.
  470. /// \return memory pool ID for reference by other functions or NULL in case of error.
  471. /// \note MUST REMAIN UNCHANGED: \b osPoolCreate shall be consistent in every CMSIS-RTOS.
  472. osPoolId osPoolCreate (const osPoolDef_t *pool_def);
  473. /// Allocate a memory block from a memory pool.
  474. /// \param[in] pool_id memory pool ID obtain referenced with \ref osPoolCreate.
  475. /// \return address of the allocated memory block or NULL in case of no memory available.
  476. /// \note MUST REMAIN UNCHANGED: \b osPoolAlloc shall be consistent in every CMSIS-RTOS.
  477. void *osPoolAlloc (osPoolId pool_id);
  478. /// Allocate a memory block from a memory pool and set memory block to zero.
  479. /// \param[in] pool_id memory pool ID obtain referenced with \ref osPoolCreate.
  480. /// \return address of the allocated memory block or NULL in case of no memory available.
  481. /// \note MUST REMAIN UNCHANGED: \b osPoolCAlloc shall be consistent in every CMSIS-RTOS.
  482. void *osPoolCAlloc (osPoolId pool_id);
  483. /// Return an allocated memory block back to a specific memory pool.
  484. /// \param[in] pool_id memory pool ID obtain referenced with \ref osPoolCreate.
  485. /// \param[in] block address of the allocated memory block that is returned to the memory pool.
  486. /// \return status code that indicates the execution status of the function.
  487. /// \note MUST REMAIN UNCHANGED: \b osPoolFree shall be consistent in every CMSIS-RTOS.
  488. osStatus osPoolFree (osPoolId pool_id, void *block);
  489. #endif // Memory Pool Management available
  490. // ==== Message Queue Management Functions ====
  491. #if (defined (osFeature_MessageQ) && (osFeature_MessageQ != 0)) // Message Queues available
  492. /// \brief Create a Message Queue Definition.
  493. /// \param name name of the queue.
  494. /// \param queue_sz maximum number of messages in the queue.
  495. /// \param type data type of a single message element (for debugger).
  496. /// \note CAN BE CHANGED: The parameter to \b osMessageQDef shall be consistent but the
  497. /// macro body is implementation specific in every CMSIS-RTOS.
  498. #if defined (osObjectsExternal) // object is external
  499. #define osMessageQDef(name, queue_sz, type) \
  500. extern const osMessageQDef_t os_messageQ_def_##name
  501. #else // define the object
  502. #define osMessageQDef(name, queue_sz, type) \
  503. struct k_msgq msgq_##name; \
  504. static char __aligned(4) buf_##name[queue_sz * sizeof(type)]; \
  505. const osMessageQDef_t os_messageQ_def_##name = \
  506. { (queue_sz), sizeof (type), (buf_##name), (&msgq_##name) }
  507. #endif
  508. /// \brief Access a Message Queue Definition.
  509. /// \param name name of the queue
  510. /// \note CAN BE CHANGED: The parameter to \b osMessageQ shall be consistent but the
  511. /// macro body is implementation specific in every CMSIS-RTOS.
  512. #define osMessageQ(name) \
  513. &os_messageQ_def_##name
  514. /// Create and Initialize a Message Queue.
  515. /// \param[in] queue_def queue definition referenced with \ref osMessageQ.
  516. /// \param[in] thread_id thread ID (obtained by \ref osThreadCreate or \ref osThreadGetId) or NULL.
  517. /// \return message queue ID for reference by other functions or NULL in case of error.
  518. /// \note MUST REMAIN UNCHANGED: \b osMessageCreate shall be consistent in every CMSIS-RTOS.
  519. osMessageQId osMessageCreate (const osMessageQDef_t *queue_def, osThreadId thread_id);
  520. /// Put a Message to a Queue.
  521. /// \param[in] queue_id message queue ID obtained with \ref osMessageCreate.
  522. /// \param[in] info message information.
  523. /// \param[in] millisec \ref CMSIS_RTOS_TimeOutValue or 0 in case of no time-out.
  524. /// \return status code that indicates the execution status of the function.
  525. /// \note MUST REMAIN UNCHANGED: \b osMessagePut shall be consistent in every CMSIS-RTOS.
  526. osStatus osMessagePut (osMessageQId queue_id, uint32_t info, uint32_t millisec);
  527. /// Get a Message or Wait for a Message from a Queue.
  528. /// \param[in] queue_id message queue ID obtained with \ref osMessageCreate.
  529. /// \param[in] millisec \ref CMSIS_RTOS_TimeOutValue or 0 in case of no time-out.
  530. /// \return event information that includes status code.
  531. /// \note MUST REMAIN UNCHANGED: \b osMessageGet shall be consistent in every CMSIS-RTOS.
  532. osEvent osMessageGet (osMessageQId queue_id, uint32_t millisec);
  533. #endif // Message Queues available
  534. // ==== Mail Queue Management Functions ====
  535. #if (defined (osFeature_MailQ) && (osFeature_MailQ != 0)) // Mail Queues available
  536. /// \brief Create a Mail Queue Definition.
  537. /// \param name name of the queue
  538. /// \param queue_sz maximum number of messages in queue
  539. /// \param type data type of a single message element
  540. /// \note CAN BE CHANGED: The parameter to \b osMailQDef shall be consistent but the
  541. /// macro body is implementation specific in every CMSIS-RTOS.
  542. #if defined (osObjectsExternal) // object is external
  543. #define osMailQDef(name, queue_sz, type) \
  544. extern const osMailQDef_t os_mailQ_def_##name
  545. #else // define the object
  546. #define osMailQDef(name, queue_sz, type) \
  547. struct k_mbox mbox_##name; \
  548. K_MEM_SLAB_DEFINE(mailq_slab_##name, sizeof(type), queue_sz, 4); \
  549. const osMailQDef_t os_mailQ_def_##name = \
  550. { (queue_sz), sizeof (type), (&mailq_slab_##name), (&mbox_##name) }
  551. #endif
  552. /// \brief Access a Mail Queue Definition.
  553. /// \param name name of the queue
  554. /// \note CAN BE CHANGED: The parameter to \b osMailQ shall be consistent but the
  555. /// macro body is implementation specific in every CMSIS-RTOS.
  556. #define osMailQ(name) \
  557. &os_mailQ_def_##name
  558. /// Create and Initialize mail queue.
  559. /// \param[in] queue_def reference to the mail queue definition obtain with \ref osMailQ
  560. /// \param[in] thread_id thread ID (obtained by \ref osThreadCreate or \ref osThreadGetId) or NULL.
  561. /// \return mail queue ID for reference by other functions or NULL in case of error.
  562. /// \note MUST REMAIN UNCHANGED: \b osMailCreate shall be consistent in every CMSIS-RTOS.
  563. osMailQId osMailCreate (const osMailQDef_t *queue_def, osThreadId thread_id);
  564. /// Allocate a memory block from a mail.
  565. /// \param[in] queue_id mail queue ID obtained with \ref osMailCreate.
  566. /// \param[in] millisec \ref CMSIS_RTOS_TimeOutValue or 0 in case of no time-out
  567. /// \return pointer to memory block that can be filled with mail or NULL in case of error.
  568. /// \note MUST REMAIN UNCHANGED: \b osMailAlloc shall be consistent in every CMSIS-RTOS.
  569. void *osMailAlloc (osMailQId queue_id, uint32_t millisec);
  570. /// Allocate a memory block from a mail and set memory block to zero.
  571. /// \param[in] queue_id mail queue ID obtained with \ref osMailCreate.
  572. /// \param[in] millisec \ref CMSIS_RTOS_TimeOutValue or 0 in case of no time-out
  573. /// \return pointer to memory block that can be filled with mail or NULL in case of error.
  574. /// \note MUST REMAIN UNCHANGED: \b osMailCAlloc shall be consistent in every CMSIS-RTOS.
  575. void *osMailCAlloc (osMailQId queue_id, uint32_t millisec);
  576. /// Put a mail to a queue.
  577. /// \param[in] queue_id mail queue ID obtained with \ref osMailCreate.
  578. /// \param[in] mail memory block previously allocated with \ref osMailAlloc or \ref osMailCAlloc.
  579. /// \return status code that indicates the execution status of the function.
  580. /// \note MUST REMAIN UNCHANGED: \b osMailPut shall be consistent in every CMSIS-RTOS.
  581. osStatus osMailPut (osMailQId queue_id, void *mail);
  582. /// Get a mail from a queue.
  583. /// \param[in] queue_id mail queue ID obtained with \ref osMailCreate.
  584. /// \param[in] millisec \ref CMSIS_RTOS_TimeOutValue or 0 in case of no time-out
  585. /// \return event that contains mail information or error code.
  586. /// \note MUST REMAIN UNCHANGED: \b osMailGet shall be consistent in every CMSIS-RTOS.
  587. osEvent osMailGet (osMailQId queue_id, uint32_t millisec);
  588. /// Free a memory block from a mail.
  589. /// \param[in] queue_id mail queue ID obtained with \ref osMailCreate.
  590. /// \param[in] mail pointer to the memory block that was obtained with \ref osMailGet.
  591. /// \return status code that indicates the execution status of the function.
  592. /// \note MUST REMAIN UNCHANGED: \b osMailFree shall be consistent in every CMSIS-RTOS.
  593. osStatus osMailFree (osMailQId queue_id, void *mail);
  594. #endif // Mail Queues available
  595. #ifdef __cplusplus
  596. }
  597. #endif
  598. #endif /* ZEPHYR_INCLUDE_CMSIS_RTOS_V1_CMSIS_OS_H_ */