From 60ae75cacca4d1b865e586efc38f86f6426e7328 Mon Sep 17 00:00:00 2001 From: Maruchi Kim Date: Wed, 2 Jun 2021 18:03:32 -0700 Subject: [PATCH] Reduce threshold amount and threshold duration --- main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index ef3e61f..c61b242 100644 --- a/main.c +++ b/main.c @@ -94,8 +94,8 @@ accelGenericInterrupt_t accelInterrupt1 = { .zEnable = true, .activity = true, .combSelectIsAnd = false, - .threshold = 0x3, - .duration = 0x7, + .threshold = 0x2, + .duration = 0x4, }; void assert_nrf_callback(uint16_t line_num, const uint8_t * p_file_name)