Tool/software: Code Composer Studio
Hi,
I am trying to integrate the UART Bootloader project into my design. I am successfully receiving the first packet (via YMODEM), but then am failing to initialize the flash via the F021 Flash API. I can step through the code and it fails when it calls Fapi_setActiveFlashBank() and ends up at an undefined instruction interrupt (0x0004).
I think this is a bit of a red herring though, because reading up in other posts it sounds like my Flash API may not be copying into RAM and executing out of it. People suggest a ramfuncs definition in the .cmd file, but I'm at a loss how to do this, and I also feel like the UART Bootloader project probably should have already had this set up?
Can anyone provide some insight on how to link the F021 Flash API .lib into a project? I'm pretty certain that's where my problem is.
Here is my .cmd file:
//*****************************************************************************
//
// bl_link.cmd : Linker command file
// Author : QJ Wang. qjwang@ti.com
// Date : 9-19-2012
//
// Copyright (c) 2006-2011 Texas Instruments Incorporated. All rights reserved.
// Software License Agreement
//
// Texas Instruments (TI) is supplying this software for use solely and
// exclusively on TI's microcontroller products. The software is owned by
// TI and/or its suppliers, and is protected under applicable copyright
// laws. You may not combine this software with "viral" open-source
// software in order to form a larger program.
//
// THIS SOFTWARE IS PROVIDED "AS IS" AND WITH ALL FAULTS.
// NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT
// NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. TI SHALL NOT, UNDER ANY
// CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
// DAMAGES, FOR ANY REASON WHATSOEVER.
//
//*****************************************************************************
--retain="*(.intvecs)"
MEMORY
{
VECTORS (X) : origin=0x00000000 length=0x00000200
BOOT_LOAD (RX) : origin=0x00000200 length=0x00001000
FLASH_API (RX) : origin=0x00001200 length=0x00001000
FLASH0 (RX) : origin=0x00002200 length=0x00018000
FLASH1 (RX) : origin=0x00020000 length=0x00060000
FLASH2 (RX) : origin=0x00080000 length=0x00080000
FLASH3 (RX) : origin=0x00100000 length=0x00080000
FLASH4 (RX) : origin=0x00180000 length=0x00080000
SRAM (RW) : origin=0x08002000 length=0x0002D000
STACK (RW) : origin=0x08000000 length=0x00001FF0
// RSV (RW) : origin=0x08000000 length=0x00000010 fill=0
}
SECTIONS
{
.intvecs : {} > VECTORS
//boot_code : {..\Release\sys_core.obj (.text)} > BOOT_LOAD
//eabi_start : {..\Release\sys_startup.obj (.text)} > BOOT_LOAD
boot_code : {sys_core.obj (.text)} > BOOT_LOAD
eabi_start : {sys_startup.obj (.text)} > BOOT_LOAD
flashAPI :
{
//..\Release\bl_flash.obj (.text)
//..\Release\Fapi_UserDefinedFunctions.obj (.text)
bl_flash.obj (.text)
Fapi_UserDefinedFunctions.obj (.text)
//--library= F021_API_CortexR4_LE.lib <FlashStateMachine.obj
--library= ..\lib\F021_API_CortexR4_LE.lib <FlashStateMachine.obj
Program.obj
Init.obj
Utilities.obj
Async.obj> (.text)
} load = FLASH_API, run = SRAM, LOAD_START(api_load), RUN_START(api_run), SIZE(api_size)
.text > FLASH0
.const > FLASH0
.cinit > FLASH0
.pinit > FLASH0
.data > SRAM
.bss > SRAM
}
Thanks for any help you can provide.
-Brian