Simple Graphics for LPC2138
2005-04-07 by dsidlauskas1
Yahoo Groups archive
Index last updated: 2026-04-28 23:31 UTC
Thread
2005-04-07 by dsidlauskas1
I have a project that is using a 2138, and I would like to add a Qvga(320X240) monochrome 1 bir per pixel graphic screen to do mostly text and some simple graphics like boxes, and maybe a moving wait bar. Cost is a big factor. I'd appreciate any suggestions regarding graphic panels, controllers and design approaches. Many thanks in advance. Dave S.
2005-04-08 by acetoel
I have used KS0108 Based LCD, which are monocrome but 128x64, I would like to use a bigger screen. Anyway, take in consideration that most LCD needs 5V, and you may need a bi direction level converter... See you Ezequiel --- In lpc2000@yahoogroups.com, "dsidlauskas1" <dsidlauskas@w...> wrote: > > I have a project that is using a 2138, and I would like to add a > Qvga(320X240) monochrome 1 bir per pixel graphic screen to do mostly > text and some simple graphics like boxes, and maybe a moving wait bar. > Cost is a big factor. > > I'd appreciate any suggestions regarding graphic panels, controllers
> and design approaches. > > Many thanks in advance. > > Dave S.
2005-04-08 by Marko Pavlin (home)
I used in one pressure transducer prototype the EM Marin LCD module, similar to this one: http://www.emmicroelectronic.com/Products.asp?IdProduct=221 it has simple serial interface, low power, small size.... best fit for simple transducer. Marko acetoel wrote:
> > I have used KS0108 Based LCD, which are monocrome but 128x64, I > would like to use a bigger screen. Anyway, take in consideration > that most LCD needs 5V, and you may need a bi direction level > converter... > > See you > Ezequiel > > --- In lpc2000@yahoogroups.com, "dsidlauskas1" <dsidlauskas@w...> > wrote: > > > > I have a project that is using a 2138, and I would like to add a > > Qvga(320X240) monochrome 1 bir per pixel graphic screen to do > mostly > > text and some simple graphics like boxes, and maybe a moving wait > bar. > > Cost is a big factor. > > > > I'd appreciate any suggestions regarding graphic panels, > controllers > > and design approaches. > > > > Many thanks in advance. > > > > Dave S. > > > > > *Yahoo! Groups Links* > > * To visit your group on the web, go to: > http://groups.yahoo.com/group/lpc2000/ > > * To unsubscribe from this group, send an email to: > lpc2000-unsubscribe@yahoogroups.com > <mailto:lpc2000-unsubscribe@yahoogroups.com?subject=Unsubscribe> > > * Your use of Yahoo! Groups is subject to the Yahoo! Terms of > Service <http://docs.yahoo.com/info/terms/>. > >
2005-04-08 by peterburdine
Where do you get these, and how much do they cost? Do you use the backlight version? --- In lpc2000@yahoogroups.com, "Marko Pavlin (home)" <mp@h...> wrote:
> I used in one pressure transducer prototype the EM Marin LCD module, > similar to this one: > > http://www.emmicroelectronic.com/Products.asp?IdProduct=221 > > it has simple serial interface, low power, small size.... best fit for > simple transducer. > > Marko > > acetoel wrote: > > > > > I have used KS0108 Based LCD, which are monocrome but 128x64, I > > would like to use a bigger screen. Anyway, take in consideration > > that most LCD needs 5V, and you may need a bi direction level > > converter... > > > > See you > > Ezequiel > > > > --- In lpc2000@yahoogroups.com, "dsidlauskas1" <dsidlauskas@w...> > > wrote: > > > > > > I have a project that is using a 2138, and I would like to add a > > > Qvga(320X240) monochrome 1 bir per pixel graphic screen to do > > mostly > > > text and some simple graphics like boxes, and maybe a moving wait > > bar. > > > Cost is a big factor. > > > > > > I'd appreciate any suggestions regarding graphic panels, > > controllers > > > and design approaches. > > > > > > Many thanks in advance. > > > > > > Dave S. > > > > > > > > > > *Yahoo! Groups Links* > > > > * To visit your group on the web, go to: > > http://groups.yahoo.com/group/lpc2000/ > > > > * To unsubscribe from this group, send an email to: > > lpc2000-unsubscribe@yahoogroups.com > > <mailto:lpc2000-unsubscribe@yahoogroups.com?subject=Unsubscribe> > > > > * Your use of Yahoo! Groups is subject to the Yahoo! Terms of > > Service <http://docs.yahoo.com/info/terms/>. > > > >
2005-04-09 by James Dabbs
Is there a clever, quick way to do 16-bit and 32-bit byte swaps in ARM with only one or two instructions? Thanks, James Dabbs
2005-04-09 by embeddedjanitor
--- In lpc2000@yahoogroups.com, "James Dabbs" <jdabbs@t...> wrote: > Is there a clever, quick way to do 16-bit and 32-bit byte swaps in ARM > with only one or two instructions? > > Thanks, > > James Dabbs For such nuggets I really suggest the ARM System Developer's Guide which has the following: @ r0 is source/dest @ r1,r2 are scratch mvn r2, #0x0000FF00 eor r1, r0, r0, ROR #16 and r1, r2,r1, LSR #8 eor r0, r1, r0, ROR #8 or eor r1,r0,r0,ROR #16 mov r1,r1, LSR#8 bic r1,r1,#0xFF00 EOR r0, r1, r0,ROR #8 To swap two 16-bits in a 32-bit mov r0,r0,ROR #16