Skip to content

Commit

Permalink
Revert "add Result stub per request"
Browse files Browse the repository at this point in the history
This reverts commit a69b263.
  • Loading branch information
openshwprojects committed Oct 21, 2024
1 parent a69b263 commit 51ca85a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
2 changes: 1 addition & 1 deletion sdk/OpenW600
Submodule OpenW600 updated 1 files
+1 −112 app/Makefile
2 changes: 1 addition & 1 deletion sdk/OpenW800
Submodule OpenW800 updated 1 files
+1 −58 app/Makefile
11 changes: 3 additions & 8 deletions src/cmnds/cmd_tasmota.c
Original file line number Diff line number Diff line change
Expand Up @@ -433,24 +433,19 @@ int taslike_commands_init(){
// those are stubs, they are handled elsewhere so we can have Tasmota style replies

//cmddetail:{"name":"State","args":"NULL",
//cmddetail:"descr":"A stub for Tasmota",
//cmddetail:"descr":"NULL",
//cmddetail:"fn":"cmnd_stub","file":"cmnds/cmd_tasmota.c","requires":"",
//cmddetail:"examples":""}
CMD_RegisterCommand("State", cmnd_stub, NULL);
//cmddetail:{"name":"Sensor","args":"NULL",
//cmddetail:"descr":"A stub for Tasmota",
//cmddetail:"descr":"NULL",
//cmddetail:"fn":"cmnd_stub","file":"cmnds/cmd_tasmota.c","requires":"",
//cmddetail:"examples":""}
CMD_RegisterCommand("Sensor", cmnd_stub, NULL);
//cmddetail:{"name":"Status","args":"NULL",
//cmddetail:"descr":"A stub for Tasmota",
//cmddetail:"descr":"NULL",
//cmddetail:"fn":"cmnd_stub","file":"cmnds/cmd_tasmota.c","requires":"",
//cmddetail:"examples":""}
CMD_RegisterCommand("Status", cmnd_stub, NULL);
//cmddetail:{"name":"Result","args":"NULL",
//cmddetail:"descr":"A stub for Tasmota",
//cmddetail:"fn":"cmnd_stub","file":"cmnds/cmd_tasmota.c","requires":"",
//cmddetail:"examples":""}
CMD_RegisterCommand("Result", cmnd_stub, NULL);
return 0;
}

0 comments on commit 51ca85a

Please sign in to comment.