mirror of
https://github.com/lumapu/ahoy.git
synced 2025-07-23 11:17:11 +02:00
fix typos
This commit is contained in:
parent
b143eb371b
commit
dd8f8c138b
9 changed files with 12 additions and 12 deletions
|
@ -265,7 +265,7 @@
|
||||||
|
|
||||||
## 0.8.39 - 2024-01-01
|
## 0.8.39 - 2024-01-01
|
||||||
* fix MqTT dis_night_comm in the morning #1309 #1286
|
* fix MqTT dis_night_comm in the morning #1309 #1286
|
||||||
* seperated offset for sunrise and sunset #1308
|
* separated offset for sunrise and sunset #1308
|
||||||
* powerlimit (active power control) now has one decimal place (MqTT / API) #1199
|
* powerlimit (active power control) now has one decimal place (MqTT / API) #1199
|
||||||
* merge Prometheus metrics fix #1310
|
* merge Prometheus metrics fix #1310
|
||||||
* merge MI grid profile request #1306
|
* merge MI grid profile request #1306
|
||||||
|
@ -478,7 +478,7 @@
|
||||||
## 0.7.61 - 2023-10-01
|
## 0.7.61 - 2023-10-01
|
||||||
* merged `hmPayload` and `hmsPayload` into single class
|
* merged `hmPayload` and `hmsPayload` into single class
|
||||||
* merged generic radio functions into new parent class `radio.h`
|
* merged generic radio functions into new parent class `radio.h`
|
||||||
* moved radio statistics into the inverter - each inverter has now seperate statistics which can be accessed by click on the footer in `/live`
|
* moved radio statistics into the inverter - each inverter has now separate statistics which can be accessed by click on the footer in `/live`
|
||||||
* fix compiler warnings #1191
|
* fix compiler warnings #1191
|
||||||
* fix ePaper logo during night time #1151
|
* fix ePaper logo during night time #1151
|
||||||
|
|
||||||
|
|
|
@ -109,7 +109,7 @@ enum {
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint32_t rxFail;
|
uint32_t rxFail;
|
||||||
uint32_t rxFailNoAnser;
|
uint32_t rxFailNoAnswer;
|
||||||
uint32_t rxSuccess;
|
uint32_t rxSuccess;
|
||||||
uint32_t frmCnt;
|
uint32_t frmCnt;
|
||||||
uint32_t txCnt;
|
uint32_t txCnt;
|
||||||
|
|
|
@ -622,7 +622,7 @@ class Communication : public CommQueue<> {
|
||||||
else if(q->iv->mGotFragment || mCompleteRetry)
|
else if(q->iv->mGotFragment || mCompleteRetry)
|
||||||
q->iv->radioStatistics.rxFail++; // got no complete payload
|
q->iv->radioStatistics.rxFail++; // got no complete payload
|
||||||
else
|
else
|
||||||
q->iv->radioStatistics.rxFailNoAnser++; // got nothing
|
q->iv->radioStatistics.rxFailNoAnswer++; // got nothing
|
||||||
mWaitTime.startTimeMonitor(1); // maybe remove, side effects unknown
|
mWaitTime.startTimeMonitor(1); // maybe remove, side effects unknown
|
||||||
|
|
||||||
bool keep = false;
|
bool keep = false;
|
||||||
|
|
|
@ -153,7 +153,7 @@ class Heuristic {
|
||||||
DBGPRINT(F(", f: "));
|
DBGPRINT(F(", f: "));
|
||||||
DBGPRINT(String(iv->radioStatistics.rxFail));
|
DBGPRINT(String(iv->radioStatistics.rxFail));
|
||||||
DBGPRINT(F(", n: "));
|
DBGPRINT(F(", n: "));
|
||||||
DBGPRINT(String(iv->radioStatistics.rxFailNoAnser));
|
DBGPRINT(String(iv->radioStatistics.rxFailNoAnswer));
|
||||||
DBGPRINT(F(" | p: ")); // better debugging for helpers...
|
DBGPRINT(F(" | p: ")); // better debugging for helpers...
|
||||||
if((IV_HMS == iv->ivGen) || (IV_HMT == iv->ivGen))
|
if((IV_HMS == iv->ivGen) || (IV_HMT == iv->ivGen))
|
||||||
DBGPRINTLN(String(iv->config->powerLevel-10));
|
DBGPRINTLN(String(iv->config->powerLevel-10));
|
||||||
|
|
|
@ -222,7 +222,7 @@ class PubMqttIvData {
|
||||||
mIv->radioStatistics.txCnt,
|
mIv->radioStatistics.txCnt,
|
||||||
mIv->radioStatistics.rxSuccess,
|
mIv->radioStatistics.rxSuccess,
|
||||||
mIv->radioStatistics.rxFail,
|
mIv->radioStatistics.rxFail,
|
||||||
mIv->radioStatistics.rxFailNoAnser,
|
mIv->radioStatistics.rxFailNoAnswer,
|
||||||
mIv->radioStatistics.retransmits,
|
mIv->radioStatistics.retransmits,
|
||||||
mIv->radioStatistics.ivLoss,
|
mIv->radioStatistics.ivLoss,
|
||||||
mIv->radioStatistics.ivSent,
|
mIv->radioStatistics.ivSent,
|
||||||
|
|
|
@ -426,7 +426,7 @@ class RestApi {
|
||||||
obj[F("name")] = String(iv->config->name);
|
obj[F("name")] = String(iv->config->name);
|
||||||
obj[F("rx_success")] = iv->radioStatistics.rxSuccess;
|
obj[F("rx_success")] = iv->radioStatistics.rxSuccess;
|
||||||
obj[F("rx_fail")] = iv->radioStatistics.rxFail;
|
obj[F("rx_fail")] = iv->radioStatistics.rxFail;
|
||||||
obj[F("rx_fail_answer")] = iv->radioStatistics.rxFailNoAnser;
|
obj[F("rx_fail_answer")] = iv->radioStatistics.rxFailNoAnswer;
|
||||||
obj[F("frame_cnt")] = iv->radioStatistics.frmCnt;
|
obj[F("frame_cnt")] = iv->radioStatistics.frmCnt;
|
||||||
obj[F("tx_cnt")] = iv->radioStatistics.txCnt;
|
obj[F("tx_cnt")] = iv->radioStatistics.txCnt;
|
||||||
obj[F("retransmits")] = iv->radioStatistics.retransmits;
|
obj[F("retransmits")] = iv->radioStatistics.retransmits;
|
||||||
|
|
|
@ -10,15 +10,15 @@
|
||||||
<a id="nav11" class="acitve" href="/history?v={#VERSION}">{#NAV_HISTORY}</a>
|
<a id="nav11" class="acitve" href="/history?v={#VERSION}">{#NAV_HISTORY}</a>
|
||||||
<a id="nav4" class="hide" href="/serial?v={#VERSION}">{#NAV_WEBSERIAL}</a>
|
<a id="nav4" class="hide" href="/serial?v={#VERSION}">{#NAV_WEBSERIAL}</a>
|
||||||
<a id="nav5" class="hide" href="/setup?v={#VERSION}">{#NAV_SETTINGS}</a>
|
<a id="nav5" class="hide" href="/setup?v={#VERSION}">{#NAV_SETTINGS}</a>
|
||||||
<span class="seperator"></span>
|
<span class="separator"></span>
|
||||||
<a id="nav6" class="hide" href="/update?v={#VERSION}">Update</a>
|
<a id="nav6" class="hide" href="/update?v={#VERSION}">Update</a>
|
||||||
<a id="nav7" class="hide" href="/system?v={#VERSION}">System</a>
|
<a id="nav7" class="hide" href="/system?v={#VERSION}">System</a>
|
||||||
<span class="seperator"></span>
|
<span class="separator"></span>
|
||||||
<a id="nav8" href="/api" target="_blank">REST API</a>
|
<a id="nav8" href="/api" target="_blank">REST API</a>
|
||||||
<a id="nav9" href="https://ahoydtu.de" target="_blank">{#NAV_DOCUMENTATION}</a>
|
<a id="nav9" href="https://ahoydtu.de" target="_blank">{#NAV_DOCUMENTATION}</a>
|
||||||
<a id="nav10" href="/about?v={#VERSION}">{#NAV_ABOUT}</a>
|
<a id="nav10" href="/about?v={#VERSION}">{#NAV_ABOUT}</a>
|
||||||
<a id="nav12" href="#" class="hide" target="_blank">Custom Link</a>
|
<a id="nav12" href="#" class="hide" target="_blank">Custom Link</a>
|
||||||
<span class="seperator"></span>
|
<span class="separator"></span>
|
||||||
<a id="nav0" class="hide" href="/login">Login</a>
|
<a id="nav0" class="hide" href="/login">Login</a>
|
||||||
<a id="nav1" class="hide" href="/logout">Logout</a>
|
<a id="nav1" class="hide" href="/logout">Logout</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -139,7 +139,7 @@ svg.icon {
|
||||||
background-color: var(--nav-active);
|
background-color: var(--nav-active);
|
||||||
}
|
}
|
||||||
|
|
||||||
span.seperator {
|
span.separator {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 1px;
|
height: 1px;
|
||||||
margin: 5px 0 5px;
|
margin: 5px 0 5px;
|
||||||
|
|
|
@ -661,7 +661,7 @@ class Web {
|
||||||
{ "max_power", "gauge", metricConstInverterFormat, [](Inverter<> *iv)-> uint64_t {return iv->getMaxPower();} },
|
{ "max_power", "gauge", metricConstInverterFormat, [](Inverter<> *iv)-> uint64_t {return iv->getMaxPower();} },
|
||||||
{ "radio_rx_success", "counter" ,metricConstInverterFormat, [](Inverter<> *iv)-> uint64_t {return iv->radioStatistics.rxSuccess;} },
|
{ "radio_rx_success", "counter" ,metricConstInverterFormat, [](Inverter<> *iv)-> uint64_t {return iv->radioStatistics.rxSuccess;} },
|
||||||
{ "radio_rx_fail", "counter" ,metricConstInverterFormat, [](Inverter<> *iv)-> uint64_t {return iv->radioStatistics.rxFail;} },
|
{ "radio_rx_fail", "counter" ,metricConstInverterFormat, [](Inverter<> *iv)-> uint64_t {return iv->radioStatistics.rxFail;} },
|
||||||
{ "radio_rx_fail_answer", "counter" ,metricConstInverterFormat, [](Inverter<> *iv)-> uint64_t {return iv->radioStatistics.rxFailNoAnser;} },
|
{ "radio_rx_fail_answer", "counter" ,metricConstInverterFormat, [](Inverter<> *iv)-> uint64_t {return iv->radioStatistics.rxFailNoAnswer;} },
|
||||||
{ "radio_frame_cnt", "counter" ,metricConstInverterFormat, [](Inverter<> *iv)-> uint64_t {return iv->radioStatistics.frmCnt;} },
|
{ "radio_frame_cnt", "counter" ,metricConstInverterFormat, [](Inverter<> *iv)-> uint64_t {return iv->radioStatistics.frmCnt;} },
|
||||||
{ "radio_tx_cnt", "counter" ,metricConstInverterFormat, [](Inverter<> *iv)-> uint64_t {return iv->radioStatistics.txCnt;} },
|
{ "radio_tx_cnt", "counter" ,metricConstInverterFormat, [](Inverter<> *iv)-> uint64_t {return iv->radioStatistics.txCnt;} },
|
||||||
{ "radio_retransmits", "counter" ,metricConstInverterFormat, [](Inverter<> *iv)-> uint64_t {return iv->radioStatistics.retransmits;} },
|
{ "radio_retransmits", "counter" ,metricConstInverterFormat, [](Inverter<> *iv)-> uint64_t {return iv->radioStatistics.retransmits;} },
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue