Yet another workaround for the language update

This commit is contained in:
Alex Voinea 2023-09-25 14:13:29 +02:00
parent 3305227bbc
commit 5ea2b881d5
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ void bootapp_ram2flash(uint16_t rptr, uint16_t fptr, uint16_t size)
boot_copy_size = (uint16_t)size;
boot_src_addr = (uint32_t)rptr;
boot_dst_addr = (uint32_t)fptr;
bootapp_print_vars();
// bootapp_print_vars();
softReset();
}
@ -39,6 +39,6 @@ void bootapp_reboot_user0(uint8_t reserved)
boot_app_magic = BOOT_APP_MAGIC;
boot_app_flags = BOOT_APP_FLG_USER0;
boot_reserved = reserved;
bootapp_print_vars();
// bootapp_print_vars();
softReset();
}