remove is_received from dump

This commit is contained in:
proddy
2024-04-29 20:57:56 +02:00
parent dcedd75ea1
commit 5f77fd7f40
4 changed files with 212 additions and 217 deletions

View File

@@ -461,13 +461,11 @@ class EMSdevice {
uint16_t type_id_;
const char * name_;
bool fetch_;
bool received_;
bool cmd_;
TelegramFunctionDump(uint16_t type_id, const char * name, bool fetch, bool received, bool cmd)
TelegramFunctionDump(uint16_t type_id, const char * name, bool fetch, bool cmd)
: type_id_(type_id)
, name_(name)
, fetch_(fetch)
, received_(received)
, cmd_(cmd) {
}
};