File tree Expand file tree Collapse file tree
CMSIS/RTOS2/FreeRTOS/Source Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 <license >License/license.txt</license >
99
1010 <releases >
11+ <release version =" 10.0.2-dev1" >
12+ CMSIS:RTOS2:FreeRTOS update:
13+ - Updated to CMSIS API 2.1.3
14+ </release >
1115 <release version =" 10.0.2-dev0" >
1216 CMSIS:RTOS2:FreeRTOS update:
1317 - Corrected osDelayUntil execution duration
329333 </component >
330334
331335 <!-- CMSIS-RTOS2 FreeRTOS component -->
332- <component Cclass =" CMSIS" Cgroup =" RTOS2" Csub =" FreeRTOS" Cversion =" 10.0.2" Capiversion =" 2.1.2 " condition =" FreeRTOS RTOS2 CortexM" >
336+ <component Cclass =" CMSIS" Cgroup =" RTOS2" Csub =" FreeRTOS" Cversion =" 10.0.2" Capiversion =" 2.1.3 " condition =" FreeRTOS RTOS2 CortexM" >
333337 <description >CMSIS-RTOS2 implementation for Cortex-M based on FreeRTOS</description >
334338 <RTE_Components_h >
335339 #define RTE_CMSIS_RTOS2 /* CMSIS-RTOS2 */
346350 </files >
347351 </component >
348352
349- <component Cclass =" CMSIS" Cgroup =" RTOS2" Csub =" FreeRTOS" Cversion =" 10.0.2" Capiversion =" 2.1.2 " condition =" FreeRTOS RTOS2 CortexA" >
353+ <component Cclass =" CMSIS" Cgroup =" RTOS2" Csub =" FreeRTOS" Cversion =" 10.0.2" Capiversion =" 2.1.3 " condition =" FreeRTOS RTOS2 CortexA" >
350354 <description >CMSIS-RTOS2 implementation for Cortex-A based on FreeRTOS</description >
351355 <RTE_Components_h >
352356 #define RTE_CMSIS_RTOS2 /* CMSIS-RTOS2 */
Original file line number Diff line number Diff line change @@ -434,11 +434,7 @@ const char *osThreadGetName (osThreadId_t thread_id) {
434434osThreadId_t osThreadGetId (void ) {
435435 osThreadId_t id ;
436436
437- if (IS_IRQ ()) {
438- id = NULL ;
439- } else {
440- id = (osThreadId_t )xTaskGetCurrentTaskHandle ();
441- }
437+ id = (osThreadId_t )xTaskGetCurrentTaskHandle ();
442438
443439 return (id );
444440}
You can’t perform that action at this time.
0 commit comments