mirror of
https://github.com/meshtastic/firmware.git
synced 2025-06-17 02:22:05 +00:00
Update Plugins.cpp
This commit is contained in:
parent
25072f0637
commit
a4fd74b58e
@ -1,12 +1,15 @@
|
|||||||
#include "plugins/ExternalNotificationPlugin.h"
|
#include "plugins/ExternalNotificationPlugin.h"
|
||||||
#include "plugins/NodeInfoPlugin.h"
|
#include "plugins/NodeInfoPlugin.h"
|
||||||
#include "plugins/PositionPlugin.h"
|
#include "plugins/PositionPlugin.h"
|
||||||
#include "plugins/RangeTestPlugin.h"
|
|
||||||
#include "plugins/RemoteHardwarePlugin.h"
|
#include "plugins/RemoteHardwarePlugin.h"
|
||||||
#include "plugins/ReplyPlugin.h"
|
#include "plugins/ReplyPlugin.h"
|
||||||
|
#include "plugins/TextMessagePlugin.h"
|
||||||
|
|
||||||
|
#ifndef NO_ESP32
|
||||||
|
#include "plugins/RangeTestPlugin.h"
|
||||||
#include "plugins/SerialPlugin.h"
|
#include "plugins/SerialPlugin.h"
|
||||||
#include "plugins/StoreForwardPlugin.h"
|
#include "plugins/StoreForwardPlugin.h"
|
||||||
#include "plugins/TextMessagePlugin.h"
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create plugin instances here. If you are adding a new plugin, you must 'new' it here (or somewhere else)
|
* Create plugin instances here. If you are adding a new plugin, you must 'new' it here (or somewhere else)
|
||||||
@ -32,10 +35,10 @@ void setupPlugins()
|
|||||||
new SerialPlugin();
|
new SerialPlugin();
|
||||||
new ExternalNotificationPlugin();
|
new ExternalNotificationPlugin();
|
||||||
|
|
||||||
//rangeTestPlugin = new RangeTestPlugin();
|
// rangeTestPlugin = new RangeTestPlugin();
|
||||||
storeForwardPlugin = new StoreForwardPlugin();
|
storeForwardPlugin = new StoreForwardPlugin();
|
||||||
|
|
||||||
new RangeTestPlugin();
|
new RangeTestPlugin();
|
||||||
//new StoreForwardPlugin();
|
// new StoreForwardPlugin();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user