dump telegrams doesnt need to show the cmd

This commit is contained in:
proddy
2024-09-17 09:31:03 +02:00
parent 6f556a9ebb
commit ade5cb79e3
3 changed files with 3 additions and 7 deletions

View File

@@ -471,12 +471,10 @@ class EMSdevice {
uint16_t type_id_;
const char * name_;
bool fetch_;
bool cmd_;
TelegramFunctionDump(uint16_t type_id, const char * name, bool fetch, bool cmd)
TelegramFunctionDump(uint16_t type_id, const char * name, bool fetch)
: type_id_(type_id)
, name_(name)
, fetch_(fetch)
, cmd_(cmd) {
, fetch_(fetch) {
}
};
void dump_telegram_info(std::vector<TelegramFunctionDump> & telegram_functions_dump);