Hi Dale. You might be interested in my tutorial "ARM Development with Eclipse" which gives a detailed setup of the GCC/Wiggler. If you check the Links section...
I have a problem with my lpc2292. The I2C bus does not generate a interrupt after a writing or a reading. When I set the interrupt manually by setting the i2c ...
... I am in the late stages of trudging through an interrupt-driven I2C interface for the 2106.. I believe it's the same hardware. The I2C system interrupts...
Hello All, Finally I got my olimex prototype lpc2138, and try it for the first time. I plug Power supply, DB9 to pc and launch Philips Flash utility to read...
... From: "fasis" <fasis@...> To: <lpc2000@yahoogroups.com> Sent: Monday, August 01, 2005 12:16 PM Subject: [lpc2000] Read ID Device ... I just had a...
Hi Afrizal. There's a BSL jumper (boot strap loader) on most Olimex boards. It must be installed (shorted) to enable the Philips Flash Utility to work. Cheers,...
... I still have no luck with the I2C on the lpc2292. My init for i2c are: i2cconclr=0x6c; //i2conclr all bits temp32 = pclk / 50000 scll = temp32/2 sclh =...
I'm trying to write to the PINSEL2 register, to ensure that it has 0's at bit 2 and 3, but if I try to write to the register, the JTAG connection drops, and it...
soren_t_hansen <soren_t_hansen@...> schrieb am Mon, 01 Aug 2005 ... Some bits disable JTAG, be sure to set these to the correctly. -- 42Bastian Schick...
Hi! Project guide is asking about the PCMCIA standard release 7. updated But still i got confusion about which document he is asking? Probably he may asking...
Dear All, I had a project LPC2214 with Optrex 51852 LCD Module. Now i have two request : 1. I bought a 51852ADM LCM Module from Mouser. I can't get display on...
I am confused about setting up the PWM code. Below is my initialization code. Here is my confustion... When I set PWMMR4 to 0, I get a very short logic 1...
I wonder if anyone has ideas or suggestions for uart multiplexing, or possibly switching. The solution I am trying to get to is this: I have an x-scale host...
Hi Doug, I've had a quick scan of your post. Make it simple for yourself and talk to the 3 devices with 3 ports from the host. Then all you need with the ARM...
Hello Søren, Not sure what processor you are using but I think you are diabling the JTAG by changing a JTAG line into a GPIO line. I am using the LC2129 and...
... the JTAG by changing a JTAG line into a GPIO line. ... Ups forgot to tell - it's a lpc2132 :o) I use the following line and it still crashes: PINSEL2 =...
Does the LPC2_FullCAN.zip given in the groups file work for LPC2119? In the phillips website this file is recommended as a FULLCAN-like implementation as...
Hello Soren, I think your hardware is running fine, probably the behaviour is not what your expecting but that is not caused by a hardware failure. Look in the...
Oops - now I did it ... Is this what you really meant? PINSEL2 = PINSEL2 & ((1 << 2) | (1 << 3)); Even so, this clear all other bits... ... -- ... Jim Parziale...
Hi, I'm having a problem, I believe, with my EMC interface on an LPC2214 connected to 2 128K x 16 SRAM chips (GS72116A - GSI Technology). I think I've got it...
If yopu want to clear bits 2&3 without changing any of the others do: PINSEL2 = PINSEL2 & 0xfffffff3; or PINSEL2 &= 0xfffffff3; Dave S. ... shows the ... and 3...
I found two issues. First is that I missed initializing the PWMCR_PWMENABLE bit. Second is that when I was changing the match register value, I was setting...