// 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(CpuFrequencyMHz newFrequency) {} } // namespace bsp::eink_frontlight