~aleteoryx/muditaos

ref: 3a5f668c981db13ba5e31cabb528c43728a8bf2e muditaos/module-bsp/board/rt1051/bellpx/bsp/rtc/rtc_configuration.cpp -rw-r--r-- 364 bytes
3a5f668c — Lefucjusz [BH-1583] Fix SNVS LP lockup after debugging 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) 2017-2023, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md

#include <cstdint>

namespace
{
    constexpr std::uint32_t RTC_CALIBRATION_VALUE = 0;
}

namespace bsp::rtc
{
    std::uint32_t getRtcCalibrationValue()
    {
        return RTC_CALIBRATION_VALUE;
    }
} // namespace bsp::rtc