From 2f224ab915a044f6787ddec45dd641b8edf28c26 Mon Sep 17 00:00:00 2001 From: mutatrum Date: Tue, 11 Aug 2026 13:43:10 +0200 Subject: [PATCH] Fix default value type of FATFS_PRINT_LLI and FATFS_PRINT_FLOAT --- components/fatfs/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/fatfs/Kconfig b/components/fatfs/Kconfig index fea650b0904..55069640fe0 100644 --- a/components/fatfs/Kconfig +++ b/components/fatfs/Kconfig @@ -240,12 +240,12 @@ menu "FAT Filesystem support" config FATFS_PRINT_LLI depends on !FATFS_USE_STRFUNC_NONE bool "Make fatfs f_printf() support long long argument" - default 0 + default n config FATFS_PRINT_FLOAT depends on !FATFS_USE_STRFUNC_NONE bool "Make fatfs f_printf() support floating point argument" - default 0 + default n choice FATFS_STRF_ENCODE_CHOICE prompt "FatFS string functions: convert character encoding"