mirror of
https://github.com/esphome/esphome.git
synced 2024-12-26 07:24:54 +01:00
nolint delay
This commit is contained in:
parent
9b9f54664a
commit
ee873ee420
1 changed files with 1 additions and 1 deletions
|
@ -211,7 +211,7 @@ void ModemComponent::start_connect_() {
|
||||||
for (const auto &cmd : this->init_at_commands_) {
|
for (const auto &cmd : this->init_at_commands_) {
|
||||||
std::string result;
|
std::string result;
|
||||||
command_result err = this->dce->at(cmd.c_str(), result, 1000);
|
command_result err = this->dce->at(cmd.c_str(), result, 1000);
|
||||||
delay(100);
|
delay(100); // NOLINT
|
||||||
ESP_LOGI(TAG, "Init AT command: %s (status %d) -> %s", cmd.c_str(), (int) err, result.c_str());
|
ESP_LOGI(TAG, "Init AT command: %s (status %d) -> %s", cmd.c_str(), (int) err, result.c_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue