mirror of
https://github.com/meshtastic/firmware.git
synced 2025-05-02 20:13:55 +00:00
SerialPlugin - Exclude working on non esp32 platforms.
This commit is contained in:
parent
4ec8986934
commit
bd85736226
@ -37,6 +37,7 @@
|
|||||||
to your device.
|
to your device.
|
||||||
|
|
||||||
TODO (in this order):
|
TODO (in this order):
|
||||||
|
* Add check for esp32 and only build code sections for esp32.
|
||||||
* Once protobufs regenerated with the new port, update SerialPlugin.h
|
* Once protobufs regenerated with the new port, update SerialPlugin.h
|
||||||
* Ensure this works on a tbeam
|
* Ensure this works on a tbeam
|
||||||
* Define a verbose RX mode to report on mesh and packet infomration.
|
* Define a verbose RX mode to report on mesh and packet infomration.
|
||||||
@ -45,6 +46,7 @@
|
|||||||
KNOWN PROBLEMS
|
KNOWN PROBLEMS
|
||||||
* Until the plugin is initilized by the startup sequence, the TX pin is in a floating
|
* 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".
|
state. Device connected to that pin may see this as "noise".
|
||||||
|
* This will not work on the NRF or Linux target.
|
||||||
|
|
||||||
|
|
||||||
*/
|
*/
|
||||||
@ -55,7 +57,7 @@
|
|||||||
#define SERIALPLUGIN_STRING_MAX Constants_DATA_PAYLOAD_LEN
|
#define SERIALPLUGIN_STRING_MAX Constants_DATA_PAYLOAD_LEN
|
||||||
#define SERIALPLUGIN_TIMEOUT 250
|
#define SERIALPLUGIN_TIMEOUT 250
|
||||||
#define SERIALPLUGIN_BAUD 38400
|
#define SERIALPLUGIN_BAUD 38400
|
||||||
#define SERIALPLUGIN_ENABLED 1
|
#define SERIALPLUGIN_ENABLED 0
|
||||||
#define SERIALPLUGIN_ECHO 0
|
#define SERIALPLUGIN_ECHO 0
|
||||||
#define SERIALPLUGIN_ACK 0
|
#define SERIALPLUGIN_ACK 0
|
||||||
|
|
||||||
@ -68,6 +70,7 @@ char serialStringChar[Constants_DATA_PAYLOAD_LEN];
|
|||||||
|
|
||||||
int32_t SerialPlugin::runOnce()
|
int32_t SerialPlugin::runOnce()
|
||||||
{
|
{
|
||||||
|
#ifdef NO_ESP32
|
||||||
|
|
||||||
#if SERIALPLUGIN_ENABLED == 1
|
#if SERIALPLUGIN_ENABLED == 1
|
||||||
|
|
||||||
@ -103,6 +106,8 @@ int32_t SerialPlugin::runOnce()
|
|||||||
|
|
||||||
return (INT32_MAX);
|
return (INT32_MAX);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
MeshPacket *SerialPluginRadio::allocReply()
|
MeshPacket *SerialPluginRadio::allocReply()
|
||||||
@ -129,6 +134,11 @@ void SerialPluginRadio::sendPayload(NodeNum dest, bool wantReplies)
|
|||||||
|
|
||||||
bool SerialPluginRadio::handleReceived(const MeshPacket &mp)
|
bool SerialPluginRadio::handleReceived(const MeshPacket &mp)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
#ifdef NO_ESP32
|
||||||
|
|
||||||
|
#if SERIALPLUGIN_ENABLED == 1
|
||||||
|
|
||||||
auto &p = mp.decoded.data;
|
auto &p = mp.decoded.data;
|
||||||
// DEBUG_MSG("Received text msg self=0x%0x, from=0x%0x, to=0x%0x, id=%d, msg=%.*s\n", nodeDB.getNodeNum(),
|
// DEBUG_MSG("Received text msg self=0x%0x, from=0x%0x, to=0x%0x, id=%d, msg=%.*s\n", nodeDB.getNodeNum(),
|
||||||
// mp.from, mp.to, mp.id, p.payload.size, p.payload.bytes);
|
// mp.from, mp.to, mp.id, p.payload.size, p.payload.bytes);
|
||||||
@ -157,5 +167,12 @@ bool SerialPluginRadio::handleReceived(const MeshPacket &mp)
|
|||||||
Serial2.printf("%s", p.payload.bytes);
|
Serial2.printf("%s", p.payload.bytes);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#else
|
||||||
|
DEBUG_MSG("Serial Plugin Disabled\n");
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
return true; // Let others look at this message also if they want
|
return true; // Let others look at this message also if they want
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user