Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

mk02.c
#include "mk02.h"

void bootloader_jump(void) {
    uint32_t *magic_address = (void*)0x20000FFC;
    *magic_address = 0x626c6472;

    NVIC_SystemReset();
}