Added User Application APIs to the CDC and DFU class bootloaders.
This commit is contained in:
parent
beb069b9b8
commit
1a4a26271e
19 changed files with 436 additions and 9 deletions
|
@ -63,6 +63,10 @@ static bool RunBootloader = true;
|
|||
*/
|
||||
int main(void)
|
||||
{
|
||||
/* Force a reference to the API jump table to prevent the linker from discarding it */
|
||||
uint8_t* volatile Dummy = BootloaderAPI_JumpTable;
|
||||
(void)Dummy;
|
||||
|
||||
/* Setup hardware required for the bootloader */
|
||||
SetupHardware();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue