From d52c94a0ed4c3c33c5c99ac56aac58369265cf39 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 14:47:52 -0500 Subject: [PATCH] spelling: hardware Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/drivers/imu/lis3dh/lis3dh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/drivers/imu/lis3dh/lis3dh.c b/src/fw/drivers/imu/lis3dh/lis3dh.c index 9e2a64f0..109c0f44 100644 --- a/src/fw/drivers/imu/lis3dh/lis3dh.c +++ b/src/fw/drivers/imu/lis3dh/lis3dh.c @@ -570,7 +570,7 @@ bool accel_is_idle(void) { return false; } - // It was idle recently, see if it's still idle. Note we are avoiding reading the accel hardwware again here + // It was idle recently, see if it's still idle. Note we are avoiding reading the accel hardware again here // to keep this call as lightweight as possible. Instead we are just comparing the last read value with // the value last captured by analytics (which does so on an hourly heartbeat). AccelRawData accel_data;