mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 15:38:11 +01:00
Next round of CI improvements
This commit is contained in:
parent
e337239e60
commit
eeec0621dd
2 changed files with 2 additions and 2 deletions
|
@ -1707,7 +1707,7 @@ void HOT GDEY075Z08::display() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
ESP_LOGD(TAG, "Found a change, initializing display for partial backup");
|
ESP_LOGD(TAG, "Found a change, initializing display for partial backup");
|
||||||
unsigned int x_start, y_start, x_end, y_end, x_start_b, x_end_b;
|
uint16_t x_start, y_start, x_end, y_end, x_start_b, x_end_b;
|
||||||
x_start = (this->get_width_internal() / seg_x_) * first_segment_x_;
|
x_start = (this->get_width_internal() / seg_x_) * first_segment_x_;
|
||||||
x_end = (this->get_width_internal() / seg_x_) * (last_segment_x_ + 1);
|
x_end = (this->get_width_internal() / seg_x_) * (last_segment_x_ + 1);
|
||||||
y_start = (this->get_height_internal() / seg_y_) * first_segment_y_;
|
y_start = (this->get_height_internal() / seg_y_) * first_segment_y_;
|
||||||
|
|
|
@ -255,7 +255,7 @@ class GDEY075Z08 : public WaveshareEPaperBWR {
|
||||||
uint16_t last_segment_x_ = 0;
|
uint16_t last_segment_x_ = 0;
|
||||||
uint16_t last_segment_y_ = 0;
|
uint16_t last_segment_y_ = 0;
|
||||||
uint16_t *checksums_ = nullptr;
|
uint16_t *checksums_ = nullptr;
|
||||||
void calculate_crcs_(bool fullSync);
|
void calculate_crcs_(bool full_sync);
|
||||||
bool waiting_for_idle_ = false;
|
bool waiting_for_idle_ = false;
|
||||||
uint32_t idle_timeout_() override;
|
uint32_t idle_timeout_() override;
|
||||||
void reset_();
|
void reset_();
|
||||||
|
|
Loading…
Reference in a new issue