Skip to content

Commit adb71e1

Browse files
committed
Merge branch 'feature/nano_libc_support_printf_float' into 'master'
newlib: nano mode libc supports print float type data See merge request sdk/ESP8266_RTOS_SDK!1056
2 parents fadbd26 + ef8be5b commit adb71e1

File tree

7 files changed

+35
-68
lines changed

7 files changed

+35
-68
lines changed

components/cjson/CMakeLists.txt

-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,3 @@ set(COMPONENT_ADD_INCLUDEDIRS cJSON)
44
set(COMPONENT_REQUIRES newlib)
55

66
register_component()
7-
8-
if(CONFIG_NEWLIB_LIBRARY_LEVEL_NORMAL)
9-
target_compile_definitions(${COMPONENT_LIB} PRIVATE -DCJSON_SPRINTF_FLOAT=1)
10-
endif()

components/cjson/cJSON/cJSON.c

-54
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,6 @@
5656
#pragma GCC visibility pop
5757
#endif
5858

59-
#ifndef CJSON_SPRINTF_FLOAT
60-
#define CJSON_SPRINTF_FLOAT 0
61-
#endif
62-
63-
#if !CJSON_SPRINTF_FLOAT
64-
#include <assert.h>
65-
#endif
66-
6759
#include "cJSON.h"
6860

6961
/* define our own boolean type */
@@ -501,7 +493,6 @@ static cJSON_bool print_number(const cJSON * const item, printbuffer * const out
501493
}
502494
else
503495
{
504-
#if CJSON_SPRINTF_FLOAT
505496
double test;
506497

507498
/* Try 15 decimal places of precision to avoid nonsignificant nonzero digits */
@@ -513,51 +504,6 @@ static cJSON_bool print_number(const cJSON * const item, printbuffer * const out
513504
/* If not, print with 17 decimal places of precision */
514505
length = sprintf((char*)number_buffer, "%1.17g", d);
515506
}
516-
#else
517-
long long d64 = (long long)d;
518-
long d32 = (long)d;
519-
520-
/**
521-
* Check if 32-bit type data is overflow.
522-
*/
523-
assert(d32 == d64 && "Library newlib of nano mode does not support double or long-long format, please enable newlib normal mode.");
524-
525-
length = sprintf((char*)number_buffer, "%ld", d32);
526-
527-
if ((double)d32 != d) {
528-
size_t precision = 14;
529-
unsigned char *pbuf = number_buffer;
530-
531-
if (d < 0.0) {
532-
d = (double)d32 - d + 0.00000000000001;
533-
} else {
534-
d = d - (double)d32;
535-
}
536-
537-
pbuf = &number_buffer[length];
538-
*pbuf++ = '.';
539-
length++;
540-
541-
while (d > 0.0 && precision--) {
542-
d *= 10.0;
543-
unsigned char tmp = (unsigned char)d;
544-
545-
*pbuf++ = tmp + '0';
546-
length++;
547-
548-
d -= (double)tmp;
549-
}
550-
551-
pbuf = &number_buffer[length - 1];
552-
553-
while (*pbuf == '0') {
554-
pbuf--;
555-
length--;
556-
}
557-
558-
*++pbuf = 0;
559-
}
560-
#endif
561507
}
562508

563509
/* sprintf failed or buffer overrun occured */

components/cjson/component.mk

-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,3 @@
44
COMPONENT_ADD_INCLUDEDIRS += cJSON
55

66
COMPONENT_SRCDIRS := cJSON
7-
8-
ifdef CONFIG_NEWLIB_LIBRARY_LEVEL_NORMAL
9-
CFLAGS += -DCJSON_SPRINTF_FLOAT=1
10-
endif

components/newlib/CMakeLists.txt

+8-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@ set(COMPONENT_SRCDIRS newlib/port)
22
set(COMPONENT_ADD_INCLUDEDIRS newlib/include newlib/port/include)
33

44

5-
if(CONFIG_NEWLIB_NANO_FORMAT)
5+
if(CONFIG_NEWLIB_LIBRARY_LEVEL_NANO)
66
set(LIBC c_nano)
7-
else()
7+
elseif(CONFIG_NEWLIB_LIBRARY_LEVEL_NORMAL)
88
set(LIBC c)
9+
elseif(CONFIG_NEWLIB_LIBRARY_LEVEL_FLOAT_NANO)
10+
set(LIBC c_fnano)
911
endif()
1012

