Hi Guys,
I want to rotate all bytes (bytewise) in an array of 30 bytes so that the oldest value in the array is discarded
from one end, and a new value is placed in the other end, and the new value should be the last to be discarded.
A seemingly simple problem driving me nuts!
Something like this would just copy the new value to all bytes:
FOR gcnt = 0 TO 29 '
vmean[gcnt+1] = vmean[gcnt] '
NEXT gcnt '
Any help appreciated.
Cheers, Brek.
Bookmarks