hi
evmdm6437 use uart0 as rs232;
dec6437 use uart1 as rs232;
so, on dec6437 board when i used evmdm6437 uart sample application of psp_1.10.03, i must modify some parameter:
1、In dm6437_uart0.tci file, i modify
bios.UDEV.create("UART1");
bios.UDEV.instance("UART1").fxnTableType = "IOM_Fxns";
bios.UDEV.instance("UART1").initFxn = prog.extern("uart0_dev_init");
bios.UDEV.instance("UART1").params = prog.extern("uart0DevParams");
bios.UDEV.instance("UART1").fxnTable = prog.extern("UARTMD_FXNS");
2、in dm6437_evm_uart_st_sample.tcf file, on line 121 i add sentence
bios.UDEV.instance("UART1").deviceId = 1;
3、in psp_bios_uart_st_sample_main.c file i modify
hUart_OUT = GIO_create("/UART1",IOM_OUTPUT,NULL,&chanParams,&gioAttrs);
hUart_IN = GIO_create("/UART1",IOM_INPUT,&echoTskStatus,&chanParams,&gioAttrs);
after setup, build dm6437_evm_uart_st_sample.prj OK; Load out file in dec6437 board,
Followed by implementation of the CPU RESET, RESTART, GO MAIN command, but the soft don't go to main funciton;