diff options
author | Joey Castillo <joeycastillo@utexas.edu> | 2022-02-19 13:11:47 -0500 |
---|---|---|
committer | Joey Castillo <joeycastillo@utexas.edu> | 2022-02-19 13:11:47 -0500 |
commit | 3392f73d360c46d2bd79eec2c530a78d9657cf8c (patch) | |
tree | 63d0ecfac902386215298e5dde6dd789bf50c1df /watch-library/shared/driver/lis2dw.h | |
parent | b1bec8f18740486383ce3c8dfcf1b697f00a67f6 (diff) | |
download | Sensor-Watch-3392f73d360c46d2bd79eec2c530a78d9657cf8c.tar.gz Sensor-Watch-3392f73d360c46d2bd79eec2c530a78d9657cf8c.tar.bz2 Sensor-Watch-3392f73d360c46d2bd79eec2c530a78d9657cf8c.zip |
lis2dw: add support for high performance mode
Diffstat (limited to 'watch-library/shared/driver/lis2dw.h')
-rw-r--r-- | watch-library/shared/driver/lis2dw.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/watch-library/shared/driver/lis2dw.h b/watch-library/shared/driver/lis2dw.h index 83b0cfb1..ac5de929 100644 --- a/watch-library/shared/driver/lis2dw.h +++ b/watch-library/shared/driver/lis2dw.h @@ -291,6 +291,10 @@ void lis2dw_set_bandwidth_filtering(lis2dw_bandwidth_filtering_mode_t bwfilter); lis2dw_bandwidth_filtering_mode_t lis2dw_get_filtering(void); +void lis2dw_set_mode(lis2dw_mode_t mode); + +lis2dw_mode_t lis2dw_get_mode(void); + void lis2dw_set_low_power_mode(lis2dw_low_power_mode_t mode); lis2dw_low_power_mode_t lis2dw_get_low_power_mode(void); |