mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-11 08:46:08 +00:00
Adds a simple driver to access the 5x5 LED display found on BBC micro:bit boards. The display is so limited that no effort is done to try to integrate with the existing console (which would likely make the display unusable). Instead, dedicated mb_display_* APIs are added that are specific to this display. References: https://www.microbit.co.uk/device/screen https://lancaster-university.github.io/microbit-docs/ubit/display/ Jira: ZEP-1990 Change-Id: I431b5b358b5f07592a60d3aed87eaab6ac20ce25 Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
78 lines
1.2 KiB
Plaintext
78 lines
1.2 KiB
Plaintext
# Kconfig - drivers configuration options
|
|
|
|
#
|
|
# Copyright (c) 2015 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
|
|
menu "Device Drivers"
|
|
|
|
source "drivers/bluetooth/Kconfig"
|
|
|
|
config IEEE802154
|
|
bool
|
|
default n
|
|
default y if NETWORKING_WITH_15_4 || NET_L2_IEEE802154
|
|
|
|
source "drivers/ieee802154/Kconfig"
|
|
|
|
source "drivers/console/Kconfig"
|
|
|
|
source "drivers/ethernet/Kconfig"
|
|
|
|
source "drivers/slip/Kconfig"
|
|
|
|
source "drivers/serial/Kconfig"
|
|
|
|
source "drivers/interrupt_controller/Kconfig"
|
|
|
|
source "drivers/timer/Kconfig"
|
|
|
|
source "drivers/random/Kconfig"
|
|
|
|
source "drivers/grove/Kconfig"
|
|
|
|
source "drivers/pci/Kconfig"
|
|
|
|
source "drivers/gpio/Kconfig"
|
|
|
|
source "drivers/shared_irq/Kconfig"
|
|
|
|
source "drivers/spi/Kconfig"
|
|
|
|
source "drivers/i2c/Kconfig"
|
|
|
|
source "drivers/pwm/Kconfig"
|
|
|
|
source "drivers/pinmux/Kconfig"
|
|
|
|
source "drivers/adc/Kconfig"
|
|
|
|
source "drivers/rtc/Kconfig"
|
|
|
|
source "drivers/watchdog/Kconfig"
|
|
|
|
source "drivers/clock_control/Kconfig"
|
|
|
|
source "drivers/ipm/Kconfig"
|
|
|
|
source "drivers/aio/Kconfig"
|
|
|
|
source "drivers/flash/Kconfig"
|
|
|
|
source "drivers/sensor/Kconfig"
|
|
|
|
source "drivers/counter/Kconfig"
|
|
|
|
source "drivers/dma/Kconfig"
|
|
|
|
source "drivers/usb/Kconfig"
|
|
|
|
source "drivers/crypto/Kconfig"
|
|
|
|
source "drivers/display/Kconfig"
|
|
|
|
endmenu
|