zephyr/drivers/display/Kconfig.nrf_led_matrix

23 lines
925 B
Text
Raw Normal View History

# Copyright (c) 2021, Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0
DT_COMPAT_NRF_LED_MATRIX := nordic,nrf-led-matrix
config DISPLAY_NRF_LED_MATRIX
bool "LED matrix driven by GPIOs"
depends on SOC_FAMILY_NRF
select NRFX_GPIOTE
select NRFX_PPI if HAS_HW_NRF_PPI
default $(dt_compat_enabled,$(DT_COMPAT_NRF_LED_MATRIX))
help
Enable driver for a LED matrix with rows and columns driven by
GPIOs. The matrix is refreshed pixel by pixel (only one LED is
turned on in particular time slots) and each pixel can have one
of 256 levels of brightness (0 means off completely).
Assignment of GPIOs to rows and columns and the mapping of those
to pixels are specified in properties of a "nordic,nrf-led-matrix"
compatible node in devicetree.
The driver uses one TIMER instance and, depending on what is set
in devicetree, one PWM instance or one PPI channel and one GPIOTE
channel.