Quality RTOS & Embedded Software

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


Loading

xTaskIncrementTick() could be called when pxCurrentTCB == NULL

Posted by dddddppppp on July 20, 2014

I’m running code, generated by STM32Cube and have dropped to HardFaultHandler() on start of execution. By debugging I have found this issue: STM32Cube code generator placed xPortSysTickHandler() into SysTickHandler() for 1 ms tick counting. xPortSysTickHandler() calls xTaskIncrementTick(), which execute follow code:

... if( listCURRENTLISTLENGTH( &( pxReadyTasksLists[ pxCurrentTCB->uxPriority ] ) ) > ( UBaseType_t ) 1 ) ...

But, clock system had initialized before any tasks have been created. And interrupt SysTick_Handler() may occurs when no tasks and even scheduler is not running yet. So, pointer pxCurrentTCB equal to zero at this moment and [pxCurrentTCB -> uxPriority] indicates some random value. It caused system exception.

As temporary solution I just have added one of task creation procedure before clock initialization. That is not good coding, but works.


xTaskIncrementTick() could be called when pxCurrentTCB == NULL

Posted by rtel on July 20, 2014

The clock should not be initialised until the scheduler has started. The sequence used by FreeRTOS is as follows:

1) Ensure interrupts are disabled. 2) Configure clock to generate tick interrupts. 3) Start the first task (which automatically re-enables interrupts).

So the clock initialisation code must itself be enabling the systick, which it need not do as FreeRTOS will do that itself at the appropriate time.

One solution for you, which assumes the ST code is not also enabling interrupts, is to simply call taskENTER_CRITICAL (or globally disable interrupts) before the clock initialisation is done. The scheduler will automatically set the global interrupts and critical section state to be correct when it starts.

Regards, Richard Barry.


xTaskIncrementTick() could be called when pxCurrentTCB == NULL

Posted by dddddppppp on July 23, 2014

Thanks Richard! ST promisses to fix it in the next version. So, I have decided to develop own project, using Cube as reference only. Based on examlpes from FreeRTOS package it work fine.

Regards. Dmitry Popov


[ 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