diff options
Diffstat (limited to 'os/nil/templates')
-rw-r--r-- | os/nil/templates/nilcore.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/os/nil/templates/nilcore.h b/os/nil/templates/nilcore.h index b2b71ce48..1aad42ddc 100644 --- a/os/nil/templates/nilcore.h +++ b/os/nil/templates/nilcore.h @@ -160,6 +160,16 @@ struct port_intctx { (size_t)(PORT_INT_REQUIRED_STACK))
/**
+ * @brief Priority level verification macro.
+ */
+#define PORT_IRQ_IS_VALID_PRIORITY(n) false
+
+/**
+ * @brief Priority level verification macro.
+ */
+#define PORT_IRQ_IS_VALID_KERNEL_PRIORITY(n) false
+
+/**
* @brief IRQ prologue code.
* @details This macro must be inserted at the start of all IRQ handlers
* enabled to invoke system APIs.
|