You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"help": "Maximum number of decimals to be printed",
@@ -51,7 +51,7 @@ Minimal printf is configured by the following parameters defined in `platform/mb
51
51
}
52
52
```
53
53
54
-
By default, 64 bit integers, floating point and FILE stream printing are enabled.
54
+
By default, 64 bit integers support is enabled.
55
55
56
56
If your target does not require some options then you can override the default configuration in your application `mbed_app.json` and achieve further memory optimisation (see next section for size comparison numbers).
57
57
@@ -87,33 +87,30 @@ https://github.com/ARMmbed/mbed-os-example-blinky application compiled with the
87
87
88
88
Blinky application size on K64F/GCC_ARM
89
89
90
-
|| File stream | Floating point | 64 bit integers | Flash | RAM |
91
-
| - | - | - | - | - | - |
92
-
| mbed-printf |||| 30,944 | 12,096 |
93
-
| mbed-printf ||| X | 31,084 | 12,096 |
94
-
| mbed-printf || X | X | 33,824 | 12,096 |
95
-
| mbed-printf | X | X | X | 34,304 | 12,096 |
96
-
| std printf | X | X | X | 54,158 | 12,112 |
90
+
|| Floating point | 64 bit integers | Flash | RAM |
91
+
| - | - | - | - | - |
92
+
| mbed-printf ||| 32,972 | 11,608 |
93
+
| mbed-printf || X | 33,116 | 11,608 |
94
+
| mbed-printf | X | X | 35,856 | 11,608 |
95
+
| std printf | X | X | 55,766 | 12,104 |
97
96
98
97
Blinky application size on K64F/ARMC6
99
98
100
-
|| File stream | Floating point | 64 bit integers | Flash | RAM |
101
-
| - | - | - | - | - | - |
102
-
| mbed-printf |||| 31,543 | xxxxx |
103
-
| mbed-printf ||| X | 31,691 | xxxxx |
104
-
| mbed-printf || X | X | 34,515 | xxxxx |
105
-
| mbed-printf | X | X | X | 34,647 | xxxxx |
106
-
| std printf | X | X | X | 37,458 | xxxxx |
99
+
|| Floating point | 64 bit integers | Flash | RAM |
100
+
| - | - | - | - | - |
101
+
| mbed-printf ||| 33,585 | xxxxx |
102
+
| mbed-printf || X | 33,679 | xxxxx |
103
+
| mbed-printf | X | X | 36,525 | xxxxx |
104
+
| std printf | X | X | 39,128 | xxxxx |
107
105
108
106
Blinky application size on K64F/IAR
109
107
110
-
|| File stream | Floating point | 64 bit integers | Flash | RAM |
111
-
| - | - | - | - | - | - |
112
-
| mbed-printf |||| 28,713 | 8,546 |
113
-
| mbed-printf ||| X | 28,853 | 8,546 |
114
-
| mbed-printf || X | X | 30,661 | 8,546 |
115
-
| mbed-printf | X | X | X | 32,047 | 8,594 |
116
-
| std printf | X | X | X | 35,055 | 8,462 |
108
+
|| Floating point | 64 bit integers | Flash | RAM |
0 commit comments