mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-04 13:17:08 -04:00
21 lines
287 B
C++
21 lines
287 B
C++
//
|
|
// Created by mati on 09.09.2019.
|
|
//
|
|
|
|
#include "LinuxLPM.h"
|
|
|
|
namespace bsp
|
|
{
|
|
|
|
int32_t LinuxLPM::Switch(const bsp::LowPowerMode::Mode mode)
|
|
{
|
|
currentMode = mode;
|
|
return 0;
|
|
}
|
|
|
|
int32_t LinuxLPM::PowerOff()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
} // namespace bsp
|