Hello People,
Thank you for your response and your algorithms and ideas.
Actually, I just came across glcd.c code. And yes, it is complex. But
I will try to utilize some of its techniques.
I have a font definition file ready in the previous source files. It
goes like this:
_font1def: ;address 0400
.DATA.B H'00, H'7e, H'11, H'11, H'11, H'7e ; A Asc 41
.DATA.B H'00, H'7f, H'49, H'49, H'49, H'36 ; B Asc 42
....so on and so forth.
This is in an asm file, and i was thinking if i could use this instead
of making my own.
Question is, how do i use it? Is this ARM compatible asm file? Can i
just access the data as an array, or do i change it to C format?
Thanks again,
M.
--- In lpc2000@yahoogroups.com, "wickedmonster2002" <karim@...> wrote:Show quoted textHide quoted text
>
> Has anyone used a dot-matrix display? I have an LCD (128x64), model
> no. HDG12864F-1.
>
> I have previous source code but its so complex, i cannot understand
> it. its poorly documented too. If anyone can share the algorithm
> behind sending display characters to a dot matrix display.
>
> What i want to do :
> some_function( "Display this" ) -> On the LCD: Display this
>
> What I can do:
> I can make a single for loop which has pointers to an array of hex
> files mapped out to be characters. Result? each character display
> reqiures a for loop. :(
>
> Not too efficient on the big O notation. (Random sense)
>
> Anyways, help? :P
>