Yahoo Groups archive

Lpc2000

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

Messages

Browse messages

Page 57 of 329 · 16407 messages matched

Re: BGW200

2006-02-25 by Steve Franks

I just recieved pricing from adya, and it s not exactly hobbyist material (try the pre-packaged units from digikey or mouser instead). If I had a commercial

Thread view Attachments: 0

Re: Tom's questions for Jaya

2006-02-25 by Jayasooriah

Tom, what you say does not appear to add up: Message: 12 Date: Fri, 24 Feb 2006 17:06:25 -0000 From: lpc2100 Subject: Re:

Thread view Attachments: 0

RE: [lpc2000] UART1 for LPC2148

2006-02-24 by Joel Winarske

Hi Sutton, ... Below is code to implement 115200 baud at any peripheral clock frequency based on 12MHz with lowest % error. All items have been tested, and

Thread view Attachments: 0

PWM output

2006-02-24 by Herbert Demmel

Hi, I seem to miss something with setting up PWM5 output - the routine below sometimes works, sometimes not (depending non additional code - this versions

Thread view Attachments: 0

Re: UART1 for LPC2148

2006-02-24 by Guillermo Prandi

This code just discards bytes when the FIFO s full! if ((U1LSR & 0x20) != 0) // TX buffer empty { U1THR = c; } You should do this instead: while(!(U1LSR &

Thread view Attachments: 0

Re: JTAG Serial

2006-02-24 by rtstofer

I think the photo at Olimex is wrong. The same device at Sparkfun is parallel http://www.sparkfun.com/commerce/product_info.php?products_id=275 I have one and

Thread view Attachments: 0

Re: [lpc2000] Re: UART1 for LPC2148

2006-02-24 by Bertrik Sikken

I think the baudrate is incorrect. The divisor that you re using now does not make sense to me (looks like a bug in the baudrate calculation program). Try 78

Thread view Attachments: 0

Re: UART1 for LPC2148

2006-02-24 by dodge1955

Bertrik and Guille, Here is my new code. Still doesn t work right. I ve even tweaked the MULVAL and DIVVAL numbers to better match the 12Mhz at 9600 baud.

Thread view Attachments: 0

Re: UART1 for LPC2148

2006-02-24 by Guillermo Prandi

Sutton: try making sure you have room in the transmit buffer before sending a character: void my_putchar(char c) { while(!(U0LSR & 0x20)); U0THR = c; } This is

Thread view Attachments: 0

Re: [lpc2000] JTAG Serial

2006-02-24 by P e t e r s

But in image, seem that is a serial port, e I never saw a wiggler serial! This is possible? ... -- Eduardo Peters +55 47 8405 0331 Canoinhas - SC - Brazil

Thread view Attachments: 0

Re: Jtag from k9spud

2006-02-24 by punkandsska123

... have ... it ... connect the ... Thanks Paul for help me. The jumper is set and about the #2. And TDO seems to be ok. And what is the CPU speed is needed ?

Thread view Attachments: 0

Re: Jtag from k9spud

2006-02-24 by punkandsska123

... it ... connect ... Ok thanks I found it. And your leon is compatible with rowley ?

Thread view Attachments: 0

RE: [lpc2000] Re: Jtag from k9spud

2006-02-24 by Paul Curtis

Hi, ... Try increasing it, say, to 10. If 10, doesn t work, try 100. If that doesn t work, your JTAG unit or board is not working properly. -- Paul Curtis,

Thread view Attachments: 0

Re: [lpc2000] UART1 for LPC2148

2006-02-24 by Bertrik Sikken

... You need to set bit 7 (DLAB) of the LCR before setting the divider. ... No, I think you don t need an interrupt. Another thing, although the bit for UART1

Thread view Attachments: 0

RE: [lpc2000] Re: Jtag from k9spud

2006-02-24 by Paul Curtis

Have you ensured the DBG JTAG jumper is installed (shorted)? -- Paul Curtis, Rowley Associates Ltd http://www.rowley.co.uk CrossWorks for MSP430, ARM, AVR and

Thread view Attachments: 0

RE: [lpc2000] Jtag from k9spud

2006-02-24 by Paul Curtis

The cannot identify means that the CPU ID read back is either all zeroes or all ones. This can be caused by a number of things, all bad: #1. TDO not correctly

Thread view Attachments: 0

Re: [lpc2000] Re: CSI bug in boot loader

2006-02-24 by mfrazier@governors-america.com

Thanks!...I appreciate you taking the time to explain the situation. Thanks again, Mike [Non-text portions of this message have been removed]

Thread view Attachments: 0

UART1 for LPC2148

2006-02-24 by dodge1955

I m having a problem with getting UART1 to work on my Embedded Artists prototype board. I have a serial display that has only 1 serial line. In other words,

Thread view Attachments: 0

Re: Jtag from k9spud

2006-02-24 by punkandsska123

... some ... I forgot to says That I use a Olimex Board with a Philips 2148.

Thread view Attachments: 0

Jtag from k9spud

2006-02-24 by punkandsska123

Hi, I recently made the Jtag board from k9spud and I seem to have some problems with it. I tested the parrallel port with debug and it works. When I switch

Thread view Attachments: 0

Re: LPC2148 Register Definitions (Uart)

2006-02-24 by stephan2148

... http://www.standardics.philips.com/support/documents/microcontrollers/pdf/user.manual.lpc2141.lpc2142.lpc2144.lpc2146.lpc2148.pdf ... Thankyou. That is

Thread view Attachments: 0

Re: Tom's questions for Jaya

2006-02-24 by lpc2100

... Reverse engineering can also mean verifying your findings. What if you erased the philips bootloader while developing your own. Anyway I can rest easy and

Thread view Attachments: 0

Re: [lpc2000] Re: BGW200

2006-02-24 by bkmohlman@jlg.com

OK, If Digikey is going to stock it, can we get datasheets/information on the part??? Brian K. Mohlman Project Engineer (Electrical) Advanced Concepts Design

Thread view Attachments: 0

Re: BGW200

2006-02-24 by philips_marketing_usa

Philips Distributors stock the devices, but the distributor decides if they are willing to break the 500 piece boxes. I honestly don t know what each

Thread view Attachments: 0

Re: Question on VICVectAddr

2006-02-24 by brendanmurphy37

Check out the ARM document: http://www.arm.com/pdfs/DDI0181E_vic_pl190_r1p2_trm.pdf (This link may be found in the Links section of this forum). Very

Thread view Attachments: 0

LPC2148 Register Definitions (Uart)

2006-02-24 by stephan2148

Hi, Can someone point me to the register definitions for the LPC2148? I am having UART troubles at full speed, although single stepping works. I cannot find

Thread view Attachments: 0

Question on VICVectAddr

2006-02-24 by Gopalakrishnan

Hello What is the purpose or use of this register Vector Address Register. When an IRQ interrupt occurs, the IRQ service VICVectAddr routine can read this

Thread view Attachments: 0

Re: [lpc2000] JTAG Serial

2006-02-24 by P e t e r s

Look this http://www.olimex.cl/product_info.php?products_id=28 What you think about this JTAG. Still same problems, how don t write in flash, I think that is

Thread view Attachments: 0

Re: CSI bug in boot loader

2006-02-24 by brendanmurphy37

... another ... Jaya, like a lot of people, I don t have the time to monitor the forum continuously: only when there s some live topic that s of interest or

Thread view Attachments: 0

Re: LPC2148 USB

2006-02-24 by varuzhandanielyan

Hi, Kiwi. Have you a transistor on pin P0.31 for 1.5k or just 1.5k directly connected to +3.3V as on the MCB2140? Varuzhan

Thread view Attachments: 0

Re: Minumim setup for LPC2148

2006-02-24 by Guillermo Prandi

I m sorry tosay you are on the wrong track: a processor running stand alone with no I/O is useless!!!! Just kidding. :D Guille ... sheet. ... internal) ...

Thread view Attachments: 0

Re: Tom's questions for Jaya

2006-02-24 by Jayasooriah

Hello lpc2100, I will answer you question assuming it is an open question: --- In lpc2000@yahoogroups.com, lpc2100 wrote: Is it possible

Thread view Attachments: 0

Re: Tom's questions for Jaya

2006-02-24 by lpc2100

... Only Taxes and Death are certain (Don t recall who said that). Ok you can evade taxes. No one makes absolute claim these days to avoid liability. I

Thread view Attachments: 0

Minumim setup for LPC2148

2006-02-24 by pitstock_kiwi

I am setting up my schematic for an LPC2148 board. Heres my take on the minimum connections to make the chip power up and run. Obviously connect all the 3.3v

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.