Fix CI build for non-esp32 devices

pull/646/head
Charles Crossan 2021-02-21 11:09:58 -05:00
rodzic 77961e8e93
commit 27f74382aa
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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
}