Quality RTOS & Embedded Software

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


Loading

STM32F4 Interrupt + FreeRTOS

Posted by fjullien on July 24, 2014

Hello,

I know it is a recurrent topic but after I read all a could find about this, I still have a problem using interrupts in combination with FreeRTOS.

I'm using libopencm3. On my board I can run the libopencm3 USB stack in interrupt mode without problem. But, if I run a FreeRTOS task, it mess up things (I get my device always connect/disconnect). I didn't look at the root cause of this connect/disconnect problem. However I suspect the usbd_poll function (called in the USB ISR) to be preempted. My ISR is as simple as this:

void otgfsisr(void) { usbdpoll(mscdev); }

And my task (I know, there is no vTaskDelay):

static portTASK_FUNCTION(vLEDFlashTask, pvParameters) { (void) pvParameters; int i = 0;

for(;;) { // It waits for TX reg empty then send the char usartsendblocking(USART1, 'A'); gpio_toggle(GPIOG, GPIO6); } }

I did setup all the priority bits as pre-emption priority:

// Same as NVICPriorityGroupConfig( NVICPriorityGroup4 ) scbsetprioritygrouping(SCBAIRCRPRIGROUPGROUP16NOSUB);

My ISR priority is 1:

nvicsetpriority(NVICOTGFS_IRQ, 1);

I also tried to change the system handler priority for systick, svcall and pendsv (as for what I understood are priority '0' by default):

SCBSHPR(SCBSHPRPRI11SVCALL) = 12; SCBSHPR(SCBSHPRPRI14PENDSV) = 13; SCBSHPR(SCBSHPRPRI15_SYSTICK) = 14;

However if I remove the usartsendblocking call in the task, it works as expected. Anyone as a clue ?

Thanks in advance,

Franck.


STM32F4 Interrupt + FreeRTOS

Posted by rtel on July 24, 2014

I'm afraid I don't know anything about this library, or its implementation. Are you aware that ST provide STM32Cube? ( http://www.st.com/stm32cube ) That has USB drivers and FreeRTOS included.

My ISR priority is 1:

Is your interrupt making use of FreeRTOS API functions? If so then I can't image 1 will be a correct value for this. What is configMAXSYSCALLINTERRUPT_PRIORITY set to?

I also tried to change the system handler priority for systick, svcall and pendsv (as for what I understood are priority '0' by default):

The systick and pendsv priorities will be overwritten to their correct values by FreeRTOS anyway, and the svcall priority is not used other than to kick the kernel off.

Regards.


STM32F4 Interrupt + FreeRTOS

Posted by fjullien on July 24, 2014

My interrupt does not use FreeRTOS API.

AFAIR, configMAXSYSCALLINTERRUPT_PRIORITY is set to 5 (I don't have access to my code right now).

Anyway, I think I'll move to STM32CubeMX. I can't spend too much time here. I just wanted to avoid STMCube, Windows and Atollic ;)

I'll get back to this later.

Thanks for your answer anyway.

Franck.


[ 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