mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-03 20:57:19 -04:00
* [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
10 lines
114 B
C++
10 lines
114 B
C++
#pragma once
|
|
|
|
#include <cstdbool>
|
|
|
|
//! Test if in interrupt mode
|
|
static inline bool isIRQ()
|
|
{
|
|
return false;
|
|
}
|