diff --git a/src/usb/uf2/ghostfat.c b/src/usb/uf2/ghostfat.c index 1c17527..6bd5a86 100644 --- a/src/usb/uf2/ghostfat.c +++ b/src/usb/uf2/ghostfat.c @@ -58,7 +58,8 @@ struct TextFile { const char infoUf2File[] = // "UF2 Bootloader " UF2_VERSION "\r\n" "Model: " PRODUCT_NAME "\r\n" - "Board-ID: " BOARD_ID "\r\n"; + "Board-ID: " BOARD_ID "\r\n" + "Bootloader: " BOOTLOADER_ID "\r\n"; const char indexFile[] = // "\n" diff --git a/src/usb/uf2/uf2cfg.h b/src/usb/uf2/uf2cfg.h index 6e3bde7..e3ea9b1 100644 --- a/src/usb/uf2/uf2cfg.h +++ b/src/usb/uf2/uf2cfg.h @@ -2,7 +2,9 @@ #define PRODUCT_NAME "Adafruit Bluefruit nRF52" #define BOARD_ID "NRF52-Bluefruit-v0" #define INDEX_URL "https://www.adafruit.com/product/0000" -#define UF2_NUM_BLOCKS 8000 +#define BOOTLOADER_ID MK_DIS_FIRMWARE + +#define UF2_NUM_BLOCKS 8000 // at least 4,1 MB for FAT16 #define VOLUME_LABEL "NRF52BOOT " #define FLASH_SIZE (BOOTLOADER_REGION_START-USER_FLASH_START)