Files
MuditaOS/module-bsp/board/linux/chip.hpp
Alek-Mudita 36be49c15b Egd 3046 unexpected reset (#274)
* [EGD-3046] fix HF handler
added boot reason printing and clearing

* [EGD-3046] added prining of  GPR_5 on checking boot reason

* [EGD-3046] added halt if debugging

* [EGD-3046] halt if debugging only in exit

* [EGD-3046] rename

* [EGD-3046] added DEBUG check

* [EGD-3046] fixed formatting

* [EGD-3046] fixed includes
2020-04-01 16:34:56 +02:00

10 lines
114 B
C++

#pragma once
#include <cstdbool>
//! Test if in interrupt mode
static inline bool isIRQ()
{
return false;
}