From 0004c30f422e702fd184a54e9f1d55da878bcd0f Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Sun, 20 Feb 2022 15:49:21 -0500 Subject: documentation fix --- movement/watch_faces/sensor/accelerometer_data_acquisition_face.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'movement') diff --git a/movement/watch_faces/sensor/accelerometer_data_acquisition_face.h b/movement/watch_faces/sensor/accelerometer_data_acquisition_face.h index 337116a9..9cea8095 100644 --- a/movement/watch_faces/sensor/accelerometer_data_acquisition_face.h +++ b/movement/watch_faces/sensor/accelerometer_data_acquisition_face.h @@ -46,15 +46,15 @@ typedef union { struct { struct { uint16_t record_type : 2; // duplicate; this is the same field as info above - uint16_t accel : 14; // X acceleration value, raw, offset by 16384 + uint16_t accel : 14; // X acceleration value, raw, offset by 8192 } x; struct { uint16_t lpmode : 2; // low power mode (see lis2dw_low_power_mode_t) - uint16_t accel : 14; // Y acceleration value, raw, offset by 16384 + uint16_t accel : 14; // Y acceleration value, raw, offset by 8192 } y; struct { uint16_t filter : 2; // bandwidth filtering selection (see lis2dw_bandwidth_filtering_mode_t) - uint16_t accel : 14; // Z acceleration value, raw, offset by 16384 + uint16_t accel : 14; // Z acceleration value, raw, offset by 8192 } z; uint32_t counter : 16; // number of centiseconds since timestamp in header } data; -- cgit v1.2.3