mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-06-05 16:02:47 +00:00
Don't run user application in the bootloader unless a valid app is present (thanks to Alex Kazik).
This commit is contained in:
parent
17158b359f
commit
df366e055d
@ -91,6 +91,10 @@ void Application_Jump_Check(void)
|
|||||||
if ((MCUSR & (1 << WDRF)) && (MagicBootKey == MAGIC_BOOT_KEY))
|
if ((MCUSR & (1 << WDRF)) && (MagicBootKey == MAGIC_BOOT_KEY))
|
||||||
JumpToApplication |= true;
|
JumpToApplication |= true;
|
||||||
|
|
||||||
|
/* Don't run the user application if the reset vector is blank (no app loaded) */
|
||||||
|
if (pgm_read_word_near(0) == 0xFFFF)
|
||||||
|
JumpToApplication = false;
|
||||||
|
|
||||||
/* If a request has been made to jump to the user application, honor it */
|
/* If a request has been made to jump to the user application, honor it */
|
||||||
if (JumpToApplication)
|
if (JumpToApplication)
|
||||||
{
|
{
|
||||||
|
@ -127,6 +127,10 @@ void Application_Jump_Check(void)
|
|||||||
if ((MCUSR & (1 << WDRF)) && (MagicBootKey == MAGIC_BOOT_KEY))
|
if ((MCUSR & (1 << WDRF)) && (MagicBootKey == MAGIC_BOOT_KEY))
|
||||||
JumpToApplication |= true;
|
JumpToApplication |= true;
|
||||||
|
|
||||||
|
/* Don't run the user application if the reset vector is blank (no app loaded) */
|
||||||
|
|
||||||
|
JumpToApplication = false;
|
||||||
|
|
||||||
/* If a request has been made to jump to the user application, honor it */
|
/* If a request has been made to jump to the user application, honor it */
|
||||||
if (JumpToApplication)
|
if (JumpToApplication)
|
||||||
{
|
{
|
||||||
@ -751,8 +755,9 @@ static void ProcessWriteCommand(void)
|
|||||||
}
|
}
|
||||||
else // Start via jump
|
else // Start via jump
|
||||||
{
|
{
|
||||||
/* Set the flag to terminate the bootloader at next opportunity */
|
/* Set the flag to terminate the bootloader at next opportunity if a valid application has been loaded */
|
||||||
RunBootloader = false;
|
if (pgm_read_word_near(0) == 0xFFFF)
|
||||||
|
RunBootloader = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -116,13 +116,22 @@ void Application_Jump_Check(void)
|
|||||||
|
|
||||||
/* If the reset source was the bootloader and the key is correct, clear it and jump to the application */
|
/* If the reset source was the bootloader and the key is correct, clear it and jump to the application */
|
||||||
if ((MCUSR & (1 << WDRF)) && (MagicBootKey == MAGIC_BOOT_KEY))
|
if ((MCUSR & (1 << WDRF)) && (MagicBootKey == MAGIC_BOOT_KEY))
|
||||||
{
|
JumpToApplication |= true;
|
||||||
MagicBootKey = 0;
|
|
||||||
JumpToApplication = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
/* Don't run the user application if the reset vector is blank (no app loaded) */
|
||||||
|
if (pgm_read_word_near(0) == 0xFFFF)
|
||||||
|
JumpToApplication = false;
|
||||||
|
|
||||||
|
/* If a request has been made to jump to the user application, honor it */
|
||||||
if (JumpToApplication)
|
if (JumpToApplication)
|
||||||
{
|
{
|
||||||
|
/* Turn off the watchdog */
|
||||||
|
MCUSR &= ~(1<<WDRF);
|
||||||
|
wdt_disable();
|
||||||
|
|
||||||
|
/* Clear the boot key and jump to the user application */
|
||||||
|
MagicBootKey = 0;
|
||||||
|
|
||||||
// cppcheck-suppress constStatement
|
// cppcheck-suppress constStatement
|
||||||
((void (*)(void))0x0000)();
|
((void (*)(void))0x0000)();
|
||||||
}
|
}
|
||||||
|
@ -119,9 +119,49 @@ uint16_t MagicBootKey ATTR_NO_INIT;
|
|||||||
*/
|
*/
|
||||||
void Application_Jump_Check(void)
|
void Application_Jump_Check(void)
|
||||||
{
|
{
|
||||||
|
bool JumpToApplication = false;
|
||||||
|
|
||||||
|
#if (BOARD == BOARD_LEONARDO)
|
||||||
|
/* Enable pull-up on the IO13 pin so we can use it to select the mode */
|
||||||
|
PORTC |= (1 << 7);
|
||||||
|
Delay_MS(10);
|
||||||
|
|
||||||
|
/* If IO13 is not jumpered to ground, start the user application instead */
|
||||||
|
JumpToApplication |= ((PINC & (1 << 7)) != 0);
|
||||||
|
|
||||||
|
/* Disable pull-up after the check has completed */
|
||||||
|
PORTC &= ~(1 << 7);
|
||||||
|
#elif ((BOARD == BOARD_XPLAIN) || (BOARD == BOARD_XPLAIN_REV1))
|
||||||
|
/* Disable JTAG debugging */
|
||||||
|
JTAG_DISABLE();
|
||||||
|
|
||||||
|
/* Enable pull-up on the JTAG TCK pin so we can use it to select the mode */
|
||||||
|
PORTF |= (1 << 4);
|
||||||
|
Delay_MS(10);
|
||||||
|
|
||||||
|
/* If the TCK pin is not jumpered to ground, start the user application instead */
|
||||||
|
JumpToApplication |= ((PINF & (1 << 4)) != 0);
|
||||||
|
|
||||||
|
/* Re-enable JTAG debugging */
|
||||||
|
JTAG_ENABLE();
|
||||||
|
#endif
|
||||||
|
|
||||||
/* If the reset source was the bootloader and the key is correct, clear it and jump to the application */
|
/* If the reset source was the bootloader and the key is correct, clear it and jump to the application */
|
||||||
if ((MCUSR & (1 << WDRF)) && (MagicBootKey == MAGIC_BOOT_KEY))
|
if ((MCUSR & (1 << WDRF)) && (MagicBootKey == MAGIC_BOOT_KEY))
|
||||||
|
JumpToApplication |= true;
|
||||||
|
|
||||||
|
/* Don't run the user application if the reset vector is blank (no app loaded) */
|
||||||
|
if (pgm_read_word_near(0) == 0xFFFF)
|
||||||
|
JumpToApplication = false;
|
||||||
|
|
||||||
|
/* If a request has been made to jump to the user application, honor it */
|
||||||
|
if (JumpToApplication)
|
||||||
{
|
{
|
||||||
|
/* Turn off the watchdog */
|
||||||
|
MCUSR &= ~(1<<WDRF);
|
||||||
|
wdt_disable();
|
||||||
|
|
||||||
|
/* Clear the boot key and jump to the user application */
|
||||||
MagicBootKey = 0;
|
MagicBootKey = 0;
|
||||||
|
|
||||||
// cppcheck-suppress constStatement
|
// cppcheck-suppress constStatement
|
||||||
|
@ -11,7 +11,10 @@
|
|||||||
* - None.
|
* - None.
|
||||||
*
|
*
|
||||||
* <b>Changed:</b>
|
* <b>Changed:</b>
|
||||||
* - None.
|
* - Library Applications:
|
||||||
|
* - The CDC, DFU, Mass Storage and Printer class bootloaders will no longer run the user application if the application reset
|
||||||
|
* vector is blank (thanks to Alex Kazik)
|
||||||
|
* - The Printer class bootloader is now compatible with the original Atmel XPLAIN and Arduino Leonardo boards.
|
||||||
*
|
*
|
||||||
* <b>Fixed:</b>
|
* <b>Fixed:</b>
|
||||||
* - None.
|
* - None.
|
||||||
|
Loading…
Reference in New Issue
Block a user