Remove extra semikolon

This commit is contained in:
Thomas Basler 2024-12-30 00:06:08 +01:00
parent d43ac7fb92
commit 498afe377b
14 changed files with 41 additions and 15 deletions

View File

@ -30,7 +30,9 @@ static const byteAssign_t byteAssignment[] = {
};
HERF_1CH::HERF_1CH(HoymilesRadio* radio, const uint64_t serial)
: HM_Abstract(radio, serial) {};
: HM_Abstract(radio, serial)
{
}
bool HERF_1CH::isValidSerial(const uint64_t serial)
{

View File

@ -37,7 +37,9 @@ static const byteAssign_t byteAssignment[] = {
};
HERF_2CH::HERF_2CH(HoymilesRadio* radio, const uint64_t serial)
: HM_Abstract(radio, serial) {};
: HM_Abstract(radio, serial)
{
}
bool HERF_2CH::isValidSerial(const uint64_t serial)
{

View File

@ -5,7 +5,9 @@
#include "HERF_4CH.h"
HERF_4CH::HERF_4CH(HoymilesRadio* radio, const uint64_t serial)
: HM_4CH(radio, serial) {};
: HM_4CH(radio, serial)
{
}
bool HERF_4CH::isValidSerial(const uint64_t serial)
{

View File

@ -29,7 +29,9 @@ static const byteAssign_t byteAssignment[] = {
};
HMS_1CH::HMS_1CH(HoymilesRadio* radio, const uint64_t serial)
: HMS_Abstract(radio, serial) {};
: HMS_Abstract(radio, serial)
{
}
bool HMS_1CH::isValidSerial(const uint64_t serial)
{

View File

@ -29,7 +29,9 @@ static const byteAssign_t byteAssignment[] = {
};
HMS_1CHv2::HMS_1CHv2(HoymilesRadio* radio, const uint64_t serial)
: HMS_Abstract(radio, serial) {};
: HMS_Abstract(radio, serial)
{
}
bool HMS_1CHv2::isValidSerial(const uint64_t serial)
{

View File

@ -36,7 +36,9 @@ static const byteAssign_t byteAssignment[] = {
};
HMS_2CH::HMS_2CH(HoymilesRadio* radio, const uint64_t serial)
: HMS_Abstract(radio, serial) {};
: HMS_Abstract(radio, serial)
{
}
bool HMS_2CH::isValidSerial(const uint64_t serial)
{

View File

@ -50,7 +50,9 @@ static const byteAssign_t byteAssignment[] = {
};
HMS_4CH::HMS_4CH(HoymilesRadio* radio, const uint64_t serial)
: HMS_Abstract(radio, serial) {};
: HMS_Abstract(radio, serial)
{
}
bool HMS_4CH::isValidSerial(const uint64_t serial)
{

View File

@ -59,7 +59,9 @@ static const byteAssign_t byteAssignment[] = {
};
HMT_4CH::HMT_4CH(HoymilesRadio* radio, const uint64_t serial)
: HMT_Abstract(radio, serial) {};
: HMT_Abstract(radio, serial)
{
}
bool HMT_4CH::isValidSerial(const uint64_t serial)
{

View File

@ -73,7 +73,9 @@ static const byteAssign_t byteAssignment[] = {
};
HMT_6CH::HMT_6CH(HoymilesRadio* radio, const uint64_t serial)
: HMT_Abstract(radio, serial) {};
: HMT_Abstract(radio, serial)
{
}
bool HMT_6CH::isValidSerial(const uint64_t serial)
{

View File

@ -12,7 +12,7 @@ HMT_Abstract::HMT_Abstract(HoymilesRadio* radio, const uint64_t serial)
: HM_Abstract(radio, serial)
{
EventLog()->setMessageType(AlarmMessageType_t::HMT);
};
}
bool HMT_Abstract::sendChangeChannelRequest()
{
@ -26,4 +26,4 @@ bool HMT_Abstract::sendChangeChannelRequest()
_radio->enqueCommand(cmdChannel);
return true;
};
}

View File

@ -29,7 +29,9 @@ static const byteAssign_t byteAssignment[] = {
};
HM_1CH::HM_1CH(HoymilesRadio* radio, const uint64_t serial)
: HM_Abstract(radio, serial) {};
: HM_Abstract(radio, serial)
{
}
bool HM_1CH::isValidSerial(const uint64_t serial)
{

View File

@ -37,7 +37,9 @@ static const byteAssign_t byteAssignment[] = {
};
HM_2CH::HM_2CH(HoymilesRadio* radio, const uint64_t serial)
: HM_Abstract(radio, serial) {};
: HM_Abstract(radio, serial)
{
}
bool HM_2CH::isValidSerial(const uint64_t serial)
{

View File

@ -50,7 +50,9 @@ static const byteAssign_t byteAssignment[] = {
};
HM_4CH::HM_4CH(HoymilesRadio* radio, const uint64_t serial)
: HM_Abstract(radio, serial) {};
: HM_Abstract(radio, serial)
{
}
bool HM_4CH::isValidSerial(const uint64_t serial)
{

View File

@ -14,7 +14,9 @@
#include "commands/SystemConfigParaCommand.h"
HM_Abstract::HM_Abstract(HoymilesRadio* radio, const uint64_t serial)
: InverterAbstract(radio, serial) {};
: InverterAbstract(radio, serial)
{
}
bool HM_Abstract::sendStatsRequest()
{