Fix CLI bootloader

This commit is contained in:
devdl11
2022-04-25 18:35:16 +02:00
parent 5ed8aef907
commit 27cf6a0615
3 changed files with 7 additions and 0 deletions

View File

@@ -418,6 +418,9 @@ bool pcbVersionIsLocked() {
return *reinterpret_cast<const uint8_t *>(InternalFlash::Config::OTPLockAddress(k_pcbVersionOTPIndex)) == 0;
}
void jumpToInternalBootloader() {}
}
}
}

View File

@@ -434,6 +434,8 @@ bool pcbVersionIsLocked() {
return *reinterpret_cast<const uint8_t *>(InternalFlash::Config::OTPLockAddress(k_pcbVersionOTPIndex)) == 0;
}
void jumpToInternalBootloader() {}
}
}
}

View File

@@ -91,6 +91,8 @@ void setClockFrequency(Frequency f) {
}
}
void jumpToInternalBootloader() {}
}
}
}