diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-09-05 09:18:59 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-09-05 09:18:59 -0400 |
commit | 1cdf0d474d4d14727d808519e9705d0a56201602 (patch) | |
tree | 89124d22936c5c4715d6731ef191e679226c5dc7 /src | |
parent | 09bc2071898ab4cab0feb394a8307af0464b5981 (diff) | |
download | kutter-1cdf0d474d4d14727d808519e9705d0a56201602.tar.gz kutter-1cdf0d474d4d14727d808519e9705d0a56201602.tar.xz kutter-1cdf0d474d4d14727d808519e9705d0a56201602.zip |
sensor_adxl345: Remove unused stop_time parameter
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/sensor_adxl345.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sensor_adxl345.c b/src/sensor_adxl345.c index c76ab7db..9f7176e7 100644 --- a/src/sensor_adxl345.c +++ b/src/sensor_adxl345.c @@ -14,7 +14,7 @@ struct adxl345 { struct timer timer; - uint32_t rest_ticks, stop_time; + uint32_t rest_ticks; struct spidev_s *spi; uint16_t sequence, limit_count; uint8_t flags, data_count; |