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>
47 lines
656 B
Plaintext
47 lines
656 B
Plaintext
# Copyright (c) 2019 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config USB_PID_CDC_ACM_SAMPLE
|
|
hex
|
|
default 0x0001
|
|
|
|
config USB_PID_CDC_ACM_COMPOSITE_SAMPLE
|
|
hex
|
|
default 0x0002
|
|
|
|
config USB_PID_HID_CDC_SAMPLE
|
|
hex
|
|
default 0x0003
|
|
|
|
config USB_PID_CONSOLE_SAMPLE
|
|
hex
|
|
default 0x0004
|
|
|
|
config USB_PID_DFU_SAMPLE
|
|
hex
|
|
default 0x0005
|
|
|
|
config USB_PID_HID_SAMPLE
|
|
hex
|
|
default 0x0006
|
|
|
|
config USB_PID_HID_MOUSE_SAMPLE
|
|
hex
|
|
default 0x0007
|
|
|
|
config USB_PID_MASS_SAMPLE
|
|
hex
|
|
default 0x0008
|
|
|
|
config USB_PID_TESTUSB_SAMPLE
|
|
hex
|
|
default 0x0009
|
|
|
|
config USB_PID_WEBUSB_SAMPLE
|
|
hex
|
|
default 0x000A
|
|
|
|
config USB_PID_BLE_HCI_SAMPLE
|
|
hex
|
|
default 0x000B
|