2024-12-10 15:14:52 +00:00
|
|
|
; The Portduino based 'native' environment. Currently supported on Linux targets with real LoRa hardware (or simulated).
|
2022-09-12 12:02:21 +00:00
|
|
|
[portduino_base]
|
2024-12-23 04:53:54 +00:00
|
|
|
platform = https://github.com/meshtastic/platform-native.git#562d189828f09fbf4c4093b3c0104bae9d8e9ff9
|
2022-11-15 06:59:01 +00:00
|
|
|
framework = arduino
|
2023-05-10 09:01:59 +00:00
|
|
|
|
2022-09-12 12:02:21 +00:00
|
|
|
build_src_filter =
|
|
|
|
${env.build_src_filter}
|
|
|
|
-<platform/esp32/>
|
|
|
|
-<nimble/>
|
|
|
|
-<platform/nrf52/>
|
|
|
|
-<platform/stm32wl/>
|
2024-09-21 12:50:19 +00:00
|
|
|
-<platform/rp2xx0>
|
2023-12-02 20:47:52 +00:00
|
|
|
-<mesh/wifi/>
|
2022-10-22 14:42:36 +00: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 22:23:04 +00:00
|
|
|
+<mesh/raspihttp/>
|
2022-10-22 14:42:36 +00:00
|
|
|
-<mesh/eth/>
|
2022-09-12 12:02:21 +00:00
|
|
|
-<modules/esp32>
|
2023-02-11 09:08:25 +00:00
|
|
|
-<modules/Telemetry/EnvironmentTelemetry.cpp>
|
|
|
|
-<modules/Telemetry/AirQualityTelemetry.cpp>
|
|
|
|
-<modules/Telemetry/Sensor>
|
2022-09-12 12:02:21 +00:00
|
|
|
+<../variants/portduino>
|
2023-05-10 09:01:59 +00:00
|
|
|
|
2022-09-12 12:02:21 +00:00
|
|
|
lib_deps =
|
|
|
|
${env.lib_deps}
|
|
|
|
${networking_base.lib_deps}
|
2024-11-11 15:05:48 +00:00
|
|
|
${radiolib_base.lib_deps}
|
2022-10-04 06:40:39 +00:00
|
|
|
rweather/Crypto@^0.4.0
|
2024-10-28 08:30:39 +00:00
|
|
|
https://github.com/lovyan03/LovyanGFX.git#1401c28a47646fe00538d487adcb2eb3c72de805
|
2024-12-25 22:47:00 +00:00
|
|
|
https://github.com/pine64/libch341-spi-userspace#a9b17e3452f7fb747000d9b4ad4409155b39f6ef
|
2023-05-10 09:01:59 +00:00
|
|
|
|
|
|
|
build_flags =
|
|
|
|
${arduino_base.build_flags}
|
|
|
|
-fPIC
|
2023-11-30 10:26:48 +00:00
|
|
|
-Isrc/platform/portduino
|
2024-01-12 08:00:31 +00:00
|
|
|
-DRADIOLIB_EEPROM_UNSUPPORTED
|
|
|
|
-DPORTDUINO_LINUX_HARDWARE
|
2024-12-21 17:13:03 +00:00
|
|
|
-lpthread
|
2024-11-07 13:23:08 +00:00
|
|
|
-lstdc++fs
|
2024-01-12 08:00:31 +00:00
|
|
|
-lbluetooth
|
|
|
|
-lgpiod
|
2024-12-21 17:13:03 +00:00
|
|
|
-lyaml-cpp
|
2024-12-23 04:53:54 +00:00
|
|
|
-li2c
|
2024-12-21 17:13:03 +00:00
|
|
|
-std=c++17
|