I used the develop-version of this interesting library before I noticed that you made a v1.0.0 release. When I updated to v1.0.0 with my opts used before (#define LWPRINTF_CFG_OS 1, #define LWPRINTF_CFG_SUPPORT_TYPE_POINTER 0, #define LWPRINTF_CFG_SUPPORT_TYPE_ENGINEERING 0), the library cannot compile due to #define LWPRINTF_CFG_SUPPORT_TYPE_ENGINEERING 0. The error appears on this line
Hello, Tilen MaJerle!
I used the develop-version of this interesting library before I noticed that you made a v1.0.0 release. When I updated to v1.0.0 with my opts used before (
#define LWPRINTF_CFG_OS 1
,#define LWPRINTF_CFG_SUPPORT_TYPE_POINTER 0
,#define LWPRINTF_CFG_SUPPORT_TYPE_ENGINEERING 0
), the library cannot compile due to#define LWPRINTF_CFG_SUPPORT_TYPE_ENGINEERING 0
. The error appears on this linehttps://github.com/MaJerle/lwprintf/blob/f67bf4360f80532ee7f73ae2c002c9245ec384ab/lwprintf/src/lwprintf/lwprintf.c#L791
digits_cnt_decimal_part_useful
is member offloat_num_t
whenLWPRINTF_CFG_SUPPORT_TYPE_ENGINEERING == 1
Is it a bug?