Quality RTOS & Embedded Software

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


Loading

MPU demo LPC1768 link script problem

Posted by docsis on July 8, 2015

In file rtosdemordb1768Debug.ld, The privileged_data section simply set as bss:

privileged_data :
{
	_bss = .;
	*(privileged_data)
	/* Non kernel data is kept out of the first 256 bytes of SRAM. */
} > SRAM	

But in task.c, not all variable is zero initial value:

PRIVILEGED_DATA static volatile TickType_t xNextTaskUnblockTime		= portMAX_DELAY;

Not sure if this is an issue.


MPU demo LPC1768 link script problem

Posted by rtel on July 9, 2015

Thanks for pointing this out - it is an interesting one and I'm afraid I don't have an answer for how it worked however the head revision code no longer initialises this variable where it is declared, and instead initialises it immediately before the scheduler is started. The change was made explicitly to ensure the kernel itself had nothing outside the bss section.

You can see the head revision version here: https://sourceforge.net/p/freertos/code/HEAD/tree/trunk/FreeRTOS/Source/tasks.c#l250

Regards.


MPU demo LPC1768 link script problem

Posted by docsis on July 10, 2015

Thank you for your reply. Yes, this is the only privileged variable with no-zero initial value.

There are some other minor issues in link script, maybe also not issues: 1. If enable timer, PrivilegedDataRegionSize exceed 256. 2. If change flash start address to other value than zero, link fail. Have to change:

.text :
	{
		/* Non privileged code kept out of the first 16K or flash. */
		. = __privileged_functions_start__ + _Privileged_Functions_Region_Size;

to

.text :
	{
		/* Non privileged code kept out of the first 16K or flash. */
		. =  ORIGIN( FLASH ) + _Privileged_Functions_Region_Size;

In my environment, need change these to get right link result. 3. Also have to change this to put .bss after PrivilegedDataRegionSize.

. = ORIGIN( SRAM ) + _Privileged_Data_Region_Size;

.bss :
{
*(.bss*)
*(COMMON)
_ebss = .;
} > SRAM

to

.bss :
{
. = ORIGIN( SRAM ) + _Privileged_Data_Region_Size;
*(.bss*)
*(COMMON)
_ebss = .;
} > SRAM 


[ 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