From 25c944f87f69c46efe23e998152c9c48365e51b0 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Fri, 27 Mar 2015 09:51:45 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7816 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/osal/nil/osal.h | 17 +---------------- os/hal/osal/rt/osal.h | 17 +---------------- os/hal/templates/osal/osal.h | 2 ++ 3 files changed, 4 insertions(+), 32 deletions(-) (limited to 'os/hal') diff --git a/os/hal/osal/nil/osal.h b/os/hal/osal/nil/osal.h index c20e7ef15..84d83d8c2 100644 --- a/os/hal/osal/nil/osal.h +++ b/os/hal/osal/nil/osal.h @@ -109,21 +109,6 @@ #endif /** @} */ -/** - * @name IRQ-related constants - * @{ - */ -/** - * @brief Total priority levels. - */ -#define OSAL_IRQ_PRIORITY_LEVELS CORTEX_PRIORITY_LEVELS - -/** - * @brief Highest IRQ priority for HAL drivers. - */ -#define OSAL_IRQ_MAXIMUM_PRIORITY CORTEX_MAX_KERNEL_PRIORITY -/** @} */ - /*===========================================================================*/ /* Module pre-compile time settings. */ /*===========================================================================*/ @@ -295,7 +280,7 @@ typedef struct { /** * @brief Priority level verification macro. */ -#define OSAL_IRQ_IS_VALID_PRIORITY(n) CORTEX_IS_VALID_KERNEL_PRIORITY(n) +#define OSAL_IRQ_IS_VALID_PRIORITY(n) CH_IRQ_IS_VALID_KERNEL_PRIORITY(n) /** * @brief IRQ prologue code. diff --git a/os/hal/osal/rt/osal.h b/os/hal/osal/rt/osal.h index 0eff06a24..aae2b5d3f 100644 --- a/os/hal/osal/rt/osal.h +++ b/os/hal/osal/rt/osal.h @@ -105,21 +105,6 @@ #endif /** @} */ -/** - * @name IRQ-related constants - * @{ - */ -/** - * @brief Total priority levels. - */ -#define OSAL_IRQ_PRIORITY_LEVELS CORTEX_PRIORITY_LEVELS - -/** - * @brief Highest IRQ priority for HAL drivers. - */ -#define OSAL_IRQ_MAXIMUM_PRIORITY CORTEX_MAX_KERNEL_PRIORITY -/** @} */ - /*===========================================================================*/ /* Module pre-compile time settings. */ /*===========================================================================*/ @@ -287,7 +272,7 @@ typedef struct { /** * @brief Priority level verification macro. */ -#define OSAL_IRQ_IS_VALID_PRIORITY(n) CORTEX_IS_VALID_KERNEL_PRIORITY(n) +#define OSAL_IRQ_IS_VALID_PRIORITY(n) CH_IRQ_IS_VALID_KERNEL_PRIORITY(n) /** * @brief IRQ prologue code. diff --git a/os/hal/templates/osal/osal.h b/os/hal/templates/osal/osal.h index 1eb9ec5de..f73070aa4 100644 --- a/os/hal/templates/osal/osal.h +++ b/os/hal/templates/osal/osal.h @@ -102,11 +102,13 @@ */ /** * @brief Total priority levels. + * @brief Implementation not mandatory. */ #define OSAL_IRQ_PRIORITY_LEVELS 16U /** * @brief Highest IRQ priority for HAL drivers. + * @brief Implementation not mandatory. */ #define OSAL_IRQ_MAXIMUM_PRIORITY 0U /** @} */ -- cgit v1.2.3