Changed spaces to TAB

This commit is contained in:
nopnop2002 2024-04-08 07:34:47 +09:00
parent e71b1bc790
commit fdc0a615c0

View File

@ -140,12 +140,12 @@ void i2c_display_image(SSD1306_t * dev, int page, int seg, uint8_t * images, int
_page = (dev->_pages - page) - 1;
}
uint8_t *out_buf;
out_buf = malloc(width + 1);
if (out_buf == NULL) {
ESP_LOGE(TAG, "malloc fail");
return;
}
uint8_t *out_buf;
out_buf = malloc(width + 1);
if (out_buf == NULL) {
ESP_LOGE(TAG, "malloc fail");
return;
}
int out_index = 0;
out_buf[out_index++] = OLED_CONTROL_BYTE_CMD_STREAM;
// Set Lower Column Start Address for Page Addressing Mode