This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TMS320F28379D: LaunchXL-F28379D. DELAY_US routine sends the program to interrupt void ILLEGAL_ISR(void)

Part Number: TMS320F28379D
Other Parts Discussed in Thread: CONTROLSUITE

I am trying the example blinky_cpu01.C

When I run the program

I created a new project and copy all files from include and library c code. The only modifications were done to 2837x_FLASH_lnk_cpu1.cmd that i merged with F2837xD_Headers_nonBios_cpu1.cmd (I am running compiler TI v20.2.1.LTS) and  it seems to be related to ramfuncs but I don't know how to fix it.

When I debug, the function DELAY_US(1000) takes me to interrupt void ILLEGAL_ISR(void).

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
MEMORY
{
PAGE 0: /* Program Memory */
/* Memory (RAM/FLASH) blocks can be moved to PAGE1 for data allocation */
/* BEGIN is used for the "boot to Flash" bootloader mode */
BEGIN : origin = 0x080000, length = 0x000002
RAMM0 : origin = 0x000122, length = 0x0002DE
RAMD0 : origin = 0x00B000, length = 0x000800
RAMLS0 : origin = 0x008000, length = 0x000800
RAMLS1 : origin = 0x008800, length = 0x000800
RAMLS2 : origin = 0x009000, length = 0x000800
RAMLS3 : origin = 0x009800, length = 0x000800
RAMLS4 : origin = 0x00A000, length = 0x000800
RAMGS14 : origin = 0x01A000, length = 0x001000
RAMGS15 : origin = 0x01B000, length = 0x001000
RESET : origin = 0x3FFFC0, length = 0x000002
/* Flash sectors */
FLASHA : origin = 0x080002, length = 0x001FFE /* on-chip Flash */
FLASHB : origin = 0x082000, length = 0x002000 /* on-chip Flash */
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

  • Hi Alberto.

    ramfuncs contents needs to be copied from the Load address to Run address. In case of driverlib examples, it is done using memcpy function inside Device_init function.

    Can you check if this is being done?

    Reagrds,

    Veena

  • I dont see any Device_init function.

    The whole program is:

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    /**
    * main.c
    */
    #include "F28x_Project.h"
    int main(void)
    {
    InitSysCtrl();
    InitGpio();
    GPIO_SetupPinMux(31, GPIO_MUX_CPU1, 0);
    GPIO_SetupPinOptions(31, GPIO_OUTPUT, GPIO_PUSHPULL);
    DINT;
    InitPieCtrl();
    IER = 0x0000;
    IFR = 0x0000;
    InitPieVectTable();
    EINT;
    ERTM;
    while(1)
    {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    I did a search in all the directories and subdirectories that are located at: C:\ti\controlSUITE\device_support\F2837xD\v200 and the only ones that showed anything like that were tidfu.dll, tiusbdll.dll, tidfu.dll and tiusbdll.dll.

    I copied the example from: C:\ti\controlSUITE\device_support\F2837xD\v200\F2837xD_examples_Cpu1\blinky\cpu01\blinky_cpu01.c

    Where exactly is Device_Init? Do you have an example using it?

  • Device_init is used in drivelib examples. The equivalent function in bitfield examples is initSysctrl. 

    Regards,

    Veena

  • The function InitSysCtrl needs to have the predefined symbol _FLASH in order to copy it to ram. I added it and it works. Thanks