accel: lower wake threshold to smallest possible value

This commit is contained in:
joeycastillo
2024-11-18 18:45:44 -05:00
parent 6954fe60cb
commit b5fd0f7418
2 changed files with 3 additions and 3 deletions

View File

@@ -59,7 +59,7 @@ void accel_interrupt_count_face_setup(uint8_t watch_face_index, void ** context_
memset(*context_ptr, 0, sizeof(accel_interrupt_count_state_t));
accel_interrupt_count_state_t *state = (accel_interrupt_count_state_t *)*context_ptr;
/// TODO: hook up to movement methods for tracking threshold
state->threshold = 24;
state->threshold = 1;
}
}