diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2023-04-27 17:48:30 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2023-04-27 17:48:30 +0200 |
commit | c3ba92df6dce55321206ea6191456f280a91608b (patch) | |
tree | b73d36dc71ea398a8624ba08ee1f64b5fe2bdf3c /include/driver | |
parent | 83e208ef1744cdf7aa1cd290c1caae2c903d2ec4 (diff) |
ads111x: fix typo
Diffstat (limited to 'include/driver')
-rw-r--r-- | include/driver/ads111x.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/driver/ads111x.h b/include/driver/ads111x.h index 54cd876..2514e8d 100644 --- a/include/driver/ads111x.h +++ b/include/driver/ads111x.h @@ -50,7 +50,7 @@ class ADS111x { }; enum conf_mode : unsigned short { CONTINUOUS = 0 << 8, - SINGLE_SHORT = 1 << 8, + SINGLE_SHOT = 1 << 8, }; enum conf_data_rate : unsigned short { SPS_8 = 0 << 5, |