Quality RTOS & Embedded Software

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


Loading

FreeRTOS v8.1.0 on 64-Bit Platforms

Posted by pmendham on August 27, 2014

We are building FreeRTOS v8.1.0 for 64-bit Linux using the POSIX simulator. This is almost all fine, the main addition being the inclusion of a definition for portPOINTERSIZETYPE in portmacros.h:

:::C
#define portPOINTER_SIZE_TYPE uintptr_t

(If you see something wrong in this, please say!) However, a single warning remains which, to me, looks like a legitimate concern. On line 556 of tasks.c there is an assert:

:::C
configASSERT( ( ( ( uint32_t ) pxTopOfStack & ( uint32_t ) portBYTE_ALIGNMENT_MASK ) == 0UL ) );

In order to silence the warning, we have changed this to:

:::C
configASSERT( ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack & ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) == 0U ) );

Given that the line above this (555) has a documented MISRA exception on it, and carefully makes use of portPOINTERSIZETYPE, why does the assert cast to uint32_t? Is this a problem for anyone else (e.g. on the Windows simulator), or are we doing something differently/wrong?

Whatever the solution on this line, the same needs to be applied to line 563, which is the same assert, but for positive stack growth.

TIA,

Peter


FreeRTOS v8.1.0 on 64-Bit Platforms

Posted by rtel on August 27, 2014

Probably just because the asserts have mostly been used on devices with 32-bit pointers, or where the pointer is less than 32-bits so casting to a uint_32 is fine. There is no deliberate reason why. We can change it if it causes you an issue.

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