mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-29 20:45:21 +00:00
Hex firmware file is convenient in some scenarios, like generating signed firmware with `west sign`. So, enable generating hex file. Signed-off-by: Jun Li <jun.r.li@intel.com>
23 lines
390 B
Plaintext
23 lines
390 B
Plaintext
# Kconfig - ST Microelectronics STM32 MCU line
|
|
#
|
|
# Copyright (c) 2016 Open-RnD Sp. z o.o.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
config SOC_FAMILY_STM32
|
|
bool
|
|
# omit prompt to signify a "hidden" option
|
|
select HAS_SEGGER_RTT
|
|
select BUILD_OUTPUT_HEX
|
|
|
|
if SOC_FAMILY_STM32
|
|
|
|
config SOC_FAMILY
|
|
string
|
|
default "st_stm32"
|
|
|
|
source "soc/arm/st_stm32/*/Kconfig.soc"
|
|
|
|
endif # SOC_FAMILY_STM32
|