m5329 dBug

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

m5329 dBug

2,520 次查看
BRUNONUNES
Contributor I

hi: I m going to build a standalone system but I had a problem: when I set , using  debug, the option set autoboot flash. I got this message: autoboot from flash not supported on this board. How can I solve this?
I found no jumper regarding this configuration.
Thanks
标签 (1)
0 项奖励
回复
2 回复数

890 次查看
UK_CF_FAE
NXP Employee
NXP Employee
Hi Brunonunes,
 
The source code for dBug contains a function auto_boot in main.c
 
#ifdef DBUG_AUTOBOOT_FLASH       
            cmd_gofrom_flash( NULL, NULL );
#else
            printf("Autoboot from flash not supported on this board\n");
#endif
 
Rebuild dBug with the right conditional define.
 
good luck,
 
Mark
0 项奖励
回复

890 次查看
mwaddel
Contributor I
This message is displayed when the DBUG_AUTOBOOT_FLASH
definition is not set in proj/m5329evb/src/config.h.

You may have an older version of dbug and you can download a
newer version from http://auslxsc01.mtwk.freescale.net/ppp/dbug-4.d.tar.gz

Another option is to use u-boot.  u-boot is has the autoboot
features.  M5329 support is in the main u-boot distribution.
0 项奖励
回复