mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-05 04:10:07 +00:00
53 lines
1.6 KiB
C++
53 lines
1.6 KiB
C++
#include "configuration.h"
|
|
#include "plugins/ExternalNotificationPlugin.h"
|
|
#include "plugins/NodeInfoPlugin.h"
|
|
#include "plugins/PositionPlugin.h"
|
|
#include "plugins/RemoteHardwarePlugin.h"
|
|
#include "plugins/ReplyPlugin.h"
|
|
#include "plugins/TextMessagePlugin.h"
|
|
#include "plugins/TextMessagePlugin.h"
|
|
#include "plugins/RoutingPlugin.h"
|
|
#include "plugins/AdminPlugin.h"
|
|
#ifndef NO_ESP32
|
|
#include "plugins/esp32/SerialPlugin.h"
|
|
#include "plugins/esp32/EnvironmentalMeasurementPlugin.h"
|
|
#include "plugins/esp32/RangeTestPlugin.h"
|
|
#include "plugins/esp32/StoreForwardPlugin.h"
|
|
#endif
|
|
|
|
/**
|
|
* Create plugin instances here. If you are adding a new plugin, you must 'new' it here (or somewhere else)
|
|
*/
|
|
void setupPlugins()
|
|
{
|
|
adminPlugin = new AdminPlugin();
|
|
nodeInfoPlugin = new NodeInfoPlugin();
|
|
positionPlugin = new PositionPlugin();
|
|
textMessagePlugin = new TextMessagePlugin();
|
|
|
|
// Note: if the rest of meshtastic doesn't need to explicitly use your plugin, you do not need to assign the instance
|
|
// to a global variable.
|
|
|
|
new RemoteHardwarePlugin();
|
|
new ReplyPlugin();
|
|
|
|
#ifndef NO_ESP32
|
|
// Only run on an esp32 based device.
|
|
|
|
/*
|
|
Maintained by MC Hamster (Jm Casler) jm@casler.org
|
|
*/
|
|
new SerialPlugin();
|
|
new ExternalNotificationPlugin();
|
|
|
|
// rangeTestPlugin = new RangeTestPlugin();
|
|
storeForwardPlugin = new StoreForwardPlugin();
|
|
|
|
new RangeTestPlugin();
|
|
// new StoreForwardPlugin();
|
|
new EnvironmentalMeasurementPlugin();
|
|
#endif
|
|
|
|
// NOTE! This plugin must be added LAST because it likes to check for replies from other plugins and avoid sending extra acks
|
|
routingPlugin = new RoutingPlugin();
|
|
} |