Use this short header style in all Kconfig files:
# <description>
# <copyright>
# <license>
...
Also change all <description>s from
# Kconfig[.extension] - Foo-related options
to just
# Foo-related options
It's clear enough that it's about Kconfig.
The <description> cleanup was done with this command, along with some
manual cleanup (big letter at the start, etc.)
git ls-files '*Kconfig*' | \
xargs sed -i -E '1 s/#\s*Kconfig[\w.-]*\s*-\s*/# /'
Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
27 lines
721 B
Plaintext
27 lines
721 B
Plaintext
# Microbit display driver configuration options
|
|
|
|
# Copyright (c) 2017 Jan Van Winkel <jan.van_winkel@dxplore.eu>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config MICROBIT_DISPLAY
|
|
bool "BBC micro:bit 5x5 LED Display support"
|
|
depends on BOARD_BBC_MICROBIT
|
|
depends on PRINTK
|
|
depends on GPIO
|
|
help
|
|
Enable this to be able to display images and text on the 5x5
|
|
LED matrix display on the BBC micro:bit.
|
|
|
|
if MICROBIT_DISPLAY
|
|
|
|
config MICROBIT_DISPLAY_STR_MAX
|
|
int "Maximum length of strings that can be shown on the display"
|
|
range 3 255
|
|
default 40
|
|
help
|
|
This value specifies the maximum length of strings that can
|
|
be displayed using the mb_display_string() and mb_display_print()
|
|
APIs.
|
|
|
|
endif # MICROBIT_DISPLAY
|