Custom bootloader - jump to program with USB enabled
I'm trying to write a custom bootloader, so far I've been successful usingAddress = *(__IO uint32_t*) (APP_ADDRESS + 4); jump = (pFunction) Address; __set_MSP(*(__IO uint32_t*) APP_ADDRESS); jump();however this only worked for a a very simple mai...