aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Paland <marco@paland.com>2018-11-04 12:59:42 +0100
committerMarco Paland <marco@paland.com>2018-11-04 12:59:42 +0100
commit29d136d88dd47c27c7fd901ce660b2b5ea99ee87 (patch)
tree2e84a2bdeecd049252f4e988272d9027dc3f24ee
parentcdba96d82c0ed3a20a8239f94e3e7f57560ff2a2 (diff)
downloadprintf-29d136d88dd47c27c7fd901ce660b2b5ea99ee87.tar.gz
printf-29d136d88dd47c27c7fd901ce660b2b5ea99ee87.tar.bz2
printf-29d136d88dd47c27c7fd901ce660b2b5ea99ee87.zip
chore(readme): update readme
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 0bd9009..84a645a 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ Primarily designed for usage in embedded systems, where printf is not available
Using the standard libc printf may pull **a lot** of unwanted library stuff and can bloat code size about 20k or is not 100% thread safe. In this cases the following implementation can be used.
Absolutely **NO dependencies** are required, *printf.c* brings all necessary routines, even its own fast `ftoa` (float), `ntoa` (decimal) conversion.
-If memory footprint is really a critical issue, floating point and 'long long' support and can be turned off via the `PRINTF_SUPPORT_FLOAT` and `PRINTF_SUPPORT_LONG_LONG` compiler switches.
+If memory footprint is really a critical issue, floating point and 'long long' support and can be turned off via the `PRINTF_DISABLE_SUPPORT_FLOAT` and `PRINTF_DISABLE_SUPPORT_LONG_LONG` compiler switches.
When using printf (instead of sprintf/snprintf) you have to provide your own `_putchar()` low level function as console/serial output.