1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

drivers/at: rename urc_isr_low pseudomodule to lowest

This commit is contained in:
Vitor Batista 2023-03-21 15:30:59 +01:00
parent 32781f3c51
commit 607cbc606c
3 changed files with 5 additions and 5 deletions

View File

@ -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"

View File

@ -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

View File

@ -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