Quality RTOS & Embedded Software

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


Loading

FreeRTOS 8.0.1: pitfalls with port_TICK_PERIOD_MS

Posted by chrismang on June 3, 2014

Hi,

with FreeRTOS V8.x the macro portTICKRATEMS is replaced by portTICKPERIODMS. No problem so far, just use search&replace.

Finally you will get some source like:

vTaskDelay(15/portTICKPERIODMS);

Wich is correct for the source point of view, but not from mathematic. What you want is 15*portTICKPERIODMS It's not a big thing, if you know about that. Some people may have trouble with it.

An other thing is: portTICKPERIODMS is defined as ( ( TickTypet ) 1000 / configTICKRATEHZ ) If you are using a really fast microcontroller and set your SysTick to 2kHz, you will get the macro ( ( TickTypet ) 1000 / 2000 ) TickType_t is a type of integer so the result is 0 ! And all your vTaskDelay will cause a warning due to a division by zero.

My suggestion is a macro like

//#define MAKETIMEMS(A) ( ( TickTypet ) A * configTICKRATEHZ / 1000 )

With this way you can avoid the unlucky x/portTICKPERIODMS definition and have a SysTick higher than 1kHz.

regards Chris


FreeRTOS 8.0.1: pitfalls with port_TICK_PERIOD_MS

Posted by rtel on June 3, 2014

Thanks for your input.

Ideally, granted the luxury of starting over, the names for nearly everything (functions, constants and source files) would change. As the situation is now, it would be extremely hard to make such fundamental changes without causing a lot of loyal users a lot of pain.

With regards to that particular constant - the naming is more correct now than previously. Historically the coding standard says constants (and variables) should have a postfix that states their units. That helps readability, and also makes units mismatches scream at you in the code. The constant itself is not used at all by the kernel, and is just provided for convenience of users. It also allows a common set of 'standard demo' tasks to run on all the hardware platforms. Most applications will run with a tick rate of around 100Hz, so going above 1KHz is unusual and generally not recommended - although we fully accept that there are some applications for which it makes sense.

The other historic anomaly is that the constant is defined in every portmacro.h file, yet it is always defined to the same thing, so it should really just be in the projdefs.h header file, or even FreeRTOS.h. It is therefore feasible to introduce a macro as you suggest into one of those common header files without breaking backward compatibility - as the old macro would still exist. Gradually over time examples can migrate from using the old method to the new method.

I will do something along those lines - although the name will be different, and be somewhat dependent on which header file it goes in.

Regards.


FreeRTOS 8.0.1: pitfalls with port_TICK_PERIOD_MS

Posted by rtel on June 3, 2014

I'm experimenting using the Win32 demo and the following definition (sorry for all the brackets - keeps MISRA happy!):

//#define pdMSTOTICKS( xTimeInMs ) ( ( TickTypet ) xTimeInMs * ( configTICKRATEHZ / ( ( TickTypet ) 1000 ) ) )

There will be the disadvantage of one extra multiplication and larger/slower code with this, but only when optimisation is completely off resulting in the calculation translating into C code that executes at run time rather than just using a compile time calculated constant.

Regards.


FreeRTOS 8.0.1: pitfalls with port_TICK_PERIOD_MS

Posted by chrismang on June 3, 2014

You should set our brackets different. You are doing the divition first - if configTICKRATEHZ is less than 1000 than the result is 0 multiplied by anything is also 0. You should do the multiplication first to avoid this. With Cortex-M3 TickTypet is a uint32t and the multiplication first should be no problem. I don't know if a integer overflow is possible on other controllers.

//#define pdMSTOTICKS( xTimeInMs ) ( ( ( TickTypet ) xTimeInMs * configTICKRATEHZ ) / ( TickTypet ) 1000 ) )

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