[acc] Change doubles to floats to make it lazily fit in a BT characteristic

This commit is contained in:
Christopher Anderson
2016-05-12 14:54:33 -07:00
parent 425a9de687
commit a009b2b433

View File

@@ -23,9 +23,9 @@
#ifndef __DEV_ACCELEROMETER_H
#define __DEV_ACCELEROMETER_H
typedef struct {
double x;
double y;
double z;
float x;
float y;
float z;
} position_vector_t;
status_t acc_read_xyz(position_vector_t *pos_vector);