narf52/src/platform/cm4/InterruptLock.h
2020-04-12 09:33:53 +02:00

19 lines
233 B
C++

#ifndef __PLATFORM_CM$_INTERRUPTLOCK_H__
#define __PLATFORM_CM$_INTERRUPTLOCK_H__
namespace pinetime::platform::cm4 {
class InterruptLock
{
public:
InterruptLock();
~InterruptLock();
private:
bool state;
};
}
#endif