aboutsummaryrefslogtreecommitdiffstats
path: root/docs/getting_started_make_guide.md
diff options
context:
space:
mode:
authorarlenk <33534303+arlenk@users.noreply.github.com>2019-12-06 03:42:33 -0500
committerfauxpark <fauxpark@gmail.com>2019-12-06 19:42:33 +1100
commit380e05ad6e1a64d635d723523b7d46ab32423b1c (patch)
treeb8fb3e4a88453ae97f4f2aa7ed64752f995d5519 /docs/getting_started_make_guide.md
parentde4eb79c6ad386ad7f7de4fa842a06c5028a8c6c (diff)
downloadfirmware-380e05ad6e1a64d635d723523b7d46ab32423b1c.tar.gz
firmware-380e05ad6e1a64d635d723523b7d46ab32423b1c.tar.bz2
firmware-380e05ad6e1a64d635d723523b7d46ab32423b1c.zip
Update getting_started_make_guide.md (#7538)
* Update getting_started_make_guide.md clarifying that NO_PRINT and USER_PRINT should not be used at the same time. * Update docs/getting_started_make_guide.md Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com>
Diffstat (limited to 'docs/getting_started_make_guide.md')
-rw-r--r--docs/getting_started_make_guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/getting_started_make_guide.md b/docs/getting_started_make_guide.md
index d2596b2e2..bf8d472d0 100644
--- a/docs/getting_started_make_guide.md
+++ b/docs/getting_started_make_guide.md
@@ -59,7 +59,7 @@ To disable debug messages (*dprint*) and reduce the .hex file size, include `#de
To disable print messages (*print*, *xprintf*) and user print messages (*uprint*) and reduce the .hex file size, include `#define NO_PRINT` in your `config.h` file.
-To disable print messages (*print*, *xprintf*) and **KEEP** user print messages (*uprint*), include `#define USER_PRINT` in your `config.h` file.
+To disable print messages (*print*, *xprintf*) and **KEEP** user print messages (*uprint*), include `#define USER_PRINT` in your `config.h` file (do not also include `#define NO_PRINT` in this case).
To see the text, open `hid_listen` and enjoy looking at your printed messages.