Files
cardboy/Firmware/main/include/shutdowner.hpp

19 lines
246 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();
private:
Shutdowner();
};
#endif // CB_SHUTDOWNER_HPP