Topic : LPC2468

Forum : ARM

Original Post
Post Information Post
February 15, 2011 - 10:16am
Guest

Hello
I am using Rflasher to verification and program, everything works just fine.
but I need to use a command-line program.

I tried using ARM7_pgm.exe:
--------------------------------------

I type:

ARM7_pgm.exe TLPC2468 V temp.hex

I get:

ARM7_pgm: programming tool for ARM7 devices through RLink
Version 2.02
Copyright (c) 2007-2010 Raisonance SAS

Using target: LPC2468

Opening Communication ... OK

Verifying Flash against file ...

*** Error: Unable to open hex file
///////////////////////////////////////////////////

I have also tried using Cortex_pgm.exe:
------------------------------------------------------

I type:

Cortex_pgm.exe TLPC2468 V temp.hex

I get:

Cortex_pgm: software for programming Cortex microcontrollers using a RLink as master.
Copyright Raisonance 2007-2010.

(0)
Selecting target: LPC2468...
(0)
Configuring RLink Driver... OK

Connecting to RLink... OK
Connecting to target...
!!! Error 103: Error reported by the DTC (Data Transfer Component)
///////////////////////////////////////////////////////////

What am I doing wrong??
Please help, thanks
ofir

Replies
Post Information Post
+1
0
-1
February 16, 2011 - 9:32am
Raisonance Support Team

Hi,

You must remove the space between the command (V) and the name of the file (temp.hex):

ARM7_pgm.exe TLPC2468 Vtemp.hex

Cortex_pgm is for Cortex devices (!) and will not work for LPC2x which are ARM7... even if the command was correct.

Best Regards,

Vincent

+1
0
-1
February 16, 2011 - 5:12pm
Guest

Thanks
It worked