Merge pull request #12297 from evedon/ed-update-mprintf-doc

Corrected minimal-printf README
pull/12307/head
Anna Bridge 2020-01-23 12:12:37 +00:00 committed by GitHub
commit 706625a982
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -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"
}
}
}
```