Effacer les filtres
Effacer les filtres

Converting 2 8 bit integers into a 16 bit?

23 vues (au cours des 30 derniers jours)
Mustafa Abu-Mallouh
Mustafa Abu-Mallouh le 23 Déc 2018
Commenté : Mike Faulkner le 1 Juin 2023
I am pulling data from an MPU6050 accelerometer using an Arduino uno and the outputs from the device are 2 8 bit integers. Here is my code for pulling the data from the accelerometer (example for the X-acceleration):
sensitivity = 16384;
g_level = 2;
% Read X Accel
x1 = readRegister(mpu,59,'uint8'); % Reads bits 15:8 from register 59
x2 = readRegister(mpu,60,'uint8'); % Reads bits 7:0 from register 60
X = swapbytes( [x2 x1] );
X_accel(i) = double( typecast(X,'uint16') ) / sensitivity - g_level;
The variable x1 contains bits 15 to 8 and x2 contains bits 7:0. The conversion I am using puts the code on the proper ±2 g scale I was expecting to receive but the actual values make no sense.
Attached is a plot of the acceleration values I am getting; the y-axes of the subplots should be in units of G and the accelerometer was fixed (except for the pulse at around index 65-70) and oriented with the positive z-axis set vertical (gravity in the negative z direction).
Am I converting the 8 bit integers into the 16 bit integer correctly?
Thank you!
  2 commentaires
Samuel Louise
Samuel Louise le 30 Déc 2018
Hi Mustapha,
I am working on a very similar project as you but with an MPU9250 and arduino Mega 2560. I was wondering whether we could share knowledge and help each other get to the appropriate level of confidence. If this would interest you, please get in touch.
Thanks
Sam
Mike Faulkner
Mike Faulkner le 1 Juin 2023
Try this: Take the Byte with the MSBs shift it to the left by 8 bit places (x by 256) and then add the Byte with the LSBs
X= X1*256 + X2 (if bits 15:8 are the MSBs)
This worked for me ... good luck

Connectez-vous pour commenter.

Réponse acceptée

Guillaume
Guillaume le 23 Déc 2018
swapbytes on an array of uint8 is never going to swap anything. If you want to change the order of the two bytes, then simply concatenate them the other way round:
X = [x1, x2]; %instead of [x2, x1]
Your conversion from X to 16-bit integer is correct, so the above is the only thing I can see going wrong. If x1 is indeed bit 15:8 then it should be [x1, x2].

Plus de réponses (0)

Catégories

En savoir plus sur Arduino Hardware dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by