Boatloader typo fix (#8502)

Boatloader typo fix
This commit is contained in:
Michael Keller 2019-06-30 22:41:51 +12:00 committed by GitHub
commit b03f4ef0b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -280,7 +280,7 @@ static void mspRebootFn(serialPort_t *serialPort)
#endif
#if defined(USE_FLASH_BOOT_LOADER)
case MSP_REBOOT_BOOTLOADER_FLASH:
systemResetToBootloader(BOATLOADER_REQUEST_FLASH);
systemResetToBootloader(BOOTLOADER_REQUEST_FLASH);
break;
#endif

View File

@ -452,7 +452,7 @@ static void mspProcessPendingRequest(mspPort_t * mspPort)
break;
#if defined(USE_FLASH_BOOT_LOADER)
case MSP_PENDING_BOOTLOADER_FLASH:
systemResetToBootloader(BOATLOADER_REQUEST_FLASH);
systemResetToBootloader(BOOTLOADER_REQUEST_FLASH);
break;
#endif