From 31d0662e10a3b4e70487cd8b7c4563a1336794ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Grome=C5=A1?= Date: Tue, 16 Jan 2024 14:23:59 +0100 Subject: [PATCH] Updated Debug mode (markdown) --- Debug-mode.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Debug-mode.md b/Debug-mode.md index 036b146..bfde409 100644 --- a/Debug-mode.md +++ b/Debug-mode.md @@ -5,8 +5,8 @@ When something isn't working as expected, it might be useful to take a peek "und To enable debug, you can go to the [BuildOptUser.h](https://github.com/jgromes/RadioLib/blob/master/src/BuildOptUser.h) file, and uncomment either one or both of these lines: ```c++ -//#define RADIOLIB_DEBUG -//#define RADIOLIB_VERBOSE +//#define RADIOLIB_DEBUG (1) +//#define RADIOLIB_VERBOSE (1) ``` The default debug port is set to `Serial`, on most Arduino boards, this should correspond to the Serial port connected to USB. If you want to use a different port, simply change the value of `RADIOLIB_DEBUG_PORT` macro to e.g. `Serial2`, or whichever Serial port you want to use. `SoftwareSerial` ports are supported as well.