implemented ipc messages getdevices req/rsp

This commit is contained in:
Martin Preuss
2023-04-22 19:13:59 +02:00
parent 1893d50908
commit 5f7e192e27
16 changed files with 782 additions and 4 deletions

View File

@@ -12,6 +12,7 @@
#include "./ping.h"
#include "./flash.h"
#include "./getdevices.h"
#include <aqhome/api.h>
#include <aqhome/aqhome.h>
@@ -67,6 +68,7 @@ int main(int argc, char **argv)
const GWEN_FUNCS cmdDefArray[]= {
GWEN_FE_DAH("ping", AQH_Tool_Ping, I18N("Ping a given node on the network")),
GWEN_FE_DAH("flash", AQH_Tool_Flash, I18N("Flash a given node on the network")),
GWEN_FE_DAH("getdevices", AQH_Tool_GetDevices, I18N("Request list of known devices on the network")),
GWEN_FE_END(),
};
const GWEN_FUNCS *func;