Fix superfluous whitespaces and line endings

resolve #2310
This commit is contained in:
Maxim Prokhorov
2020-09-30 10:07:01 +03:00
parent 1f1d6a99d2
commit 63b6f46752
27 changed files with 176 additions and 184 deletions

View File

@@ -220,7 +220,7 @@ unsigned int getInitialFreeHeap() {
// -----------------------------------------------------------------------------
namespace Heartbeat {
enum Report : uint32_t {
enum Report : uint32_t {
Status = 1 << 1,
Ssid = 1 << 2,
Ip = 1 << 3,
@@ -434,7 +434,7 @@ void heartbeat() {
if ((hb_cfg & Heartbeat::Vcc) && (ADC_MODE_VALUE == ADC_VCC))
idbSend(MQTT_TOPIC_VCC, String(ESP.getVcc()).c_str());
if (hb_cfg & Heartbeat::Loadavg)
idbSend(MQTT_TOPIC_LOADAVG, String(systemLoadAverage()).c_str());