Quality RTOS & Embedded Software

 Real time embedded FreeRTOS RSS feed 
Quick Start Supported MCUs PDF Books Trace Tools Ecosystem


Loading

STM32 CortexM3 demo.

Posted by GregK on April 16, 2010
Hi

Seem to in demo config for STM32 CortexM3 arch is small bug (rather non consistency) but without side effects.

In FreeRTOSConfig.h

#define configMAX_SYSCALL_INTERRUPT_PRIORITY 191 /* equivalent to 0xb0, or priority 11. */

According http://www.st.com/stonline/products/literature/pm/15491.pdf page 20,
in BASEPRI only bits 7:4 are valid. So I expect rather:

#define configMAX_SYSCALL_INTERRUPT_PRIORITY (11U<<4U) /* equivalent to 0xb0, or priority 11. */
11U<<4U is 0xB0, what is also priority 11.

It is equivalent of 191 (0xBF), since from documentation bits 3:0 are reserved.

Regards


RE: STM32 CortexM3 demo.

Posted by Richard on April 16, 2010
The Cortex M3 is designed with 'forward compatibility' in mind (sounds like their marketing dept. got involved in that). This is why the interrupt mechanism is so confusing. The Cortex M3 itself has 8 bits of priority, but different implementations use a different number of bits. In the interest of 'forward compatibility' it is the most significant bits that are actually used, the idea being that code will be portable to future revisions of the cpu that might implement more bits.

The way the code is written is deliberate, and fine as it is. A lot of this code was written before the CMSIS stuff existed, and before most of the documentation on the CM3 was publicly available.

Regards.

RE: STM32 CortexM3 demo.

Posted by GregK on April 16, 2010
Catch point, thanks.


PS.
I expected something better documented like:
((11U<<4U) | 0x0FU)

RE: STM32 CortexM3 demo.

Posted by Richard on April 16, 2010
“I expected something better documented like:
((11U<<4U) | 0x0FU)”


I presume you mean that to be 0xF0, not 0x0F?

That would also depend on where the definition was used. In some cases (like in inline asm code) it cannot be written that way.

Regards.


[ Back to the top ]    [ About FreeRTOS ]    [ Privacy ]    [ Sitemap ]    [ ]


Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.

Latest News

NXP tweet showing LPC5500 (ARMv8-M Cortex-M33) running FreeRTOS.

Meet Richard Barry and learn about running FreeRTOS on RISC-V at FOSDEM 2019

Version 10.1.1 of the FreeRTOS kernel is available for immediate download. MIT licensed.

View a recording of the "OTA Update Security and Reliability" webinar, presented by TI and AWS.


Careers

FreeRTOS and other embedded software careers at AWS.



FreeRTOS Partners

ARM Connected RTOS partner for all ARM microcontroller cores

Espressif ESP32

IAR Partner

Microchip Premier RTOS Partner

RTOS partner of NXP for all NXP ARM microcontrollers

Renesas

STMicro RTOS partner supporting ARM7, ARM Cortex-M3, ARM Cortex-M4 and ARM Cortex-M0

Texas Instruments MCU Developer Network RTOS partner for ARM and MSP430 microcontrollers

OpenRTOS and SafeRTOS

Xilinx Microblaze and Zynq partner