ac7b2da611
Don't use relative imports like `../foo.h` as those depend on the relative position of both files. Rather than that use imports relative to the `src` directory, which explicitly is part of the include directories.
21 lines
518 B
C++
21 lines
518 B
C++
#include "components/firmwarevalidator/FirmwareValidator.h"
|
|
|
|
#include <hal/nrf_rtc.h>
|
|
#include "drivers/InternalFlash.h"
|
|
|
|
using namespace Pinetime::Controllers;
|
|
|
|
bool FirmwareValidator::IsValidated() const {
|
|
auto* imageOkPtr = reinterpret_cast<uint32_t*>(validBitAdress);
|
|
return (*imageOkPtr) == validBitValue;
|
|
}
|
|
|
|
void FirmwareValidator::Validate() {
|
|
if (!IsValidated())
|
|
Pinetime::Drivers::InternalFlash::WriteWord(validBitAdress, validBitValue);
|
|
}
|
|
|
|
void FirmwareValidator::Reset() {
|
|
NVIC_SystemReset();
|
|
}
|