Fixed switching to uint32 from 16 for airtime in json report

1.2-legacy
Jm 2021-01-14 21:45:41 -08:00
rodzic b963216764
commit 4ec8986934
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -1110,13 +1110,13 @@ void handleReport(HTTPRequest *req, HTTPResponse *res)
res->println("\"airtime\": {"); res->println("\"airtime\": {");
uint16_t *logArray; uint32_t *logArray;
res->print("\"tx_log\": ["); res->print("\"tx_log\": [");
logArray = airtimeReport(TX_LOG); logArray = airtimeReport(TX_LOG);
for (int i = 0; i < getPeriodsToLog(); i++) { for (int i = 0; i < getPeriodsToLog(); i++) {
uint16_t tmp; uint32_t tmp;
tmp = *(logArray + i); tmp = *(logArray + i);
res->printf("%d", tmp); res->printf("%d", tmp);
if (i != getPeriodsToLog() - 1) { if (i != getPeriodsToLog() - 1) {
@ -1129,7 +1129,7 @@ void handleReport(HTTPRequest *req, HTTPResponse *res)
logArray = airtimeReport(RX_LOG); logArray = airtimeReport(RX_LOG);
for (int i = 0; i < getPeriodsToLog(); i++) { for (int i = 0; i < getPeriodsToLog(); i++) {
uint16_t tmp; uint32_t tmp;
tmp = *(logArray + i); tmp = *(logArray + i);
res->printf("%d", tmp); res->printf("%d", tmp);
if (i != getPeriodsToLog() - 1) { if (i != getPeriodsToLog() - 1) {
@ -1142,7 +1142,7 @@ void handleReport(HTTPRequest *req, HTTPResponse *res)
logArray = airtimeReport(RX_ALL_LOG); logArray = airtimeReport(RX_ALL_LOG);
for (int i = 0; i < getPeriodsToLog(); i++) { for (int i = 0; i < getPeriodsToLog(); i++) {
uint16_t tmp; uint32_t tmp;
tmp = *(logArray + i); tmp = *(logArray + i);
res->printf("%d", tmp); res->printf("%d", tmp);
if (i != getPeriodsToLog() - 1) { if (i != getPeriodsToLog() - 1) {