mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 15:38:11 +01:00
fixed clang formatting
This commit is contained in:
parent
eee3b5eebf
commit
af9159f556
1 changed files with 3 additions and 1 deletions
|
@ -427,7 +427,9 @@ void ExtEepromComponent::set_page_size_(uint16_t page_size) { this->memory_page_
|
||||||
uint16_t ExtEepromComponent::get_page_size_() { return this->memory_page_size_bytes_; }
|
uint16_t ExtEepromComponent::get_page_size_() { return this->memory_page_size_bytes_; }
|
||||||
/// @brief Sets the page write for the device in ms
|
/// @brief Sets the page write for the device in ms
|
||||||
/// @param write_time_ms contains the time to write a page of the device
|
/// @param write_time_ms contains the time to write a page of the device
|
||||||
void ExtEepromComponent::set_page_write_time_(uint8_t write_time_ms) { this->memory_page_write_time_ms_ = write_time_ms; }
|
void ExtEepromComponent::set_page_write_time_(uint8_t write_time_ms) {
|
||||||
|
this->memory_page_write_time_ms_ = write_time_ms;
|
||||||
|
}
|
||||||
/// @brief Gets the user specified write time for a device page in ms
|
/// @brief Gets the user specified write time for a device page in ms
|
||||||
/// @return page write time in ms
|
/// @return page write time in ms
|
||||||
uint8_t ExtEepromComponent::get_page_write_time_() { return this->memory_page_write_time_ms_; }
|
uint8_t ExtEepromComponent::get_page_write_time_() { return this->memory_page_write_time_ms_; }
|
||||||
|
|
Loading…
Reference in a new issue