Reading Raw Gyro data

Post a reply

Confirmation code
Enter the code exactly as it appears. All letters are case insensitive.
Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :arrow: :| :mrgreen: :geek: :ugeek:

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
Confirmation code
Enter the code exactly as it appears. All letters are case insensitive.
   

If you wish to attach one or more files enter the details below.

Maximum filesize per attachment: 1 MiB.

Expand view Topic review: Reading Raw Gyro data

Re: Reading Raw Gyro data

by cpp4robots_admin » 14 Apr 2021 06:30

Hi,

according to the original firmware(lms2012), the return type is array of "signed char" and the length of this array is 32.
You can cast to pointer to "const signed char".

Code: Select all

const signed char* pGyroData = static_cast<const signed char*>(GetData_UART(E_Port_1, E_UART_Type_Gyro, E_UART_Mode_GyroAngle));

Reading Raw Gyro data

by surfrider » 13 Apr 2021 20:35

I hope to get more accurate gyro angles. With Labview Mindstorms you can do a raw reading to get a value between 0 and 4095 instead of 0 and 360 degrees.
I would like to use GetData_UART to read the raw gyro data, hopefully get a higher resolution.
But I don't know what kind of data is read via GetData_UART(E_Port_1, E_UART_Type_Gyro, E_UART_Mode_GyroAngle);
I get a const void *, but what can I cast this to? That is not clear from the documentation.

Top