├── .gitignore ├── .gitmodules ├── .vscode ├── launch.json └── settings.json ├── CMakeLists.txt ├── LICENSE ├── README.md ├── components └── nimble_central_utils │ ├── CMakeLists.txt │ ├── esp_central.h │ ├── misc.c │ └── peer.c ├── debug.log ├── lv_conf_edgetx.h ├── main ├── CMakeLists.txt └── espidf5_edgetx_main.cpp ├── partitions.csv ├── sdkconfig ├── sdkconfig.ci ├── system_diagram.png └── system_diagram.puml /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | dependencies.lock 3 | build 4 | sdkconfig.old -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/espidf5_edgetx/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/espidf5_edgetx/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/espidf5_edgetx/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/espidf5_edgetx/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/espidf5_edgetx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/espidf5_edgetx/HEAD/README.md -------------------------------------------------------------------------------- /components/nimble_central_utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/espidf5_edgetx/HEAD/components/nimble_central_utils/CMakeLists.txt -------------------------------------------------------------------------------- /components/nimble_central_utils/esp_central.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/espidf5_edgetx/HEAD/components/nimble_central_utils/esp_central.h -------------------------------------------------------------------------------- /components/nimble_central_utils/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/espidf5_edgetx/HEAD/components/nimble_central_utils/misc.c -------------------------------------------------------------------------------- /components/nimble_central_utils/peer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/espidf5_edgetx/HEAD/components/nimble_central_utils/peer.c -------------------------------------------------------------------------------- /debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/espidf5_edgetx/HEAD/debug.log -------------------------------------------------------------------------------- /lv_conf_edgetx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/espidf5_edgetx/HEAD/lv_conf_edgetx.h -------------------------------------------------------------------------------- /main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/espidf5_edgetx/HEAD/main/CMakeLists.txt -------------------------------------------------------------------------------- /main/espidf5_edgetx_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/espidf5_edgetx/HEAD/main/espidf5_edgetx_main.cpp -------------------------------------------------------------------------------- /partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/espidf5_edgetx/HEAD/partitions.csv -------------------------------------------------------------------------------- /sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/espidf5_edgetx/HEAD/sdkconfig -------------------------------------------------------------------------------- /sdkconfig.ci: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/espidf5_edgetx/HEAD/system_diagram.png -------------------------------------------------------------------------------- /system_diagram.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JunOllyLi/espidf5_edgetx/HEAD/system_diagram.puml --------------------------------------------------------------------------------