Refactor IMTQ handling #384

Merged
muellerr merged 30 commits from refactor_imtq_handling into develop 2023-02-21 11:04:29 +01:00
2 changed files with 0 additions and 6 deletions
Showing only changes of commit cd9b0cb4f4 - Show all commits

View File

@ -2170,11 +2170,6 @@ void ImtqHandler::checkErrorByte(const uint8_t errorByte, const uint8_t step) {
} }
} }
void ImtqHandler::doSendRead() {
// TaskFactory::delayTask(1);
DeviceHandlerBase::doSendRead();
}
void ImtqHandler::fillSystemStateIntoDataset(const uint8_t* packet) { void ImtqHandler::fillSystemStateIntoDataset(const uint8_t* packet) {
PoolReadGuard pg(&statusSet); PoolReadGuard pg(&statusSet);
statusSet.statusByteMode.value = packet[2]; statusSet.statusByteMode.value = packet[2];

View File

@ -23,7 +23,6 @@ class ImtqHandler : public DeviceHandlerBase {
void setPollingMode(NormalPollingMode pollMode); void setPollingMode(NormalPollingMode pollMode);
void doSendRead() override;
/** /**
* @brief Sets mode to MODE_NORMAL. Can be used for debugging. * @brief Sets mode to MODE_NORMAL. Can be used for debugging.
*/ */