Files
MuditaOS/module-bsp/board/linux/eink_frontlight/eink_frontlight.cpp
Wojtek Rzepecki 0c098808e8 [EGD-5660] Add PWM Cpu sentinel
Change of PWM frequency due
to main clock change in low
power operation.
2021-02-25 17:09:05 +01:00

30 lines
519 B
C++

// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
#include "bsp/eink_frontlight/eink_frontlight.hpp"
namespace bsp::eink_frontlight
{
void init()
{}
void deinit()
{}
void setBrightness(BrightnessPercentage)
{}
void turnOn()
{}
void turnOff()
{}
void setGammaFactor(float)
{}
void updateClockFrequency(CpuFrequencyHz newFrequency)
{}
} // namespace bsp::eink_frontlight