fix: bound map request failure latency

This commit is contained in:
torlando-agent[bot]
2026-08-07 01:37:13 +00:00
parent dc1a0afc4b
commit a758f148db
5 changed files with 33 additions and 4 deletions
@@ -99,6 +99,15 @@ void MapTileHttpArduino::close() {
content_type_[0] = '\0';
}
void MapTileHttpArduino::disconnectIdle() {
client_.stop();
http_.end();
stream_ = NULL;
remaining_ = -1;
open_ = false;
content_type_[0] = '\0';
}
MapTileMillisClock::MapTileMillisClock() : previous_(millis()), high_(0U) {}
std::uint64_t MapTileMillisClock::nowMs() const {
const std::uint32_t current = millis();