From 08a4bbef5d0dc8ef2e9924ca1cb80be196cf1e76 Mon Sep 17 00:00:00 2001 From: jhchun Date: Fri, 19 Jun 2026 18:04:10 +0900 Subject: [PATCH] =?UTF-8?q?DFU=20=EC=A7=84=EC=9E=85=20=ED=9B=84=20?= =?UTF-8?q?=EC=97=85=EB=8D=B0=EC=9D=B4=ED=8A=B8=20=EB=8C=80=EA=B8=B0=20?= =?UTF-8?q?=EC=8B=9C=EA=B0=84=202=EB=B6=84=20=E2=86=92=201=EB=B6=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../secure_bootloader/pca10056_s140_ble/config/sdk_config.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/project/dfu/secure_bootloader/pca10056_s140_ble/config/sdk_config.h b/project/dfu/secure_bootloader/pca10056_s140_ble/config/sdk_config.h index fce4296..b944b18 100644 --- a/project/dfu/secure_bootloader/pca10056_s140_ble/config/sdk_config.h +++ b/project/dfu/secure_bootloader/pca10056_s140_ble/config/sdk_config.h @@ -141,6 +141,7 @@ // to immediately transfer a new application if it wishes. #ifndef NRF_BL_DFU_CONTINUATION_TIMEOUT_MS +/* Time to wait for an expected DFU update immediately after entering DFU mode from the application. (10 seconds) */ #define NRF_BL_DFU_CONTINUATION_TIMEOUT_MS 10000 #endif @@ -150,7 +151,8 @@ // If 0, no inactivity timer will be used. Values 1-99 are invalid. #ifndef NRF_BL_DFU_INACTIVITY_TIMEOUT_MS -#define NRF_BL_DFU_INACTIVITY_TIMEOUT_MS 120000 +/* Time to stay in DFU mode after the last DFU activity before returning to the application. (60 seconds) */ +#define NRF_BL_DFU_INACTIVITY_TIMEOUT_MS 60000 #endif //