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 --- docs/RTOS/html/RTX__Conf__CM_8c.html | 499 +++++++++++++++++++++++++++++++++++ 1 file changed, 499 insertions(+) create mode 100644 docs/RTOS/html/RTX__Conf__CM_8c.html (limited to 'docs/RTOS/html/RTX__Conf__CM_8c.html') diff --git a/docs/RTOS/html/RTX__Conf__CM_8c.html b/docs/RTOS/html/RTX__Conf__CM_8c.html new file mode 100644 index 0000000..5481dd1 --- /dev/null +++ b/docs/RTOS/html/RTX__Conf__CM_8c.html @@ -0,0 +1,499 @@ + + + + + +RTX_Conf_CM.c File Reference +CMSIS-RTOS: RTX_Conf_CM.c File Reference + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
CMSIS-RTOS +  Version 1.03 +
+
Real-Time Operating System: API and RTX Reference Implementation.
+
+
+ +
+
    + +
+
+ + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
RTX_Conf_CM.c File Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Macros

#define OS_TASKCNT   6
 
#define OS_STKSIZE   50
 
#define OS_MAINSTKSIZE   50
 
#define OS_PRIVCNT   0
 
#define OS_PRIVSTKSIZE   0
 
#define OS_STKCHECK   1
 
#define OS_STKINIT   0
 
#define OS_RUNPRIV   1
 
#define OS_CLOCK   12000000
 
#define OS_TICK   1000
 
#define OS_ROBIN   1
 
#define OS_ROBINTOUT   5
 
#define OS_TIMERS   1
 
#define OS_TIMERPRIO   5
 
#define OS_TIMERSTKSZ   50
 
#define OS_TIMERCBQS   4
 
#define OS_FIFOSZ   16
 
#define OS_MUTEXCNT   8
 
#define OS_TRV   ((uint32_t)(((double)OS_CLOCK*(double)OS_TICK)/1E6)-1)
 
#define OS_ERROR_STACK_OVF   1
 
#define OS_ERROR_FIFO_OVF   2
 
#define OS_ERROR_MBX_OVF   3
 
#define OS_ERROR_TIMER_OVF   4
 
+ + + + + + + + + + + + + + + + + + + + + +

+Functions

void os_idle_demon (void)
 The idle demon is running when no other thread is ready to run. More...
 
int os_tick_init (void)
 Initializes an alternative hardware timer as RTX kernel timer. More...
 
uint32_t os_tick_val (void)
 Get alternative hardware timer's current value (0 .. OS_TRV) More...
 
uint32_t os_tick_ovf (void)
 Get alternative hardware timer's overflow flag. More...
 
void os_tick_irqack (void)
 Acknowledge alternative hardware timer interrupt. More...
 
osThreadId svcThreadGetId (void)
 
void os_error (uint32_t error_code)
 Called when a runtime error is detected. More...
 
+

Macro Definition Documentation

+ +
+
+ + + + +
#define OS_CLOCK   12000000
+
+ +
+
+ +
+
+ + + + +
#define OS_ERROR_FIFO_OVF   2
+
+ +
+
+ +
+
+ + + + +
#define OS_ERROR_MBX_OVF   3
+
+ +
+
+ +
+
+ + + + +
#define OS_ERROR_STACK_OVF   1
+
+ +
+
+ +
+
+ + + + +
#define OS_ERROR_TIMER_OVF   4
+
+ +
+
+ +
+
+ + + + +
#define OS_FIFOSZ   16
+
+ +
+
+ +
+
+ + + + +
#define OS_MAINSTKSIZE   50
+
+ +
+
+ +
+
+ + + + +
#define OS_MUTEXCNT   8
+
+ +
+
+ +
+
+ + + + +
#define OS_PRIVCNT   0
+
+ +
+
+ +
+
+ + + + +
#define OS_PRIVSTKSIZE   0
+
+ +
+
+ +
+
+ + + + +
#define OS_ROBIN   1
+
+ +
+
+ +
+
+ + + + +
#define OS_ROBINTOUT   5
+
+ +
+
+ +
+
+ + + + +
#define OS_RUNPRIV   1
+
+ +
+
+ +
+
+ + + + +
#define OS_STKCHECK   1
+
+ +
+
+ +
+
+ + + + +
#define OS_STKINIT   0
+
+ +
+
+ +
+
+ + + + +
#define OS_STKSIZE   50
+
+ +
+
+ +
+
+ + + + +
#define OS_TASKCNT   6
+
+ +
+
+ +
+
+ + + + +
#define OS_TICK   1000
+
+ +
+
+ +
+
+ + + + +
#define OS_TIMERCBQS   4
+
+ +
+
+ +
+
+ + + + +
#define OS_TIMERPRIO   5
+
+ +
+
+ +
+
+ + + + +
#define OS_TIMERS   1
+
+ +
+
+ +
+
+ + + + +
#define OS_TIMERSTKSZ   50
+
+ +
+
+ +
+
+ + + + +
#define OS_TRV   ((uint32_t)(((double)OS_CLOCK*(double)OS_TICK)/1E6)-1)
+
+ +
+
+

Function Documentation

+ +
+
+ + + + + + + + +
osThreadId svcThreadGetId (void )
+
+ +
+
+
+
+ + + + -- cgit