From dbf0569e29bbe3ed088f5f9f16b4d7f4f4b17581 Mon Sep 17 00:00:00 2001 From: Jm Date: Thu, 14 Jan 2021 22:36:51 -0800 Subject: [PATCH] Update comments for serial pins recommended by @ryguy --- src/plugins/SerialPlugin.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/plugins/SerialPlugin.cpp b/src/plugins/SerialPlugin.cpp index cc355c06..fa32ceb6 100644 --- a/src/plugins/SerialPlugin.cpp +++ b/src/plugins/SerialPlugin.cpp @@ -27,6 +27,9 @@ 1) Enable the plugin by setting SERIALPLUGIN_ENABLED to 1. 2) Set the pins (RXD2 / TXD2) for your preferred RX and TX GPIO pins. + On tbeam, recommend to use: + #define RXD2 35 + #define TXD2 15 3) Set SERIALPLUGIN_TIMEOUT to the amount of time to wait before we consider your packet as "done". 4) (Optional) In SerialPlugin.h set the port to PortNum_TEXT_MESSAGE_APP if you want to @@ -45,6 +48,7 @@ KNOWN PROBLEMS * Until the plugin is initilized by the startup sequence, the TX pin is in a floating state. Device connected to that pin may see this as "noise". + * Will not work on NRF and the Linux device targets. */