Martin Jäger | 33228f5 | 2020-01-10 10:10:12 +0100 | [diff] [blame] | 1 | # DAC configuration options |
| 2 | |
| 3 | # Copyright (c) 2020 Libre Solar Technologies GmbH |
| 4 | # SPDX-License-Identifier: Apache-2.0 |
| 5 | |
| 6 | # |
| 7 | # DAC options |
| 8 | # |
| 9 | menuconfig DAC |
Henrik Brix Andersen | c41dd36 | 2023-03-27 14:55:23 +0200 | [diff] [blame] | 10 | bool "Digital-to-Analog Converter (DAC) drivers" |
Martin Jäger | 33228f5 | 2020-01-10 10:10:12 +0100 | [diff] [blame] | 11 | help |
| 12 | Enable DAC (Digital to Analog Converter) driver configuration. |
| 13 | |
| 14 | if DAC |
| 15 | |
| 16 | module = DAC |
| 17 | module-str = DAC |
| 18 | source "subsys/logging/Kconfig.template.log_config" |
| 19 | |
Henrik Brix Andersen | 8a5ba45 | 2020-02-16 20:55:58 +0100 | [diff] [blame] | 20 | config DAC_SHELL |
Gerard Marull-Paretas | 95fb0de | 2022-03-09 12:05:12 +0100 | [diff] [blame] | 21 | bool "DAC shell" |
Henrik Brix Andersen | 8a5ba45 | 2020-02-16 20:55:58 +0100 | [diff] [blame] | 22 | depends on SHELL |
| 23 | help |
| 24 | Enable DAC related shell commands. |
| 25 | |
Maureen Helm | 9eef764 | 2021-10-25 19:13:48 -0500 | [diff] [blame] | 26 | config DAC_INIT_PRIORITY |
| 27 | int "DAC init priority" |
| 28 | default KERNEL_INIT_PRIORITY_DEVICE |
| 29 | help |
| 30 | DAC driver device initialization priority. |
| 31 | |
Henrik Brix Andersen | 20b565a | 2020-02-16 13:58:28 +0100 | [diff] [blame] | 32 | source "drivers/dac/Kconfig.mcux" |
| 33 | |
Martin Jäger | 4145279 | 2020-01-10 10:20:57 +0100 | [diff] [blame] | 34 | source "drivers/dac/Kconfig.stm32" |
| 35 | |
Piotr Mienkowski | 2f17bd8 | 2021-08-13 00:11:17 +0200 | [diff] [blame] | 36 | source "drivers/dac/Kconfig.sam" |
| 37 | |
Michael Hope | 2b6783a | 2020-07-04 15:19:59 +0200 | [diff] [blame] | 38 | source "drivers/dac/Kconfig.sam0" |
| 39 | |
Eran Gal | e58dfac | 2024-04-09 10:40:51 +0000 | [diff] [blame] | 40 | source "drivers/dac/Kconfig.dacx0501" |
| 41 | |
Kwon Tae-young | 2aeed81 | 2020-06-04 12:24:40 +0900 | [diff] [blame] | 42 | source "drivers/dac/Kconfig.dacx0508" |
| 43 | |
Matija Tudan | 1463596 | 2020-12-16 21:57:28 +0100 | [diff] [blame] | 44 | source "drivers/dac/Kconfig.dacx3608" |
| 45 | |
Marcus Folkesson | 10818f7 | 2023-04-05 14:16:13 +0200 | [diff] [blame] | 46 | source "drivers/dac/Kconfig.ltc166x" |
| 47 | |
Kieran Mackey | 38ed9c8 | 2021-03-18 17:08:54 +0000 | [diff] [blame] | 48 | source "drivers/dac/Kconfig.mcp4725" |
| 49 | |
Marek Janus | 6505cbc | 2022-04-05 13:31:11 +0200 | [diff] [blame] | 50 | source "drivers/dac/Kconfig.mcp4728" |
| 51 | |
HaiLong Yang | ba9c3a4 | 2021-12-14 22:50:09 +0800 | [diff] [blame] | 52 | source "drivers/dac/Kconfig.gd32" |
| 53 | |
Marek Matej | f86a7d2 | 2022-11-04 19:23:22 +0100 | [diff] [blame] | 54 | source "drivers/dac/Kconfig.esp32" |
| 55 | |
Benedikt Schmidt | 536f8ae | 2023-07-13 12:31:17 +0200 | [diff] [blame] | 56 | source "drivers/dac/Kconfig.ad56xx" |
| 57 | |
Jeppe Odgaard | 17b1912 | 2024-01-24 09:05:09 +0100 | [diff] [blame] | 58 | source "drivers/dac/Kconfig.ad559x" |
Bartosz Bilas | 2c09999 | 2023-10-30 20:44:27 +0100 | [diff] [blame] | 59 | |
Jan Kubiznak | 030a8b1 | 2024-04-10 13:32:02 +0200 | [diff] [blame] | 60 | source "drivers/dac/Kconfig.ad569x" |
| 61 | |
TOKITA Hiroshi | 1f30346 | 2024-09-29 09:06:58 +0900 | [diff] [blame] | 62 | source "drivers/dac/Kconfig.test" |
| 63 | |
Martin Jäger | 33228f5 | 2020-01-10 10:10:12 +0100 | [diff] [blame] | 64 | endif # DAC |