:orphan: .. title:: CONFIG_CBPRINTF_FP_ALWAYS_A .. kconfig:: CONFIG_CBPRINTF_FP_ALWAYS_A CONFIG_CBPRINTF_FP_ALWAYS_A ########################### *Select %a format for all floating point specifications* Type: ``bool`` Help ==== .. code-block:: none The %a format for floats requires significantly less code than the standard decimal representations (%f, %e, %g). Selecting this option implicitly uses %a (or %A) for all decimal floating conversions. The precision of the original specification is ignored. Selecting this decreases code size when FP_SUPPORT is enabled. Defaults ======== No defaults. Implicitly defaults to ``n``. Symbols selected by this symbol =============================== - \ :kconfig:`CBPRINTF_FP_A_SUPPORT ` Kconfig definition ================== At ``/os/Kconfig.cbprintf:86`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:43`` → ``/Kconfig:10`` → ``/os/Kconfig:81`` Menu path: (Top) → Additional libraries → OS Support Library .. code-block:: kconfig config CBPRINTF_FP_ALWAYS_A bool "Select %a format for all floating point specifications" select CBPRINTF_FP_A_SUPPORT help The %a format for floats requires significantly less code than the standard decimal representations (%f, %e, %g). Selecting this option implicitly uses %a (or %A) for all decimal floating conversions. The precision of the original specification is ignored. Selecting this decreases code size when FP_SUPPORT is enabled. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*