~aleteoryx/muditaos

ref: 558dd345bc23b5c688fd2526585160a1c69eb53e muditaos/module-bsp/board/rt1051/bellpx/bsp/rtc/rtc_configuration.cpp -rw-r--r-- 369 bytes
558dd345 — Dawid Wojtas [BH-1689] Turn off charging for CDP and SPD 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md

#include <bsp/rtc/rtc.hpp>

namespace
{
    static constexpr uint32_t RTC_CALIBRATION_VALUE = 0;
}

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