zephyr: Fix floating point configuration.
Zephyr renamed CONFIG_FLOAT to CONFIG_FPU to better reflect its semantics of enabling the hardware floating point unit (FPU) rather than enabling toolchain-level floating point support (i.e., software floating point for FPU-less socs).
This commit is contained in:
parent
38b4f1569e
commit
8b061f2d79
|
@ -11,7 +11,7 @@ CONFIG_CONSOLE_GETCHAR_BUFSIZE=128
|
|||
CONFIG_CONSOLE_PUTCHAR_BUFSIZE=128
|
||||
|
||||
CONFIG_NEWLIB_LIBC=y
|
||||
CONFIG_FLOAT=y
|
||||
CONFIG_FPU=y
|
||||
CONFIG_MAIN_STACK_SIZE=4736
|
||||
|
||||
# Enable sensor subsystem (doesn't add code if not used).
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
CONFIG_NEWLIB_LIBC=y
|
||||
CONFIG_FLOAT=y
|
||||
CONFIG_FPU=y
|
||||
CONFIG_MAIN_STACK_SIZE=4096
|
||||
|
||||
CONFIG_UART_INTERRUPT_DRIVEN=y
|
||||
|
|
Loading…
Reference in New Issue