do not actuate any transformation
This commit is contained in:
parent
cf563ec00f
commit
fa77cd4330
1 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue