Files
MuditaOS/module-bsp/board/linux/lpm/LinuxLPM.h
Radoslaw Wicik a8573a404c Apply new style
2020-03-17 10:03:16 +01:00

23 lines
368 B
C++

//
// Created by mati on 09.09.2019.
//
#ifndef PUREPHONE_LINUXLPM_H
#define PUREPHONE_LINUXLPM_H
#include "bsp/lpm/bsp_lpm.hpp"
namespace bsp
{
class LinuxLPM : public LowPowerMode
{
public:
int32_t Switch(const Mode mode) override final;
int32_t PowerOff() override final;
};
} // namespace bsp
#endif // PUREPHONE_LINUXLPM_H