我的bsp里面有stepldr和eboot,
我想让eboot跑起来,
但把stepldr.nb1烧写到flash中后,在dnw上显示的却是乱码!!!!
这个是串口的初始代码:
void Uart_Init(void)
{ int i;
rUFCON1 = 0x0; // FIFO disable
rUMCON1 = 0x0; // AFC disable
rULCON1 = 0x3; // Normal,No parity,1 stop,8 bits
rUCON1 = 0x245;
rUBRDIV1=( (int)(PCLK/16./11520) -1 );
for(i=0;i<100;i++);
}
这个应该是没有问题的,是不是在startup.s中 的相关设置有问题啊?-------------------
我的nandflash是k9f1208(64MB)的,原来的stepldr应该不是针对这flash的,因为在
\stepldr\main.c文件中有
#define NAND_BLOCK_SIZE_BYTES 0x00020000 //不是16K
#define NAND_PAGE_SIZE_BYTES 0x00000200 //512B
#define NAND_PAGES_PER_BLOCK (NAND_BLOCK_SIZE_BYTES / NAND_PAGE_SIZE_BYTES)
我改成了:
#define NAND_BLOCK_SIZE_BYTES 0x00004000
串口打印乱码,郁闷,怎么设置
[code]******************************
void Uart_Init(void)
{
int i;
rUFCON1 = 0x0; // FIFO disable
rUMCON1 = 0x0; // AFC disable
rULCON1 = 0x3; // Normal,No parity,1 stop,8 bits
rUCON1 = 0x245;
rUBRDIV1=( (int)(PCLK/16./115200) -1 );
for(i=0;i<100;i++);
}
我发错了 ! 那个就是115200