Yahoo Groups archive

Lpc2000

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

Messages

Browse messages

Page 259 of 329 · 16407 messages matched

Re: PC104

2004-10-09 by Pete

Hi Joe, thanks for the info. The ISA bus should be simple to implement from the LPC peripheral bus i presume. As for the driver interface then it should be ok,

Thread view Attachments: 0

RE: [lpc2000] PC104

2004-10-09 by Joe Hlebasko

The PC104 bus is nothing more than the ISA bus from the desktop PC. If the ARM MCU is the bus master won t be much help as to use any commercial card you still

Thread view Attachments: 0

Re: [lpc2000] Re: Problems w/ UART

2004-10-08 by Robert Adsett

... This may seem obtuse, but first line of C or asm? A good optimizer on the ARM may change the order of execution in non-obvious ways. ... It doesn t matter

Thread view Attachments: 0

Re: Problems w/ UART

2004-10-08 by peterburdine

... The first line of code that should always be executed. ... at the ... You are correct, I was just being stupid. ... If I removed the vectored setup, then

Thread view Attachments: 0

Re: [lpc2000] Re: Problems w/ UART

2004-10-08 by Robert Adsett

... OK, but where in the interrupt? ... No, switch does not work that way. It is an exact match, not a bit mask. And having multiple bits set is not only

Thread view Attachments: 0

Re: Problems w/ UART

2004-10-08 by peterburdine

... do you ... While I was debugging w/ JTAG, I put a breakpoint in the isr, it was never reached. I d turn on an LED if one existed for my dev board. ...

Thread view Attachments: 0

Re: [lpc2000] Re: Problems w/ UART

2004-10-08 by Robert Adsett

First a question, you say the interrupt is not being generated, how do you know? A few comments on the code below, probably more when I get a chance to review

Thread view Attachments: 0

Re: Problems w/ UART

2004-10-08 by peterburdine

It was a small oversite that it wasn t posted. I was copying stuff out that I didn t need. Since then I ve made another small project that just tests the

Thread view Attachments: 0

Re: Problems w/ UART

2004-10-08 by peterburdine

Use __fiq instead of __irq. From Keil help: Fast Interrupt Functions (__fiq) Fast Interrupt Functions can be directly defined using the __fiq function

Thread view Attachments: 0

Re: Problems w/ UART

2004-10-08 by Pete

Hi Peter Interesting to hear this as I too am using Keil, but wasnt aware that you could do this! For my info, how do you tell Keil that you want the interrupt

Thread view Attachments: 0

Re: [lpc2000] Re: Problems w/ UART

2004-10-08 by Robert Adsett

