Hi, I want to use the LPC3250 with Ulink2. I get a board from FDI (Future Designs)
www.teamfdi.com/.../products_index.html Board : ARM-57TS-LPC3250 - LPC3250 Touch Screen Kit This board use NAND flash of type MT29F2G08AACWP (8 bit). I Connect to this board using my Ulink2 - It works. The next step is to download program to the NAND flash that is on the board. I try all the algorithem that found in the Flash section in the UV3. The programmer fail to program. Maybe I should create my own flash utility. In any case I belive that I'm doing something wrong... I need and 'hello world' or 'blinky' program that can be program to the external nand flash (the only memory avalible in this board) and also to understand how to configure the program stage for this program.
I have a good expiriance with the LPC2368/2478 but those units has an internal flash that solved all the problem that I get here..
I read some datasheets regards the LPC3250 and it talk about 'bootloader' 'CDL' and other stuff. Is it possible to work with the UV3 (Or UV4) and Ulink2 with just one program that can run on the target directly?
Regards, Doron
Some advice,
yes you can make a program without bootloader, and you can take Keil bootloader as base for your program. As you have different NAND flash you will have to change FlashHW.c file to fit your NAND flash. Also, flash algorith does not work because it was written for Small Page NAND flash and you have Large Page NAND flash and you will have to expand algorithm to fit Large Page.
Thanks for your reply, I will try to solve it with your advice...