From 27f74382aab3a77dd5150a6f60510b5e92c77ccc Mon Sep 17 00:00:00 2001 From: Charles Crossan Date: Sun, 21 Feb 2021 11:09:58 -0500 Subject: [PATCH] Fix CI build for non-esp32 devices --- src/plugins/Plugins.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/Plugins.cpp b/src/plugins/Plugins.cpp index 233c5f376..cfcc21d54 100644 --- a/src/plugins/Plugins.cpp +++ b/src/plugins/Plugins.cpp @@ -20,7 +20,6 @@ void setupPlugins() nodeInfoPlugin = new NodeInfoPlugin(); positionPlugin = new PositionPlugin(); textMessagePlugin = new TextMessagePlugin(); - environmentalMeasurementPlugin = new EnvironmentalMeasurementPlugin(); // 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. @@ -42,5 +41,6 @@ void setupPlugins() new RangeTestPlugin(); // new StoreForwardPlugin(); + new EnvironmentalMeasurementPlugin(); #endif } \ No newline at end of file