bmi160: Set the min_step_buf to 2 for sensitive mode

Number of steps to suppress false positives at the begining of the walking
activity. After a walking activity has been detected, these steps will be
added to the total number of steps counted. As a consequence the step
counter output is suppressed during the first step of the walking activity
as defined in min_step_buf.

Bug: 32560999
Change-Id: I9c0ca981ab4c02dd34bf214549969db4d1126b1f
diff --git a/firmware/src/drivers/bosch_bmi160/bosch_bmi160.c b/firmware/src/drivers/bosch_bmi160/bosch_bmi160.c
index b7e936e..c052320 100644
--- a/firmware/src/drivers/bosch_bmi160/bosch_bmi160.c
+++ b/firmware/src/drivers/bosch_bmi160/bosch_bmi160.c
@@ -3228,7 +3228,7 @@
         // config step detector
 #ifdef BMI160_STEP_COUNT_MODE_SENSITIVE
         SPI_WRITE(BMI160_REG_STEP_CONF_0, 0x2D, 450);
-        SPI_WRITE(BMI160_REG_STEP_CONF_1, 0x00, 450);
+        SPI_WRITE(BMI160_REG_STEP_CONF_1, 0x02, 450);
 #else
         SPI_WRITE(BMI160_REG_STEP_CONF_0, 0x15, 450);
         SPI_WRITE(BMI160_REG_STEP_CONF_1, 0x03, 450);