App space vs bootloader space

If setting up a fieldupdate the program space gets separated into a bootloader spacve & app space.

Once divided up, can you use vis studio (or MF deploy) to put the bootloader into the bootloader space & app into the app space? How do you pick? All they seem to have is “download”

Its kind of tricky. You have to put the device into bootloader mode, first enable if unformatted and then accessbootloader (from code)…

While in bootloader mode if you deploy with VS it will write to the bootloader region. After which, you need that code to put you back into application mode (AccessApplication())

at which point you can then write to the app space.