EmbeddedRelated.com
The 2024 Embedded Online Conference

External Flash Algorithms intel TE28F160C3BD70

Started by civcivonur in LPC200017 years ago 1 reply

Hi, I have a LPC2294 Development Board. http://www.olimex.com/dev/images/LPC-L2294-1MB-sch.gif i could not use the external flash. I search...

Hi, I have a LPC2294 Development Board. http://www.olimex.com/dev/images/LPC-L2294-1MB-sch.gif i could not use the external flash. I search for the code of intel TE28F160C3BD70 programming but i could not find. So i try to modify the code of RC28F320J that is writen by Keil. But when i try to load the program with this code Ulink says "Can not load Flash Programming Algorithm" & "Insuffi...


LPC2106 flash utility problem

Started by Michal Krestan in LPC200018 years ago 10 replies

I need to help with programming LPC2106 via LPC2000 flash utility. I've got board with one LPC2106 connected via UART0 to COM1. P0.14 is...

I need to help with programming LPC2106 via LPC2000 flash utility. I've got board with one LPC2106 connected via UART0 to COM1. P0.14 is pulled low, power supply pins are in limits but I can't sucesfully connect with flash utility. Always I get message "Cannot communicate with test board". X1 and X2 pins are connected to 7.3728MHz resonator. If I measure data between PC and LPC210


IAR breakpoint error with Branch in FLASH Debug with HJTAG

Started by naderus2000 in LPC200017 years ago 4 replies

Hello, I use IAR 4.41A with HJTAG v04.4. I can debug my code without any problem in RAM and I can program the flash and run the code but when...

Hello, I use IAR 4.41A with HJTAG v04.4. I can debug my code without any problem in RAM and I can program the flash and run the code but when I want to debug my code in FLASH the debugger stop at every branch instruction (B,BL,BLX,...) never go further. and when I press Step Into in Debug Log window I can see this error: ____________________________________________________________________...


problem in flash debug in IAR

Started by naderus2000 in LPC200017 years ago 4 replies

I make project in IAR v4.41a for LPC2148,and have this warninig when i want debug the code in flash mode: Flash download warning: Debugee...

I make project in IAR v4.41a for LPC2148,and have this warninig when i want debug the code in flash mode: Flash download warning: Debugee file newer than the file to be flashed. and after that there some warninig in debug Log: ... Verify error at address 0x000001CD, target byte: 0x43, byte in file: 0x41 ... The stack pointer for stack 'CSTACK' (currently 0x40001450) is outside ...


LPC2368 Read/Write flash memory during operation

Started by jp_qlomolr in LPC200017 years ago 3 replies

Hello, experts. I'd like to ask a question. LPC2368 has 512kb flash memory (sectors are from 0 to 27, total 28). I'd like to use the sector...

Hello, experts. I'd like to ask a question. LPC2368 has 512kb flash memory (sectors are from 0 to 27, total 28). I'd like to use the sector between 18 and 21, these total size is 32kbyte x 4 sectors = 128kbytes for saving data. for example, when the end user pushs the button, all the configuration data is saved into LPC2368's flash memory. Also, I'd like to read data from this area du...


LPC2106 and IAP flash programming

Started by in LPC200016 years ago 2 replies

Hello everyone! I using Olimex LPC2106-MT board and has a three questions: 1. How to determine address in flash memomry to write data? 2....

Hello everyone! I using Olimex LPC2106-MT board and has a three questions: 1. How to determine address in flash memomry to write data? 2. Possible to read flash memomry: unsigned int addr, data; data = *(volatile unsigned int *)addr; 3. Possible to write flash memomry: unsigned int addr, data; *(volatile unsigned int *)addr = data; -- Best regards, post-graduate student Roman...


In Application Programming for LPC2368

Started by "op.shams" in LPC200016 years ago

Dear sir ; In my project, I want to write some critical data in 512k FLASH of LPC2368.Here I am using In Application Programming for...

