mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-06 05:36:44 +00:00
This commit renames the Kconfig `FLOAT` symbol to `FPU`, since this symbol only indicates that the hardware Floating Point Unit (FPU) is used and does not imply and/or indicate the general availability of toolchain-level floating point support (i.e. this symbol is not selected when building for an FPU-less platform that supports floating point operations through the toolchain-provided software floating point library). Moreover, given that the symbol that indicates the availability of FPU is named `CPU_HAS_FPU`, it only makes sense to use "FPU" in the name of the symbol that enables the FPU. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
18 lines
320 B
Plaintext
18 lines
320 B
Plaintext
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
CONFIG_BOARD_MSP_EXP432P401R_LAUNCHXL=y
|
|
CONFIG_SOC_SERIES_MSP432P4XX=y
|
|
CONFIG_SOC_MSP432P401R=y
|
|
CONFIG_CORTEX_M_SYSTICK=y
|
|
|
|
# Floating point options
|
|
CONFIG_FPU=y
|
|
|
|
# enable uart driver
|
|
CONFIG_SERIAL=y
|
|
CONFIG_UART_MSP432P4XX=y
|
|
|
|
# enable console
|
|
CONFIG_CONSOLE=y
|
|
CONFIG_UART_CONSOLE=y
|