do not actuate any transformation

This commit is contained in:
Denis 2023-11-18 18:19:16 +01:00
parent cf563ec00f
commit fa77cd4330
No known key found for this signature in database
GPG key ID: DD9B63F805CF5C03

View file

@ -561,9 +561,9 @@ static int send_data(int fd, logic_t *const logic, uint8_t counter) {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
};
const int16_t g_x = gs.gyro[0] / (double)2.0;
const int16_t g_y = gs.gyro[1] / (double)2.0;
const int16_t g_z = gs.gyro[2] / (double)2.0;
const int16_t g_x = (gs.gyro[0] / (double)2.0) /* * (double)255.0*/;
const int16_t g_y = (gs.gyro[1] / (double)2.0) /* * (double)255.0 */;
const int16_t g_z = (gs.gyro[2] / (double)2.0) /* * (double)255.0 */;
const int16_t a_x = gs.accel[0] / (double)2.0;
const int16_t a_y = gs.accel[1] / (double)2.0;
const int16_t a_z = gs.accel[2] / (double)2.0;