mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-17 05:01:57 +00:00
* Utilize DT_HAS_<COMPAT>_ENABLED for devicetree based drivers
* Move to using 'select SPI' instead of 'depends on'
(see commit df81fef944
for
more details)
Signed-off-by: Kumar Gala <galak@kernel.org>
12 lines
331 B
Plaintext
12 lines
331 B
Plaintext
# Copyright (c) 2022 Jimmy Ou <yanagiis@gmail.com>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config MAX7219
|
|
bool "MAX7219 LED display driver"
|
|
default y
|
|
depends on DT_HAS_MAXIM_MAX7219_ENABLED
|
|
select SPI
|
|
help
|
|
Enable driver for the Maxim MAX7219 SPI LED display driver.
|
|
It is supporting up to 64 individual LEDs per MAX7219.
|