... Speaking of which, I just reviewed your code. You don t appear to be actually calling your uart initialization code anywhere (I don t see how you would

Thread view Attachments: 0

Re: Problems w/ UART

2004-10-08 by peterburdine

Pete, The Keil s compilier does not require such initialization. I have a timer isr that works just fine being declared as void timer_isr (void); void

Thread view Attachments: 0

PC104

2004-10-08 by bty639886

Has anyone implemented a PC104 bus from the LPC2192/4 series of processors? Any information would be really useful as I am not familiar with the pc104 spec

Thread view Attachments: 0

Re: RTC manipulation (ctd.)

2004-10-08 by Leighton Rowe

Yep, PLLSTAT says that the PLL s enabled, connected & locked. I m running the code on a mcb2100 as well (12MHz crystal). I made a mistake about the processor

Thread view Attachments: 0

Re: Hitex Tools for LPC2xxx ?

2004-10-08 by ksrabit2000

Hi Bobi, I started with a startekit from hitex and now I work with the full Tanto system with ETM support. When I started there were some stability problems

Thread view Attachments: 0

Hitex Tools for LPC2xxx ?

2004-10-08 by bobi catorski

Hi all Any one using the hitex tool s for the LPC2xxx ? I would like to know your impression from the tool Regards Bobi ... Do you Yahoo!? vote.yahoo.com -

Thread view Attachments: 0

Re: Does eCos work on the LPC2104 ?

2004-10-08 by balazs_scherer

... of ... Hello, You will be able to work with eCos on LPC2104, but it is far from an ideal sollution. You have to make restictions for thread stack sizes,

Thread view Attachments: 0

Re: Problems w/ UART

2004-10-07 by Pete

peter i think also that you need to initialise the isr function differently... something like this: void uart0_isr(void) __attribute__ ((interrupt( IRQ )));

Thread view Attachments: 0

Re: RTC manipulation (ctd.)

2004-10-07 by Pete

Hi Leighton, Im using the MCB2100 development board from Keil for the time being. Our main control unit is in development as we speak... anyway, the MCB is

Thread view Attachments: 0

Re: RTC manipulation (ctd.)

2004-10-07 by Leighton Rowe

Thanks for your results What lpc are you using by the way? Is your RTC counting at the right speed when VPBDIV=0? Try comparing the RTC timers against a normal

Thread view Attachments: 0

Re: [lpc2000] LPC2106 - Newbie

2004-10-07 by Robert Adsett

... Actually, there is a fair amount of free software around. Some in the files section of this forum. I have some newlib support routines here (

Thread view Attachments: 0

Re: Problems w/ UART

2004-10-07 by peterburdine

I am sure the might help, if the ISR was called in the first place. But it isn t. Also, according to the user manual I have,, it states that only U0IIR must be

Thread view Attachments: 0

Re: [lpc2000] Re: Problems w/ UART

2004-10-07 by Robert Adsett

... Actually, just reading IIR does that for the UART. But as you point out you still need the write to VICVectAddr. Robert Freedom has no meaning of

Thread view Attachments: 0

Re: Problems w/ UART

2004-10-07 by Pete

In an interrupt service routine: in order to exit it properly you must, Clear the interrupt flag that triggered it (write a 1 to the flag?) eg: U0IIR =

Thread view Attachments: 0

Re: RTC manipulation (ctd.)

2004-10-07 by Pete

ok, got home and have tried on my dev board... Using a 12Mhz crystal, I configured the VPBDiv=0 As a result modified the Fac and Int settings to: PREINT =

Thread view Attachments: 0

Re: LPC2106 - Newbie

2004-10-07 by Pete

the philips flash utility is for programming via UART0 you need to use a JTAG programmer.... Are you using Keil or similar to do the writing of code? Keil has

Thread view Attachments: 0

Problems w/ UART

2004-10-07 by peterburdine

I think I may be missing something stupid, but can anyone help me? I am tring to write to UART0, but it doesn t seem to work. I am trying to write a software

Thread view Attachments: 0

LPC2106 - Newbie

2004-10-07 by Alex

My problem is propably very stupid. I am student and work with the ATMega32. Now I bought the Olimex LPC2106 Board and a JTAG, and thougt it could be used as

Thread view Attachments: 0

LPC Reset..

2004-10-07 by bty639886

Is there any way to reset the processor from within the firmware? I am currently using the Watchdog feature, and I know if I stop toggling the watchdog then my

Thread view Attachments: 0

Re: RTC manipulation (ctd.)

2004-10-07 by bty639886

when i get home i will check this out on my systsem. I do however have a 12Mhz clock rather than the 14.xx that u are using. So my preints and facs will be

Thread view Attachments: 0

Re: RTC manipulation (ctd.)

2004-10-07 by Leighton Rowe

... own; ... ...sorry bout the typos. I m saying that you should end up with the same problem when running the RTC with vpbdiv=0.

Thread view Attachments: 0

Re: RTC manipulation (ctd.)

2004-10-07 by Leighton Rowe

... Good news! After setting VPBDIV = 1 (pclk =cclk) and setting PREINT and PREFRAC (based on the user manual), the RTC counted correctly. Thanks Pete. The RTC

Thread view Attachments: 0

Does eCos work on the LPC2104 ?

2004-10-07 by smt5211

Hi, I know that eCos works on the LPC2106, with 64Kb ram and 128Kb flash. Does eCos work on the LPC2104, given that it only has 16Kb of ram? We would need a

Thread view Attachments: 0

Re: LPC2106 timer problem?

2004-10-06 by vaughan_anztec

... timer0 simultaneously (in the match interrupt mode, while the main timer0 is free running)? ... reloaded at a period rate. The other channels may be

Thread view Attachments: 0

Re: RTC manipulation (ctd.)

2004-10-06 by Leighton Rowe

Hey Pete, ... configuring ... Yes I config ed PLL first, but I skipped the vpbdiv config. I m aware vpbdiv is 0 by default, so I have the uart/timer/rtc

Thread view Attachments: 0

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.