From 52ae473ad14fb2d806fba4da2bea4cf2cc96a772 Mon Sep 17 00:00:00 2001 From: Martin Preuss Date: Tue, 29 Apr 2025 00:32:59 +0200 Subject: [PATCH] aqhome-tool: no longer expect a reboot response. --- apps/aqhome-tool/nodes/flash.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/aqhome-tool/nodes/flash.c b/apps/aqhome-tool/nodes/flash.c index c327d82..faa2726 100644 --- a/apps/aqhome-tool/nodes/flash.c +++ b/apps/aqhome-tool/nodes/flash.c @@ -221,6 +221,7 @@ int _rebootNode(AQH_OBJECT *o, unsigned int uid, int timeoutInSeconds) } AQH_ToolClient_SendNodeMsg(o, nodeMsg); +#if 0 nodeMsg=AQH_ToolClient_WaitForNodeMsg(o, 0, AQH_MSG_TYPE_REBOOT_RSP, timeoutInSeconds); if (nodeMsg==NULL) { DBG_INFO(NULL, "Bad or no reboot response received."); @@ -229,6 +230,7 @@ int _rebootNode(AQH_OBJECT *o, unsigned int uid, int timeoutInSeconds) DBG_INFO(NULL, "REBOOT_RESPONSE message received"); AQH_Message_free(nodeMsg); +#endif return 0; }