OTA + remote logging + profiling

This commit is contained in:
2026-02-18 11:12:38 -05:00
parent 63a18677cb
commit 107f185527
16 changed files with 524 additions and 12 deletions

View File

@@ -48,7 +48,7 @@ public:
xTaskCreate(handleRecvCall, "rpc_rx", 3072, this, 5, &m_handle_recv_call_task);
m_thread_pool.resize(RPC_CALL_THREAD_POOL_SIZE);
for (int i = 0; i < RPC_CALL_THREAD_POOL_SIZE; i++) {
xTaskCreate(processRPCCall, "rpc_thread", 3072, this, 5, &m_thread_pool[i]);
xTaskCreate(processRPCCall, "rpc_thread", 4096, this, 5, &m_thread_pool[i]);
}
};