From dbd164dd91d73f9e66d1fb16f3756e55a21c6703 Mon Sep 17 00:00:00 2001 From: David Cermak Date: Tue, 7 Jan 2025 08:52:38 +0100 Subject: [PATCH] fix(mosq): Add a note about stack size --- components/mosquitto/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/mosquitto/README.md b/components/mosquitto/README.md index a6408db29..3f8041982 100644 --- a/components/mosquitto/README.md +++ b/components/mosquitto/README.md @@ -20,7 +20,7 @@ mosq_broker_run(&config); ## Memory Footprint Considerations -The broker primarily uses the heap for internal data, with minimal use of static/BSS memory. It consumes approximately 60 kB of program memory. +The broker primarily uses the heap for internal data, with minimal use of static/BSS memory. It consumes approximately 60 kB of program memory and minimum 5kB of stack size. - **Initial Memory Usage**: ~2 kB of heap on startup - **Per Client Memory Usage**: ~4 kB of heap for each connected client