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.

CCS/TMS320F28377D: Running Application Code From CPU1 On-chip Flash

Part Number: TMS320F28377D
Other Parts Discussed in Thread: TMS320F28335, , C2000WARE

Tool/software: Code Composer Studio

Hello everyone

I'm recently upgraded myself from TMS320F28335 to TMS320F28377D and I'm newbie in dual core microcontrollers.

I loaded "gpio_ex1_setup" from "C2000Ware_1_00_01_00/driverlib/f2837xd/examples/cpu1/gpio/CCS/gpio_ex1_setup" into "CCSv8.1.0.00011"

and I added some additional code for togglling one LED on my custom board to the end of the main function as follows:

    GPIO_setPinConfig(GPIO_91_GPIO91);
    GPIO_setDirectionMode(91,GPIO_DIR_MODE_OUT);

    while(1)
    {
        DEVICE_DELAY_US(300000);
        GPIO_togglePin(91);
    }

its works fine in the "CPU1_RAM" configuration, but when i click right on the project and choose "CPU1_FLASH" from "Bulid Configuration/Set Active/CPU1_FLASH" menu, 

the erase and program process begin and complete sucessfully and by restarting board "turning board power supply off and then on" nothing happens and LED does not blink.

What i missed?

Any help will highly be appreciated.