Search found 7 matches

by thrust
Sun Jun 15, 2003 10:33 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Problem with GLK1223225SM
Replies: 1
Views: 1673

Problem with GLK1223225SM

Hi!

I have a GLK1223225SM wich have been working fine for about one year. Now there seems to be a malfunction since everyother character gets droped by the display no matter what baud rate that is selected. Obviously i could solve this problem by sending every character twice, but there is another ...
by thrust
Mon Jun 10, 2002 5:32 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Font uploader for graphic displays.
Replies: 9
Views: 6762

Thanks for the reply Henry!

I have now update the .zip file with some primitive manual. Mabye now it is possible for others to do some own fonts.

Does all GL* displays support font uploading in the same way as the GLK12232-25-SM?

Thanks in advance,

//Oskar Sj
by thrust
Mon Jun 10, 2002 12:48 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Font uploader for graphic displays.
Replies: 9
Views: 6762

Hi!

I was a little annoyed at the font uploading system that are built into mogd.exe. So i decided to make my own font uploading program. My program tries to solve three problems that i identified with mogd.exe:

1. The amount of files that you need for one font. It is some extra work to do copy ...
by thrust
Sun May 12, 2002 2:12 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Go To Position command on an 821
Replies: 3
Views: 3002

Hi!

Top left for positioning the cursor is at 1,1. So that is probably not your problem.

I think it is a funny inconcistency that all graphic commands have it's orgin at 0,0 (On the graphic displays that is)...

/Oskar Sj
by thrust
Wed May 08, 2002 3:27 pm
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Put pixel in CCS for PIC16F873
Replies: 1
Views: 2556

Hi!

Try replacing :
printf("%Cp%U%U",T,X,Y);

with:
printf("%Cp%C%C",T,X,Y);

Since you probably don't really want the string representation of X and Y.

I hope this helps,

/Oskar Sj
by thrust
Thu Apr 25, 2002 11:56 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Flow control mode on GLK12232-25SM
Replies: 4
Views: 5038

Hi again!

The problem is not really how the commands on the diplay works, rather how to implement it under Win32.

I have something that almost works using overlapped communication and a thread that waits for signals from the display. The problem is the reading thread behaves okay in debug-mode ...
by thrust
Sat Apr 13, 2002 3:40 am
Forum: LK/ELK/VK/PK/OK/MX/GLK/EGLK/GVK/GLT
Topic: Flow control mode on GLK12232-25SM
Replies: 4
Views: 5038

Hi!

I can connect and send data to my GLK12232-25SM using visual c++. (Using CreateFile, WriteFile) But the display generates unpredictably results when the buffer is full so therefore i suppose the flow control mode would be the apropriate solution.

Any one have some source describing how to do ...