16 lines
374 B
Plaintext
16 lines
374 B
Plaintext
|
# DAC configuration options
|
||
|
|
||
|
# Copyright (c) 2021 BrainCo Inc.
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
# Workaround for not being able to have commas in macro arguments
|
||
|
DT_COMPAT_GD_GD32_DAC := gd,gd32-dac
|
||
|
|
||
|
config DAC_GD32
|
||
|
bool "GD32 DAC driver"
|
||
|
depends on SOC_FAMILY_GD32
|
||
|
default $(dt_compat_enabled,$(DT_COMPAT_GD_GD32_DAC))
|
||
|
help
|
||
|
Enable GigaDevice GD32 DAC driver
|