Rename plugins in /esp32

This commit is contained in:
Jm Casler 2022-02-27 01:27:17 -08:00
parent 031b3665f8
commit a83cfffd3a
8 changed files with 8 additions and 8 deletions

View File

@ -19,7 +19,7 @@
#ifndef NO_ESP32 #ifndef NO_ESP32
#include "mesh/http/WiFiAPClient.h" #include "mesh/http/WiFiAPClient.h"
#include "modules/esp32/StoreForwardPlugin.h" #include "modules/esp32/StoreForwardModule.h"
#include <Preferences.h> #include <Preferences.h>
#include <nvs_flash.h> #include <nvs_flash.h>
#endif #endif

View File

@ -14,9 +14,9 @@
#include "modules/Telemetry/Telemetry.h" #include "modules/Telemetry/Telemetry.h"
#endif #endif
#ifndef NO_ESP32 #ifndef NO_ESP32
#include "modules/esp32/RangeTestPlugin.h" #include "modules/esp32/RangeTestModule.h"
#include "modules/esp32/SerialPlugin.h" #include "modules/esp32/SerialModule.h"
#include "modules/esp32/StoreForwardPlugin.h" #include "modules/esp32/StoreForwardModule.h"
#endif #endif
/** /**

View File

@ -1,4 +1,4 @@
#include "RangeTestPlugin.h" #include "RangeTestModule.h"
#include "MeshService.h" #include "MeshService.h"
#include "NodeDB.h" #include "NodeDB.h"
#include "PowerFSM.h" #include "PowerFSM.h"

View File

@ -1,5 +1,5 @@
#include "configuration.h" #include "configuration.h"
#include "SerialPlugin.h" #include "SerialModule.h"
#include "MeshService.h" #include "MeshService.h"
#include "NodeDB.h" #include "NodeDB.h"
#include "RTC.h" #include "RTC.h"
@ -27,7 +27,7 @@
TXD 15 TXD 15
3) Set serialmodule_timeout to the amount of time to wait before we consider 3) Set serialmodule_timeout to the amount of time to wait before we consider
your packet as "done". your packet as "done".
4) (Optional) In SerialPlugin.h set the port to PortNum_TEXT_MESSAGE_APP if you want to 4) (Optional) In SerialModule.h set the port to PortNum_TEXT_MESSAGE_APP if you want to
send messages to/from the general text message channel. send messages to/from the general text message channel.
5) Connect to your device over the serial interface at 38400 8N1. 5) Connect to your device over the serial interface at 38400 8N1.
6) Send a packet up to 240 bytes in length. This will get relayed over the mesh network. 6) Send a packet up to 240 bytes in length. This will get relayed over the mesh network.

View File

@ -1,4 +1,4 @@
#include "StoreForwardPlugin.h" #include "StoreForwardModule.h"
#include "MeshService.h" #include "MeshService.h"
#include "NodeDB.h" #include "NodeDB.h"
#include "RTC.h" #include "RTC.h"