2022-09-12 12:02:21 +00:00
|
|
|
[nrf52_base]
|
|
|
|
; Instead of the standard nordicnrf52 platform, we use our fork which has our added variant files
|
2023-08-06 15:06:08 +00:00
|
|
|
platform = platformio/nordicnrf52@^10.1.0
|
2022-09-12 12:02:21 +00:00
|
|
|
extends = arduino_base
|
2023-05-08 12:03:03 +00:00
|
|
|
|
2022-09-12 12:02:21 +00:00
|
|
|
build_type = debug ; I'm debugging with ICE a lot now
|
|
|
|
build_flags =
|
2023-08-02 15:08:59 +00:00
|
|
|
${arduino_base.build_flags}
|
|
|
|
-DSERIAL_BUFFER_SIZE=1024
|
|
|
|
-Wno-unused-variable
|
2022-09-12 12:02:21 +00:00
|
|
|
-Isrc/platform/nrf52
|
2023-05-08 12:03:03 +00:00
|
|
|
|
2022-09-12 12:02:21 +00:00
|
|
|
build_src_filter =
|
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
|
|
|
${arduino_base.build_src_filter} -<platform/esp32/> -<platform/stm32wl> -<nimble/> -<mesh/wifi/> -<mesh/api/> -<mesh/http/> -<modules/esp32> -<platform/rp2040> -<mesh/eth/> -<mesh/raspihttp>
|
2023-05-08 12:03:03 +00:00
|
|
|
|
|
|
|
lib_deps=
|
|
|
|
${arduino_base.lib_deps}
|
|
|
|
|
2022-09-12 12:02:21 +00:00
|
|
|
lib_ignore =
|
2023-06-27 12:08:32 +00:00
|
|
|
BluetoothOTA
|