Yahoo Groups archive

Lpc2000

Index last updated: 2026-04-28 23:31 UTC

Thread

Philips ISP Tool Verify error

Philips ISP Tool Verify error

2005-03-04 by r_bottleneck

I'm sucessfully using the Philips ISP tool for flashing the LPC2106.
The program seems to be flashed correctly and it's working so far.
However, I'm always getting an verify error if I try to verify 
(ISP tool Verify button) the just programmed  SW. 

Could anybody advice?

(hopfully there is no similar thread here, I didn't find anything)

GNU Timer Interrupt Example

2005-03-04 by Hugh O'Keeffe

Ashling provide a timer interrupt example which demonstrates how to handle
nested interrupts, the VIC and timers etc. If anyone is interested I can
post it to the files section. I've been falling behind on posts lately so
apologies if some one has answered this already....
 
 
The following source snippet is taken from the file...
 
/*
 
This program initiates two timers, (Timer0 and Timer1), to go off at
TIMER0_INTERVAL TIMER1_INTERVAL (#defines) intervals respectively. 
 
Both Timer0 and Timer1 interrupt handler takes half of the interrupt period
to execute. 
 
Timer0 is configured as a higher priority interrupt than Timer1. Since it
occurs more often that Timer1, it will periodically 
become a nested interrupt (interrupts Timer1). 
 
Whenever the Timer1 interrupts, it turns on P0.4 while the interrupt handler
executing.
 
Whenever the Timer0 interrupts, it turns on P0.5 while the interrupt handler
executing.
 
Whenever the Timer0 interrupts Timer1 (i.e. nested condition), it turns on
P0.6 while the interrupt handler executing.
 
*/
 
Hugh @ www.ashling.com/support/lpc2000/ 


[Non-text portions of this message have been removed]

Re: Philips ISP Tool Verify error

2005-03-04 by Richard

In the flash buffer screen download your HEX file, perform a vector
calc, and save the hex file back.  It should then verify OK.

Richard

 --- In lpc2000@yahoogroups.com, "r_bottleneck" <r_bottleneck@y...> wrote:
Show quoted textHide quoted text
> 
> I'm sucessfully using the Philips ISP tool for flashing the LPC2106.
> The program seems to be flashed correctly and it's working so far.
> However, I'm always getting an verify error if I try to verify 
> (ISP tool Verify button) the just programmed  SW. 
> 
> Could anybody advice?
> 
> (hopfully there is no similar thread here, I didn't find anything)

Re: Philips ISP Tool Verify error

2005-03-04 by r_bottleneck

Richard , thanks for the answer. But possibly I was not precise
enough.

I'm using Philips LPC2000 Flash Utility V2.2.1. There I can not find
something similar you mentioned.

--- In lpc2000@yahoogroups.com, "Richard" <richas@y...> wrote:
> 
> In the flash buffer screen download your HEX file, perform a vector
> calc, and save the hex file back.  It should then verify OK.
> 
> Richard
> 
>  --- In lpc2000@yahoogroups.com, "r_bottleneck" <r_bottleneck@y...>
wrote:
> > 
> > I'm sucessfully using the Philips ISP tool for flashing the
LPC2106.
Show quoted textHide quoted text
> > The program seems to be flashed correctly and it's working so far.
> > However, I'm always getting an verify error if I try to verify 
> > (ISP tool Verify button) the just programmed  SW. 
> > 
> > Could anybody advice?
> > 
> > (hopfully there is no similar thread here, I didn't find anything)

Re: Philips ISP Tool Verify error

2005-03-04 by Richard

Click on "buffer", at the top of the window.



--- In lpc2000@yahoogroups.com, "r_bottleneck" <r_bottleneck@y...> wrote:
Show quoted textHide quoted text
> 
> Richard , thanks for the answer. But possibly I was not precise
> enough.
> 
> I'm using Philips LPC2000 Flash Utility V2.2.1. There I can not find
> something similar you mentioned.
> 
> --- In lpc2000@yahoogroups.com, "Richard" <richas@y...> wrote:
> > 
> > In the flash buffer screen download your HEX file, perform a vector
> > calc, and save the hex file back.  It should then verify OK.
> > 
> > Richard
> > 
> >  --- In lpc2000@yahoogroups.com, "r_bottleneck" <r_bottleneck@y...>
> wrote:
> > > 
> > > I'm sucessfully using the Philips ISP tool for flashing the
> LPC2106.
> > > The program seems to be flashed correctly and it's working so far.
> > > However, I'm always getting an verify error if I try to verify 
> > > (ISP tool Verify button) the just programmed  SW. 
> > > 
> > > Could anybody advice?
> > > 
> > > (hopfully there is no similar thread here, I didn't find anything)

Re: Philips ISP Tool Verify error

2005-03-05 by r_bottleneck

That's it ! Thanks Richard.


--- In lpc2000@yahoogroups.com, "Richard" <richas@y...> wrote:
> 
> Click on "buffer", at the top of the window.
> 
> 
> 
> --- In lpc2000@yahoogroups.com, "r_bottleneck" <r_bottleneck@y...>
wrote:
> > 
> > Richard , thanks for the answer. But possibly I was not precise
> > enough.
> > 
> > I'm using Philips LPC2000 Flash Utility V2.2.1. There I can not
find
> > something similar you mentioned.
> > 
> > --- In lpc2000@yahoogroups.com, "Richard" <richas@y...> wrote:
> > > 
> > > In the flash buffer screen download your HEX file, perform a
vector
> > > calc, and save the hex file back.  It should then verify OK.
> > > 
> > > Richard
> > > 
> > >  --- In lpc2000@yahoogroups.com, "r_bottleneck"
<r_bottleneck@y...>
> > wrote:
> > > > 
> > > > I'm sucessfully using the Philips ISP tool for flashing the
> > LPC2106.
> > > > The program seems to be flashed correctly and it's working so
far.
> > > > However, I'm always getting an verify error if I try to
verify 
> > > > (ISP tool Verify button) the just programmed  SW. 
> > > > 
> > > > Could anybody advice?
> > > > 
> > > > (hopfully there is no similar thread here, I didn't find
anything)

Re: [lpc2000] GNU Timer Interrupt Example

2005-03-06 by Anton Erasmus

On 4 Mar 2005 at 14:51, Hugh O'Keeffe wrote:

> 
> Ashling provide a timer interrupt example which demonstrates how to
> handle nested interrupts, the VIC and timers etc. If anyone is
> interested I can post it to the files section. I've been falling
> behind on posts lately so apologies if some one has answered this
> already....
> 
> 
> The following source snippet is taken from the file...
> 
> /*
> 
> This program initiates two timers, (Timer0 and Timer1), to go off at
> TIMER0_INTERVAL TIMER1_INTERVAL (#defines) intervals respectively. 
> 
> Both Timer0 and Timer1 interrupt handler takes half of the interrupt
> period to execute. 
> 
> Timer0 is configured as a higher priority interrupt than Timer1. Since
> it occurs more often that Timer1, it will periodically become a nested
> interrupt (interrupts Timer1). 
> 
> Whenever the Timer1 interrupts, it turns on P0.4 while the interrupt
> handler executing.
> 
> Whenever the Timer0 interrupts, it turns on P0.5 while the interrupt
> handler executing.
> 
> Whenever the Timer0 interrupts Timer1 (i.e. nested condition), it
> turns on P0.6 while the interrupt handler executing.
> 
> */
> 

Please, I would love to have a working example for GNU tools  for nested
interrupts on the ARM. 

Regards
   Anton Erasmus
-- 
A J Erasmus

Re: GNU Timer Interrupt Example

2005-03-09 by david_z_lawson

--- In lpc2000@yahoogroups.com, "Hugh O'Keeffe" <hugh.okeeffe@a...> wrote:
> Ashling provide a timer interrupt example which demonstrates how to
handle
> nested interrupts, the VIC and timers etc. If anyone is interested I can
> post it to the files section. I've been falling behind on posts
lately so
> apologies if some one has answered this already....
>  
>  
> The following source snippet is taken from the file...
>  
> /*
>  
> This program initiates two timers, (Timer0 and Timer1), to go off at
> TIMER0_INTERVAL TIMER1_INTERVAL (#defines) intervals respectively. 
>  
> Both Timer0 and Timer1 interrupt handler takes half of the interrupt
period
> to execute. 
>  
> Timer0 is configured as a higher priority interrupt than Timer1.
Since it
> occurs more often that Timer1, it will periodically 
> become a nested interrupt (interrupts Timer1). 
>  
> Whenever the Timer1 interrupts, it turns on P0.4 while the interrupt
handler
> executing.
>  
> Whenever the Timer0 interrupts, it turns on P0.5 while the interrupt
handler
> executing.
>  
> Whenever the Timer0 interrupts Timer1 (i.e. nested condition), it
turns on
> P0.6 while the interrupt handler executing.
>  
> */
>  
> Hugh @ www.ashling.com/support/lpc2000/ 
> 
> 
> [Non-text portions of this message have been removed]

Did you put this in the files section yet. I haven't seen it. I would
like to look at this.

thanks,
David

Re: Philips ISP Tool Verify error

2005-03-31 by slawcus

How to do vector calculaction with command line parameters?

--- In lpc2000@yahoogroups.com, "r_bottleneck" <r_bottleneck@y...> wrote:
Show quoted textHide quoted text
> 
> Richard , thanks for the answer. But possibly I was not precise
> enough.
> 
> I'm using Philips LPC2000 Flash Utility V2.2.1. There I can not find
> something similar you mentioned.
> 
> --- In lpc2000@yahoogroups.com, "Richard" <richas@y...> wrote:
> > 
> > In the flash buffer screen download your HEX file, perform a vector
> > calc, and save the hex file back.  It should then verify OK.
> > 
> > Richard
> > 
> >  --- In lpc2000@yahoogroups.com, "r_bottleneck" <r_bottleneck@y...>
> wrote:
> > > 
> > > I'm sucessfully using the Philips ISP tool for flashing the
> LPC2106.
> > > The program seems to be flashed correctly and it's working so far.
> > > However, I'm always getting an verify error if I try to verify 
> > > (ISP tool Verify button) the just programmed  SW. 
> > > 
> > > Could anybody advice?
> > > 
> > > (hopfully there is no similar thread here, I didn't find anything)

Move to quarantaine

This moves the raw source file on disk only. The archive index is not changed automatically, so you still need to run a manual refresh afterward.