mirror of
https://github.com/meshtastic/firmware.git
synced 2025-06-09 06:32:06 +00:00
mv plugins/ to modules/
This commit is contained in:
parent
9050fe7f90
commit
218a208ab7
@ -196,7 +196,7 @@ build_flags =
|
|||||||
-Isdk-nrfxlib/crypto/nrf_oberon/include -Lsdk-nrfxlib/crypto/nrf_oberon/lib/cortex-m4/hard-float/ -lliboberon_3.0.7
|
-Isdk-nrfxlib/crypto/nrf_oberon/include -Lsdk-nrfxlib/crypto/nrf_oberon/lib/cortex-m4/hard-float/ -lliboberon_3.0.7
|
||||||
;-DCFG_DEBUG=3
|
;-DCFG_DEBUG=3
|
||||||
src_filter =
|
src_filter =
|
||||||
${arduino_base.src_filter} -<esp32/> -<nimble/> -<mesh/wifi/> -<mesh/http/> -<plugins/esp32> -<mqtt/>
|
${arduino_base.src_filter} -<esp32/> -<nimble/> -<mesh/wifi/> -<mesh/http/> -<modules/esp32> -<mqtt/>
|
||||||
lib_ignore =
|
lib_ignore =
|
||||||
BluetoothOTA
|
BluetoothOTA
|
||||||
; monitor_port = /dev/ttyACM1
|
; monitor_port = /dev/ttyACM1
|
||||||
|
@ -32,7 +32,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
#include "main.h"
|
#include "main.h"
|
||||||
#include "mesh-pb-constants.h"
|
#include "mesh-pb-constants.h"
|
||||||
#include "mesh/Channels.h"
|
#include "mesh/Channels.h"
|
||||||
#include "plugins/TextMessagePlugin.h"
|
#include "modules/TextMessagePlugin.h"
|
||||||
#include "sleep.h"
|
#include "sleep.h"
|
||||||
#include "target_specific.h"
|
#include "target_specific.h"
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
#include "concurrency/Periodic.h"
|
#include "concurrency/Periodic.h"
|
||||||
#include "graphics/Screen.h"
|
#include "graphics/Screen.h"
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
#include "plugins/Plugins.h"
|
#include "modules/Plugins.h"
|
||||||
#include "sleep.h"
|
#include "sleep.h"
|
||||||
#include "target_specific.h"
|
#include "target_specific.h"
|
||||||
#include <OneButton.h>
|
#include <OneButton.h>
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#include "Channels.h"
|
#include "Channels.h"
|
||||||
#include "MeshService.h"
|
#include "MeshService.h"
|
||||||
#include "NodeDB.h"
|
#include "NodeDB.h"
|
||||||
#include "plugins/RoutingPlugin.h"
|
#include "modules/RoutingPlugin.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
std::vector<MeshPlugin *> *MeshPlugin::plugins;
|
std::vector<MeshPlugin *> *MeshPlugin::plugins;
|
||||||
|
@ -12,8 +12,8 @@
|
|||||||
#include "RTC.h"
|
#include "RTC.h"
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
#include "mesh-pb-constants.h"
|
#include "mesh-pb-constants.h"
|
||||||
#include "plugins/NodeInfoPlugin.h"
|
#include "modules/NodeInfoPlugin.h"
|
||||||
#include "plugins/PositionPlugin.h"
|
#include "modules/PositionPlugin.h"
|
||||||
#include "power.h"
|
#include "power.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
#ifndef NO_ESP32
|
#ifndef NO_ESP32
|
||||||
#include "mesh/http/WiFiAPClient.h"
|
#include "mesh/http/WiFiAPClient.h"
|
||||||
#include "plugins/esp32/StoreForwardPlugin.h"
|
#include "modules/esp32/StoreForwardPlugin.h"
|
||||||
#include <Preferences.h>
|
#include <Preferences.h>
|
||||||
#include <nvs_flash.h>
|
#include <nvs_flash.h>
|
||||||
#endif
|
#endif
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
#include "RTC.h"
|
#include "RTC.h"
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
#include "mesh-pb-constants.h"
|
#include "mesh-pb-constants.h"
|
||||||
#include "plugins/RoutingPlugin.h"
|
#include "modules/RoutingPlugin.h"
|
||||||
|
|
||||||
#if defined(HAS_WIFI) || defined(PORTDUINO)
|
#if defined(HAS_WIFI) || defined(PORTDUINO)
|
||||||
#include "mqtt/MQTT.h"
|
#include "mqtt/MQTT.h"
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
Documentation:
|
Documentation:
|
||||||
https://github.com/meshtastic/Meshtastic-device/blob/master/docs/software/plugins/ExternalNotificationPlugin.md
|
https://github.com/meshtastic/Meshtastic-device/blob/master/docs/software/modules/ExternalNotificationPlugin.md
|
||||||
|
|
||||||
This plugin supports:
|
This plugin supports:
|
||||||
https://github.com/meshtastic/Meshtastic-device/issues/654
|
https://github.com/meshtastic/Meshtastic-device/issues/654
|
@ -1,22 +1,22 @@
|
|||||||
#include "configuration.h"
|
#include "configuration.h"
|
||||||
#include "input/InputBroker.h"
|
#include "input/InputBroker.h"
|
||||||
#include "input/RotaryEncoderInterruptImpl1.h"
|
#include "input/RotaryEncoderInterruptImpl1.h"
|
||||||
#include "plugins/AdminPlugin.h"
|
#include "modules/AdminPlugin.h"
|
||||||
#include "plugins/CannedMessagePlugin.h"
|
#include "modules/CannedMessagePlugin.h"
|
||||||
#include "plugins/ExternalNotificationPlugin.h"
|
#include "modules/ExternalNotificationPlugin.h"
|
||||||
#include "plugins/NodeInfoPlugin.h"
|
#include "modules/NodeInfoPlugin.h"
|
||||||
#include "plugins/PositionPlugin.h"
|
#include "modules/PositionPlugin.h"
|
||||||
#include "plugins/RemoteHardwarePlugin.h"
|
#include "modules/RemoteHardwarePlugin.h"
|
||||||
#include "plugins/ReplyPlugin.h"
|
#include "modules/ReplyPlugin.h"
|
||||||
#include "plugins/RoutingPlugin.h"
|
#include "modules/RoutingPlugin.h"
|
||||||
#include "plugins/TextMessagePlugin.h"
|
#include "modules/TextMessagePlugin.h"
|
||||||
#ifndef PORTDUINO
|
#ifndef PORTDUINO
|
||||||
#include "plugins/Telemetry/Telemetry.h"
|
#include "modules/Telemetry/Telemetry.h"
|
||||||
#endif
|
#endif
|
||||||
#ifndef NO_ESP32
|
#ifndef NO_ESP32
|
||||||
#include "plugins/esp32/RangeTestPlugin.h"
|
#include "modules/esp32/RangeTestPlugin.h"
|
||||||
#include "plugins/esp32/SerialPlugin.h"
|
#include "modules/esp32/SerialPlugin.h"
|
||||||
#include "plugins/esp32/StoreForwardPlugin.h"
|
#include "modules/esp32/StoreForwardPlugin.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
@ -7,7 +7,7 @@
|
|||||||
#include "configuration.h"
|
#include "configuration.h"
|
||||||
#include "mesh-pb-constants.h"
|
#include "mesh-pb-constants.h"
|
||||||
#include "mesh/generated/storeforward.pb.h"
|
#include "mesh/generated/storeforward.pb.h"
|
||||||
#include "plugins/PluginDev.h"
|
#include "modules/PluginDev.h"
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
#include <map>
|
#include <map>
|
@ -7,8 +7,8 @@ src_filter =
|
|||||||
-<nimble/>
|
-<nimble/>
|
||||||
-<nrf52/>
|
-<nrf52/>
|
||||||
-<mesh/http/>
|
-<mesh/http/>
|
||||||
-<plugins/esp32>
|
-<modules/esp32>
|
||||||
-<plugins/Telemetry>
|
-<modules/Telemetry>
|
||||||
+<../variants/portduino>
|
+<../variants/portduino>
|
||||||
build_flags = ${arduino_base.build_flags} -O0 -I variants/portduino
|
build_flags = ${arduino_base.build_flags} -O0 -I variants/portduino
|
||||||
framework = arduino
|
framework = arduino
|
||||||
@ -26,8 +26,8 @@ src_filter =
|
|||||||
-<nimble/>
|
-<nimble/>
|
||||||
-<nrf52/>
|
-<nrf52/>
|
||||||
-<mesh/http/>
|
-<mesh/http/>
|
||||||
-<plugins/esp32>
|
-<modules/esp32>
|
||||||
-<plugins/Telemetry>
|
-<modules/Telemetry>
|
||||||
+<../variants/portduino>
|
+<../variants/portduino>
|
||||||
build_flags = ${arduino_base.build_flags} -O0 -lgpiod -I variants/portduino
|
build_flags = ${arduino_base.build_flags} -O0 -lgpiod -I variants/portduino
|
||||||
framework = arduino
|
framework = arduino
|
||||||
|
Loading…
Reference in New Issue
Block a user