mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-04 13:17:08 -04:00
23 lines
368 B
C++
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
|