2024-12-10 10:14:52 -05:00
|
|
|
; The Portduino based 'native' environment. Currently supported on Linux targets with real LoRa hardware (or simulated).
|
2022-09-12 14:02:21 +02:00
|
|
|
[portduino_base]
|
2025-03-20 14:47:39 +01:00
|
|
|
platform = https://github.com/meshtastic/platform-native.git#df71ed0040e9aad767a002829330965b78fc452a
|
2022-11-15 07:59:01 +01:00
|
|
|
framework = arduino
|
2023-05-10 11:01:59 +02:00
|
|
|
|
2022-09-12 14:02:21 +02:00
|
|
|
build_src_filter =
|
|
|
|
|
${env.build_src_filter}
|
|
|
|
|
-<platform/esp32/>
|
|
|
|
|
-<nimble/>
|
|
|
|
|
-<platform/nrf52/>
|
|
|
|
|
-<platform/stm32wl/>
|
2024-09-21 14:50:19 +02:00
|
|
|
-<platform/rp2xx0>
|
2023-12-02 21:47:52 +01:00
|
|
|
-<mesh/wifi/>
|
2022-10-22 16:42:36 +02:00
|
|
|
-<mesh/http/>
|
Native Webserver (#3343)
* Added WebServer/WebServices for Native Linux Meshtastic and web gui
* Fix bug in login functionality
* Added customized config of portdunio.ini with LovyannGFX from marelab repro
* Compile Problem resolved with developer version of LovyanGFX.git
* Compile against dev version
* Fixes to fit into main branch
* Update variant.h, main.cpp, .gitignore, WebServer.cpp, esp32s2.ini, WebServer.h, ContentHandler.cpp, rp2040.ini, nrf52.ini, ContentHelper.cpp, Dockerfile, ContentHandler.h, esp32.ini, stm32wl5e.ini
* Added linux pi std /usr/include dir
* Adding /usr/innclude for Linux compile against native libs that are not hadled by platformio
* Review log level changes & translation
* Update Dockerfile
* Fix Typo & VFS ref. Part1
* Fix Typo & VFS ref.
* Dev Version for ulfius web lib
* Update platformio.ini
* Free VFS path string
* Remove unintended changes
* More unintentional changes
* Make the HTTP server optional on native
* Tune-up for Native web defaults
* Don't modify build system yet
* Remove more unneeded changes
---------
Co-authored-by: marc hammermann <marchammermann@googlemail.com>
Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
Co-authored-by: Thomas Göttgens <tgoettgens@gmail.com>
2024-03-06 16:23:04 -06:00
|
|
|
+<mesh/raspihttp/>
|
2022-10-22 16:42:36 +02:00
|
|
|
-<mesh/eth/>
|
2022-09-12 14:02:21 +02:00
|
|
|
-<modules/esp32>
|
2023-02-11 10:08:25 +01:00
|
|
|
-<modules/Telemetry/EnvironmentTelemetry.cpp>
|
|
|
|
|
-<modules/Telemetry/AirQualityTelemetry.cpp>
|
|
|
|
|
-<modules/Telemetry/Sensor>
|
2022-09-12 14:02:21 +02:00
|
|
|
+<../variants/portduino>
|
2023-05-10 11:01:59 +02:00
|
|
|
|
2022-09-12 14:02:21 +02:00
|
|
|
lib_deps =
|
|
|
|
|
${env.lib_deps}
|
|
|
|
|
${networking_base.lib_deps}
|
2024-11-11 16:05:48 +01:00
|
|
|
${radiolib_base.lib_deps}
|
2022-10-04 08:40:39 +02:00
|
|
|
rweather/Crypto@^0.4.0
|
2025-01-12 15:16:26 +08:00
|
|
|
lovyan03/LovyanGFX@^1.2.0
|
2024-12-25 16:47:00 -06:00
|
|
|
https://github.com/pine64/libch341-spi-userspace#a9b17e3452f7fb747000d9b4ad4409155b39f6ef
|
2023-05-10 11:01:59 +02:00
|
|
|
|
|
|
|
|
build_flags =
|
|
|
|
|
${arduino_base.build_flags}
|
|
|
|
|
-fPIC
|
2023-11-30 11:26:48 +01:00
|
|
|
-Isrc/platform/portduino
|
2024-01-12 02:00:31 -06:00
|
|
|
-DRADIOLIB_EEPROM_UNSUPPORTED
|
|
|
|
|
-DPORTDUINO_LINUX_HARDWARE
|
2025-03-20 14:47:39 +01:00
|
|
|
-DHAS_UDP_MULTICAST
|
2024-12-21 18:13:03 +01:00
|
|
|
-lpthread
|
2024-11-07 08:23:08 -05:00
|
|
|
-lstdc++fs
|
2024-01-12 02:00:31 -06:00
|
|
|
-lbluetooth
|
|
|
|
|
-lgpiod
|
2024-12-21 18:13:03 +01:00
|
|
|
-lyaml-cpp
|
2024-12-22 22:53:54 -06:00
|
|
|
-li2c
|
2025-03-20 14:47:39 +01:00
|
|
|
-luv
|
2025-01-12 15:16:26 +08:00
|
|
|
-std=c++17
|