Next round of CI improvements

This commit is contained in:
DJGummikuh 2024-08-13 20:04:21 +00:00
parent e337239e60
commit eeec0621dd
2 changed files with 2 additions and 2 deletions

View file

@ -1707,7 +1707,7 @@ void HOT GDEY075Z08::display() {
return;
}
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_end = (this->get_width_internal() / seg_x_) * (last_segment_x_ + 1);
y_start = (this->get_height_internal() / seg_y_) * first_segment_y_;

View file

@ -255,7 +255,7 @@ class GDEY075Z08 : public WaveshareEPaperBWR {
uint16_t last_segment_x_ = 0;
uint16_t last_segment_y_ = 0;
uint16_t *checksums_ = nullptr;
void calculate_crcs_(bool fullSync);
void calculate_crcs_(bool full_sync);
bool waiting_for_idle_ = false;
uint32_t idle_timeout_() override;
void reset_();