From fc8d0935924bf2c7378fe8d6413bc8ed182ccfaa Mon Sep 17 00:00:00 2001 From: Michael Scott Date: Mon, 7 May 2018 16:04:51 -0700 Subject: [PATCH] net: lwm2m: lower default maximum observes from 20 to 10 In an effort to reduce the footprint of the LwM2M client, let's lower the default # of observes handled by the client from 20 to 10. This saves ~640 bytes of SRAM. Signed-off-by: Michael Scott --- subsys/net/lib/lwm2m/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/net/lib/lwm2m/Kconfig b/subsys/net/lib/lwm2m/Kconfig index 807e9bd46b8..a953ddde2f0 100644 --- a/subsys/net/lib/lwm2m/Kconfig +++ b/subsys/net/lib/lwm2m/Kconfig @@ -51,7 +51,7 @@ config LWM2M_ENGINE_MAX_REPLIES config LWM2M_ENGINE_MAX_OBSERVER int "Maximum # of observable LWM2M resources" - default 20 + default 10 range 5 200 help This value sets the maximum number of resources which can be