tv text flicker
fky
Posts: 15
Hi, I need help on how to remove the flicker on the tv display when the text are updated?
I am using the TV_terminal_demo.spin as the starting point and using graphic and tv object. When I update hex and text display regularly about 3 time a sec, the flicker is pretty bad.
Any help will be appreciated.
Thanks,
FKY
I am using the TV_terminal_demo.spin as the starting point and using graphic and tv object. When I update hex and text display regularly about 3 time a sec, the flicker is pretty bad.
Any help will be appreciated.
Thanks,
FKY
Comments
-Phil
Out of about 40 characters on the whole screen, not all of them will flicker all the time, the last 4 seem to be all the time, while the first 10 seem to be stable all the time. The nunber of characters that flicker at any one time changes slowly from all flicker to all stable.
FKY
-Phil
_clkmode = xtal1 + pll16x
_xinfreq = 5_000_000
title byte "TV Terminal Demo 9876543210 ",13,13,0
and
PUB main | a ,z
'start the tv terminal
start(12)
repeat
gr.textmode(2,2,6,1)
a := $0008ff
gr.text(10,-100,@title)
hex(a & $ffff,5)
z := cnt
waitcnt(50000000+z)
out(0)
When run the tv text show unacceptable flicker
BTW, when you post code on the forum, be sure to enclose it in a [noparse][[/noparse]code] block, in order to preserve indentation. You can also use my formatter at www.phipi.com/format or the portal at www.phipi.com/forum, which includes the formatter.
-Phil
I trying to out(" ") to clear the char at a fixed position say x=20 y=100 then update the char at x=20 y=100, but it seem to keep on overlaying on top of what was at x=20 y=100. any idea
- fky
-Phil
-Phil
Lookup the 4 parameters order for gr.box since I am very forgetful of certain minor details.