From e3ef2aca34b8460cd58fc17f376851689695ec9d Mon Sep 17 00:00:00 2001 From: hathach Date: Mon, 25 Jun 2018 16:53:52 +0700 Subject: [PATCH] clean up --- src/usb/uf2/ghostfat.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/usb/uf2/ghostfat.c b/src/usb/uf2/ghostfat.c index 4b19dd0..a468ab4 100644 --- a/src/usb/uf2/ghostfat.c +++ b/src/usb/uf2/ghostfat.c @@ -131,6 +131,10 @@ volatile bool _is_flashing = false; static pstorage_handle_t _fat_psh = { .module_id = 0, .block_id = USER_FLASH_END } ; +// from main.c to signal writing uf2 is on the way +extern void blinky_fast_set(bool isFast); + + static uint32_t get_flash_size(void) { static uint32_t flash_sz = 0; @@ -254,6 +258,8 @@ void read_block(uint32_t block_no, uint8_t *data) { /** inform bootloader to update setting and reset */ static void uf2_write_complete(void) { + blinky_fast_set(false); + dfu_update_status_t update_status; memset(&update_status, 0, sizeof(dfu_update_status_t )); @@ -300,6 +306,8 @@ void flushFlash() { // Init pstorage pstorage_module_param_t fat_psp = { .cb = fat_pstorage_cb}; pstorage_register(&fat_psp, &_fat_psh); + + blinky_fast_set(true); } NRF_LOG_DEBUG("Flush at %x", flashAddr);