Page 1 of 1

Strip Chart won't scroll

Posted: Thu Sep 23, 2010 10:20 pm
by rgmsnellville
I am attempting to set up a strip chart, plot pixels, then scroll.

SEROUT2 PORTA.2,32800,[254,106,1,64,1,191,63]
plot some pixels
SEROUT2 PORTA.2,32800,[254,107,1]

The pixels plot just fine, but the chart does not scroll.

Posted: Fri Sep 24, 2010 9:35 am
by Raquel
Hi,

Thank you for posting on the forum.

Instead of SEROUT2 PORTA.2,32800,[254,106,1,64,1,191,63]
Try SEROUT2 PORTA.2,32800,[254,106,1,64,1,192,63]

As stated in the manual (I based it on a GLK24064 manual):
"The definition of x must lie on byte boundaries. That is, x must be defined as
0x00, 0x08, 0x10, etc. This restriction does not apply to y values."

Please let me know how it turns out.