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

Kconfig/bhp_*: add initial Kconfig modelling

This commit is contained in:
Jose Alamos 2022-08-10 17:37:42 +02:00
parent c80e0e1559
commit c9ea772bbb
No known key found for this signature in database
GPG Key ID: F483EB800EF89DD9
2 changed files with 26 additions and 0 deletions

View File

@ -12,6 +12,7 @@ rsource "arduino/Kconfig"
rsource "auto_init/Kconfig"
rsource "base64/Kconfig"
rsource "benchmark/Kconfig"
rsource "bhp/Kconfig"
rsource "bitfield/Kconfig"
rsource "bloom/Kconfig"
rsource "bus/Kconfig"

25
sys/bhp/Kconfig Normal file
View File

@ -0,0 +1,25 @@
# Copyright (c) 2022 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
menu "Bottom Half Processor"
config HAVE_BHP_IRQ_HANDLER
bool
select MODULE_BHP
help
"Indicates that a module exposes an IRQ Handler to be offloaded to a
Bottom Half Processor mechanism."
config MODULE_BHP
bool
config MODULE_BHP_EVENT
bool "Enable event based Bottom Half Processor implementation"
depends on MODULE_EVENT
depends on MODULE_BHP
endmenu