diff options
author | marcoveeneman <marco-veeneman@hotmail.com> | 2015-04-16 21:46:53 +0200 |
---|---|---|
committer | marcoveeneman <marco-veeneman@hotmail.com> | 2015-04-16 21:46:53 +0200 |
commit | 7b7c6fd19853d05fe7758d074360754ec8fcf05c (patch) | |
tree | d8116d58e6fd1d9299d16aba56963ab2f1475019 /os/hal/ports/TIVA/TM4C123x | |
parent | 2c0b57355308995257a488d8517ba91b0ee74869 (diff) | |
download | ChibiOS-Contrib-7b7c6fd19853d05fe7758d074360754ec8fcf05c.tar.gz ChibiOS-Contrib-7b7c6fd19853d05fe7758d074360754ec8fcf05c.tar.bz2 ChibiOS-Contrib-7b7c6fd19853d05fe7758d074360754ec8fcf05c.zip |
Tiva. Replaced all references to CORTEX_IS_VALID_KERNEL_PRIORITY with OSAL_IRQ_IS_VALID_PRIORITY.
Diffstat (limited to 'os/hal/ports/TIVA/TM4C123x')
-rw-r--r-- | os/hal/ports/TIVA/TM4C123x/hal_lld.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/ports/TIVA/TM4C123x/hal_lld.h b/os/hal/ports/TIVA/TM4C123x/hal_lld.h index 72b53b4..b81ace8 100644 --- a/os/hal/ports/TIVA/TM4C123x/hal_lld.h +++ b/os/hal/ports/TIVA/TM4C123x/hal_lld.h @@ -330,7 +330,7 @@ #define TIVA_SYSCLK (TIVA_SRC / (((TIVA_SYSDIV_VALUE << TIVA_DIV400_VALUE /*& TIVA_BYPASS_VALUE*/) | (TIVA_SYSDIV2LSB >> 22)) + 1)) #if OSAL_ST_MODE == OSAL_ST_MODE_PERIODIC && \ - !CORTEX_IS_VALID_KERNEL_PRIORITY(TIVA_ST_IRQ_PRIORITY) + !OSAL_IRQ_IS_VALID_PRIORITY(TIVA_ST_IRQ_PRIORITY) #error "Invalid IRQ priority assigned to SysTick" #endif |