1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/sys/usb/usbus/dfu/Kconfig

32 lines
838 B
Plaintext
Raw Normal View History

2020-12-15 17:15:20 +01:00
# Copyright (c) 2020 Mesotic SAS
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
menu "USBUS DFU"
depends on USEMODULE_USBUS_DFU
2020-12-15 17:15:20 +01:00
config USB_DFU_DETACH_TIMEOUT_MS
int
range 0 65535
prompt "DFU detach timeout (ms)"
default 255
help
Indicates the detach timeout USB device should advertise to
the host USB. Host USB should abort the pending operation if
device doesnt detach after this timeout.
2020-12-15 17:15:20 +01:00
config CUSTOM_RIOTBOOT_MAGIC_ADDR
2020-12-15 17:15:20 +01:00
bool "Use custom DFU magic address"
help
Say n to use the default address, which is the last in RAM.
config RIOTBOOT_MAGIC_ADDR
2020-12-15 17:15:20 +01:00
int "DFU magic address"
depends on CUSTOM_RIOTBOOT_MAGIC_ADDR
2020-12-15 17:15:20 +01:00
endmenu # USBUS DFU