From 9f95ff5b6ba01db09552b84a0ab79607060a2666 Mon Sep 17 00:00:00 2001 From: Ali Labbene Date: Wed, 11 Dec 2019 08:59:21 +0100 Subject: Official ARM version: v5.4.0 Add CMSIS V5.4.0, please refer to index.html available under \docs folder. Note: content of \CMSIS\Core\Include has been copied under \Include to keep the same structure used in existing projects, and thus avoid projects mass update Note: the following components have been removed from ARM original delivery (as not used in ST packages) - CMSIS_EW2018.pdf - .gitattributes - .gitignore - \Device - \CMSIS - \CoreValidation - \DAP - \Documentation - \DoxyGen - \Driver - \Pack - \RTOS\CMSIS_RTOS_Tutorial.pdf - \RTOS\RTX - \RTOS\Template - \RTOS2\RTX - \Utilities - All ARM/GCC projects files are deleted from \DSP, \RTOS and \RTOS2 Change-Id: Ia026c3f0f0d016627a4fb5a9032852c33d24b4d3 --- .../RTOS/html/group__CMSIS__RTOS__Definitions.html | 257 +++++++++++++++++++++ 1 file changed, 257 insertions(+) create mode 100644 docs/RTOS/html/group__CMSIS__RTOS__Definitions.html (limited to 'docs/RTOS/html/group__CMSIS__RTOS__Definitions.html') diff --git a/docs/RTOS/html/group__CMSIS__RTOS__Definitions.html b/docs/RTOS/html/group__CMSIS__RTOS__Definitions.html new file mode 100644 index 0000000..c5281f9 --- /dev/null +++ b/docs/RTOS/html/group__CMSIS__RTOS__Definitions.html @@ -0,0 +1,257 @@ + + + + + +Generic Data Types and Definitions +CMSIS-RTOS: Generic Data Types and Definitions + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
CMSIS-RTOS +  Version 1.03 +
+
Real-Time Operating System: API and RTX Reference Implementation.
+
+
+ +
+
    + +
+
+ + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
Generic Data Types and Definitions
+
+
+ +

Data Type Definitions used by the CMSIS-RTOS API functions. +More...

+ + + + + + + + + + + +

+Data Structures

struct  osEvent
 Event structure contains detailed information about an event. More...
 
union  osEvent.value
 
union  osEvent.def
 
struct  os_mailQ
 
+

Description

+

The Data Type section lists all data types that are used to exchange information with CMSIS-RTOS functions.

+

Data Structure Documentation

+ +
+
+ + + + +
struct osEvent
+
+
Note
MUST REMAIN UNCHANGED: os_event shall be consistent in every CMSIS-RTOS. However the struct may be extended at the end.
+

The osEvent structure describes the events returned by CMSIS-RTOS functions.

+
+ + + + + + + + + + +
Data Fields
+union osEvent +def +event definition
+osStatus +status +status code: event or error information
+union osEvent +value +event value
+ +
+
+ +
+
+ + + + +
union osEvent.value
+
+
+ + + + + + + + + + +
Data Fields
+void * +p +message or mail as void pointer
+int32_t +signals +signal flags
+uint32_t +v +message as 32-bit value
+ +
+
+ +
+
+ + + + +
union osEvent.def
+
+
+ + + + + + + +
Data Fields
+osMailQId +mail_id +mail id obtained by osMailCreate
+osMessageQId +message_id +message id obtained by osMessageCreate
+ +
+
+ +
+
+ + + + +
struct os_mailQ
+
+

The osEvent structure describes the events returned by CMSIS-RTOS functions.

+
+
+
+
+
+ + + + -- cgit