mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 15:38:11 +01:00
Who can be expected to know stuff like this? xD
This commit is contained in:
parent
f26ada8fa0
commit
b735c1cd92
1 changed files with 2 additions and 2 deletions
|
@ -1522,8 +1522,8 @@ void GDEY075Z08::calculate_crcs_(bool full_sync) {
|
|||
// reset first and last X segment so we can recalculate it here.
|
||||
this->first_segment_x_ = this->seg_x_ + 1;
|
||||
this->last_segment_x_ = 0;
|
||||
ESP_LOGD(TAG, "width_b: %u, height_px: %u, segment_size: %u, buffer_half_size: %u, seg_x_: %u, seg_y_: %u", width_b,
|
||||
height_px, segment_size, buffer_half_size, this->seg_x_, this->seg_y_);
|
||||
ESP_LOGD(TAG, "width_b: %u, height_px: %u, segment_size: %u, buffer_half_size: %" PRIu32 ", seg_x_: %u, seg_y_: %u",
|
||||
width_b, height_px, segment_size, buffer_half_size, this->seg_x_, this->seg_y_);
|
||||
ESP_LOGD(TAG, "Entering CRC calculation Loop");
|
||||
for (seg_y = 0; seg_y < this->seg_y_; seg_y++) { // vertically iterate through the number of lines (px)
|
||||
for (seg_x = 0; seg_x < this->seg_x_; seg_x++) { // horizontally iterate through number of columns (px)
|
||||
|
|
Loading…
Reference in a new issue