Accessing spin variables in a seperate COG using one pointer.
The variables are defined as such
Thanks for any help!
long Course
long Speed
long TimeStamp[2]
long Flags
long Latitude[2]
long Longitude[3]
long Date[2]
long Satellites
long Altitude
and the start function returns a pointer to course. Is there any way I can access these variables using just the pointer to course.Thanks for any help!
Comments
a := long[base_address][4]
will access Flags (the 5th long in the array, 0..4).