Other Parts Discussed in Thread: C2000WARE
Tool/software: TI C/C++ Compiler
I want to program TMS320F28377S using SCI. For this I am using serial flash programmer provided in C2000 and rom symbole lib given in C2000. I connect SCI A (GPIO 84, GPIO85) with serial port of PC using USB to TTL. And I call "SCI_Boot(0x00)" function from main just before while(1). And from debugger I can confirm this it enter in to this function. After this I run the serial flash programmer and I getting this on command promont
/***************************************************************************************************************************************************************************************************************************************************/
PS C:\ti\c2000\C2000Ware_1_00_06_00\utilities\flash_programmers\serial_flash_progra
mmer> ./serial_flash_programmer.exe -d f2837xS -k F2837xD_sci_flash_kernels_cpu01.
txt -a blinky_cpu01.txt -b 9600 -p COM9
C2000 Serial Firmware Upgrader
Copyright (c) 2013 Texas Instruments Incorporated. All rights reserved.
getting comm state
building comm DCB
adjusting port settings
calling f021_DownloadKernel CPU1 Kernel
Downloading F2837xD_sci_flash_kernels_cpu01.txt to device...
a==a
8==8
0==68
/**********************************************************************************************************************************************************************************************************************************************/
This is my code.
/*************************************************************************************************************************************************************************/
init_serial_a(); //9600, stop bit, No loopback No parity,8 char bits
//PieCtrlRegs.PIEIER9.bit.INTx1 = 1;
//IER |= M_INT9; //Enable interrupt group 9
run= SCI_Boot(0x00); // Code should stop here and microcontroller enter in to boot mode
while(1){
GpioDataRegs.GPBTOGGLE.bit.GPIO41=1;
ms(200);
}
/*************************************************************************************************************************************************************************/
To confirm the connections are correct. I configure SCI A to transmit and receive data (baud rate-9600) and test it on the putty.It work fine. So this is not the hardware problem. So please help to solve this issue

