| 484 | } |
| 485 | |
| 486 | static String readPartitionLabel(const uint8_t *entry) { |
| 487 | char label[17] = {0}; |
| 488 | memcpy(label, entry + 12, 16); |
| 489 | label[16] = '\0'; |
| 490 | return String(label); |
| 491 | } |
| 492 | |
| 493 | static uint32_t |
| 494 | boundedSdPartitionPayload(File &file, uint32_t offset, uint32_t declaredSize, uint32_t maxSize) { |