Files
cardboy/Firmware/main/include/shutdowner.hpp
2025-07-26 12:18:52 +02:00

20 lines
267 B
C++

//
// Created by Stepan Usatiuk on 02.03.2025.
//
#ifndef CB_SHUTDOWNER_HPP
#define CB_SHUTDOWNER_HPP
class Shutdowner {
public:
static Shutdowner& get();
void install_isr();
void shutdown();
private:
Shutdowner();
};
#endif // CB_SHUTDOWNER_HPP