@@ -209,7 +209,7 @@ static uint32_t sketchSize(sketchSize_t response) {
209
209
return data.image_len ;
210
210
}
211
211
}
212
-
212
+
213
213
uint32_t EspClass::getSketchSize () {
214
214
return sketchSize (SKETCH_SIZE_TOTAL);
215
215
}
@@ -525,17 +525,17 @@ bool EspClass::flashRead(uint32_t offset, uint32_t *data, size_t size)
525
525
return esp_flash_read (esp_flash_default_chip, (void *) data, offset, size) == ESP_OK;
526
526
}
527
527
528
- bool EspClass::partitionEraseRange (const esp_partition_t *partition, uint32_t offset, size_t size)
528
+ bool EspClass::partitionEraseRange (const esp_partition_t *partition, uint32_t offset, size_t size)
529
529
{
530
530
return esp_partition_erase_range (partition, offset, size) == ESP_OK;
531
531
}
532
532
533
- bool EspClass::partitionWrite (const esp_partition_t *partition, uint32_t offset, uint32_t *data, size_t size)
533
+ bool EspClass::partitionWrite (const esp_partition_t *partition, uint32_t offset, uint32_t *data, size_t size)
534
534
{
535
535
return esp_partition_write (partition, offset, data, size) == ESP_OK;
536
536
}
537
537
538
- bool EspClass::partitionRead (const esp_partition_t *partition, uint32_t offset, uint32_t *data, size_t size)
538
+ bool EspClass::partitionRead (const esp_partition_t *partition, uint32_t offset, uint32_t *data, size_t size)
539
539
{
540
540
return esp_partition_read (partition, offset, data, size) == ESP_OK;
541
541
}
0 commit comments