From 91d501b6a9bfe9588c26864f6f456e5702226b25 Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Fri, 6 Oct 2023 21:23:46 +0200 Subject: [PATCH] Remove unnecessary request copy This patch removes an unnecessary take_request call from Service::process, reducing the stack usage by roughly 5 kB. --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 172bef8e03e..dfe5c7ac8be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added optional support for API extensions in `serde_extensions` module behind the `serde-extensions` feature. - Added `types::Path` re-export of `littlefs2::path::Path`. +- Reduced stack usage of `Service::process`. ### Changed