From 01ac2b3d46f90a61d08cf5b888a0eb261034af8c Mon Sep 17 00:00:00 2001 From: hathach Date: Wed, 25 Mar 2020 00:31:39 +0700 Subject: [PATCH] clean up --- src/usb/uf2/ghostfat.c | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/usb/uf2/ghostfat.c b/src/usb/uf2/ghostfat.c index 6f13980..498c61e 100644 --- a/src/usb/uf2/ghostfat.c +++ b/src/usb/uf2/ghostfat.c @@ -128,7 +128,7 @@ static FAT_BootBlock const BootBlock = { .SectorsPerFAT = SECTORS_PER_FAT, .SectorsPerTrack = 1, .Heads = 1, - .PhysicalDriveNum = 0x80, // to match MediaDescriptor of 0xF8 + .PhysicalDriveNum = 0x80, // to match MediaDescriptor of 0xF8 .ExtendedBootSig = 0x29, .VolumeSerialNumber = 0x00420042, .VolumeLabel = UF2_VOLUME_LABEL, @@ -172,6 +172,7 @@ static uint32_t current_flash_size(void) result = FLASH_SIZE; } } + flash_sz = result; // presumes atomic 32-bit read/write and static result } @@ -180,13 +181,14 @@ static uint32_t current_flash_size(void) void padded_memcpy (char *dst, char const *src, int len) { - for (int i = 0; i < len; ++i) { - if (*src) - *dst = *src++; - else - *dst = ' '; - dst++; - } + for ( int i = 0; i < len; ++i ) + { + if ( *src ) + *dst = *src++; + else + *dst = ' '; + dst++; + } }