1113
set(LIBM m)
@@ -14,6 +16,10 @@ set(COMPONENT_PRIV_REQUIRES "vfs" "lwip") # for sys/ioctl.h
1416

1517
register_component()
1618

19+
if(CONFIG_NEWLIB_LIBRARY_LEVEL_FLOAT_NANO)
20+
target_link_libraries(${COMPONENT_LIB} PUBLIC "-u _printf_float" "-u _scanf_float")
21+
endif()
22+
1723
target_compile_definitions(${COMPONENT_LIB} PUBLIC
1824
-D_CLOCKS_PER_SEC_=CONFIG_FREERTOS_HZ -D_POSIX_THREADS=1 -D_UNIX98_THREAD_MUTEX_ATTRIBUTES=1
1925
)

components/newlib/Kconfig

+18-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ config NEWLIB_ENABLE
1111

1212
choice NEWLIB_LIBRARY_LEVEL
1313
prompt "newlib level"
14-
default NEWLIB_LIBRARY_LEVEL_NANO
14+
default NEWLIB_LIBRARY_LEVEL_FLOAT_NANO
1515
depends on NEWLIB_ENABLE
1616
help
1717
Choose newlib library level.
@@ -26,15 +26,29 @@ config NEWLIB_LIBRARY_LEVEL_NANO
2626
bool "nano"
2727
help
2828
The newlib library which has been compiled with so-called "nano"
29+
formatting option. This option doesn't support 64-bit integer formats, C99
30+
features and float formats, such as positional arguments.
31+
32+
For more details about "nano" formatting option, please see newlib readme file,
33+
search for '--enable-newlib-nano-formatted-io':
34+
https://sourceware.org/newlib/README
35+
36+
If you do not need 64-bit integer formatting support, C99 features and float,
37+
select this option.
38+
39+
config NEWLIB_LIBRARY_LEVEL_FLOAT_NANO
40+
bool "float nano"
41+
help
42+
The newlib library which has been compiled with so-called "float nano"
2943
formatting option. This option doesn't support 64-bit integer formats and C99
30-
features, such as positional arguments.
44+
features, but support float formats, such as positional arguments.
3145

3246
For more details about "nano" formatting option, please see newlib readme file,
3347
search for '--enable-newlib-nano-formatted-io':
3448
https://sourceware.org/newlib/README
3549

36-
If you do not need 64-bit integer formatting support or C99 features, select this
37-
option.
50+
If you do not need 64-bit integer formatting support and C99 features, but need float formats,
51+
select this option.
3852

3953
endchoice
4054

components/newlib/component.mk

+9
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,22 @@ ifdef CONFIG_NEWLIB_LIBRARY_LEVEL_NANO
1616
LIBC_PATH := $(COMPONENT_PATH)/newlib/lib/libc_nano.a
1717
LIBM_PATH := $(COMPONENT_PATH)/newlib/lib/libm.a
1818
ADD_NEW_NEWLIB := 1
19+
else
20+
ifdef CONFIG_NEWLIB_LIBRARY_LEVEL_FLOAT_NANO
21+
LIBC_PATH := $(COMPONENT_PATH)/newlib/lib/libc_fnano.a
22+
LIBM_PATH := $(COMPONENT_PATH)/newlib/lib/libm.a
23+
ADD_NEW_NEWLIB := 1
24+
endif
1925
endif
2026
endif
2127

2228
ifeq ($(ADD_NEW_NEWLIB),1)
2329
COMPONENT_ADD_INCLUDEDIRS += newlib/include newlib/port/include
2430
COMPONENT_SRCDIRS += newlib/port
2531
COMPONENT_ADD_LDFLAGS := $(LIBC_PATH) $(LIBM_PATH) -lnewlib
32+
ifdef CONFIG_NEWLIB_LIBRARY_LEVEL_FLOAT_NANO
33+
COMPONENT_ADD_LDFLAGS := $(COMPONENT_ADD_LDFLAGS) -u _printf_float -u _scanf_float
34+
endif
2635
COMPONENT_ADD_LINKER_DEPS := $(LIBC_PATH) $(LIBM_PATH)
2736
endif
2837

4.91 MB
Binary file not shown.

0 commit comments

Comments
 (0)