mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 15:38:11 +01:00
Removed polling
This commit is contained in:
parent
5cff499947
commit
6b1f120dfe
1 changed files with 2 additions and 3 deletions
|
@ -151,7 +151,7 @@ uint32_t ExtEepromComponent::read_string_from_eeprom(uint32_t memaddr, std::stri
|
|||
/// @param memaddr is the location to write
|
||||
/// @param data_to_write contains the byte to be written
|
||||
void ExtEepromComponent::write8(uint32_t memaddr, uint8_t data_to_write) {
|
||||
if (read8(memaddr) != data_to_write) { // Update only if data is new
|
||||
if (read8(memaddr) != data_to_write) { // Update only if data is new
|
||||
write(memaddr, &data_to_write, 1);
|
||||
}
|
||||
}
|
||||
|
@ -253,8 +253,7 @@ void ExtEepromComponent::write(uint32_t memaddr, uint8_t *data_to_write, uint16_
|
|||
p += amt_to_write;
|
||||
size -= amt_to_write;
|
||||
ESP_LOGVV(TAG, "After write size %d amt %d add %d", size, amt_to_write, memaddr);
|
||||
|
||||
delay(this->memory_page_write_time_ms_); /// Delay the amount of time to record a page
|
||||
delay(this->memory_page_write_time_ms_); /// Delay the amount of time to record a page
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue