diff options
author | Joey Castillo <joeycastillo@utexas.edu> | 2022-02-20 15:29:50 -0500 |
---|---|---|
committer | Joey Castillo <joeycastillo@utexas.edu> | 2022-02-20 15:29:50 -0500 |
commit | 002140e63420e6a7acc7dfb7c5bc5d51dcfa938c (patch) | |
tree | b2a8fe14f1a0c6d23946d79c5ecf8fd08e18266a /apps/spi-test | |
parent | f9067641c74779cf77194a89de8c65ef9c424f93 (diff) | |
download | Sensor-Watch-002140e63420e6a7acc7dfb7c5bc5d51dcfa938c.tar.gz Sensor-Watch-002140e63420e6a7acc7dfb7c5bc5d51dcfa938c.tar.bz2 Sensor-Watch-002140e63420e6a7acc7dfb7c5bc5d51dcfa938c.zip |
documentation fix
Diffstat (limited to 'apps/spi-test')
-rw-r--r-- | apps/spi-test/app.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/spi-test/app.c b/apps/spi-test/app.c index 504835bf..d00b635a 100644 --- a/apps/spi-test/app.c +++ b/apps/spi-test/app.c @@ -36,7 +36,7 @@ typedef union { uint16_t filter : 2; // bandwidth filtering selection (see lis2dw_bandwidth_filtering_mode_t) uint16_t accel : 14; // Z acceleration value, raw, offset by 16384 } z; - uint32_t counter : 16; // number of seconds since timestamp in header + uint32_t counter : 16; // number of centiseconds since timestamp in header } data; uint64_t value; } accelerometer_data_acquisition_record_t; |