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 --- .../group___c_m_s_i_s___r_t_o_s___definitions.html | 260 --------------------- 1 file changed, 260 deletions(-) delete mode 100644 Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___definitions.html (limited to 'Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___definitions.html') diff --git a/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___definitions.html b/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___definitions.html deleted file mode 100644 index e62e66b..0000000 --- a/Documentation/RTOS/html/group___c_m_s_i_s___r_t_o_s___definitions.html +++ /dev/null @@ -1,260 +0,0 @@ - - - - - -Generic Data Types and Definitions -CMSIS-RTOS: Generic Data Types and Definitions - - - - - - - - - - - - -
-
- - - - - - - -
-
CMSIS-RTOS -  Version 1.02 -
-
CMSIS-RTOS API: Generic RTOS interface for Cortex-M processor-based devices.
-
-
- -
-
    - -
-
- - -
-
- -
-
-
- -
-
- -
-
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...
 
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

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

Field Documentation

- -
-
- - - - -
union { ... } def
-
- -
-
- -
-
- - - - -
osMailQId mail_id
-
- -
-
- -
-
- - - - -
osMessageQId message_id
-
- -
-
- -
-
- - - - -
void* p
-
- -
-
- -
-
- - - - -
int32_t signals
-
- -
-
- -
-
- - - - -
osStatus status
-
- -
-
- -
-
- - - - -
uint32_t v
-
- -
-
- -
-
- - - - -
union { ... } value
-
- -
-
- -
-
- -
-
- - - - -
struct os_mailQ
-
-

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

-
-
-
-
-
- - - - -- cgit