mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-20 23:17:35 -04:00
30 lines
519 B
C++
30 lines
519 B
C++
// Copyright (c) 2017-2021, 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
|