espp 1.1.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- espp-1.1.5/.clang-format +117 -0
- espp-1.1.5/.devcontainer/Dockerfile +13 -0
- espp-1.1.5/.devcontainer/devcontainer.json +22 -0
- espp-1.1.5/.gitattributes +2 -0
- espp-1.1.5/.gitignore +50 -0
- espp-1.1.5/.gitmodules +39 -0
- espp-1.1.5/.pre-commit-config.yaml +17 -0
- espp-1.1.5/.vscode/c_cpp_properties.json +23 -0
- espp-1.1.5/.vscode/launch.json +15 -0
- espp-1.1.5/.vscode/settings.json +10 -0
- espp-1.1.5/LICENSE +21 -0
- espp-1.1.5/PKG-INFO +89 -0
- espp-1.1.5/README.md +182 -0
- espp-1.1.5/components/adc/CMakeLists.txt +3 -0
- espp-1.1.5/components/adc/README.md +30 -0
- espp-1.1.5/components/adc/idf_component.yml +21 -0
- espp-1.1.5/components/adc/include/adc_types.hpp +67 -0
- espp-1.1.5/components/adc/include/continuous_adc.hpp +420 -0
- espp-1.1.5/components/adc/include/oneshot_adc.hpp +218 -0
- espp-1.1.5/components/adrc/CMakeLists.txt +4 -0
- espp-1.1.5/components/adrc/README.md +21 -0
- espp-1.1.5/components/adrc/idf_component.yml +20 -0
- espp-1.1.5/components/adrc/include/adrc.hpp +833 -0
- espp-1.1.5/components/adrc/src/adrc.cpp +1 -0
- espp-1.1.5/components/ads1x15/CMakeLists.txt +5 -0
- espp-1.1.5/components/ads1x15/README.md +15 -0
- espp-1.1.5/components/ads1x15/idf_component.yml +21 -0
- espp-1.1.5/components/ads1x15/include/ads1x15.hpp +170 -0
- espp-1.1.5/components/ads1x15/src/ads1x15.cpp +118 -0
- espp-1.1.5/components/ads7138/CMakeLists.txt +4 -0
- espp-1.1.5/components/ads7138/README.md +18 -0
- espp-1.1.5/components/ads7138/idf_component.yml +21 -0
- espp-1.1.5/components/ads7138/include/ads7138.hpp +1690 -0
- espp-1.1.5/components/adxl345/CMakeLists.txt +4 -0
- espp-1.1.5/components/adxl345/README.md +15 -0
- espp-1.1.5/components/adxl345/idf_component.yml +21 -0
- espp-1.1.5/components/adxl345/include/adxl345.hpp +868 -0
- espp-1.1.5/components/as5600/CMakeLists.txt +4 -0
- espp-1.1.5/components/as5600/Kconfig +21 -0
- espp-1.1.5/components/as5600/README.md +30 -0
- espp-1.1.5/components/as5600/idf_component.yml +23 -0
- espp-1.1.5/components/as5600/include/as5600.hpp +454 -0
- espp-1.1.5/components/at581x/CMakeLists.txt +4 -0
- espp-1.1.5/components/at581x/README.md +60 -0
- espp-1.1.5/components/at581x/idf_component.yml +23 -0
- espp-1.1.5/components/at581x/include/at581x.hpp +333 -0
- espp-1.1.5/components/aw9523/CMakeLists.txt +4 -0
- espp-1.1.5/components/aw9523/README.md +14 -0
- espp-1.1.5/components/aw9523/idf_component.yml +20 -0
- espp-1.1.5/components/aw9523/include/aw9523.hpp +515 -0
- espp-1.1.5/components/base_component/CMakeLists.txt +3 -0
- espp-1.1.5/components/base_component/README.md +10 -0
- espp-1.1.5/components/base_component/idf_component.yml +15 -0
- espp-1.1.5/components/base_component/include/base_component.hpp +71 -0
- espp-1.1.5/components/base_peripheral/CMakeLists.txt +3 -0
- espp-1.1.5/components/base_peripheral/README.md +14 -0
- espp-1.1.5/components/base_peripheral/idf_component.yml +18 -0
- espp-1.1.5/components/base_peripheral/include/base_peripheral.hpp +833 -0
- espp-1.1.5/components/bdc_driver/CMakeLists.txt +4 -0
- espp-1.1.5/components/bdc_driver/README.md +23 -0
- espp-1.1.5/components/bdc_driver/idf_component.yml +21 -0
- espp-1.1.5/components/bdc_driver/include/bdc_driver.hpp +145 -0
- espp-1.1.5/components/bdc_driver/src/bdc_driver.cpp +342 -0
- espp-1.1.5/components/bldc_current_sense/CMakeLists.txt +4 -0
- espp-1.1.5/components/bldc_current_sense/README.md +41 -0
- espp-1.1.5/components/bldc_current_sense/idf_component.yml +25 -0
- espp-1.1.5/components/bldc_current_sense/include/current_sense.hpp +211 -0
- espp-1.1.5/components/bldc_driver/CMakeLists.txt +4 -0
- espp-1.1.5/components/bldc_driver/README.md +10 -0
- espp-1.1.5/components/bldc_driver/idf_component.yml +18 -0
- espp-1.1.5/components/bldc_driver/include/bldc_driver.hpp +533 -0
- espp-1.1.5/components/bldc_driver/src/bldc_driver.cpp +3 -0
- espp-1.1.5/components/bldc_haptics/CMakeLists.txt +4 -0
- espp-1.1.5/components/bldc_haptics/README.md +32 -0
- espp-1.1.5/components/bldc_haptics/idf_component.yml +27 -0
- espp-1.1.5/components/bldc_haptics/include/bldc_haptics.hpp +429 -0
- espp-1.1.5/components/bldc_haptics/include/detent_config.hpp +179 -0
- espp-1.1.5/components/bldc_haptics/include/haptic_config.hpp +12 -0
- espp-1.1.5/components/bldc_motor/CMakeLists.txt +4 -0
- espp-1.1.5/components/bldc_motor/README.md +29 -0
- espp-1.1.5/components/bldc_motor/idf_component.yml +24 -0
- espp-1.1.5/components/bldc_motor/include/bldc_motor.hpp +1032 -0
- espp-1.1.5/components/bldc_types/CMakeLists.txt +4 -0
- espp-1.1.5/components/bldc_types/idf_component.yml +19 -0
- espp-1.1.5/components/bldc_types/include/bldc_concepts.hpp +73 -0
- espp-1.1.5/components/bldc_types/include/bldc_types.hpp +109 -0
- espp-1.1.5/components/bldc_types/include/foc_utils.hpp +54 -0
- espp-1.1.5/components/bldc_types/include/sensor_direction.hpp +36 -0
- espp-1.1.5/components/ble_gatt_server/CMakeLists.txt +5 -0
- espp-1.1.5/components/ble_gatt_server/README.md +57 -0
- espp-1.1.5/components/ble_gatt_server/idf_component.yml +24 -0
- espp-1.1.5/components/ble_gatt_server/include/battery_service.hpp +132 -0
- espp-1.1.5/components/ble_gatt_server/include/ble_appearances.hpp +43 -0
- espp-1.1.5/components/ble_gatt_server/include/ble_gatt_server.hpp +865 -0
- espp-1.1.5/components/ble_gatt_server/include/ble_gatt_server_callbacks.hpp +48 -0
- espp-1.1.5/components/ble_gatt_server/include/ble_gatt_server_menu.hpp +401 -0
- espp-1.1.5/components/ble_gatt_server/include/device_info_service.hpp +306 -0
- espp-1.1.5/components/ble_gatt_server/include/generic_access_service.hpp +160 -0
- espp-1.1.5/components/ble_gatt_server/src/ble_gatt_server.cpp +148 -0
- espp-1.1.5/components/ble_gatt_server/src/ble_gatt_server_callbacks.cpp +98 -0
- espp-1.1.5/components/ble_gatt_server/src/ble_gatt_server_ext_adv.cpp +99 -0
- espp-1.1.5/components/bm8563/CMakeLists.txt +4 -0
- espp-1.1.5/components/bm8563/README.md +11 -0
- espp-1.1.5/components/bm8563/idf_component.yml +20 -0
- espp-1.1.5/components/bm8563/include/bm8563.hpp +316 -0
- espp-1.1.5/components/bmi270/CMakeLists.txt +5 -0
- espp-1.1.5/components/bmi270/README.md +221 -0
- espp-1.1.5/components/bmi270/idf_component.yml +20 -0
- espp-1.1.5/components/bmi270/include/bmi270.hpp +1362 -0
- espp-1.1.5/components/bmi270/include/bmi270_detail.hpp +363 -0
- espp-1.1.5/components/bmi270/src/bmi270.cpp +4576 -0
- espp-1.1.5/components/button/CMakeLists.txt +3 -0
- espp-1.1.5/components/button/README.md +22 -0
- espp-1.1.5/components/button/idf_component.yml +20 -0
- espp-1.1.5/components/button/include/button.hpp +97 -0
- espp-1.1.5/components/byte90/CMakeLists.txt +7 -0
- espp-1.1.5/components/byte90/Kconfig +23 -0
- espp-1.1.5/components/byte90/README.md +16 -0
- espp-1.1.5/components/byte90/idf_component.yml +29 -0
- espp-1.1.5/components/byte90/include/byte90.hpp +356 -0
- espp-1.1.5/components/byte90/src/accelerometer.cpp +66 -0
- espp-1.1.5/components/byte90/src/button.cpp +29 -0
- espp-1.1.5/components/byte90/src/byte90.cpp +6 -0
- espp-1.1.5/components/byte90/src/display.cpp +246 -0
- espp-1.1.5/components/cdr/CMakeLists.txt +3 -0
- espp-1.1.5/components/cdr/README.md +34 -0
- espp-1.1.5/components/cdr/idf_component.yml +21 -0
- espp-1.1.5/components/cdr/include/cdr.hpp +547 -0
- espp-1.1.5/components/cdr/src/cdr.cpp +1 -0
- espp-1.1.5/components/chsc6x/CMakeLists.txt +4 -0
- espp-1.1.5/components/chsc6x/README.md +13 -0
- espp-1.1.5/components/chsc6x/idf_component.yml +22 -0
- espp-1.1.5/components/chsc6x/include/chsc6x.hpp +86 -0
- espp-1.1.5/components/cli/CMakeLists.txt +14 -0
- espp-1.1.5/components/cli/README.md +48 -0
- espp-1.1.5/components/cli/detail/cli/.gitignore +75 -0
- espp-1.1.5/components/cli/detail/cli/CHANGELOG.md +104 -0
- espp-1.1.5/components/cli/detail/cli/CMakeLists.txt +158 -0
- espp-1.1.5/components/cli/detail/cli/CODE_OF_CONDUCT.md +9 -0
- espp-1.1.5/components/cli/detail/cli/CONTRIBUTING.md +41 -0
- espp-1.1.5/components/cli/detail/cli/LICENSE +23 -0
- espp-1.1.5/components/cli/detail/cli/README.md +550 -0
- espp-1.1.5/components/cli/detail/cli/cli.pc.in +8 -0
- espp-1.1.5/components/cli/detail/cli/cliConfig.cmake.in +13 -0
- espp-1.1.5/components/cli/detail/cli/examples/CMakeLists.txt +61 -0
- espp-1.1.5/components/cli/detail/cli/examples/Makefile.boostasio +41 -0
- espp-1.1.5/components/cli/detail/cli/examples/Makefile.noasio +41 -0
- espp-1.1.5/components/cli/detail/cli/examples/Makefile.standaloneasio +41 -0
- espp-1.1.5/components/cli/detail/cli/examples/asyncsession.cpp +135 -0
- espp-1.1.5/components/cli/detail/cli/examples/boostasio_nonowner_iocontext.cpp +142 -0
- espp-1.1.5/components/cli/detail/cli/examples/boostasio_nonowner_iocontext_vsprj/boostasio_nonowner_iocontext.vcxproj +151 -0
- espp-1.1.5/components/cli/detail/cli/examples/complete.cpp +298 -0
- espp-1.1.5/components/cli/detail/cli/examples/complete_vsprj/common.props +16 -0
- espp-1.1.5/components/cli/detail/cli/examples/complete_vsprj/complete.vcxproj +129 -0
- espp-1.1.5/components/cli/detail/cli/examples/examples.sln +81 -0
- espp-1.1.5/components/cli/detail/cli/examples/filesession.cpp +104 -0
- espp-1.1.5/components/cli/detail/cli/examples/filesession_vsprj/filesession.vcxproj +133 -0
- espp-1.1.5/components/cli/detail/cli/examples/input.txt +3 -0
- espp-1.1.5/components/cli/detail/cli/examples/makefile.boostasio.win +55 -0
- espp-1.1.5/components/cli/detail/cli/examples/makefile.noasio.win +54 -0
- espp-1.1.5/components/cli/detail/cli/examples/makefile.standaloneasio.win +54 -0
- espp-1.1.5/components/cli/detail/cli/examples/pluginmanager.cpp +344 -0
- espp-1.1.5/components/cli/detail/cli/examples/pluginmanager_vsprj/pluginmanager.vcxproj +133 -0
- espp-1.1.5/components/cli/detail/cli/examples/simplelocalsession.cpp +91 -0
- espp-1.1.5/components/cli/detail/cli/examples/simplelocalsession_vsprj/simplelocalsession.vcxproj +133 -0
- espp-1.1.5/components/cli/detail/cli/examples/standaloneasio_nonowner_iocontext.cpp +137 -0
- espp-1.1.5/components/cli/detail/cli/examples/standaloneasio_nonowner_iocontext_vsprj/standaloneasio_nonowner_iocontext.vcxproj +149 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/boostasiocliasyncsession.h +40 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/boostasioremotecli.h +39 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/boostasioscheduler.h +38 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/cli.h +997 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/clifilesession.h +83 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/clilocalsession.h +82 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/colorprofile.h +76 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/boostasiolib.h +49 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/commandprocessor.h +174 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/commonprefix.h +70 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/fromstring.h +272 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/genericasioremotecli.h +593 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/genericasioscheduler.h +113 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/genericcliasyncsession.h +102 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/history.h +213 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/inputdevice.h +74 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/keyboard.h +46 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/linuxkeyboard.h +241 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/newboostasiolib.h +89 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/newstandaloneasiolib.h +89 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/oldboostasiolib.h +82 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/oldstandaloneasiolib.h +85 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/platform.h +44 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/rang.h +303 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/screen.h +46 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/server.h +157 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/split.h +248 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/standaloneasiolib.h +49 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/telnetscreen.h +48 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/terminal.h +220 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/winkeyboard.h +181 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/detail/winscreen.h +62 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/filehistorystorage.h +94 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/historystorage.h +56 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/loopscheduler.h +128 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/scheduler.h +55 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/standaloneasiocliasyncsession.h +40 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/standaloneasioremotecli.h +40 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/standaloneasioscheduler.h +38 -0
- espp-1.1.5/components/cli/detail/cli/include/cli/volatilehistorystorage.h +76 -0
- espp-1.1.5/components/cli/detail/cli/test/CMakeLists.txt +72 -0
- espp-1.1.5/components/cli/detail/cli/test/Makefile +66 -0
- espp-1.1.5/components/cli/detail/cli/test/driver.cpp +33 -0
- espp-1.1.5/components/cli/detail/cli/test/makefile.win +103 -0
- espp-1.1.5/components/cli/detail/cli/test/scheduler_test_templates.h +80 -0
- espp-1.1.5/components/cli/detail/cli/test/test_boostasioscheduler.cpp +63 -0
- espp-1.1.5/components/cli/detail/cli/test/test_cli.cpp +436 -0
- espp-1.1.5/components/cli/detail/cli/test/test_commonprefix.cpp +46 -0
- espp-1.1.5/components/cli/detail/cli/test/test_filehistorystorage.cpp +86 -0
- espp-1.1.5/components/cli/detail/cli/test/test_history.cpp +240 -0
- espp-1.1.5/components/cli/detail/cli/test/test_loopscheduler.cpp +53 -0
- espp-1.1.5/components/cli/detail/cli/test/test_menu.cpp +124 -0
- espp-1.1.5/components/cli/detail/cli/test/test_split.cpp +287 -0
- espp-1.1.5/components/cli/detail/cli/test/test_standaloneasioscheduler.cpp +63 -0
- espp-1.1.5/components/cli/detail/cli/test/test_volatilehistorystorage.cpp +59 -0
- espp-1.1.5/components/cli/idf_component.yml +25 -0
- espp-1.1.5/components/cli/include/cli.hpp +442 -0
- espp-1.1.5/components/cli/include/line_input.hpp +429 -0
- espp-1.1.5/components/cli/src/cli.cpp +4 -0
- espp-1.1.5/components/cobs/CMakeLists.txt +3 -0
- espp-1.1.5/components/cobs/README.md +237 -0
- espp-1.1.5/components/cobs/idf_component.yml +21 -0
- espp-1.1.5/components/cobs/include/cobs.hpp +88 -0
- espp-1.1.5/components/cobs/include/cobs_stream.hpp +133 -0
- espp-1.1.5/components/cobs/src/cobs.cpp +133 -0
- espp-1.1.5/components/cobs/src/cobs_stream.cpp +177 -0
- espp-1.1.5/components/codec/CMakeLists.txt +13 -0
- espp-1.1.5/components/codec/README.md +18 -0
- espp-1.1.5/components/codec/es7210/es7210.cpp +511 -0
- espp-1.1.5/components/codec/es7210/es7210.hpp +262 -0
- espp-1.1.5/components/codec/es8311/es8311.cpp +745 -0
- espp-1.1.5/components/codec/es8311/es8311.hpp +294 -0
- espp-1.1.5/components/codec/es8388/es8388.cpp +510 -0
- espp-1.1.5/components/codec/es8388/es8388.hpp +311 -0
- espp-1.1.5/components/codec/idf_component.yml +18 -0
- espp-1.1.5/components/codec/include/audio_hal.h +138 -0
- espp-1.1.5/components/codec/include/esxxx_common.h +190 -0
- espp-1.1.5/components/color/CMakeLists.txt +4 -0
- espp-1.1.5/components/color/README.md +23 -0
- espp-1.1.5/components/color/idf_component.yml +20 -0
- espp-1.1.5/components/color/include/color.hpp +169 -0
- espp-1.1.5/components/color/include/color_formatters.hpp +50 -0
- espp-1.1.5/components/color/src/color.cpp +151 -0
- espp-1.1.5/components/controller/CMakeLists.txt +4 -0
- espp-1.1.5/components/controller/README.md +19 -0
- espp-1.1.5/components/controller/idf_component.yml +21 -0
- espp-1.1.5/components/controller/include/controller.hpp +326 -0
- espp-1.1.5/components/cst816/CMakeLists.txt +4 -0
- espp-1.1.5/components/cst816/README.md +13 -0
- espp-1.1.5/components/cst816/idf_component.yml +23 -0
- espp-1.1.5/components/cst816/include/cst816.hpp +112 -0
- espp-1.1.5/components/csv/CMakeLists.txt +3 -0
- espp-1.1.5/components/csv/README.md +14 -0
- espp-1.1.5/components/csv/detail/csv2/.clang-format +117 -0
- espp-1.1.5/components/csv/detail/csv2/.gitignore +273 -0
- espp-1.1.5/components/csv/detail/csv2/CMakeLists.txt +89 -0
- espp-1.1.5/components/csv/detail/csv2/CONTRIBUTING.md +7 -0
- espp-1.1.5/components/csv/detail/csv2/LICENSE +21 -0
- espp-1.1.5/components/csv/detail/csv2/LICENSE.mio +21 -0
- espp-1.1.5/components/csv/detail/csv2/README.md +206 -0
- espp-1.1.5/components/csv/detail/csv2/benchmark/csv-game/README.md +40 -0
- espp-1.1.5/components/csv/detail/csv2/benchmark/csv-game/csv_count.cpp +33 -0
- espp-1.1.5/components/csv/detail/csv2/benchmark/csv-game/fieldcount.cpp +24 -0
- espp-1.1.5/components/csv/detail/csv2/benchmark/main.cpp +46 -0
- espp-1.1.5/components/csv/detail/csv2/clang-format.bash +3 -0
- espp-1.1.5/components/csv/detail/csv2/csv2.pc.in +7 -0
- espp-1.1.5/components/csv/detail/csv2/csv2Config.cmake.in +7 -0
- espp-1.1.5/components/csv/detail/csv2/img/logo.png +0 -0
- espp-1.1.5/components/csv/detail/csv2/include/csv2/mio.hpp +1562 -0
- espp-1.1.5/components/csv/detail/csv2/include/csv2/parameters.hpp +50 -0
- espp-1.1.5/components/csv/detail/csv2/include/csv2/reader.hpp +276 -0
- espp-1.1.5/components/csv/detail/csv2/include/csv2/writer.hpp +57 -0
- espp-1.1.5/components/csv/detail/csv2/single_include/csv2/csv2.hpp +1964 -0
- espp-1.1.5/components/csv/detail/csv2/single_include.json +11 -0
- espp-1.1.5/components/csv/detail/csv2/test/CMakeLists.txt +17 -0
- espp-1.1.5/components/csv/detail/csv2/test/doctest.hpp +5941 -0
- espp-1.1.5/components/csv/detail/csv2/test/inputs/empty.csv +0 -0
- espp-1.1.5/components/csv/detail/csv2/test/inputs/empty_lines.csv +8 -0
- espp-1.1.5/components/csv/detail/csv2/test/inputs/missing_columns.csv +3 -0
- espp-1.1.5/components/csv/detail/csv2/test/inputs/test_01.csv +3 -0
- espp-1.1.5/components/csv/detail/csv2/test/inputs/test_02.csv +3 -0
- espp-1.1.5/components/csv/detail/csv2/test/inputs/test_03.csv +2 -0
- espp-1.1.5/components/csv/detail/csv2/test/inputs/test_04.csv +2 -0
- espp-1.1.5/components/csv/detail/csv2/test/inputs/test_05.csv +2 -0
- espp-1.1.5/components/csv/detail/csv2/test/inputs/test_06.csv +1 -0
- espp-1.1.5/components/csv/detail/csv2/test/inputs/test_07.csv +1 -0
- espp-1.1.5/components/csv/detail/csv2/test/inputs/test_08.csv +3 -0
- espp-1.1.5/components/csv/detail/csv2/test/inputs/test_09.csv +3 -0
- espp-1.1.5/components/csv/detail/csv2/test/inputs/test_10.csv +3 -0
- espp-1.1.5/components/csv/detail/csv2/test/inputs/test_11_excel.csv +3 -0
- espp-1.1.5/components/csv/detail/csv2/test/inputs/test_12_unix.csv +3 -0
- espp-1.1.5/components/csv/detail/csv2/test/inputs/test_13.csv +3 -0
- espp-1.1.5/components/csv/detail/csv2/test/inputs/test_14.csv +4 -0
- espp-1.1.5/components/csv/detail/csv2/test/inputs/test_15.csv +6 -0
- espp-1.1.5/components/csv/detail/csv2/test/inputs/too_many_columns.csv +3 -0
- espp-1.1.5/components/csv/detail/csv2/test/main.cpp +387 -0
- espp-1.1.5/components/csv/detail/csv2/utils/amalgamate/CHANGES.md +10 -0
- espp-1.1.5/components/csv/detail/csv2/utils/amalgamate/LICENSE.md +27 -0
- espp-1.1.5/components/csv/detail/csv2/utils/amalgamate/README.md +66 -0
- espp-1.1.5/components/csv/detail/csv2/utils/amalgamate/amalgamate.py +299 -0
- espp-1.1.5/components/csv/detail/csv2/utils/amalgamate/config.json +8 -0
- espp-1.1.5/components/csv/idf_component.yml +18 -0
- espp-1.1.5/components/csv/include/csv.hpp +29 -0
- espp-1.1.5/components/display/CMakeLists.txt +5 -0
- espp-1.1.5/components/display/README.md +7 -0
- espp-1.1.5/components/display/idf_component.yml +22 -0
- espp-1.1.5/components/display/include/display.hpp +479 -0
- espp-1.1.5/components/display/include/lv_conf.h +988 -0
- espp-1.1.5/components/display_drivers/CMakeLists.txt +5 -0
- espp-1.1.5/components/display_drivers/README.md +32 -0
- espp-1.1.5/components/display_drivers/idf_component.yml +27 -0
- espp-1.1.5/components/display_drivers/include/display_drivers.hpp +579 -0
- espp-1.1.5/components/display_drivers/include/ek79007.hpp +93 -0
- espp-1.1.5/components/display_drivers/include/gc9a01.hpp +152 -0
- espp-1.1.5/components/display_drivers/include/ili9341.hpp +97 -0
- espp-1.1.5/components/display_drivers/include/ili9881.hpp +391 -0
- espp-1.1.5/components/display_drivers/include/sh8601.hpp +125 -0
- espp-1.1.5/components/display_drivers/include/spi_panel_io.hpp +115 -0
- espp-1.1.5/components/display_drivers/include/ssd1351.hpp +184 -0
- espp-1.1.5/components/display_drivers/include/st7123.hpp +149 -0
- espp-1.1.5/components/display_drivers/include/st7789.hpp +154 -0
- espp-1.1.5/components/display_drivers/include/st7796.hpp +89 -0
- espp-1.1.5/components/display_drivers/src/spi_panel_io.cpp +195 -0
- espp-1.1.5/components/dns_server/CMakeLists.txt +5 -0
- espp-1.1.5/components/dns_server/README.md +67 -0
- espp-1.1.5/components/dns_server/idf_component.yml +23 -0
- espp-1.1.5/components/dns_server/include/dns_server.hpp +79 -0
- espp-1.1.5/components/dns_server/src/dns_server.cpp +204 -0
- espp-1.1.5/components/drv2605/CMakeLists.txt +4 -0
- espp-1.1.5/components/drv2605/README.md +21 -0
- espp-1.1.5/components/drv2605/idf_component.yml +22 -0
- espp-1.1.5/components/drv2605/include/drv2605.hpp +931 -0
- espp-1.1.5/components/drv2605/include/drv2605_menu.hpp +312 -0
- espp-1.1.5/components/encoder/CMakeLists.txt +3 -0
- espp-1.1.5/components/encoder/README.md +18 -0
- espp-1.1.5/components/encoder/idf_component.yml +22 -0
- espp-1.1.5/components/encoder/include/abi_encoder.hpp +274 -0
- espp-1.1.5/components/encoder/include/encoder_types.hpp +14 -0
- espp-1.1.5/components/esp-box/CMakeLists.txt +6 -0
- espp-1.1.5/components/esp-box/Kconfig +23 -0
- espp-1.1.5/components/esp-box/README.md +17 -0
- espp-1.1.5/components/esp-box/idf_component.yml +34 -0
- espp-1.1.5/components/esp-box/include/esp-box.hpp +562 -0
- espp-1.1.5/components/esp-box/src/audio.cpp +191 -0
- espp-1.1.5/components/esp-box/src/buttons.cpp +49 -0
- espp-1.1.5/components/esp-box/src/esp-box.cpp +56 -0
- espp-1.1.5/components/esp-box/src/imu.cpp +76 -0
- espp-1.1.5/components/esp-box/src/touchpad.cpp +136 -0
- espp-1.1.5/components/esp-box/src/video.cpp +272 -0
- espp-1.1.5/components/esp32-p4-function-ev-board/CMakeLists.txt +24 -0
- espp-1.1.5/components/esp32-p4-function-ev-board/Kconfig +84 -0
- espp-1.1.5/components/esp32-p4-function-ev-board/README.md +124 -0
- espp-1.1.5/components/esp32-p4-function-ev-board/idf_component.yml +31 -0
- espp-1.1.5/components/esp32-p4-function-ev-board/include/esp32-p4-function-ev-board.hpp +582 -0
- espp-1.1.5/components/esp32-p4-function-ev-board/src/audio.cpp +178 -0
- espp-1.1.5/components/esp32-p4-function-ev-board/src/esp32-p4-function-ev-board.cpp +56 -0
- espp-1.1.5/components/esp32-p4-function-ev-board/src/ethernet.cpp +196 -0
- espp-1.1.5/components/esp32-p4-function-ev-board/src/sdcard.cpp +89 -0
- espp-1.1.5/components/esp32-p4-function-ev-board/src/touchpad.cpp +169 -0
- espp-1.1.5/components/esp32-p4-function-ev-board/src/video.cpp +396 -0
- espp-1.1.5/components/esp32-timer-cam/CMakeLists.txt +6 -0
- espp-1.1.5/components/esp32-timer-cam/Kconfig +22 -0
- espp-1.1.5/components/esp32-timer-cam/README.md +16 -0
- espp-1.1.5/components/esp32-timer-cam/idf_component.yml +29 -0
- espp-1.1.5/components/esp32-timer-cam/include/esp32-timer-cam.hpp +275 -0
- espp-1.1.5/components/esp32-timer-cam/src/esp32-timer-cam.cpp +140 -0
- espp-1.1.5/components/event_manager/CMakeLists.txt +4 -0
- espp-1.1.5/components/event_manager/README.md +22 -0
- espp-1.1.5/components/event_manager/idf_component.yml +23 -0
- espp-1.1.5/components/event_manager/include/event_manager.hpp +158 -0
- espp-1.1.5/components/event_manager/include/event_map.hpp +37 -0
- espp-1.1.5/components/event_manager/src/event_manager.cpp +265 -0
- espp-1.1.5/components/expressive_eyes/CMakeLists.txt +5 -0
- espp-1.1.5/components/expressive_eyes/README.md +56 -0
- espp-1.1.5/components/expressive_eyes/idf_component.yml +21 -0
- espp-1.1.5/components/expressive_eyes/include/expressive_eyes.hpp +252 -0
- espp-1.1.5/components/expressive_eyes/src/expressive_eyes.cpp +440 -0
- espp-1.1.5/components/file_system/CMakeLists.txt +4 -0
- espp-1.1.5/components/file_system/Kconfig.projbuild +9 -0
- espp-1.1.5/components/file_system/README.md +20 -0
- espp-1.1.5/components/file_system/idf_component.yml +21 -0
- espp-1.1.5/components/file_system/include/file_system.hpp +303 -0
- espp-1.1.5/components/file_system/src/file_system.cpp +387 -0
- espp-1.1.5/components/filters/CMakeLists.txt +4 -0
- espp-1.1.5/components/filters/README.md +96 -0
- espp-1.1.5/components/filters/idf_component.yml +28 -0
- espp-1.1.5/components/filters/include/biquad_filter.hpp +165 -0
- espp-1.1.5/components/filters/include/biquad_filter_formatters.hpp +29 -0
- espp-1.1.5/components/filters/include/butterworth_filter.hpp +76 -0
- espp-1.1.5/components/filters/include/butterworth_filter_formatters.hpp +24 -0
- espp-1.1.5/components/filters/include/complementary_filter.hpp +78 -0
- espp-1.1.5/components/filters/include/kalman_filter.hpp +161 -0
- espp-1.1.5/components/filters/include/lowpass_filter.hpp +89 -0
- espp-1.1.5/components/filters/include/lowpass_filter_formatters.hpp +16 -0
- espp-1.1.5/components/filters/include/madgwick_filter.hpp +253 -0
- espp-1.1.5/components/filters/include/simple_lowpass_filter.hpp +84 -0
- espp-1.1.5/components/filters/include/simple_lowpass_filter_formatters.hpp +16 -0
- espp-1.1.5/components/filters/include/sos_filter.hpp +57 -0
- espp-1.1.5/components/filters/include/sos_filter_formatters.hpp +24 -0
- espp-1.1.5/components/filters/include/transfer_function.hpp +22 -0
- espp-1.1.5/components/filters/include/transfer_function_formatters.hpp +16 -0
- espp-1.1.5/components/filters/src/lowpass_filter.cpp +64 -0
- espp-1.1.5/components/filters/src/simple_lowpass_filter.cpp +43 -0
- espp-1.1.5/components/format/CMakeLists.txt +3 -0
- espp-1.1.5/components/format/README.md +7 -0
- espp-1.1.5/components/format/detail/fmt/.clang-format +15 -0
- espp-1.1.5/components/format/detail/fmt/.clang-tidy +4 -0
- espp-1.1.5/components/format/detail/fmt/.cmake-format +4 -0
- espp-1.1.5/components/format/detail/fmt/.gitignore +23 -0
- espp-1.1.5/components/format/detail/fmt/CMakeLists.txt +593 -0
- espp-1.1.5/components/format/detail/fmt/CONTRIBUTING.md +20 -0
- espp-1.1.5/components/format/detail/fmt/ChangeLog.md +3299 -0
- espp-1.1.5/components/format/detail/fmt/LICENSE +20 -0
- espp-1.1.5/components/format/detail/fmt/README.md +493 -0
- espp-1.1.5/components/format/detail/fmt/include/fmt/args.h +218 -0
- espp-1.1.5/components/format/detail/fmt/include/fmt/base.h +2944 -0
- espp-1.1.5/components/format/detail/fmt/include/fmt/chrono.h +2244 -0
- espp-1.1.5/components/format/detail/fmt/include/fmt/color.h +637 -0
- espp-1.1.5/components/format/detail/fmt/include/fmt/compile.h +601 -0
- espp-1.1.5/components/format/detail/fmt/include/fmt/core.h +7 -0
- espp-1.1.5/components/format/detail/fmt/include/fmt/fmt-c.h +192 -0
- espp-1.1.5/components/format/detail/fmt/include/fmt/format-inl.h +1974 -0
- espp-1.1.5/components/format/detail/fmt/include/fmt/format.h +4412 -0
- espp-1.1.5/components/format/detail/fmt/include/fmt/os.h +419 -0
- espp-1.1.5/components/format/detail/fmt/include/fmt/ostream.h +167 -0
- espp-1.1.5/components/format/detail/fmt/include/fmt/printf.h +653 -0
- espp-1.1.5/components/format/detail/fmt/include/fmt/ranges.h +863 -0
- espp-1.1.5/components/format/detail/fmt/include/fmt/std.h +809 -0
- espp-1.1.5/components/format/detail/fmt/include/fmt/xchar.h +377 -0
- espp-1.1.5/components/format/detail/fmt/src/fmt-c.cc +42 -0
- espp-1.1.5/components/format/detail/fmt/src/fmt.cc +150 -0
- espp-1.1.5/components/format/detail/fmt/src/format.cc +43 -0
- espp-1.1.5/components/format/detail/fmt/src/os.cc +401 -0
- espp-1.1.5/components/format/detail/fmt/support/Android.mk +15 -0
- espp-1.1.5/components/format/detail/fmt/support/AndroidManifest.xml +2 -0
- espp-1.1.5/components/format/detail/fmt/support/C++.sublime-syntax +2061 -0
- espp-1.1.5/components/format/detail/fmt/support/README +4 -0
- espp-1.1.5/components/format/detail/fmt/support/Vagrantfile +19 -0
- espp-1.1.5/components/format/detail/fmt/support/build.gradle +130 -0
- espp-1.1.5/components/format/detail/fmt/support/check-commits +43 -0
- espp-1.1.5/components/format/detail/fmt/support/cmake/FindSetEnv.cmake +11 -0
- espp-1.1.5/components/format/detail/fmt/support/cmake/JoinPaths.cmake +28 -0
- espp-1.1.5/components/format/detail/fmt/support/cmake/fmt-config.cmake.in +7 -0
- espp-1.1.5/components/format/detail/fmt/support/cmake/fmt.pc.in +11 -0
- espp-1.1.5/components/format/detail/fmt/support/docopt.py +581 -0
- espp-1.1.5/components/format/detail/fmt/support/gradle/wrapper/gradle-wrapper.properties +6 -0
- espp-1.1.5/components/format/detail/fmt/support/gradle.properties +8 -0
- espp-1.1.5/components/format/detail/fmt/support/mkdocs +86 -0
- espp-1.1.5/components/format/detail/fmt/support/mkdocs.yml +48 -0
- espp-1.1.5/components/format/detail/fmt/support/printable.py +201 -0
- espp-1.1.5/components/format/detail/fmt/support/release.py +188 -0
- espp-1.1.5/components/format/idf_component.yml +17 -0
- espp-1.1.5/components/format/include/format.hpp +23 -0
- espp-1.1.5/components/ft5x06/CMakeLists.txt +4 -0
- espp-1.1.5/components/ft5x06/README.md +11 -0
- espp-1.1.5/components/ft5x06/idf_component.yml +22 -0
- espp-1.1.5/components/ft5x06/include/ft5x06.hpp +219 -0
- espp-1.1.5/components/ftp/CMakeLists.txt +3 -0
- espp-1.1.5/components/ftp/README.md +33 -0
- espp-1.1.5/components/ftp/idf_component.yml +27 -0
- espp-1.1.5/components/ftp/include/ftp_client.hpp +296 -0
- espp-1.1.5/components/ftp/include/ftp_client_session.hpp +1067 -0
- espp-1.1.5/components/ftp/include/ftp_server.hpp +165 -0
- espp-1.1.5/components/gt911/CMakeLists.txt +4 -0
- espp-1.1.5/components/gt911/README.md +14 -0
- espp-1.1.5/components/gt911/idf_component.yml +24 -0
- espp-1.1.5/components/gt911/include/gt911.hpp +274 -0
- espp-1.1.5/components/hid-rp/CMakeLists.txt +4 -0
- espp-1.1.5/components/hid-rp/README.md +19 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/.clang-format +38 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/.gitignore +6 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/CMakeLists.txt +60 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/LICENSE +373 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/README.md +147 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/app/keyboard.hpp +140 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/app/mouse.hpp +155 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/app/opaque.hpp +44 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/constants.hpp +195 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/descriptor.hpp +33 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/descriptor_view.hpp +275 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/exception.hpp +311 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/global_items.hpp +127 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/item.hpp +330 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/local_items.hpp +76 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/main_items.hpp +223 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/parser.hpp +394 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/short_item.hpp +116 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/unit.hpp +184 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/report.hpp +120 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/report_array.hpp +61 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/report_bitset.hpp +83 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/report_protocol.hpp +304 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/usage.hpp +96 -0
- espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/sized_unsigned.hpp +58 -0
- espp-1.1.5/components/hid-rp/idf_component.yml +18 -0
- espp-1.1.5/components/hid-rp/include/gamepad_hat.hpp +20 -0
- espp-1.1.5/components/hid-rp/include/gamepad_imu.hpp +42 -0
- espp-1.1.5/components/hid-rp/include/hid/page/arcade.hpp +44 -0
- espp-1.1.5/components/hid-rp/include/hid/page/auxiliary_display.hpp +92 -0
- espp-1.1.5/components/hid-rp/include/hid/page/barcode_scanner.hpp +211 -0
- espp-1.1.5/components/hid-rp/include/hid/page/battery_system.hpp +108 -0
- espp-1.1.5/components/hid-rp/include/hid/page/braille_display.hpp +60 -0
- espp-1.1.5/components/hid-rp/include/hid/page/button.hpp +22 -0
- espp-1.1.5/components/hid-rp/include/hid/page/camera.hpp +19 -0
- espp-1.1.5/components/hid-rp/include/hid/page/consumer.hpp +467 -0
- espp-1.1.5/components/hid-rp/include/hid/page/digitizer.hpp +125 -0
- espp-1.1.5/components/hid-rp/include/hid/page/eye_and_head_trackers.hpp +51 -0
- espp-1.1.5/components/hid-rp/include/hid/page/fido.hpp +20 -0
- espp-1.1.5/components/hid-rp/include/hid/page/game.hpp +46 -0
- espp-1.1.5/components/hid-rp/include/hid/page/generic_desktop.hpp +132 -0
- espp-1.1.5/components/hid-rp/include/hid/page/generic_device.hpp +41 -0
- espp-1.1.5/components/hid-rp/include/hid/page/haptics.hpp +46 -0
- espp-1.1.5/components/hid-rp/include/hid/page/keyboard_keypad.hpp +235 -0
- espp-1.1.5/components/hid-rp/include/hid/page/leds.hpp +113 -0
- espp-1.1.5/components/hid-rp/include/hid/page/lighting_and_illumination.hpp +50 -0
- espp-1.1.5/components/hid-rp/include/hid/page/magnetic_stripe_reader.hpp +27 -0
- espp-1.1.5/components/hid-rp/include/hid/page/medical_instruments.hpp +46 -0
- espp-1.1.5/components/hid-rp/include/hid/page/monitor.hpp +21 -0
- espp-1.1.5/components/hid-rp/include/hid/page/monitor_enumerated.hpp +22 -0
- espp-1.1.5/components/hid-rp/include/hid/page/ordinal.hpp +22 -0
- espp-1.1.5/components/hid-rp/include/hid/page/physical_input_device.hpp +122 -0
- espp-1.1.5/components/hid-rp/include/hid/page/power.hpp +94 -0
- espp-1.1.5/components/hid-rp/include/hid/page/scale.hpp +63 -0
- espp-1.1.5/components/hid-rp/include/hid/page/sensor.hpp +690 -0
- espp-1.1.5/components/hid-rp/include/hid/page/simulation.hpp +68 -0
- espp-1.1.5/components/hid-rp/include/hid/page/soc.hpp +27 -0
- espp-1.1.5/components/hid-rp/include/hid/page/sport.hpp +51 -0
- espp-1.1.5/components/hid-rp/include/hid/page/telephony.hpp +116 -0
- espp-1.1.5/components/hid-rp/include/hid/page/unicode.hpp +22 -0
- espp-1.1.5/components/hid-rp/include/hid/page/vesa_virtual.hpp +62 -0
- espp-1.1.5/components/hid-rp/include/hid/page/vr.hpp +29 -0
- espp-1.1.5/components/hid-rp/include/hid-rp-gamepad-formatters.hpp +45 -0
- espp-1.1.5/components/hid-rp/include/hid-rp-gamepad.hpp +531 -0
- espp-1.1.5/components/hid-rp/include/hid-rp-playstation-formatters.hpp +73 -0
- espp-1.1.5/components/hid-rp/include/hid-rp-playstation.hpp +1370 -0
- espp-1.1.5/components/hid-rp/include/hid-rp-ps4-formatters.hpp +56 -0
- espp-1.1.5/components/hid-rp/include/hid-rp-ps4.hpp +598 -0
- espp-1.1.5/components/hid-rp/include/hid-rp-switch-pro-formatters.hpp +21 -0
- espp-1.1.5/components/hid-rp/include/hid-rp-switch-pro.hpp +780 -0
- espp-1.1.5/components/hid-rp/include/hid-rp-xbox-formatters.hpp +37 -0
- espp-1.1.5/components/hid-rp/include/hid-rp-xbox.hpp +441 -0
- espp-1.1.5/components/hid-rp/include/hid-rp.hpp +41 -0
- espp-1.1.5/components/hid_service/CMakeLists.txt +4 -0
- espp-1.1.5/components/hid_service/README.md +17 -0
- espp-1.1.5/components/hid_service/idf_component.yml +22 -0
- espp-1.1.5/components/hid_service/include/hid_service.hpp +360 -0
- espp-1.1.5/components/i2c/CMakeLists.txt +5 -0
- espp-1.1.5/components/i2c/Kconfig +37 -0
- espp-1.1.5/components/i2c/README.md +46 -0
- espp-1.1.5/components/i2c/idf_component.yml +20 -0
- espp-1.1.5/components/i2c/include/i2c.hpp +913 -0
- espp-1.1.5/components/i2c/include/i2c_format_helpers.hpp +54 -0
- espp-1.1.5/components/i2c/include/i2c_master.hpp +284 -0
- espp-1.1.5/components/i2c/include/i2c_master_device_menu.hpp +180 -0
- espp-1.1.5/components/i2c/include/i2c_master_menu.hpp +217 -0
- espp-1.1.5/components/i2c/include/i2c_menu.hpp +211 -0
- espp-1.1.5/components/i2c/include/i2c_slave.hpp +190 -0
- espp-1.1.5/components/i2c/include/i2c_slave_menu.hpp +114 -0
- espp-1.1.5/components/i2c/src/i2c_master.cpp +356 -0
- espp-1.1.5/components/i2c/src/i2c_slave.cpp +523 -0
- espp-1.1.5/components/icm20948/CMakeLists.txt +5 -0
- espp-1.1.5/components/icm20948/README.md +19 -0
- espp-1.1.5/components/icm20948/idf_component.yml +22 -0
- espp-1.1.5/components/icm20948/include/icm20948.hpp +828 -0
- espp-1.1.5/components/icm20948/include/icm20948_detail.hpp +427 -0
- espp-1.1.5/components/icm20948/src/icm20948.cpp +1072 -0
- espp-1.1.5/components/icm42607/CMakeLists.txt +4 -0
- espp-1.1.5/components/icm42607/README.md +19 -0
- espp-1.1.5/components/icm42607/idf_component.yml +21 -0
- espp-1.1.5/components/icm42607/include/icm42607.hpp +825 -0
- espp-1.1.5/components/icm42607/include/icm42607_detail.hpp +332 -0
- espp-1.1.5/components/ina226/CMakeLists.txt +6 -0
- espp-1.1.5/components/ina226/README.md +14 -0
- espp-1.1.5/components/ina226/idf_component.yml +22 -0
- espp-1.1.5/components/ina226/include/ina226.hpp +318 -0
- espp-1.1.5/components/input_drivers/CMakeLists.txt +3 -0
- espp-1.1.5/components/input_drivers/README.md +42 -0
- espp-1.1.5/components/input_drivers/idf_component.yml +25 -0
- espp-1.1.5/components/input_drivers/include/encoder_input.hpp +131 -0
- espp-1.1.5/components/input_drivers/include/keypad_input.hpp +111 -0
- espp-1.1.5/components/input_drivers/include/pointer_input.hpp +228 -0
- espp-1.1.5/components/input_drivers/include/touchpad_input.hpp +178 -0
- espp-1.1.5/components/interrupt/CMakeLists.txt +4 -0
- espp-1.1.5/components/interrupt/README.md +22 -0
- espp-1.1.5/components/interrupt/idf_component.yml +19 -0
- espp-1.1.5/components/interrupt/include/interrupt.hpp +702 -0
- espp-1.1.5/components/interrupt/src/interrupt.cpp +3 -0
- espp-1.1.5/components/iperf_menu/CMakeLists.txt +3 -0
- espp-1.1.5/components/iperf_menu/README.md +78 -0
- espp-1.1.5/components/iperf_menu/idf_component.yml +25 -0
- espp-1.1.5/components/iperf_menu/include/iperf_menu.hpp +449 -0
- espp-1.1.5/components/joystick/CMakeLists.txt +4 -0
- espp-1.1.5/components/joystick/README.md +15 -0
- espp-1.1.5/components/joystick/idf_component.yml +20 -0
- espp-1.1.5/components/joystick/include/joystick.hpp +236 -0
- espp-1.1.5/components/joystick/include/joystick_formatters.hpp +38 -0
- espp-1.1.5/components/joystick/src/joystick.cpp +99 -0
- espp-1.1.5/components/kts1622/CMakeLists.txt +4 -0
- espp-1.1.5/components/kts1622/README.md +11 -0
- espp-1.1.5/components/kts1622/idf_component.yml +20 -0
- espp-1.1.5/components/kts1622/include/kts1622.hpp +898 -0
- espp-1.1.5/components/led/CMakeLists.txt +4 -0
- espp-1.1.5/components/led/README.md +15 -0
- espp-1.1.5/components/led/idf_component.yml +19 -0
- espp-1.1.5/components/led/include/led.hpp +218 -0
- espp-1.1.5/components/led/src/led.cpp +248 -0
- espp-1.1.5/components/led_strip/CMakeLists.txt +5 -0
- espp-1.1.5/components/led_strip/README.md +25 -0
- espp-1.1.5/components/led_strip/idf_component.yml +20 -0
- espp-1.1.5/components/led_strip/include/led_strip.hpp +418 -0
- espp-1.1.5/components/led_strip/src/led_strip.cpp +4 -0
- espp-1.1.5/components/logger/CMakeLists.txt +12 -0
- espp-1.1.5/components/logger/Kconfig +25 -0
- espp-1.1.5/components/logger/README.md +13 -0
- espp-1.1.5/components/logger/idf_component.yml +18 -0
- espp-1.1.5/components/logger/include/logger.hpp +493 -0
- espp-1.1.5/components/logger/include/logger_formatters.hpp +21 -0
- espp-1.1.5/components/logger/src/logger.cpp +5 -0
- espp-1.1.5/components/lp5817/CMakeLists.txt +4 -0
- espp-1.1.5/components/lp5817/README.md +14 -0
- espp-1.1.5/components/lp5817/idf_component.yml +21 -0
- espp-1.1.5/components/lp5817/include/lp5817.hpp +791 -0
- espp-1.1.5/components/lsm6dso/CMakeLists.txt +5 -0
- espp-1.1.5/components/lsm6dso/README.md +32 -0
- espp-1.1.5/components/lsm6dso/idf_component.yml +21 -0
- espp-1.1.5/components/lsm6dso/include/lsm6dso.hpp +272 -0
- espp-1.1.5/components/lsm6dso/include/lsm6dso_detail.hpp +298 -0
- espp-1.1.5/components/lsm6dso/src/lsm6dso.cpp +469 -0
- espp-1.1.5/components/m5stack-tab5/CMakeLists.txt +6 -0
- espp-1.1.5/components/m5stack-tab5/Kconfig +30 -0
- espp-1.1.5/components/m5stack-tab5/README.md +94 -0
- espp-1.1.5/components/m5stack-tab5/idf_component.yml +34 -0
- espp-1.1.5/components/m5stack-tab5/include/m5stack-tab5.hpp +794 -0
- espp-1.1.5/components/m5stack-tab5/src/audio.cpp +281 -0
- espp-1.1.5/components/m5stack-tab5/src/buttons.cpp +22 -0
- espp-1.1.5/components/m5stack-tab5/src/imu.cpp +54 -0
- espp-1.1.5/components/m5stack-tab5/src/m5stack-tab5.cpp +147 -0
- espp-1.1.5/components/m5stack-tab5/src/power.cpp +132 -0
- espp-1.1.5/components/m5stack-tab5/src/rtc.cpp +136 -0
- espp-1.1.5/components/m5stack-tab5/src/sdcard.cpp +99 -0
- espp-1.1.5/components/m5stack-tab5/src/touchpad.cpp +193 -0
- espp-1.1.5/components/m5stack-tab5/src/video.cpp +472 -0
- espp-1.1.5/components/math/CMakeLists.txt +3 -0
- espp-1.1.5/components/math/README.md +72 -0
- espp-1.1.5/components/math/idf_component.yml +25 -0
- espp-1.1.5/components/math/include/bezier.hpp +109 -0
- espp-1.1.5/components/math/include/fast_math.hpp +199 -0
- espp-1.1.5/components/math/include/gaussian.hpp +125 -0
- espp-1.1.5/components/math/include/range_mapper.hpp +289 -0
- espp-1.1.5/components/math/include/range_mapper_formatters.hpp +24 -0
- espp-1.1.5/components/math/include/vector2d.hpp +356 -0
- espp-1.1.5/components/math/include/vector2d_formatters.hpp +16 -0
- espp-1.1.5/components/matouch-rotary-display/CMakeLists.txt +7 -0
- espp-1.1.5/components/matouch-rotary-display/Kconfig +23 -0
- espp-1.1.5/components/matouch-rotary-display/README.md +18 -0
- espp-1.1.5/components/matouch-rotary-display/idf_component.yml +32 -0
- espp-1.1.5/components/matouch-rotary-display/include/matouch-rotary-display.hpp +365 -0
- espp-1.1.5/components/matouch-rotary-display/src/matouch-rotary-display.cpp +466 -0
- espp-1.1.5/components/max1704x/CMakeLists.txt +4 -0
- espp-1.1.5/components/max1704x/README.md +35 -0
- espp-1.1.5/components/max1704x/idf_component.yml +22 -0
- espp-1.1.5/components/max1704x/include/max1704x.hpp +213 -0
- espp-1.1.5/components/mcp23x17/CMakeLists.txt +4 -0
- espp-1.1.5/components/mcp23x17/README.md +12 -0
- espp-1.1.5/components/mcp23x17/idf_component.yml +21 -0
- espp-1.1.5/components/mcp23x17/include/mcp23x17.hpp +320 -0
- espp-1.1.5/components/monitor/CMakeLists.txt +4 -0
- espp-1.1.5/components/monitor/README.md +30 -0
- espp-1.1.5/components/monitor/idf_component.yml +21 -0
- espp-1.1.5/components/monitor/include/heap_monitor.hpp +141 -0
- espp-1.1.5/components/monitor/include/task_monitor.hpp +265 -0
- espp-1.1.5/components/monitor/src/heap_monitor.cpp +103 -0
- espp-1.1.5/components/motorgo-axis/CMakeLists.txt +6 -0
- espp-1.1.5/components/motorgo-axis/README.md +72 -0
- espp-1.1.5/components/motorgo-axis/idf_component.yml +36 -0
- espp-1.1.5/components/motorgo-axis/include/motorgo-axis.hpp +413 -0
- espp-1.1.5/components/motorgo-axis/src/motorgo-axis.cpp +481 -0
- espp-1.1.5/components/motorgo-mini/CMakeLists.txt +6 -0
- espp-1.1.5/components/motorgo-mini/Kconfig +23 -0
- espp-1.1.5/components/motorgo-mini/README.md +57 -0
- espp-1.1.5/components/motorgo-mini/idf_component.yml +34 -0
- espp-1.1.5/components/motorgo-mini/include/motorgo-mini.hpp +650 -0
- espp-1.1.5/components/motorgo-mini/src/button.cpp +28 -0
- espp-1.1.5/components/motorgo-mini/src/motorgo-mini.cpp +393 -0
- espp-1.1.5/components/motorgo-plink/CMakeLists.txt +6 -0
- espp-1.1.5/components/motorgo-plink/README.md +37 -0
- espp-1.1.5/components/motorgo-plink/idf_component.yml +34 -0
- espp-1.1.5/components/motorgo-plink/include/motorgo-plink.hpp +388 -0
- espp-1.1.5/components/motorgo-plink/src/motorgo-plink.cpp +405 -0
- espp-1.1.5/components/mt6701/CMakeLists.txt +4 -0
- espp-1.1.5/components/mt6701/Kconfig +21 -0
- espp-1.1.5/components/mt6701/README.md +29 -0
- espp-1.1.5/components/mt6701/idf_component.yml +24 -0
- espp-1.1.5/components/mt6701/include/mt6701.hpp +611 -0
- espp-1.1.5/components/ndef/CMakeLists.txt +3 -0
- espp-1.1.5/components/ndef/README.md +7 -0
- espp-1.1.5/components/ndef/idf_component.yml +16 -0
- espp-1.1.5/components/ndef/include/ndef.hpp +785 -0
- espp-1.1.5/components/neopixel/CMakeLists.txt +5 -0
- espp-1.1.5/components/neopixel/README.md +12 -0
- espp-1.1.5/components/neopixel/idf_component.yml +21 -0
- espp-1.1.5/components/neopixel/include/neopixel.hpp +81 -0
- espp-1.1.5/components/neopixel/src/neopixel.cpp +137 -0
- espp-1.1.5/components/nvs/CMakeLists.txt +4 -0
- espp-1.1.5/components/nvs/README.md +33 -0
- espp-1.1.5/components/nvs/idf_component.yml +18 -0
- espp-1.1.5/components/nvs/include/nvs.hpp +174 -0
- espp-1.1.5/components/nvs/include/nvs_errc.hpp +85 -0
- espp-1.1.5/components/nvs/include/nvs_handle_espp.hpp +508 -0
- espp-1.1.5/components/odrive_ascii/CMakeLists.txt +5 -0
- espp-1.1.5/components/odrive_ascii/README.md +47 -0
- espp-1.1.5/components/odrive_ascii/idf_component.yml +24 -0
- espp-1.1.5/components/odrive_ascii/include/odrive_ascii.hpp +343 -0
- espp-1.1.5/components/odrive_ascii/src/odrive_ascii.cpp +363 -0
- espp-1.1.5/components/pcf85063/CMakeLists.txt +4 -0
- espp-1.1.5/components/pcf85063/README.md +12 -0
- espp-1.1.5/components/pcf85063/idf_component.yml +21 -0
- espp-1.1.5/components/pcf85063/include/pcf85063.hpp +298 -0
- espp-1.1.5/components/pi4ioe5v/CMakeLists.txt +6 -0
- espp-1.1.5/components/pi4ioe5v/README.md +32 -0
- espp-1.1.5/components/pi4ioe5v/idf_component.yml +23 -0
- espp-1.1.5/components/pi4ioe5v/include/pi4ioe5v.hpp +448 -0
- espp-1.1.5/components/pid/CMakeLists.txt +3 -0
- espp-1.1.5/components/pid/README.md +12 -0
- espp-1.1.5/components/pid/idf_component.yml +20 -0
- espp-1.1.5/components/pid/include/pid.hpp +170 -0
- espp-1.1.5/components/pid/include/pid_formatters.hpp +29 -0
- espp-1.1.5/components/ping/CMakeLists.txt +5 -0
- espp-1.1.5/components/ping/README.md +13 -0
- espp-1.1.5/components/ping/idf_component.yml +20 -0
- espp-1.1.5/components/ping/include/ping.hpp +341 -0
- espp-1.1.5/components/ping/src/ping.cpp +482 -0
- espp-1.1.5/components/provisioning/CMakeLists.txt +5 -0
- espp-1.1.5/components/provisioning/README.md +26 -0
- espp-1.1.5/components/provisioning/idf_component.yml +20 -0
- espp-1.1.5/components/provisioning/include/provisioning.hpp +152 -0
- espp-1.1.5/components/provisioning/src/provisioning.cpp +873 -0
- espp-1.1.5/components/qmi8658/CMakeLists.txt +4 -0
- espp-1.1.5/components/qmi8658/README.md +19 -0
- espp-1.1.5/components/qmi8658/idf_component.yml +21 -0
- espp-1.1.5/components/qmi8658/include/qmi8658.hpp +568 -0
- espp-1.1.5/components/qmi8658/include/qmi8658_detail.hpp +214 -0
- espp-1.1.5/components/qtpy/CMakeLists.txt +7 -0
- espp-1.1.5/components/qtpy/Kconfig +23 -0
- espp-1.1.5/components/qtpy/README.md +15 -0
- espp-1.1.5/components/qtpy/idf_component.yml +27 -0
- espp-1.1.5/components/qtpy/include/qtpy.hpp +170 -0
- espp-1.1.5/components/qtpy/src/qtpy.cpp +88 -0
- espp-1.1.5/components/qwiicnes/CMakeLists.txt +4 -0
- espp-1.1.5/components/qwiicnes/README.md +11 -0
- espp-1.1.5/components/qwiicnes/idf_component.yml +18 -0
- espp-1.1.5/components/qwiicnes/include/qwiicnes.hpp +197 -0
- espp-1.1.5/components/remote_debug/CMakeLists.txt +5 -0
- espp-1.1.5/components/remote_debug/README.md +76 -0
- espp-1.1.5/components/remote_debug/idf_component.yml +24 -0
- espp-1.1.5/components/remote_debug/include/remote_debug.hpp +216 -0
- espp-1.1.5/components/remote_debug/src/remote_debug.cpp +1168 -0
- espp-1.1.5/components/rmt/CMakeLists.txt +4 -0
- espp-1.1.5/components/rmt/README.md +23 -0
- espp-1.1.5/components/rmt/idf_component.yml +18 -0
- espp-1.1.5/components/rmt/include/rmt.hpp +123 -0
- espp-1.1.5/components/rmt/include/rmt_encoder.hpp +213 -0
- espp-1.1.5/components/rtps/CMakeLists.txt +4 -0
- espp-1.1.5/components/rtps/README.md +119 -0
- espp-1.1.5/components/rtps/RELIABLE_RTPS_PLAN.md +192 -0
- espp-1.1.5/components/rtps/idf_component.yml +26 -0
- espp-1.1.5/components/rtps/include/rtps.hpp +576 -0
- espp-1.1.5/components/rtps/src/rtps.cpp +2926 -0
- espp-1.1.5/components/rtsp/CMakeLists.txt +4 -0
- espp-1.1.5/components/rtsp/README.md +175 -0
- espp-1.1.5/components/rtsp/idf_component.yml +29 -0
- espp-1.1.5/components/rtsp/include/generic_depacketizer.hpp +51 -0
- espp-1.1.5/components/rtsp/include/generic_packetizer.hpp +70 -0
- espp-1.1.5/components/rtsp/include/h264_depacketizer.hpp +63 -0
- espp-1.1.5/components/rtsp/include/h264_packetizer.hpp +100 -0
- espp-1.1.5/components/rtsp/include/jpeg_frame.hpp +182 -0
- espp-1.1.5/components/rtsp/include/jpeg_header.hpp +780 -0
- espp-1.1.5/components/rtsp/include/mjpeg_depacketizer.hpp +61 -0
- espp-1.1.5/components/rtsp/include/mjpeg_packetizer.hpp +49 -0
- espp-1.1.5/components/rtsp/include/rtcp_packet.hpp +28 -0
- espp-1.1.5/components/rtsp/include/rtp_depacketizer.hpp +50 -0
- espp-1.1.5/components/rtsp/include/rtp_jpeg_packet.hpp +243 -0
- espp-1.1.5/components/rtsp/include/rtp_packet.hpp +167 -0
- espp-1.1.5/components/rtsp/include/rtp_packetizer.hpp +60 -0
- espp-1.1.5/components/rtsp/include/rtp_types.hpp +21 -0
- espp-1.1.5/components/rtsp/include/rtsp_client.hpp +257 -0
- espp-1.1.5/components/rtsp/include/rtsp_server.hpp +210 -0
- espp-1.1.5/components/rtsp/include/rtsp_session.hpp +259 -0
- espp-1.1.5/components/rtsp/src/generic_depacketizer.cpp +42 -0
- espp-1.1.5/components/rtsp/src/generic_packetizer.cpp +73 -0
- espp-1.1.5/components/rtsp/src/h264_depacketizer.cpp +124 -0
- espp-1.1.5/components/rtsp/src/h264_packetizer.cpp +256 -0
- espp-1.1.5/components/rtsp/src/mjpeg_depacketizer.cpp +100 -0
- espp-1.1.5/components/rtsp/src/mjpeg_packetizer.cpp +141 -0
- espp-1.1.5/components/rtsp/src/rtcp_packet.cpp +7 -0
- espp-1.1.5/components/rtsp/src/rtp_packet.cpp +96 -0
- espp-1.1.5/components/rtsp/src/rtsp_client.cpp +743 -0
- espp-1.1.5/components/rtsp/src/rtsp_server.cpp +619 -0
- espp-1.1.5/components/rtsp/src/rtsp_session.cpp +542 -0
- espp-1.1.5/components/runqueue/CMakeLists.txt +4 -0
- espp-1.1.5/components/runqueue/README.md +19 -0
- espp-1.1.5/components/runqueue/idf_component.yml +20 -0
- espp-1.1.5/components/runqueue/include/runqueue.hpp +210 -0
- espp-1.1.5/components/runqueue/src/runqueue.cpp +179 -0
- espp-1.1.5/components/rx8130ce/CMakeLists.txt +3 -0
- espp-1.1.5/components/rx8130ce/README.md +28 -0
- espp-1.1.5/components/rx8130ce/idf_component.yml +19 -0
- espp-1.1.5/components/rx8130ce/include/rx8130ce.hpp +608 -0
- espp-1.1.5/components/seeed-studio-round-display/CMakeLists.txt +6 -0
- espp-1.1.5/components/seeed-studio-round-display/Kconfig +23 -0
- espp-1.1.5/components/seeed-studio-round-display/README.md +18 -0
- espp-1.1.5/components/seeed-studio-round-display/idf_component.yml +31 -0
- espp-1.1.5/components/seeed-studio-round-display/include/seeed-studio-round-display.hpp +329 -0
- espp-1.1.5/components/seeed-studio-round-display/src/seeed-studio-round-display.cpp +425 -0
- espp-1.1.5/components/serialization/CMakeLists.txt +3 -0
- espp-1.1.5/components/serialization/README.md +18 -0
- espp-1.1.5/components/serialization/detail/alpaca/.clang-format +111 -0
- espp-1.1.5/components/serialization/detail/alpaca/.gitignore +273 -0
- espp-1.1.5/components/serialization/detail/alpaca/.gitmodules +3 -0
- espp-1.1.5/components/serialization/detail/alpaca/CMakeLists.txt +108 -0
- espp-1.1.5/components/serialization/detail/alpaca/LICENSE +7 -0
- espp-1.1.5/components/serialization/detail/alpaca/README.md +1480 -0
- espp-1.1.5/components/serialization/detail/alpaca/benchmark/CMakeLists.txt +56 -0
- espp-1.1.5/components/serialization/detail/alpaca/benchmark/benchmark_log_10k_deserialize.cpp +36 -0
- espp-1.1.5/components/serialization/detail/alpaca/benchmark/benchmark_log_10k_serialize.cpp +33 -0
- espp-1.1.5/components/serialization/detail/alpaca/benchmark/benchmark_mesh_125k_deserialize.cpp +55 -0
- espp-1.1.5/components/serialization/detail/alpaca/benchmark/benchmark_mesh_125k_serialize.cpp +54 -0
- espp-1.1.5/components/serialization/detail/alpaca/benchmark/benchmark_minecraft_players_50_deserialize.cpp +41 -0
- espp-1.1.5/components/serialization/detail/alpaca/benchmark/benchmark_minecraft_players_50_serialize.cpp +40 -0
- espp-1.1.5/components/serialization/detail/alpaca/benchmark/log.h +72 -0
- espp-1.1.5/components/serialization/detail/alpaca/benchmark/mesh.h +39 -0
- espp-1.1.5/components/serialization/detail/alpaca/benchmark/minecraft_save.h +334 -0
- espp-1.1.5/components/serialization/detail/alpaca/benchmark_results.txt +99 -0
- espp-1.1.5/components/serialization/detail/alpaca/clang_format.bash +1 -0
- espp-1.1.5/components/serialization/detail/alpaca/cmake/project-is-top-level.cmake +6 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/alpaca.h +559 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/aggregate_arity.h +35 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/crc32.h +1377 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/endian.h +137 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/field_type.h +48 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/from_bytes.h +434 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/is_bitset.h +21 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/is_specialization.h +17 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/options.h +72 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/output_container.h +36 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/print_bytes.h +30 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/struct_nth_field.h +10721 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/to_bytes.h +91 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/type_info.h +300 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/array.h +85 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/bitset.h +128 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/deque.h +102 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/duration.h +70 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/filesystem_path.h +85 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/glm_vector.h +52 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/list.h +101 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/map.h +157 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/optional.h +86 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/pair.h +65 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/set.h +150 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/string.h +128 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/tuple.h +109 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/unique_ptr.h +93 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/variant.h +87 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/vector.h +120 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/variable_length_encoding.h +245 -0
- espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/variant_nth_field.h +20226 -0
- espp-1.1.5/components/serialization/detail/alpaca/packaging/pkgconfig.pc.in +7 -0
- espp-1.1.5/components/serialization/detail/alpaca/samples/CMakeLists.txt +32 -0
- espp-1.1.5/components/serialization/detail/alpaca/samples/arrays_vectors_strings.cpp +39 -0
- espp-1.1.5/components/serialization/detail/alpaca/samples/chrono_duration.cpp +20 -0
- espp-1.1.5/components/serialization/detail/alpaca/samples/demo.cpp +47 -0
- espp-1.1.5/components/serialization/detail/alpaca/samples/fundamental_types.cpp +37 -0
- espp-1.1.5/components/serialization/detail/alpaca/samples/maps_and_sets.cpp +45 -0
- espp-1.1.5/components/serialization/detail/alpaca/samples/nested_structures.cpp +62 -0
- espp-1.1.5/components/serialization/detail/alpaca/samples/optional_values.cpp +44 -0
- espp-1.1.5/components/serialization/detail/alpaca/samples/pyalpaca_demo.py +43 -0
- espp-1.1.5/components/serialization/detail/alpaca/samples/time_t.cpp +31 -0
- espp-1.1.5/components/serialization/detail/alpaca/samples/unique_ptr.cpp +80 -0
- espp-1.1.5/components/serialization/detail/alpaca/samples/variant.cpp +32 -0
- espp-1.1.5/components/serialization/detail/alpaca/samples/write_file.cpp +55 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/CMakeLists.txt +37 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/doctest.hpp +6816 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/main.cpp +1 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_backwards_compatibility.cpp +38 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_array.cpp +141 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_big_endian.cpp +701 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_bool.cpp +45 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_bool_from_array.cpp +45 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_chrono_duration.cpp +27 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_chrono_duration_from_array.cpp +27 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_deque.cpp +125 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_deque_from_array.cpp +125 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_enum_class.cpp +26 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_enum_class_from_array.cpp +26 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_error_crc32.cpp +56 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_error_crc32_from_array.cpp +58 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_error_set.cpp +24 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_error_set_from_array.cpp +24 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_error_vector.cpp +24 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_error_vector_from_array.cpp +24 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_error_version.cpp +79 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_error_version_from_array.cpp +79 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_float.cpp +41 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_float_from_array.cpp +41 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_from_carray.cpp +44 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_from_ifstream.cpp +99 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_int.cpp +341 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_int_from_array.cpp +341 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_list.cpp +125 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_list_from_array.cpp +125 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_map.cpp +76 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_map_from_array.cpp +76 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_optional.cpp +91 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_optional_from_array.cpp +94 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_pair.cpp +49 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_pair_from_array.cpp +49 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_set.cpp +29 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_set_from_array.cpp +29 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_string.cpp +60 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_string_from_array.cpp +60 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_tuple.cpp +52 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_tuple_from_array.cpp +52 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_uint.cpp +329 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_uint_from_array.cpp +329 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_unique_ptr.cpp +64 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_unique_ptr_from_array.cpp +64 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_ustring.cpp +31 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_variant.cpp +73 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_variant_from_array.cpp +73 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_vector.cpp +119 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_vector_from_array.cpp +119 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_with_crc32.cpp +50 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_with_crc32_from_array.cpp +51 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_with_version.cpp +49 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_with_version_from_array.cpp +49 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_extended_serialize_deserialize.cpp +461 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_force_alignment.cpp +69 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_forwards_compatibility.cpp +74 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_forwards_compatibility_from_array.cpp +74 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_array.cpp +205 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_array_into_array.cpp +202 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_big_endian.cpp +114 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_big_endian_into_array.cpp +124 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_bool.cpp +29 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_bool_into_array.cpp +29 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_chrono_duration.cpp +21 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_chrono_duration_to_array.cpp +22 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_deque.cpp +229 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_deque_into_array.cpp +229 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_enum_class.cpp +18 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_enum_class_into_array.cpp +18 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_float.cpp +46 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_float_into_array.cpp +46 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_int.cpp +156 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_int_into_array.cpp +61 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_into_carray.cpp +34 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_list.cpp +229 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_list_into_array.cpp +229 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_map.cpp +67 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_map_into_array.cpp +68 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_nested_struct.cpp +64 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_nested_struct_into_array.cpp +66 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_optional.cpp +45 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_optional_into_array.cpp +47 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_pair.cpp +34 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_pair_optional.cpp +34 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_set.cpp +40 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_set_into_array.cpp +40 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_string.cpp +21 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_string_into_array.cpp +21 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_to_fstream.cpp +65 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_tuple.cpp +50 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_tuple_into_array.cpp +51 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_uint.cpp +141 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_uint_into_array.cpp +141 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_unique_ptr.cpp +55 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_unique_ptr_into_array.cpp +56 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_variant.cpp +151 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_variant_into_array.cpp +152 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_vector.cpp +229 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_vector_into_array.cpp +229 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_with_crc32.cpp +26 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_with_crc32_into_array.cpp +27 -0
- espp-1.1.5/components/serialization/detail/alpaca/test/test_type_info.cpp +392 -0
- espp-1.1.5/components/serialization/idf_component.yml +19 -0
- espp-1.1.5/components/serialization/include/serialization.hpp +112 -0
- espp-1.1.5/components/smartpanlee-sc01-plus/CMakeLists.txt +6 -0
- espp-1.1.5/components/smartpanlee-sc01-plus/Kconfig +28 -0
- espp-1.1.5/components/smartpanlee-sc01-plus/README.md +38 -0
- espp-1.1.5/components/smartpanlee-sc01-plus/idf_component.yml +34 -0
- espp-1.1.5/components/smartpanlee-sc01-plus/include/smartpanlee-sc01-plus.hpp +381 -0
- espp-1.1.5/components/smartpanlee-sc01-plus/src/smartpanlee-sc01-plus.cpp +603 -0
- espp-1.1.5/components/socket/CMakeLists.txt +4 -0
- espp-1.1.5/components/socket/README.md +68 -0
- espp-1.1.5/components/socket/idf_component.yml +22 -0
- espp-1.1.5/components/socket/include/socket.hpp +250 -0
- espp-1.1.5/components/socket/include/socket_formatters.hpp +16 -0
- espp-1.1.5/components/socket/include/socket_msvc.hpp +16 -0
- espp-1.1.5/components/socket/include/tcp_socket.hpp +241 -0
- espp-1.1.5/components/socket/include/udp_socket.hpp +194 -0
- espp-1.1.5/components/socket/src/socket.cpp +403 -0
- espp-1.1.5/components/socket/src/tcp_socket.cpp +264 -0
- espp-1.1.5/components/socket/src/udp_socket.cpp +259 -0
- espp-1.1.5/components/spi/CMakeLists.txt +5 -0
- espp-1.1.5/components/spi/README.md +13 -0
- espp-1.1.5/components/spi/idf_component.yml +20 -0
- espp-1.1.5/components/spi/include/spi.hpp +264 -0
- espp-1.1.5/components/spi/src/spi.cpp +449 -0
- espp-1.1.5/components/st25dv/CMakeLists.txt +4 -0
- espp-1.1.5/components/st25dv/README.md +16 -0
- espp-1.1.5/components/st25dv/idf_component.yml +21 -0
- espp-1.1.5/components/st25dv/include/st25dv.hpp +626 -0
- espp-1.1.5/components/st7123touch/CMakeLists.txt +4 -0
- espp-1.1.5/components/st7123touch/README.md +59 -0
- espp-1.1.5/components/st7123touch/idf_component.yml +23 -0
- espp-1.1.5/components/st7123touch/include/st7123touch.hpp +179 -0
- espp-1.1.5/components/state_machine/CMakeLists.txt +4 -0
- espp-1.1.5/components/state_machine/README.md +23 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/.bazelignore +5 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/.bazelrc +9 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/.bazelversion +1 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/.gitignore +54 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/BUILD.bazel +11 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/CMakeLists.txt +127 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/LICENSE +21 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/MODULE.bazel +5 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/README.md +351 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/SECURITY.md +13 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/WORKSPACE.bazel +0 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/cmake/GenPkgConfig/GenPkgConfig.cmake +239 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/cmake/GenPkgConfig/ReadMe.md +45 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/cmake/GenPkgConfig/UNLICENSE +24 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/cmake/GenPkgConfig/buildTimeScripts/getObjectFilesBaseNames.cmake +18 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/example/CMakeLists.txt +30 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/example/enum_flag_example.cpp +101 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/example/example.cpp +120 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/example/example_containers_array.cpp +65 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/example/example_containers_bitset.cpp +56 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/example/example_containers_set.cpp +56 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/example/example_custom_name.cpp +71 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/example/example_nonascii_name.cpp +45 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/example/example_switch.cpp +105 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/include/magic_enum/magic_enum.hpp +1478 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/include/magic_enum/magic_enum_all.hpp +44 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/include/magic_enum/magic_enum_containers.hpp +1170 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/include/magic_enum/magic_enum_flags.hpp +222 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/include/magic_enum/magic_enum_format.hpp +110 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/include/magic_enum/magic_enum_fuse.hpp +89 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/include/magic_enum/magic_enum_iostream.hpp +115 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/include/magic_enum/magic_enum_switch.hpp +195 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/include/magic_enum/magic_enum_utility.hpp +138 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/meson.build +22 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/meson_options.txt +13 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/package.xml +22 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/test/.bazelrc +2 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/test/3rdparty/Catch2/LICENSE +23 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/test/3rdparty/Catch2/include/catch2/catch.hpp +17937 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/test/BUILD.bazel +25 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/test/CMakeLists.txt +78 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/test/MODULE.bazel +6 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/test/WORKSPACE.bazel +0 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/test/meson.build +17 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/test/test.cpp +1276 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/test/test_aliases.cpp +137 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/test/test_containers.cpp +313 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/test/test_flags.cpp +834 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/test/test_nonascii.cpp +445 -0
- espp-1.1.5/components/state_machine/detail/magic_enum/test/test_wchar_t.cpp +147 -0
- espp-1.1.5/components/state_machine/idf_component.yml +19 -0
- espp-1.1.5/components/state_machine/include/deep_history_state.hpp +38 -0
- espp-1.1.5/components/state_machine/include/shallow_history_state.hpp +38 -0
- espp-1.1.5/components/state_machine/include/state_base.hpp +157 -0
- espp-1.1.5/components/state_machine/include/state_machine.hpp +30 -0
- espp-1.1.5/components/state_machine/src/state_base.cpp +77 -0
- espp-1.1.5/components/t-deck/CMakeLists.txt +7 -0
- espp-1.1.5/components/t-deck/Kconfig +23 -0
- espp-1.1.5/components/t-deck/README.md +26 -0
- espp-1.1.5/components/t-deck/idf_component.yml +31 -0
- espp-1.1.5/components/t-deck/include/t-deck.hpp +674 -0
- espp-1.1.5/components/t-deck/src/audio.cpp +155 -0
- espp-1.1.5/components/t-deck/src/sdcard.cpp +75 -0
- espp-1.1.5/components/t-deck/src/t-deck.cpp +538 -0
- espp-1.1.5/components/t-dongle-s3/CMakeLists.txt +7 -0
- espp-1.1.5/components/t-dongle-s3/Kconfig +23 -0
- espp-1.1.5/components/t-dongle-s3/README.md +16 -0
- espp-1.1.5/components/t-dongle-s3/idf_component.yml +29 -0
- espp-1.1.5/components/t-dongle-s3/include/t-dongle-s3.hpp +328 -0
- espp-1.1.5/components/t-dongle-s3/src/sdcard.cpp +70 -0
- espp-1.1.5/components/t-dongle-s3/src/t-dongle-s3.cpp +370 -0
- espp-1.1.5/components/t_keyboard/CMakeLists.txt +4 -0
- espp-1.1.5/components/t_keyboard/README.md +15 -0
- espp-1.1.5/components/t_keyboard/idf_component.yml +20 -0
- espp-1.1.5/components/t_keyboard/include/t_keyboard.hpp +152 -0
- espp-1.1.5/components/tabulate/CMakeLists.txt +3 -0
- espp-1.1.5/components/tabulate/README.md +18 -0
- espp-1.1.5/components/tabulate/detail/tabulate/.clang-format +4 -0
- espp-1.1.5/components/tabulate/detail/tabulate/.gitignore +36 -0
- espp-1.1.5/components/tabulate/detail/tabulate/.travis.yml +55 -0
- espp-1.1.5/components/tabulate/detail/tabulate/CMakeLists.txt +74 -0
- espp-1.1.5/components/tabulate/detail/tabulate/CONTRIBUTING.md +7 -0
- espp-1.1.5/components/tabulate/detail/tabulate/LICENSE +21 -0
- espp-1.1.5/components/tabulate/detail/tabulate/LICENSE.optional-lite +23 -0
- espp-1.1.5/components/tabulate/detail/tabulate/LICENSE.termcolor +31 -0
- espp-1.1.5/components/tabulate/detail/tabulate/LICENSE.variant-lite +23 -0
- espp-1.1.5/components/tabulate/detail/tabulate/README.md +759 -0
- espp-1.1.5/components/tabulate/detail/tabulate/clang-format.bash +5 -0
- espp-1.1.5/components/tabulate/detail/tabulate/generate-single-include.bash +2 -0
- espp-1.1.5/components/tabulate/detail/tabulate/img/class_diagram.png +0 -0
- espp-1.1.5/components/tabulate/detail/tabulate/img/colors.png +0 -0
- espp-1.1.5/components/tabulate/detail/tabulate/img/font_styles.png +0 -0
- espp-1.1.5/components/tabulate/detail/tabulate/img/iterators.png +0 -0
- espp-1.1.5/components/tabulate/detail/tabulate/img/logo.jpg +0 -0
- espp-1.1.5/components/tabulate/detail/tabulate/img/mario.png +0 -0
- espp-1.1.5/components/tabulate/detail/tabulate/img/markdown_export.png +0 -0
- espp-1.1.5/components/tabulate/detail/tabulate/img/movies.png +0 -0
- espp-1.1.5/components/tabulate/detail/tabulate/img/runic.png +0 -0
- espp-1.1.5/components/tabulate/detail/tabulate/img/summary.png +0 -0
- espp-1.1.5/components/tabulate/detail/tabulate/img/unicode.png +0 -0
- espp-1.1.5/components/tabulate/detail/tabulate/img/universal_constants.png +0 -0
- espp-1.1.5/components/tabulate/detail/tabulate/img/word_wrapping.png +0 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/asciidoc_exporter.hpp +140 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/cell.hpp +77 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/color.hpp +40 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/column.hpp +385 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/column_format.hpp +95 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/exporter.hpp +46 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/font_align.hpp +39 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/font_style.hpp +39 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/format.hpp +874 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/latex_exporter.hpp +122 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/markdown_exporter.hpp +138 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/optional_lite.hpp +1501 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/printer.hpp +249 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/row.hpp +191 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/string_view_lite.hpp +1638 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/table.hpp +221 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/table_internal.hpp +469 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/tabulate.hpp +63 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/termcolor.hpp +447 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/utf8.hpp +93 -0
- espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/variant_lite.hpp +2485 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/CMakeLists.txt +61 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/asciidoc_export.cpp +42 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/class_diagram.cpp +70 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/colors.cpp +45 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/employees.cpp +33 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/font_styles.cpp +28 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/iterators.cpp +48 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/latex_export.cpp +40 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/mario.cpp +196 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/markdown_export.cpp +35 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/movies.cpp +32 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/no_trim.cpp +11 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/padding.cpp +19 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/refresh_table.cpp +56 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/runic.cpp +51 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/shape.cpp +17 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/string_view_in_row.cpp +28 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/summary.cpp +212 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/unicode.cpp +30 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/universal_constants.cpp +47 -0
- espp-1.1.5/components/tabulate/detail/tabulate/samples/word_wrapping.cpp +19 -0
- espp-1.1.5/components/tabulate/detail/tabulate/single_include/tabulate/tabulate.hpp +9352 -0
- espp-1.1.5/components/tabulate/detail/tabulate/single_include.json +27 -0
- espp-1.1.5/components/tabulate/detail/tabulate/tabulate.pri +19 -0
- espp-1.1.5/components/tabulate/detail/tabulate/tabulateConfig.cmake.in +7 -0
- espp-1.1.5/components/tabulate/detail/tabulate/utils/amalgamate/CHANGES.md +10 -0
- espp-1.1.5/components/tabulate/detail/tabulate/utils/amalgamate/LICENSE.md +27 -0
- espp-1.1.5/components/tabulate/detail/tabulate/utils/amalgamate/README.md +66 -0
- espp-1.1.5/components/tabulate/detail/tabulate/utils/amalgamate/amalgamate.py +299 -0
- espp-1.1.5/components/tabulate/detail/tabulate/utils/amalgamate/config.json +8 -0
- espp-1.1.5/components/tabulate/idf_component.yml +18 -0
- espp-1.1.5/components/tabulate/include/tabulate.hpp +27 -0
- espp-1.1.5/components/task/CMakeLists.txt +4 -0
- espp-1.1.5/components/task/README.md +19 -0
- espp-1.1.5/components/task/idf_component.yml +19 -0
- espp-1.1.5/components/task/include/run_on_core.hpp +192 -0
- espp-1.1.5/components/task/include/task.hpp +553 -0
- espp-1.1.5/components/task/include/task_formatters.hpp +28 -0
- espp-1.1.5/components/task/src/task.cpp +326 -0
- espp-1.1.5/components/thermistor/CMakeLists.txt +3 -0
- espp-1.1.5/components/thermistor/README.md +41 -0
- espp-1.1.5/components/thermistor/idf_component.yml +22 -0
- espp-1.1.5/components/thermistor/include/thermistor.hpp +145 -0
- espp-1.1.5/components/timer/CMakeLists.txt +4 -0
- espp-1.1.5/components/timer/README.md +41 -0
- espp-1.1.5/components/timer/idf_component.yml +19 -0
- espp-1.1.5/components/timer/include/high_resolution_timer.hpp +124 -0
- espp-1.1.5/components/timer/include/timer.hpp +168 -0
- espp-1.1.5/components/timer/src/high_resolution_timer.cpp +171 -0
- espp-1.1.5/components/timer/src/timer.cpp +162 -0
- espp-1.1.5/components/tla2528/CMakeLists.txt +4 -0
- espp-1.1.5/components/tla2528/README.md +18 -0
- espp-1.1.5/components/tla2528/idf_component.yml +21 -0
- espp-1.1.5/components/tla2528/include/tla2528.hpp +1107 -0
- espp-1.1.5/components/touch/CMakeLists.txt +4 -0
- espp-1.1.5/components/touch/README.md +19 -0
- espp-1.1.5/components/touch/idf_component.yml +19 -0
- espp-1.1.5/components/touch/include/touch.hpp +182 -0
- espp-1.1.5/components/touch/src/touch.cpp +1 -0
- espp-1.1.5/components/tt21100/CMakeLists.txt +4 -0
- espp-1.1.5/components/tt21100/README.md +14 -0
- espp-1.1.5/components/tt21100/idf_component.yml +23 -0
- espp-1.1.5/components/tt21100/include/tt21100.hpp +224 -0
- espp-1.1.5/components/utils/CMakeLists.txt +3 -0
- espp-1.1.5/components/utils/README.md +6 -0
- espp-1.1.5/components/utils/idf_component.yml +14 -0
- espp-1.1.5/components/utils/include/bitmask_operators.hpp +34 -0
- espp-1.1.5/components/utils/include/espp_chrono.hpp +19 -0
- espp-1.1.5/components/vl53l/CMakeLists.txt +4 -0
- espp-1.1.5/components/vl53l/README.md +27 -0
- espp-1.1.5/components/vl53l/idf_component.yml +23 -0
- espp-1.1.5/components/vl53l/include/vl53l.hpp +850 -0
- espp-1.1.5/components/wifi/CMakeLists.txt +4 -0
- espp-1.1.5/components/wifi/README.md +46 -0
- espp-1.1.5/components/wifi/idf_component.yml +22 -0
- espp-1.1.5/components/wifi/include/wifi.hpp +710 -0
- espp-1.1.5/components/wifi/include/wifi_ap.hpp +480 -0
- espp-1.1.5/components/wifi/include/wifi_ap_menu.hpp +220 -0
- espp-1.1.5/components/wifi/include/wifi_base.hpp +141 -0
- espp-1.1.5/components/wifi/include/wifi_format_helpers.hpp +154 -0
- espp-1.1.5/components/wifi/include/wifi_sta.hpp +841 -0
- espp-1.1.5/components/wifi/include/wifi_sta_menu.hpp +271 -0
- espp-1.1.5/components/wifi/src/wifi_ap.cpp +35 -0
- espp-1.1.5/components/wifi/src/wifi_sta.cpp +38 -0
- espp-1.1.5/components/wrover-kit/CMakeLists.txt +6 -0
- espp-1.1.5/components/wrover-kit/README.md +15 -0
- espp-1.1.5/components/wrover-kit/idf_component.yml +25 -0
- espp-1.1.5/components/wrover-kit/include/wrover-kit.hpp +201 -0
- espp-1.1.5/components/wrover-kit/src/wrover-kit.cpp +262 -0
- espp-1.1.5/components/ws-s3-geek/CMakeLists.txt +7 -0
- espp-1.1.5/components/ws-s3-geek/Kconfig +23 -0
- espp-1.1.5/components/ws-s3-geek/README.md +15 -0
- espp-1.1.5/components/ws-s3-geek/idf_component.yml +29 -0
- espp-1.1.5/components/ws-s3-geek/include/ws-s3-geek.hpp +273 -0
- espp-1.1.5/components/ws-s3-geek/src/sdcard.cpp +102 -0
- espp-1.1.5/components/ws-s3-geek/src/ws-s3-geek.cpp +287 -0
- espp-1.1.5/components/ws-s3-lcd-1-47/CMakeLists.txt +7 -0
- espp-1.1.5/components/ws-s3-lcd-1-47/Kconfig +23 -0
- espp-1.1.5/components/ws-s3-lcd-1-47/README.md +17 -0
- espp-1.1.5/components/ws-s3-lcd-1-47/idf_component.yml +29 -0
- espp-1.1.5/components/ws-s3-lcd-1-47/include/ws-s3-lcd-1-47.hpp +312 -0
- espp-1.1.5/components/ws-s3-lcd-1-47/src/sdcard.cpp +70 -0
- espp-1.1.5/components/ws-s3-lcd-1-47/src/ws-s3-lcd-1-47.cpp +321 -0
- espp-1.1.5/components/ws-s3-touch/CMakeLists.txt +6 -0
- espp-1.1.5/components/ws-s3-touch/Kconfig +43 -0
- espp-1.1.5/components/ws-s3-touch/README.md +17 -0
- espp-1.1.5/components/ws-s3-touch/idf_component.yml +33 -0
- espp-1.1.5/components/ws-s3-touch/include/ws-s3-touch.hpp +442 -0
- espp-1.1.5/components/ws-s3-touch/src/audio.cpp +30 -0
- espp-1.1.5/components/ws-s3-touch/src/board.cpp +25 -0
- espp-1.1.5/components/ws-s3-touch/src/buttons.cpp +28 -0
- espp-1.1.5/components/ws-s3-touch/src/imu.cpp +40 -0
- espp-1.1.5/components/ws-s3-touch/src/rtc.cpp +33 -0
- espp-1.1.5/components/ws-s3-touch/src/touchpad.cpp +118 -0
- espp-1.1.5/components/ws-s3-touch/src/video.cpp +270 -0
- espp-1.1.5/components/xiao-esp32s3-sense/CMakeLists.txt +6 -0
- espp-1.1.5/components/xiao-esp32s3-sense/README.md +38 -0
- espp-1.1.5/components/xiao-esp32s3-sense/idf_component.yml +29 -0
- espp-1.1.5/components/xiao-esp32s3-sense/include/xiao-esp32s3-sense.hpp +332 -0
- espp-1.1.5/components/xiao-esp32s3-sense/src/xiao-esp32s3-sense.cpp +235 -0
- espp-1.1.5/lib/.gitignore +1 -0
- espp-1.1.5/lib/CMakeLists.txt +77 -0
- espp-1.1.5/lib/README.md +178 -0
- espp-1.1.5/lib/README_PYPI.md +65 -0
- espp-1.1.5/lib/autogenerate_bindings.py +538 -0
- espp-1.1.5/lib/cmake/CPM.cmake +24 -0
- espp-1.1.5/lib/espp.cmake +149 -0
- espp-1.1.5/lib/espp.cpp +5 -0
- espp-1.1.5/lib/fix_generated_bindings.py +157 -0
- espp-1.1.5/lib/include/espp.hpp +65 -0
- espp-1.1.5/lib/include/wcswidth.h +7 -0
- espp-1.1.5/lib/python_bindings/cdr_bindings.cpp +246 -0
- espp-1.1.5/lib/python_bindings/espp/__init__.py +9 -0
- espp-1.1.5/lib/python_bindings/espp/__init__.pyi +5797 -0
- espp-1.1.5/lib/python_bindings/espp/py.typed +0 -0
- espp-1.1.5/lib/python_bindings/module.cpp +27 -0
- espp-1.1.5/lib/python_bindings/pybind_espp.cpp +3689 -0
- espp-1.1.5/lib/python_bindings/rtps_bindings.cpp +268 -0
- espp-1.1.5/lib/python_bindings/span_caster.h +162 -0
- espp-1.1.5/lib/requirements.txt +1 -0
- espp-1.1.5/lib/wcswidth.c +262 -0
- espp-1.1.5/pyproject.toml +93 -0
- espp-1.1.5/suppressions.txt +11 -0
espp-1.1.5/.clang-format
ADDED
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
---
|
|
2
|
+
Language: Cpp
|
|
3
|
+
# BasedOnStyle: LLVM
|
|
4
|
+
AccessModifierOffset: -2
|
|
5
|
+
AlignAfterOpenBracket: Align
|
|
6
|
+
AlignConsecutiveAssignments: false
|
|
7
|
+
AlignConsecutiveDeclarations: false
|
|
8
|
+
AlignEscapedNewlines: Right
|
|
9
|
+
AlignOperands: true
|
|
10
|
+
AlignTrailingComments: true
|
|
11
|
+
AllowAllParametersOfDeclarationOnNextLine: true
|
|
12
|
+
AllowShortBlocksOnASingleLine: false
|
|
13
|
+
AllowShortCaseLabelsOnASingleLine: false
|
|
14
|
+
AllowShortFunctionsOnASingleLine: All
|
|
15
|
+
AllowShortIfStatementsOnASingleLine: false
|
|
16
|
+
AllowShortLoopsOnASingleLine: false
|
|
17
|
+
AlwaysBreakAfterDefinitionReturnType: None
|
|
18
|
+
AlwaysBreakAfterReturnType: None
|
|
19
|
+
AlwaysBreakBeforeMultilineStrings: false
|
|
20
|
+
AlwaysBreakTemplateDeclarations: false
|
|
21
|
+
BinPackArguments: true
|
|
22
|
+
BinPackParameters: true
|
|
23
|
+
BraceWrapping:
|
|
24
|
+
AfterClass: false
|
|
25
|
+
AfterControlStatement: false
|
|
26
|
+
AfterEnum: false
|
|
27
|
+
AfterFunction: false
|
|
28
|
+
AfterNamespace: false
|
|
29
|
+
AfterObjCDeclaration: false
|
|
30
|
+
AfterStruct: false
|
|
31
|
+
AfterUnion: false
|
|
32
|
+
AfterExternBlock: false
|
|
33
|
+
BeforeCatch: false
|
|
34
|
+
BeforeElse: false
|
|
35
|
+
IndentBraces: false
|
|
36
|
+
SplitEmptyFunction: true
|
|
37
|
+
SplitEmptyRecord: true
|
|
38
|
+
SplitEmptyNamespace: true
|
|
39
|
+
BreakBeforeBinaryOperators: None
|
|
40
|
+
BreakBeforeBraces: Attach
|
|
41
|
+
BreakBeforeInheritanceComma: false
|
|
42
|
+
BreakBeforeTernaryOperators: true
|
|
43
|
+
BreakConstructorInitializersBeforeComma: true
|
|
44
|
+
BreakConstructorInitializers: BeforeColon
|
|
45
|
+
BreakAfterJavaFieldAnnotations: false
|
|
46
|
+
BreakStringLiterals: true
|
|
47
|
+
ColumnLimit: 100
|
|
48
|
+
CommentPragmas: '^ IWYU pragma:'
|
|
49
|
+
CompactNamespaces: false
|
|
50
|
+
ConstructorInitializerAllOnOneLineOrOnePerLine: false
|
|
51
|
+
ConstructorInitializerIndentWidth: 4
|
|
52
|
+
ContinuationIndentWidth: 4
|
|
53
|
+
Cpp11BracedListStyle: true
|
|
54
|
+
DerivePointerAlignment: false
|
|
55
|
+
DisableFormat: false
|
|
56
|
+
ExperimentalAutoDetectBinPacking: false
|
|
57
|
+
FixNamespaceComments: true
|
|
58
|
+
ForEachMacros:
|
|
59
|
+
- foreach
|
|
60
|
+
- Q_FOREACH
|
|
61
|
+
- BOOST_FOREACH
|
|
62
|
+
IncludeBlocks: Preserve
|
|
63
|
+
IncludeCategories:
|
|
64
|
+
- Regex: '^"(llvm|llvm-c|clang|clang-c)/'
|
|
65
|
+
Priority: 2
|
|
66
|
+
- Regex: '^(<|"(gtest|gmock|isl|json)/)'
|
|
67
|
+
Priority: 3
|
|
68
|
+
- Regex: '.*'
|
|
69
|
+
Priority: 1
|
|
70
|
+
IncludeIsMainRegex: '(Test)?$'
|
|
71
|
+
IndentCaseLabels: false
|
|
72
|
+
IndentPPDirectives: None
|
|
73
|
+
IndentWidth: 2
|
|
74
|
+
IndentWrappedFunctionNames: false
|
|
75
|
+
JavaScriptQuotes: Leave
|
|
76
|
+
JavaScriptWrapImports: true
|
|
77
|
+
KeepEmptyLinesAtTheStartOfBlocks: true
|
|
78
|
+
MacroBlockBegin: ''
|
|
79
|
+
MacroBlockEnd: ''
|
|
80
|
+
MaxEmptyLinesToKeep: 1
|
|
81
|
+
NamespaceIndentation: None
|
|
82
|
+
ObjCBlockIndentWidth: 2
|
|
83
|
+
ObjCSpaceAfterProperty: false
|
|
84
|
+
ObjCSpaceBeforeProtocolList: true
|
|
85
|
+
PenaltyBreakAssignment: 2
|
|
86
|
+
PenaltyBreakBeforeFirstCallParameter: 19
|
|
87
|
+
PenaltyBreakComment: 300
|
|
88
|
+
PenaltyBreakFirstLessLess: 120
|
|
89
|
+
PenaltyBreakString: 1000
|
|
90
|
+
PenaltyExcessCharacter: 1000000
|
|
91
|
+
PenaltyReturnTypeOnItsOwnLine: 60
|
|
92
|
+
PointerAlignment: Right
|
|
93
|
+
RawStringFormats:
|
|
94
|
+
- Language: TextProto
|
|
95
|
+
Delimiters:
|
|
96
|
+
- 'pb'
|
|
97
|
+
- 'proto'
|
|
98
|
+
BasedOnStyle: google
|
|
99
|
+
ReflowComments: true
|
|
100
|
+
SortIncludes: true
|
|
101
|
+
SortUsingDeclarations: true
|
|
102
|
+
SpaceAfterCStyleCast: false
|
|
103
|
+
SpaceAfterTemplateKeyword: true
|
|
104
|
+
SpaceBeforeAssignmentOperators: true
|
|
105
|
+
SpaceBeforeParens: ControlStatements
|
|
106
|
+
SpaceInEmptyParentheses: false
|
|
107
|
+
SpacesBeforeTrailingComments: 1
|
|
108
|
+
SpacesInAngles: false
|
|
109
|
+
SpacesInContainerLiterals: true
|
|
110
|
+
SpacesInCStyleCastParentheses: false
|
|
111
|
+
SpacesInParentheses: false
|
|
112
|
+
SpacesInSquareBrackets: false
|
|
113
|
+
Standard: Cpp11
|
|
114
|
+
TabWidth: 8
|
|
115
|
+
UseTab: Never
|
|
116
|
+
...
|
|
117
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
ARG DOCKER_TAG=release-v5.5
|
|
2
|
+
FROM espressif/idf:${DOCKER_TAG}
|
|
3
|
+
|
|
4
|
+
ENV LC_ALL=C.UTF-8
|
|
5
|
+
ENV LANG=C.UTF-8
|
|
6
|
+
|
|
7
|
+
RUN apt-get update -y && apt-get install udev -y
|
|
8
|
+
|
|
9
|
+
RUN echo "source /opt/esp/idf/export.sh > /dev/null 2>&1" >> ~/.bashrc
|
|
10
|
+
|
|
11
|
+
ENTRYPOINT [ "/opt/esp/entrypoint.sh" ]
|
|
12
|
+
|
|
13
|
+
CMD ["/bin/bash", "-c"]
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ESP-IDF QEMU",
|
|
3
|
+
"build": {
|
|
4
|
+
"dockerfile": "Dockerfile"
|
|
5
|
+
},
|
|
6
|
+
"customizations": {
|
|
7
|
+
"vscode": {
|
|
8
|
+
"settings": {
|
|
9
|
+
"terminal.integrated.defaultProfile.linux": "bash",
|
|
10
|
+
"idf.espIdfPath": "/opt/esp/idf",
|
|
11
|
+
"idf.toolsPath": "/opt/esp",
|
|
12
|
+
"idf.gitPath": "/usr/bin/git"
|
|
13
|
+
},
|
|
14
|
+
"extensions": [
|
|
15
|
+
"espressif.esp-idf-extension",
|
|
16
|
+
"espressif.esp-idf-web",
|
|
17
|
+
"ms-vscode.cpptools"
|
|
18
|
+
]
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"runArgs": ["--privileged"]
|
|
22
|
+
}
|
espp-1.1.5/.gitignore
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# Prerequisites
|
|
2
|
+
*.d
|
|
3
|
+
|
|
4
|
+
# Compiled Object files
|
|
5
|
+
*.slo
|
|
6
|
+
*.lo
|
|
7
|
+
*.o
|
|
8
|
+
*.obj
|
|
9
|
+
|
|
10
|
+
# Precompiled Headers
|
|
11
|
+
*.gch
|
|
12
|
+
*.pch
|
|
13
|
+
|
|
14
|
+
# Compiled Dynamic libraries
|
|
15
|
+
*.so
|
|
16
|
+
*.dylib
|
|
17
|
+
*.dll
|
|
18
|
+
|
|
19
|
+
# Fortran module files
|
|
20
|
+
*.mod
|
|
21
|
+
*.smod
|
|
22
|
+
|
|
23
|
+
# Compiled Static libraries
|
|
24
|
+
*.lai
|
|
25
|
+
*.la
|
|
26
|
+
*.a
|
|
27
|
+
*.lib
|
|
28
|
+
|
|
29
|
+
# Executables
|
|
30
|
+
*.exe
|
|
31
|
+
*.out
|
|
32
|
+
*.app
|
|
33
|
+
|
|
34
|
+
# build folder for ESP-IDF
|
|
35
|
+
build/
|
|
36
|
+
|
|
37
|
+
# we only version sdkconfig.defaults
|
|
38
|
+
sdkconfig
|
|
39
|
+
sdkconfig.old
|
|
40
|
+
|
|
41
|
+
# for now we don't care about ESP IDF dependencies
|
|
42
|
+
dependencies.lock
|
|
43
|
+
|
|
44
|
+
# weird mac folders...
|
|
45
|
+
.DS_Store
|
|
46
|
+
lib/pc
|
|
47
|
+
_build/
|
|
48
|
+
__pycache__/
|
|
49
|
+
managed_components/
|
|
50
|
+
.cache
|
espp-1.1.5/.gitmodules
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
[submodule "components/format/detail/fmt"]
|
|
2
|
+
path = components/format/detail/fmt
|
|
3
|
+
url = https://github.com/fmtlib/fmt
|
|
4
|
+
[submodule "components/serialization/detail/alpaca"]
|
|
5
|
+
path = components/serialization/detail/alpaca
|
|
6
|
+
url = https://github.com/p-ranav/alpaca
|
|
7
|
+
[submodule "components/littlefs"]
|
|
8
|
+
path = components/littlefs
|
|
9
|
+
url = https://github.com/joltwallet/esp_littlefs
|
|
10
|
+
[submodule "components/lvgl"]
|
|
11
|
+
path = components/lvgl
|
|
12
|
+
url = https://github.com/lvgl/lvgl
|
|
13
|
+
[submodule "components/esp-dsp"]
|
|
14
|
+
path = components/esp-dsp
|
|
15
|
+
url = https://github.com/espressif/esp-dsp
|
|
16
|
+
[submodule "components/csv/detail/csv2"]
|
|
17
|
+
path = components/csv/detail/csv2
|
|
18
|
+
url = https://github.com/p-ranav/csv2
|
|
19
|
+
[submodule "components/cli/detail/cli"]
|
|
20
|
+
path = components/cli/detail/cli
|
|
21
|
+
url = https://github.com/daniele77/cli
|
|
22
|
+
[submodule "components/tabulate/detail/tabulate"]
|
|
23
|
+
path = components/tabulate/detail/tabulate
|
|
24
|
+
url = https://github.com/p-ranav/tabulate
|
|
25
|
+
[submodule "components/state_machine/detail/magic_enum"]
|
|
26
|
+
path = components/state_machine/detail/magic_enum
|
|
27
|
+
url = https://github.com/neargye/magic_enum
|
|
28
|
+
[submodule "components/esp-nimble-cpp"]
|
|
29
|
+
path = components/esp-nimble-cpp
|
|
30
|
+
url = https://github.com/esp-cpp/esp-nimble-cpp
|
|
31
|
+
[submodule "components/hid-rp/detail/hid-rp"]
|
|
32
|
+
path = components/hid-rp/detail/hid-rp
|
|
33
|
+
url = https://github.com/intergatedcircuits/hid-rp
|
|
34
|
+
[submodule "components/binary-log/detail"]
|
|
35
|
+
path = components/binary-log/detail
|
|
36
|
+
url = https://github.com/finger563/binary_log
|
|
37
|
+
[submodule "components/gfps_service/detail/nearby"]
|
|
38
|
+
path = components/gfps_service/detail/nearby
|
|
39
|
+
url = https://github.com/esp-cpp/nearby
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
repos:
|
|
2
|
+
- repo: https://github.com/pre-commit/mirrors-clang-format
|
|
3
|
+
rev: v14.0.6
|
|
4
|
+
hooks:
|
|
5
|
+
- id: clang-format
|
|
6
|
+
exclude: |
|
|
7
|
+
(?x)(
|
|
8
|
+
^components/esp-dsp/|
|
|
9
|
+
^components/esp_littlefs/|
|
|
10
|
+
^components/lvgl/|
|
|
11
|
+
^components/state_machine/include/magic_enum.hpp|
|
|
12
|
+
^external/alpaca/|
|
|
13
|
+
^external/cli/|
|
|
14
|
+
^external/csv2/|
|
|
15
|
+
^external/fmt/
|
|
16
|
+
)
|
|
17
|
+
types_or: [c++, c]
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"configurations": [
|
|
3
|
+
{
|
|
4
|
+
"name": "ESP-IDF",
|
|
5
|
+
"compilerPath": "${config:idf.toolsPath}/tools/riscv32-esp-elf/esp-14.2.0_20250730/riscv32-esp-elf/bin/riscv32-esp-elf-gcc",
|
|
6
|
+
"compileCommands": "${config:idf.buildPath}/compile_commands.json",
|
|
7
|
+
"includePath": [
|
|
8
|
+
"${config:idf.espIdfPath}/components/**",
|
|
9
|
+
"${config:idf.espIdfPathWin}/components/**",
|
|
10
|
+
"${workspaceFolder}/**"
|
|
11
|
+
],
|
|
12
|
+
"browse": {
|
|
13
|
+
"path": [
|
|
14
|
+
"${config:idf.espIdfPath}/components",
|
|
15
|
+
"${config:idf.espIdfPathWin}/components",
|
|
16
|
+
"${workspaceFolder}"
|
|
17
|
+
],
|
|
18
|
+
"limitSymbolsToIncludedHeaders": true
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
"version": 4
|
|
23
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"C_Cpp.intelliSenseEngine": "default",
|
|
3
|
+
"idf.pythonInstallPath": "/opt/esp/python_env/idf5.5_py3.12_env/bin/python",
|
|
4
|
+
"idf.port": "/dev/ttyACM0",
|
|
5
|
+
"idf.flashType": "UART",
|
|
6
|
+
"C_Cpp.clang_format_style": "file:/workspaces/espp/.clang-format",
|
|
7
|
+
"C_Cpp.formatting": "clangFormat",
|
|
8
|
+
"editor.formatOnSave": true,
|
|
9
|
+
"editor.formatOnSaveMode": "modifications"
|
|
10
|
+
}
|
espp-1.1.5/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 esp-cpp
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
espp-1.1.5/PKG-INFO
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: espp
|
|
3
|
+
Version: 1.1.5
|
|
4
|
+
Summary: Python bindings for the cross-platform components of espp (ESP-CPP): tasks, timers, sockets, RTSP, RTPS, CDR, COBS, serialization, math, and more
|
|
5
|
+
Keywords: espp,esp-cpp,embedded,rtsp,rtps,cdr,cobs,sockets
|
|
6
|
+
Author-Email: William Emfinger <waemfinger@gmail.com>
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
12
|
+
Classifier: Operating System :: MacOS
|
|
13
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
14
|
+
Classifier: Programming Language :: C++
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Topic :: Software Development :: Embedded Systems
|
|
17
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
18
|
+
Project-URL: Homepage, https://github.com/esp-cpp/espp
|
|
19
|
+
Project-URL: Documentation, https://esp-cpp.github.io/espp/
|
|
20
|
+
Project-URL: Repository, https://github.com/esp-cpp/espp
|
|
21
|
+
Project-URL: Issues, https://github.com/esp-cpp/espp/issues
|
|
22
|
+
Requires-Python: >=3.10
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
|
|
25
|
+
# espp
|
|
26
|
+
|
|
27
|
+
Python bindings for the cross-platform components of
|
|
28
|
+
[espp](https://github.com/esp-cpp/espp) — a collection of C++ components
|
|
29
|
+
originally built for ESP32 / ESP-IDF development, many of which are pure,
|
|
30
|
+
portable C++ and useful on the desktop as well.
|
|
31
|
+
|
|
32
|
+
The bindings are generated with [pybind11](https://github.com/pybind/pybind11)
|
|
33
|
+
and expose real native threads, sockets, and protocol implementations — unlike
|
|
34
|
+
Python threading, an `espp.Task` or `espp.Timer` runs on a real OS thread.
|
|
35
|
+
|
|
36
|
+
## Installation
|
|
37
|
+
|
|
38
|
+
```console
|
|
39
|
+
pip install espp
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Or straight from the repository:
|
|
43
|
+
|
|
44
|
+
```console
|
|
45
|
+
pip install git+https://github.com/esp-cpp/espp.git
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Building from source requires CMake (>= 3.20) and a C++20 compiler.
|
|
49
|
+
|
|
50
|
+
## What's included
|
|
51
|
+
|
|
52
|
+
- **Task / Timer**: native-threaded tasks and periodic timers with callbacks
|
|
53
|
+
- **Sockets**: UDP / TCP client & server helpers (unicast & multicast)
|
|
54
|
+
- **RTSP**: client & server with MJPEG / H.264 (de)packetizers
|
|
55
|
+
- **RTPS**: minimal RTPS participant for DDS interop (e.g. with embedded espp nodes)
|
|
56
|
+
- **CDR**: OMG Common Data Representation reader / writer
|
|
57
|
+
- **COBS**: consistent overhead byte stuffing encoder / decoder (incl. streaming)
|
|
58
|
+
- **Serialization**: alpaca-based binary serialization
|
|
59
|
+
- **Math**: vectors, Bézier curves, range mapping, fast approximations, filters (lowpass, Butterworth, ...), PID
|
|
60
|
+
- **Utilities**: logger, event manager, state machine, FTP, joystick, color, ...
|
|
61
|
+
|
|
62
|
+
The package ships complete type stubs (`py.typed`), so you get full
|
|
63
|
+
autocompletion and type checking in your editor.
|
|
64
|
+
|
|
65
|
+
## Quick example
|
|
66
|
+
|
|
67
|
+
```python
|
|
68
|
+
import time
|
|
69
|
+
import espp
|
|
70
|
+
|
|
71
|
+
def task_fn():
|
|
72
|
+
print("hello from a native thread!")
|
|
73
|
+
time.sleep(0.5)
|
|
74
|
+
return False # don't stop the task
|
|
75
|
+
|
|
76
|
+
task = espp.Task(task_fn, espp.Task.BaseConfig("example task"))
|
|
77
|
+
task.start()
|
|
78
|
+
time.sleep(2)
|
|
79
|
+
task.stop()
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
More example scripts live in the
|
|
83
|
+
[`python/`](https://github.com/esp-cpp/espp/tree/main/python) folder of the
|
|
84
|
+
repository.
|
|
85
|
+
|
|
86
|
+
## Links
|
|
87
|
+
|
|
88
|
+
- Documentation: https://esp-cpp.github.io/espp/
|
|
89
|
+
- Source & issues: https://github.com/esp-cpp/espp
|
espp-1.1.5/README.md
ADDED
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
# Espressif++ (ESPP)
|
|
2
|
+
|
|
3
|
+
This is the repository for some c++ components developed for the
|
|
4
|
+
[ESP-IDF](https://github.com/espressif/esp-idf) framework. Specifically we are
|
|
5
|
+
targeting `ESP-IDF 6.0` currently, but we are maintaining support for `ESP-IDF
|
|
6
|
+
v5.5.1` as well.
|
|
7
|
+
|
|
8
|
+
> NOTE: This repo attempts to stay up to date with ESP-IDF. This means that the
|
|
9
|
+
> code within may not be supported on older ESP-IDF targets.
|
|
10
|
+
|
|
11
|
+
Each component has an `example` folder which contains c++ code showing how to
|
|
12
|
+
use the component and which has a README including instructions for how to run
|
|
13
|
+
the example
|
|
14
|
+
|
|
15
|
+
If you have questions or would like to chat, feel free to hop over to our discord!
|
|
16
|
+
|
|
17
|
+
[<img src="https://discord.com/api/guilds/1345508990716743741/widget.png?style=banner2" alt="Discord Banner 2"/>](https://discord.gg/dvcQw37xAY)
|
|
18
|
+
|
|
19
|
+
<!-- markdown-toc start - Don't edit this section. Run M-x markdown-toc-refresh-toc -->
|
|
20
|
+
**Table of Contents**
|
|
21
|
+
|
|
22
|
+
- [Espressif++ (ESPP)](#espressif-espp)
|
|
23
|
+
- [Getting Started](#getting-started)
|
|
24
|
+
- [Additional Information and Links](#additional-information-and-links)
|
|
25
|
+
- [Developing](#developing)
|
|
26
|
+
|
|
27
|
+
<!-- markdown-toc end -->
|
|
28
|
+
|
|
29
|
+
## Getting Started
|
|
30
|
+
|
|
31
|
+
The components in this repository are targeted towards ESP-IDF >=5.0, though
|
|
32
|
+
they are mainly tested against 5.5.1 right now.
|
|
33
|
+
|
|
34
|
+
There are a few different ways to use the components in this repository. **These
|
|
35
|
+
are independent alternatives — pick the one that best fits your situation. You
|
|
36
|
+
only need to do one of them; they are not steps to be run one after another.**
|
|
37
|
+
|
|
38
|
+
- **Start from the template repository (recommended for new projects).** The
|
|
39
|
+
[esp-cpp/template](https://github.com/esp-cpp/template) repository is a
|
|
40
|
+
ready-to-go starting point that is similar to the esp-idf template but geared
|
|
41
|
+
towards C++ development, and is already set up to pull the `espp` components it
|
|
42
|
+
needs via the IDF component manager. It is set up as a GitHub *template
|
|
43
|
+
repository*, so you can create your own project from it directly using the
|
|
44
|
+
green **"Use this template"** button on its
|
|
45
|
+
[GitHub page](https://github.com/esp-cpp/template) — there's no need to fork or
|
|
46
|
+
clone it by hand. After creating your repository from the template, run the
|
|
47
|
+
included setup script to customize and configure the project (renaming it,
|
|
48
|
+
etc.) for your needs.
|
|
49
|
+
|
|
50
|
+
- **Add individual components with the IDF component manager.** All `espp`
|
|
51
|
+
components are published to the [ESP Component
|
|
52
|
+
Registry](https://components.espressif.com/components?q=namespace:espp) under
|
|
53
|
+
the namespace `espp`. For example, if you want to use the `task` component and
|
|
54
|
+
the `ble_gatt_server` component, you could run:
|
|
55
|
+
|
|
56
|
+
```console
|
|
57
|
+
idf.py add-dependency "espp/task^1.0"
|
|
58
|
+
idf.py add-dependency "espp/ble_gatt_server^1.0"
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
Alternatively, you could add the following dependencies to your
|
|
62
|
+
`main/idf_component.yml`:
|
|
63
|
+
|
|
64
|
+
```yaml
|
|
65
|
+
dependencies:
|
|
66
|
+
esp-cpp/ble_gatt_server: '>=1.0'
|
|
67
|
+
esp-cpp/task: '>=1.0'
|
|
68
|
+
# other dependencies here...
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
- **Add espp to an existing project as a submodule.**
|
|
72
|
+
|
|
73
|
+
> **Not recommended.** espp is a large repository with many submodules and
|
|
74
|
+
> supports many targets, so vendoring the whole repository this way is
|
|
75
|
+
> heavyweight, and this approach may not be fully supported going forward.
|
|
76
|
+
> Prefer the IDF component manager (above), which pulls in only the components
|
|
77
|
+
> you need. Use this approach only in exceptional cases where the component
|
|
78
|
+
> manager is not an option.
|
|
79
|
+
|
|
80
|
+
If you already have a project with a `components` directory, add `espp` as a
|
|
81
|
+
submodule there:
|
|
82
|
+
|
|
83
|
+
```console
|
|
84
|
+
git submodule add https://github.com/esp-cpp/espp components/espp
|
|
85
|
+
git submodule update --init --recursive
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
The `--recursive` flag is important: it pulls in the nested submodules that
|
|
89
|
+
some components require. Afterwards, update your top-level `CMakeLists.txt` to
|
|
90
|
+
add
|
|
91
|
+
|
|
92
|
+
```cmake
|
|
93
|
+
# add the component directories that we want to use
|
|
94
|
+
set(EXTRA_COMPONENT_DIRS
|
|
95
|
+
"components/espp/components"
|
|
96
|
+
)
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
- **Clone espp anywhere and reference its components.** You can also clone espp
|
|
100
|
+
somewhere on your computer and then point your project to its `components`
|
|
101
|
+
directory to use any of the components it contains, similar to the option
|
|
102
|
+
above. The same caveat applies: this is **not recommended** and should be
|
|
103
|
+
reserved for exceptional cases — prefer the IDF component manager.
|
|
104
|
+
|
|
105
|
+
Note: you should ensure that you clone recursively or run `git submodule
|
|
106
|
+
update --init --recursive` to ensure that you have the latest versions of all
|
|
107
|
+
the submodules which are required to build the components in this repository.
|
|
108
|
+
|
|
109
|
+
- **Use the cross-platform components from Python or desktop C++ (no ESP
|
|
110
|
+
hardware needed).** The portable subset of espp (tasks, timers, sockets,
|
|
111
|
+
RTSP, RTPS, CDR, COBS, serialization, math, and more) is also packaged as the
|
|
112
|
+
[`espp` python package](https://pypi.org/project/espp/):
|
|
113
|
+
|
|
114
|
+
```console
|
|
115
|
+
pip install espp
|
|
116
|
+
# or, straight from the repository:
|
|
117
|
+
pip install git+https://github.com/esp-cpp/espp.git
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
See [lib/](./lib) for details, including how to build the same subset as a
|
|
121
|
+
C++ static library for PC, and [python/](./python) for example scripts.
|
|
122
|
+
|
|
123
|
+
## Additional Information and Links
|
|
124
|
+
|
|
125
|
+
* [Documentation](https://esp-cpp.github.io/espp/) - github hosted version of
|
|
126
|
+
the documentation found in [./docs](./docs). This documentation is
|
|
127
|
+
automatically built as part of the CI, but can be locally built for
|
|
128
|
+
validation by running [./build_docs.sh](./build_docs.sh). NOTE: to ensure
|
|
129
|
+
proper build environments, the local documentation build relies on docker, so
|
|
130
|
+
you'll need to run `docker build -t esp-docs doc` once before running
|
|
131
|
+
`build_docs.sh`. This is only required if you want to build the documentation
|
|
132
|
+
locally.
|
|
133
|
+
|
|
134
|
+
Many components in this repo contain example code (referenced in the
|
|
135
|
+
documentation above) that shows some basic usage. This example code can be found
|
|
136
|
+
in that component's `example` directory. NOTE: many component examples also make
|
|
137
|
+
use of other components (esp. some of the foundational components such as
|
|
138
|
+
`format`, `logger`, and `task`.
|
|
139
|
+
|
|
140
|
+
The [esp-cpp github organization](https://github.com/esp-cpp) contains other
|
|
141
|
+
repositories that build specific demonstrations with these (and other)
|
|
142
|
+
components.
|
|
143
|
+
|
|
144
|
+
One such example is the [esp-box-emu](http://github.com/esp-cpp/esp-box-emu)
|
|
145
|
+
repository, which builds upon these components to create a multiplatform
|
|
146
|
+
emulation system using the ESP32-S3-BOX hardware.
|
|
147
|
+
|
|
148
|
+
## Developing
|
|
149
|
+
|
|
150
|
+
If you plan to develop espp components, then it is recommended to configure your
|
|
151
|
+
development environment:
|
|
152
|
+
|
|
153
|
+
### Code style
|
|
154
|
+
|
|
155
|
+
1. Ensure `clang-format` is installed
|
|
156
|
+
2. Ensure [pre-commit](https://pre-commit.com) is installed
|
|
157
|
+
3. Set up `pre-commit` for this repository:
|
|
158
|
+
|
|
159
|
+
``` console
|
|
160
|
+
pre-commit install
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
This helps ensure that consistent code formatting is applied.
|
|
164
|
+
|
|
165
|
+
### Building and viewing documentation locally
|
|
166
|
+
|
|
167
|
+
If you wish to build the documentation, you should have docker installed, then
|
|
168
|
+
you can run
|
|
169
|
+
|
|
170
|
+
``` console
|
|
171
|
+
docker build -t esp-docs doc
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
To build the docker container which you will use to build the documentation
|
|
175
|
+
locally (for testing).
|
|
176
|
+
|
|
177
|
+
Thereafter, you can use the included build script to build the documentation
|
|
178
|
+
locally.
|
|
179
|
+
|
|
180
|
+
``` console
|
|
181
|
+
./build_docs.sh
|
|
182
|
+
```
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# ADC (Analog to Digital Converter) Component
|
|
2
|
+
|
|
3
|
+
[](https://components.espressif.com/components/espp/adc)
|
|
4
|
+
|
|
5
|
+
This component provides some classes which encapsulate analog value sampling
|
|
6
|
+
using the ESP's built-in ADC hardware and peripheral drivers.
|
|
7
|
+
|
|
8
|
+
## Oneshot ADC
|
|
9
|
+
|
|
10
|
+
The `OneshotAdc` allows the user a simple, low-resource way to sporadically (and
|
|
11
|
+
with moderate frequency needs) measure an analog voltage for multiple channels
|
|
12
|
+
on a single ADC UNIT. It does not start or manage any tasks and does not perform
|
|
13
|
+
any filtering on the data. Each time the user calls `read_raw(adc_channel_t)` or
|
|
14
|
+
`read_mv(adc_channel_t)`, it block and trigger an analog read for the associated
|
|
15
|
+
channel (if it was configured to do so).
|
|
16
|
+
|
|
17
|
+
## Continuous ADC
|
|
18
|
+
|
|
19
|
+
The `ContinuousAdc` provides a mechanism for high-frequency, continuous,
|
|
20
|
+
deterministic sampling of analog voltages for multiple channels (potentially
|
|
21
|
+
across multiple ADC units, depending on the ESP32 chip used). It does this be
|
|
22
|
+
enabling the continuous ADC DMA mode and then running its own task which
|
|
23
|
+
retrieves the data and filters it. When the user calls `get_mv(adc_channel_t)`,
|
|
24
|
+
it simply returns the most recent filtered value for that channel, if it was
|
|
25
|
+
configured.
|
|
26
|
+
|
|
27
|
+
## Example
|
|
28
|
+
|
|
29
|
+
There is an [example](./example) which shows the use of the `espp::OneshotAdc`
|
|
30
|
+
and the `espp::ContinuousAdc` components.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
## IDF Component Manager Manifest File
|
|
2
|
+
license: "MIT"
|
|
3
|
+
description: "ADC (oneshot and continuous) component for ESP-IDF"
|
|
4
|
+
url: "https://github.com/esp-cpp/espp/tree/main/components/adc"
|
|
5
|
+
repository: "git://github.com/esp-cpp/espp.git"
|
|
6
|
+
maintainers:
|
|
7
|
+
- William Emfinger <waemfinger@gmail.com>
|
|
8
|
+
documentation: "https://esp-cpp.github.io/espp/adc/index.html"
|
|
9
|
+
examples:
|
|
10
|
+
- path: example
|
|
11
|
+
tags:
|
|
12
|
+
- cpp
|
|
13
|
+
- Component
|
|
14
|
+
- ADC
|
|
15
|
+
- Oneshot
|
|
16
|
+
- Continuous
|
|
17
|
+
dependencies:
|
|
18
|
+
idf:
|
|
19
|
+
version: '>=5.0'
|
|
20
|
+
espp/base_component: '>=1.0'
|
|
21
|
+
espp/task: '>=1.0'
|