19 lines
233 B
C++
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
|