| Author |
Message |
konkan *nix forums beginner
Joined: 05 Feb 2005
Posts: 7
|
Posted: Tue Feb 15, 2005 5:23 am Post subject:
LCD drivers
|
|
|
hi all,
I have to write various application for a vortex86 board.In that i have
got 2 X 20 LCD display.Do i have to write a driver for that from the
scratch,if so plz suggest some sites for that or is any open source
available for that and plz can anybody suggest
some details regarding this.
regards
konkan |
|
| Back to top |
|
 |
jim dorey *nix forums beginner
Joined: 20 Feb 2005
Posts: 39
|
Posted: Tue Feb 15, 2005 6:54 am Post subject:
Re: LCD drivers
|
|
|
On 14 Feb 2005 22:23:07 -0800, konkan <raj1980@gmail.com> wrote:
| Quote: | hi all,
I have to write various application for a vortex86 board.In that i have
got 2 X 20 LCD display.Do i have to write a driver for that from the
scratch,if so plz suggest some sites for that or is any open source
available for that and plz can anybody suggest
some details regarding this.
regards
konkan
|
it's a character device, you can probably use a standard tty driver, and
customise a tad.
--
Using Opera's revolutionary e-mail client: http://www.opera.com/m2/ |
|
| Back to top |
|
 |
konkan *nix forums beginner
Joined: 05 Feb 2005
Posts: 7
|
Posted: Tue Feb 15, 2005 10:31 am Post subject:
Re: LCD drivers
|
|
|
hi,
thank u 4 ur reponse.so what i got from ur suggestion is that,to take
the std tty
driver and to customise it according to my requirements right....
regards
konkan
jim dorey wrote:
| Quote: | On 14 Feb 2005 22:23:07 -0800, konkan <raj1980@gmail.com> wrote:
hi all,
I have to write various application for a vortex86 board.In that i
have
got 2 X 20 LCD display.Do i have to write a driver for that from
the
scratch,if so plz suggest some sites for that or is any open source
available for that and plz can anybody suggest
some details regarding this.
regards
konkan
it's a character device, you can probably use a standard tty driver,
and
customise a tad.
|
|
|
| Back to top |
|
 |
J Jackson *nix forums beginner
Joined: 24 Feb 2005
Posts: 19
|
Posted: Tue Feb 15, 2005 11:22 am Post subject:
Re: LCD drivers
|
|
|
jim dorey <skaar@ns.sympatico.ca> wrote:
: On 14 Feb 2005 22:23:07 -0800, konkan <raj1980@gmail.com> wrote:
: > hi all,
: >
: > I have to write various application for a vortex86 board.In that i have
: > got 2 X 20 LCD display.Do i have to write a driver for that from the
: > scratch,if so plz suggest some sites for that or is any open source
: > available for that and plz can anybody suggest
: > some details regarding this.
: > regards
: > konkan
: >
: it's a character device, you can probably use a standard tty driver, and
: customise a tad.
Oh yeah, just a tad
Don't know the board - whats the interface to the LCD? Is it a parallel
interface?
Is the board HD44780 compatible, if so there is loads of example code out
there for driving these boards - do a google search. You may be able to
do a userspace program.
If you write a userspace daemon that is accessed by other programs via a
named pipe you have a lazypersons driver of sorts. |
|
| Back to top |
|
 |
jim dorey *nix forums beginner
Joined: 20 Feb 2005
Posts: 39
|
Posted: Tue Feb 15, 2005 11:59 am Post subject:
Re: LCD drivers
|
|
|
On 15 Feb 2005 03:31:08 -0800, konkan <raj1980@gmail.com> wrote:
| Quote: | hi,
thank u 4 ur reponse.so what i got from ur suggestion is that,to take
the std tty
driver and to customise it according to my requirements right....
|
if it has serial interface capabilities then it'll probably be a breeze to
use the tty driver, if it's a parallel lcd it's a little more
complicated. you can pester the guys at lcdproc for info, but there's a
bunch of parallel lcd's with serial modes, so the list of lcd's you
wouldn't be able to use the standard tty drivers on are more manageable.
--
Using Opera's revolutionary e-mail client: http://www.opera.com/m2/ |
|
| Back to top |
|
 |
konkan *nix forums beginner
Joined: 05 Feb 2005
Posts: 7
|
Posted: Wed Feb 16, 2005 9:57 am Post subject:
Re: LCD drivers
|
|
|
hi,
Thanx 4 the reply.Here i have got a serial interface.
i have to use this 2 x 20 Lcd for monitoring various app like 2d games
and all.
Do i have to write a driver 4 that ,or can i send datas trough the
serial port itself.will there be controller 4 this LCD.
plz give me some suggestions..
regards
konkan |
|
| Back to top |
|
 |
J Jackson *nix forums beginner
Joined: 24 Feb 2005
Posts: 19
|
Posted: Wed Feb 16, 2005 3:09 pm Post subject:
Re: LCD drivers
|
|
|
konkan <raj1980@gmail.com> wrote:
: hi,
: Thanx 4 the reply.Here i have got a serial interface.
If it's an standard rs232 interface then it should be a no-brainer, and
you should be able to just do everything in user space.
: i have to use this 2 x 20 Lcd for monitoring various app like 2d games
: and all.
: Do i have to write a driver 4 that ,or can i send datas trough the
: serial port itself.will there be controller 4 this LCD.
: plz give me some suggestions..
: regards
: konkan |
|
| Back to top |
|
 |
Google
|
|
| Back to top |
|
 |
|