Dear sir ; In my project, I want to write some critical data in 512k FLASH of LPC2368.Here I am using In Application Programming for the same. I refered code from, C:\Keil\ARM\Flash\LPC_IAP2_512 and I am facing a problem while I am writing to FLASH like, int ProgramPage (unsigned long adr, unsigned long sz, long long int buf[][2]) { n = GetSecNum(adr); //


Flash Utility Hell..

Started by James Dabbs in LPC200020 years ago 19 replies

Flash Utility Hell.. We're attempting to program our target board using the Phillips ISP utility.  We've used both the...

Flash Utility Hell.. We're attempting to program our target board using the Phillips ISP utility.  We've used both the "Phillips LPC2000 Flash Utility V2.1.0" an


Keil and LPC 2103 problems

Started by victor serov in LPC200018 years ago 1 reply

Hi to all. I have a board from Olimex with LPC-2103. My first problem - I can't download program to the board with ULINK and JTAG. I receive...

Hi to all. I have a board from Olimex with LPC-2103. My first problem - I can't download program to the board with ULINK and JTAG. I receive the message - "Cannot load flash programming algorithm" I use algorithm "LPC2000 IAP2 32kb Flash". If I use Philips FLASH utility via RS232 all works fine. And JTAG download works correct with other ARMs (STR7). And second and bigger problem - For e...


Copy binary file in internal flash

Started by fabicenn in LPC200017 years ago 3 replies

How can I copy a binary file from the PC to internal flash of a LPC2292? I must implement a IAP programm or convert binary file in hex and after...

How can I copy a binary file from the PC to internal flash of a LPC2292? I must implement a IAP programm or convert binary file in hex and after copy it with ISP like "flash Magic"? How can I create a hex file from binary with an offset (0x020000 in my application) in the output file? Thanks Fabio


can't setup gnu linker script to output .data into flash

Started by Christopher Harvey in LPC200012 years ago 11 replies

I've having trouble getting gnu ld to output my .data section into flash. Here is the snippet in my ld script: MEMORY { flash :...

I've having trouble getting gnu ld to output my .data section into flash. Here is the snippet in my ld script: MEMORY { flash : ORIGIN = 0x00000000, LENGTH = 512K ram : ORIGIN = 0x40000000, LENGTH = 32K usbram : ORIGIN = 0x7FD00000, LENGTH = 8K ethram : ORIGIN = 0x7FE00000, LENGTH = 16K } [snip] .data : { __data_beg__ = .; _...


How to Write into LPC2103 Flash during Program Execution

Started by ramakrishnan_76 in LPC200016 years ago 4 replies

I want o store a bit in Non-VOlatile Memory (FLash of LPC2103) when my program is running? Steps to do the same is appreciated. Any Sample...

I want o store a bit in Non-VOlatile Memory (FLash of LPC2103) when my program is running? Steps to do the same is appreciated. Any Sample Codes??


J-Link - flash erasing

Started by arm_beta_tester in LPC200018 years ago 1 reply

Is there a possibility to erase the whole flash memory in LPC2xxx chip using the IAR J-LINK programmer/debugger with IAR EWARM? ...

Is there a possibility to erase the whole flash memory in LPC2xxx chip using the IAR J-LINK programmer/debugger with IAR EWARM?


LPC 2103 IAP with IAR C compiler

Started by Ghislain Djanang Tchami in LPC200016 years ago 5 replies

Hi, Programming the LPC2103 the IAP command to write data into flash do not work after the command to prepare the sectors. The...

Hi, Programming the LPC2103 the IAP command to write data into flash do not work after the command to prepare the sectors. The programming function is running from RAM during flash. The same code works with lpc2134 and lpc2214. Is there any special setting in iar programming the lpc2103 using IAP? How to use the iap command (copy RAM to Flash = 51) with the lpc2103? Thanks. -----------...


Flash write/erase security for LPC23xx/24xx

Started by torben1962 in LPC200015 years ago

Hi, NXP has made a flash write/erase security library which makes it possible protect a LPC23xx flash sector from being changed. This...

Hi, NXP has made a flash write/erase security library which makes it possible protect a LPC23xx flash sector from being changed. This protection is irreversible in the remaining CPU lifetime: http://www.standardics.nxp.com/support/documents/microcontrollers/zip/ write.erase.secure.lpc2364.lpc2366.lpc2368.lpc2378.lpc2468.lpc2478.zip Our problem is that this library is developed for g...


USB dual mass storage device options

Started by medw...@hotmail.com in LPC200017 years ago 2 replies

Hi All, I've coded up a dual FAT file system using the Philips LPC2148, serial flash and SD card. I basically use a file system on the...

Hi All, I've coded up a dual FAT file system using the Philips LPC2148, serial flash and SD card. I basically use a file system on the serial flash for a data logger and then transfer the files to the SD card when I'm done. I've got a USB mass storage interface to the Serial flash and thought it would be useful to have the SD card show up as a second drive. So here's the thing. I've read ...


Loading flash with J-Link

Started by kender_a in LPC200014 years ago 2 replies

Folks, I have an IAR Embedded Workbench 5.11, J-Link debugger and a board with LPC2368 and a JTAG connector. I should be able to load the...

Folks, I have an IAR Embedded Workbench 5.11, J-Link debugger and a board with LPC2368 and a JTAG connector. I should be able to load the program into Flash, so that it can start on power-up and run on its own without J-Link, right? What steps should I take? I understand that I need to build my project with certain options. But what are they? Then there will be some output file (like .he...


Flash Magic and LPC2378 STK

Started by jdauchot in LPC200016 years ago 5 replies

Hi All I would like to know why using flash magic and the olimex 2378 STK board is soo slow to connect and download code to it. Is there a...

Hi All I would like to know why using flash magic and the olimex 2378 STK board is soo slow to connect and download code to it. Is there a licence magic trick I need to apply to this application and where can I purchase it Regards Jean-Jacques ------------------------------------


Using flash memory instead of eeprom?

Started by gewitter2000 in LPC200019 years ago 14 replies

Hi! Has someone used the flash memory of the lpc21xx for eeprom purposes? Or is it more usefull to take an additive eeprom...

Hi! Has someone used the flash memory of the lpc21xx for eeprom purposes? Or is it more usefull to take an additive eeprom to the design? I only want to store some parameters. Thank you for feedback! Martin


Assigning variables in Flash

Started by Pratik Shah in LPC200017 years ago 8 replies

Can any one tell me How to assign any particular vairable & function in Flash ? Also if anyone can provide me small assembly function so that i...

Can any one tell me How to assign any particular vairable & function in Flash ? Also if anyone can provide me small assembly function so that i can go through the method of writing assembly language in Keil Compiler. --------------------------------- Sucker-punch spam with award-winning protection. Try the free Yahoo! Mail Beta.



The 2024 Embedded Online Conference