Fix enable Update partition

This commit is contained in:
me-no-dev
2017-06-03 20:08:56 +03:00
parent 1d4973a40b
commit 2e5743eaa1
2 changed files with 32 additions and 10 deletions

View File

@ -209,7 +209,7 @@ bool UpdateClass::_verifyHeader(uint8_t data) {
bool UpdateClass::_verifyEnd() {
if(_command == U_FLASH) {
if(!_enablePartition || !_partitionIsBootable(_partition)) {
if(!_enablePartition(_partition) || !_partitionIsBootable(_partition)) {
_abort(UPDATE_ERROR_READ);
return false;
}