From a2f69f218371243a9fe54823f2f5465fbd70e488 Mon Sep 17 00:00:00 2001 From: Johnathon Slightham Date: Wed, 18 Feb 2026 09:16:55 -0500 Subject: [PATCH] Increase RPC timeout (needed for OTA updates) --- include/librpc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/librpc.h b/include/librpc.h index 8e04406..5e3f3ef 100644 --- a/include/librpc.h +++ b/include/librpc.h @@ -14,7 +14,7 @@ constexpr auto RX_QUEUE_SIZE = 100; constexpr auto FN_CALL_TAG = 100; // reserved tag for RPC functionality -constexpr auto FN_CALL_TIMEOUT = std::chrono::seconds(3); +constexpr auto FN_CALL_TIMEOUT = std::chrono::seconds(10); struct SizeAndSource { size_t bytes_written;