Skip to content
Merged
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
6 changes: 4 additions & 2 deletions platform/source/minimal-printf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,16 @@ Floating point limitations:

To replace the standard implementation of the printf functions with the ones in this library:

Modify your application configuration file to override the parameter `target.printf` with the value `minimal-printf` as shown below:
Modify your application configuration file to override the parameter `target.printf_lib` with the value `minimal-printf` as shown below:

```json
{
"target_overrides": {
"*": {
"target.printf": "minimal-printf",
"target.printf_lib": "minimal-printf"
}
}
}
```


Expand Down