update TODOs

This commit is contained in:
proddy
2023-03-05 14:31:14 +01:00
parent 8ee8998381
commit 9b3b758be7
3 changed files with 483 additions and 528 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -417,7 +417,6 @@ void Shell::loop_delay() {
function_copy(*this);
// TODO comment this block out like we had < v3.5?
if (running()) {
display_prompt();
}
@@ -448,7 +447,6 @@ void Shell::loop_blocking() {
stop();
}
// TODO comment this block out like we had < v3.5?
if (running()) {
display_prompt();
}
@@ -561,7 +559,6 @@ void Shell::process_command() {
}
}
// TODO comment this block out like we had < v3.5?
if (running()) {
display_prompt();
}

View File

@@ -349,7 +349,7 @@ void SyslogService::loop() {
}
bool SyslogService::can_transmit() {
// TODO this should be checked for Eth
// TODO this should be checked also for Eth
if (!host_.empty() && (uint32_t)ip_ == 0) {
WiFi.hostByName(host_.c_str(), ip_);
}