Jump to bootloader from application on STM32U5
In AN2606 it says:
"For STM32 devices having the Dual Bank Boot feature, to jump to system memory from user code the user has first to remap the System Memory bootloader at address 0x00000000 using SYSCFG register (except for STM32F7 Series), then jump to bootloader. For STM32F7 Series, the user has to disable nDBOOT and/or nDBANK features (in option bytes), then jump to bootloader"
On our current CPU, the STM32L4 there is is a macro to do this:
```
#define __HAL_SYSCFG_REMAPMEMORY_SYSTEMFLASH() MODIFY_REG(SYSCFG->MEMRMP, SYSCFG_MEMRMP_MEM_MODE, SYSCFG_MEMRMP_MEM_MODE_0)
```
The STM32U5 does not have a SYSCFG MEMRMP register and I'm not clear how I might perform the equivalent operation.
