Quality RTOS & Embedded Software

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


Loading

STR9 Flash pb, no restart after power cycle

Posted by damien h on September 4, 2008
Hi everybody,


I have some trouble to program my STR9 with my USB Olimix JTAG and OpenOCD (r717)

(dev board : E912 Olimex with STR912F44, JTAG : Olimex ARM-USB-OCD, i boot always from bank 0, bank1 is used for data only)


I have no problem for debug, everything works perfectly (including FreeRTOS ;-)


If I load an image, i can execute, do a reset and continue to use my device. But when i loose my power supply, the software CAN'T restart.

Is somebody who have successfully used OpenOCD - Olimex JTAG to burn a STR912 flash ?
Is somebody who have already experienced this kind of events.

Is it something wrong in my linker file ?


Any idea welcome.
Thanks in advance.

Damien



_HEAPSIZE = 40000;


MEMORY
{
flash (rx) : ORIGIN = 0x00000000, LENGTH = 512K
ram (rw) : ORIGIN = 0x04000000, LENGTH = 96K
}


SECTIONS
{
.text :
{
KEEP(*(.vectors))
KEEP(*(.init))
*(.text .text.*)
*(.gnu.linkonce.t.*)
*(.glue_7t .glue_7)
KEEP(*(.fini))
*(.gcc_except_table)
} >flash =0
. = ALIGN(4);


/* .rodata section which is used for read-only data (constants) */

.rodata :
{
*(.rodata .rodata.*)
*(.gnu.linkonce.r.*)
} >flash
. = ALIGN(4);

_etext = .;
PROVIDE (etext = .);

/* .data section which is used for initialized data */

.data : AT (_etext)
{
__data_start = .;
*(.data .data.*)
*(.gnu.linkonce.d.*)
. = ALIGN(4);
*(.fastrun .fastrun.*)
} >ram
. = ALIGN(4);

_edata = .;
PROVIDE (edata = .);

/* .bss section which is used for uninitialized data */

.bss :
{
__bss_start = .;
__bss_start__ = .;
*(.bss .bss.*)
*(.gnu.linkonce.b.*)
*(COMMON)
. = ALIGN(4);
} >ram
. = ALIGN(4);
__bss_end__ = .;

_end = .;
PROVIDE(end = .);

/*
.heap (NOLOAD) :
{
__heap_start__ = .;
_heap_start = .;
*(.heap)
. = MAX(__heap_start__ + _HEAPSIZE , .);
} >ram
__heap_end__ = __heap_start__ + SIZEOF(.heap);
_heap_end = __heap_start__ + SIZEOF(.heap);

*/

}
. = ALIGN(32 / 8);
_end = .;
_bss_end__ = . ; __bss_end__ = . ; __end__ = . ;
PROVIDE (end = .);




RE: STR9 Flash pb, no restart after power cycle

Posted by Stefano Oliveri on September 4, 2008
Hi Damien,

I had the same problem on STR912+Eclipse+OpenOCD. I use the same linker file, but I found that the problem was in the startup file - startup.s.

I added the following three code lines just before the _start assembly label:

---------------------------------------
.text
.arm
.section .init, "ax"


_start:
ldr pc, =NextInst
NextInst:
--------------------------------------

This solve my problem by placing the _start function in the right segment.

I hope this should help you.

Regards,
Stefano

RE: STR9 Flash pb, no restart after power cycle

Posted by damien h on September 4, 2008
Hi Stephano,


it's clear, You have completely right....
Thank you very much for this help


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