Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions platform/mbed_lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,18 @@
"minimal-printf-set-floating-point-max-decimals": {
"help": "Maximum number of decimals to be printed when using minimal printf library",
"value": 6
},
"microlib-replace-64bit-multiply": {
"help": "Replace microlib 64x64->64 multiplication routine with faster version from standard ARM library. Greatly increases performance, and saves ROM size.",
"value": true
},
"microlib-replace-32bit-divide": {
"help": "Replace microlib 32/32->32 division routines with faster version from standard ARM library. Greatly increases performance, at the cost of size. Turning this off may cause interrupt latency problems due to 32-bit divisions in interrupt routines.",
"value": true
},
"microlib-replace-64bit-divide": {
"help": "Replace microlib 64/64->64 division routines with faster version from standard ARM library. Greatly increases performance, at the cost of size. Turning this off may cause interrupt latency problems due to 64-bit divisions in interrupt routines.",
"value": true
}
},
"target_overrides": {
Expand Down
Loading