From 607cbc606c9029c2760e4a51f275920498ddb454 Mon Sep 17 00:00:00 2001 From: Vitor Batista Date: Tue, 21 Mar 2023 15:30:59 +0100 Subject: [PATCH] drivers/at: rename urc_isr_low pseudomodule to lowest --- drivers/at/Kconfig | 6 +++--- drivers/at/Makefile.include | 2 +- drivers/at/at.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/at/Kconfig b/drivers/at/Kconfig index d85deca01c..b06e3d5ebb 100644 --- a/drivers/at/Kconfig +++ b/drivers/at/Kconfig @@ -33,9 +33,9 @@ choice MODULE_EVENT_THREAD symbol should be set. Choose a priority for the thread that processes the URCs. -config MODULE_AT_URC_ISR_LOW - bool "Low" - select MODULE_EVENT_THREAD_LOW +config MODULE_AT_URC_ISR_LOWEST + bool "Lowest" + select MODULE_EVENT_THREAD_LOWEST config MODULE_AT_URC_ISR_MEDIUM bool "Medium" diff --git a/drivers/at/Makefile.include b/drivers/at/Makefile.include index 02c8f4e3e0..c27e28e1c7 100644 --- a/drivers/at/Makefile.include +++ b/drivers/at/Makefile.include @@ -1,5 +1,5 @@ PSEUDOMODULES += at_urc PSEUDOMODULES += at_urc_isr -PSEUDOMODULES += at_urc_isr_low +PSEUDOMODULES += at_urc_isr_lowest PSEUDOMODULES += at_urc_isr_medium PSEUDOMODULES += at_urc_isr_highest diff --git a/drivers/at/at.c b/drivers/at/at.c index 7471667f2a..d927329999 100644 --- a/drivers/at/at.c +++ b/drivers/at/at.c @@ -24,7 +24,7 @@ #define AT_PRINT_INCOMING (0) #endif -#if defined(MODULE_AT_URC_ISR_LOW) +#if defined(MODULE_AT_URC_ISR_LOWEST) #define AT_EVENT_PRIO EVENT_PRIO_LOWEST #elif defined(MODULE_AT_URC_ISR_MEDIUM) #define AT_EVENT_PRIO EVENT_PRIO_MEDIUM