26 lines
405 B
Plaintext
26 lines
405 B
Plaintext
|
# 1-Wire configuration options
|
||
|
|
||
|
# Copyright (c) 2022 Thomas Stranger
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
menuconfig W1
|
||
|
bool
|
||
|
prompt "1-Wire Drivers"
|
||
|
help
|
||
|
Enable 1-Wire Drivers
|
||
|
|
||
|
if W1
|
||
|
|
||
|
module = W1
|
||
|
module-str = W1
|
||
|
source "subsys/logging/Kconfig.template.log_config"
|
||
|
|
||
|
config W1_INIT_PRIORITY
|
||
|
int
|
||
|
default 65
|
||
|
prompt "Init priority"
|
||
|
help
|
||
|
1-Wire device driver initialization priority.
|
||
|
|
||
|
endif # W1
|