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