Quality RTOS & Embedded Software

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


Loading

Help with configASSERT in vPortExitCritical

Posted by booherbg on April 13, 2017

Hi all. I have an intermittant bug that I'm trying to track down. Essentially an assertion failure in line 413 of port.c -- basically the first line of vPortExitCritical():

~~~ void vPortExitCritical( void ) { configASSERT( uxCriticalNesting ); uxCriticalNesting--; if( uxCriticalNesting == 0 ) { portENABLE_INTERRUPTS(); } } ~~~

I am trying to get my debugger to get trapped here so I can see a call trace. Even with a trace I fear that the actual reason for the error would be a previous call to vPortExitCritical(), as the assertion is simply that uxCriticalNesting is actually 0.

I would love any tips on where to look for how to track this down. I suspect there may be an issue with priorities, or some rogue conditional branch that may be causing this. It feels like someone is calling vPortExitCritical() from outside a critical region (thus reducing uxCriticalNesting to 0 prematurely). Does that sound like a correct guess?

I'm running FreeRTOS 8.2.3 on an Arm Cortex M7, and a Segger J-LINK debugger.

Blaine


Help with configASSERT in vPortExitCritical

Posted by rtel on April 13, 2017

You can add some code to give yourself a place to place a break point, as follows:

void vPortExitCritical( void )
{
     if( uxCriticalNesting == 0 )
     {
         __asm volatile ( "NOP" );
     }

     // Rest of vPortExitCritical() code goes here.

This uses GCC syntax. You can then place your breakpoint on the NOP instruction.


Help with configASSERT in vPortExitCritical

Posted by booherbg on April 13, 2017

Thank you. I'm giving this a try to see what my call trace looks like.


[ 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