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.

EK-TM4C123GXL :Not able to program

Other Parts Discussed in Thread: LMFLASHPROGRAMMER, EK-TM4C123GXL, TM4C123GH6PM

Hi,

I am using tiva c series launch pad.

I am using IAR for my development environment.

I have written a blinky example.

After compiling when i tried to flash the code i am getting the following errors.

.

Pls see my project configuration

Pls see the attached piece of code.

Thanks,

likhitha

int main() {
    *((unsigned int *)0x400FE608U) = 0x20U;
    *((unsigned int *)0x40025400U) = 0x0EU;
    *((unsigned int *)0x4002551CU) = 0x0EU;

    while (1) {
        *((unsigned int *)0x400253FCU) = 0x02U;
        
        int counter = 0;
        while (counter < 1000000) {
            ++counter;
        }
        
        *((unsigned int *)0x400253FCU) = 0x00U;
        counter = 0;
        while (counter < 1000000) {
            ++counter;
        }
        
    }
    return 0;
}