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.
Files changed (1292) hide show
  1. espp-1.1.5/.clang-format +117 -0
  2. espp-1.1.5/.devcontainer/Dockerfile +13 -0
  3. espp-1.1.5/.devcontainer/devcontainer.json +22 -0
  4. espp-1.1.5/.gitattributes +2 -0
  5. espp-1.1.5/.gitignore +50 -0
  6. espp-1.1.5/.gitmodules +39 -0
  7. espp-1.1.5/.pre-commit-config.yaml +17 -0
  8. espp-1.1.5/.vscode/c_cpp_properties.json +23 -0
  9. espp-1.1.5/.vscode/launch.json +15 -0
  10. espp-1.1.5/.vscode/settings.json +10 -0
  11. espp-1.1.5/LICENSE +21 -0
  12. espp-1.1.5/PKG-INFO +89 -0
  13. espp-1.1.5/README.md +182 -0
  14. espp-1.1.5/components/adc/CMakeLists.txt +3 -0
  15. espp-1.1.5/components/adc/README.md +30 -0
  16. espp-1.1.5/components/adc/idf_component.yml +21 -0
  17. espp-1.1.5/components/adc/include/adc_types.hpp +67 -0
  18. espp-1.1.5/components/adc/include/continuous_adc.hpp +420 -0
  19. espp-1.1.5/components/adc/include/oneshot_adc.hpp +218 -0
  20. espp-1.1.5/components/adrc/CMakeLists.txt +4 -0
  21. espp-1.1.5/components/adrc/README.md +21 -0
  22. espp-1.1.5/components/adrc/idf_component.yml +20 -0
  23. espp-1.1.5/components/adrc/include/adrc.hpp +833 -0
  24. espp-1.1.5/components/adrc/src/adrc.cpp +1 -0
  25. espp-1.1.5/components/ads1x15/CMakeLists.txt +5 -0
  26. espp-1.1.5/components/ads1x15/README.md +15 -0
  27. espp-1.1.5/components/ads1x15/idf_component.yml +21 -0
  28. espp-1.1.5/components/ads1x15/include/ads1x15.hpp +170 -0
  29. espp-1.1.5/components/ads1x15/src/ads1x15.cpp +118 -0
  30. espp-1.1.5/components/ads7138/CMakeLists.txt +4 -0
  31. espp-1.1.5/components/ads7138/README.md +18 -0
  32. espp-1.1.5/components/ads7138/idf_component.yml +21 -0
  33. espp-1.1.5/components/ads7138/include/ads7138.hpp +1690 -0
  34. espp-1.1.5/components/adxl345/CMakeLists.txt +4 -0
  35. espp-1.1.5/components/adxl345/README.md +15 -0
  36. espp-1.1.5/components/adxl345/idf_component.yml +21 -0
  37. espp-1.1.5/components/adxl345/include/adxl345.hpp +868 -0
  38. espp-1.1.5/components/as5600/CMakeLists.txt +4 -0
  39. espp-1.1.5/components/as5600/Kconfig +21 -0
  40. espp-1.1.5/components/as5600/README.md +30 -0
  41. espp-1.1.5/components/as5600/idf_component.yml +23 -0
  42. espp-1.1.5/components/as5600/include/as5600.hpp +454 -0
  43. espp-1.1.5/components/at581x/CMakeLists.txt +4 -0
  44. espp-1.1.5/components/at581x/README.md +60 -0
  45. espp-1.1.5/components/at581x/idf_component.yml +23 -0
  46. espp-1.1.5/components/at581x/include/at581x.hpp +333 -0
  47. espp-1.1.5/components/aw9523/CMakeLists.txt +4 -0
  48. espp-1.1.5/components/aw9523/README.md +14 -0
  49. espp-1.1.5/components/aw9523/idf_component.yml +20 -0
  50. espp-1.1.5/components/aw9523/include/aw9523.hpp +515 -0
  51. espp-1.1.5/components/base_component/CMakeLists.txt +3 -0
  52. espp-1.1.5/components/base_component/README.md +10 -0
  53. espp-1.1.5/components/base_component/idf_component.yml +15 -0
  54. espp-1.1.5/components/base_component/include/base_component.hpp +71 -0
  55. espp-1.1.5/components/base_peripheral/CMakeLists.txt +3 -0
  56. espp-1.1.5/components/base_peripheral/README.md +14 -0
  57. espp-1.1.5/components/base_peripheral/idf_component.yml +18 -0
  58. espp-1.1.5/components/base_peripheral/include/base_peripheral.hpp +833 -0
  59. espp-1.1.5/components/bdc_driver/CMakeLists.txt +4 -0
  60. espp-1.1.5/components/bdc_driver/README.md +23 -0
  61. espp-1.1.5/components/bdc_driver/idf_component.yml +21 -0
  62. espp-1.1.5/components/bdc_driver/include/bdc_driver.hpp +145 -0
  63. espp-1.1.5/components/bdc_driver/src/bdc_driver.cpp +342 -0
  64. espp-1.1.5/components/bldc_current_sense/CMakeLists.txt +4 -0
  65. espp-1.1.5/components/bldc_current_sense/README.md +41 -0
  66. espp-1.1.5/components/bldc_current_sense/idf_component.yml +25 -0
  67. espp-1.1.5/components/bldc_current_sense/include/current_sense.hpp +211 -0
  68. espp-1.1.5/components/bldc_driver/CMakeLists.txt +4 -0
  69. espp-1.1.5/components/bldc_driver/README.md +10 -0
  70. espp-1.1.5/components/bldc_driver/idf_component.yml +18 -0
  71. espp-1.1.5/components/bldc_driver/include/bldc_driver.hpp +533 -0
  72. espp-1.1.5/components/bldc_driver/src/bldc_driver.cpp +3 -0
  73. espp-1.1.5/components/bldc_haptics/CMakeLists.txt +4 -0
  74. espp-1.1.5/components/bldc_haptics/README.md +32 -0
  75. espp-1.1.5/components/bldc_haptics/idf_component.yml +27 -0
  76. espp-1.1.5/components/bldc_haptics/include/bldc_haptics.hpp +429 -0
  77. espp-1.1.5/components/bldc_haptics/include/detent_config.hpp +179 -0
  78. espp-1.1.5/components/bldc_haptics/include/haptic_config.hpp +12 -0
  79. espp-1.1.5/components/bldc_motor/CMakeLists.txt +4 -0
  80. espp-1.1.5/components/bldc_motor/README.md +29 -0
  81. espp-1.1.5/components/bldc_motor/idf_component.yml +24 -0
  82. espp-1.1.5/components/bldc_motor/include/bldc_motor.hpp +1032 -0
  83. espp-1.1.5/components/bldc_types/CMakeLists.txt +4 -0
  84. espp-1.1.5/components/bldc_types/idf_component.yml +19 -0
  85. espp-1.1.5/components/bldc_types/include/bldc_concepts.hpp +73 -0
  86. espp-1.1.5/components/bldc_types/include/bldc_types.hpp +109 -0
  87. espp-1.1.5/components/bldc_types/include/foc_utils.hpp +54 -0
  88. espp-1.1.5/components/bldc_types/include/sensor_direction.hpp +36 -0
  89. espp-1.1.5/components/ble_gatt_server/CMakeLists.txt +5 -0
  90. espp-1.1.5/components/ble_gatt_server/README.md +57 -0
  91. espp-1.1.5/components/ble_gatt_server/idf_component.yml +24 -0
  92. espp-1.1.5/components/ble_gatt_server/include/battery_service.hpp +132 -0
  93. espp-1.1.5/components/ble_gatt_server/include/ble_appearances.hpp +43 -0
  94. espp-1.1.5/components/ble_gatt_server/include/ble_gatt_server.hpp +865 -0
  95. espp-1.1.5/components/ble_gatt_server/include/ble_gatt_server_callbacks.hpp +48 -0
  96. espp-1.1.5/components/ble_gatt_server/include/ble_gatt_server_menu.hpp +401 -0
  97. espp-1.1.5/components/ble_gatt_server/include/device_info_service.hpp +306 -0
  98. espp-1.1.5/components/ble_gatt_server/include/generic_access_service.hpp +160 -0
  99. espp-1.1.5/components/ble_gatt_server/src/ble_gatt_server.cpp +148 -0
  100. espp-1.1.5/components/ble_gatt_server/src/ble_gatt_server_callbacks.cpp +98 -0
  101. espp-1.1.5/components/ble_gatt_server/src/ble_gatt_server_ext_adv.cpp +99 -0
  102. espp-1.1.5/components/bm8563/CMakeLists.txt +4 -0
  103. espp-1.1.5/components/bm8563/README.md +11 -0
  104. espp-1.1.5/components/bm8563/idf_component.yml +20 -0
  105. espp-1.1.5/components/bm8563/include/bm8563.hpp +316 -0
  106. espp-1.1.5/components/bmi270/CMakeLists.txt +5 -0
  107. espp-1.1.5/components/bmi270/README.md +221 -0
  108. espp-1.1.5/components/bmi270/idf_component.yml +20 -0
  109. espp-1.1.5/components/bmi270/include/bmi270.hpp +1362 -0
  110. espp-1.1.5/components/bmi270/include/bmi270_detail.hpp +363 -0
  111. espp-1.1.5/components/bmi270/src/bmi270.cpp +4576 -0
  112. espp-1.1.5/components/button/CMakeLists.txt +3 -0
  113. espp-1.1.5/components/button/README.md +22 -0
  114. espp-1.1.5/components/button/idf_component.yml +20 -0
  115. espp-1.1.5/components/button/include/button.hpp +97 -0
  116. espp-1.1.5/components/byte90/CMakeLists.txt +7 -0
  117. espp-1.1.5/components/byte90/Kconfig +23 -0
  118. espp-1.1.5/components/byte90/README.md +16 -0
  119. espp-1.1.5/components/byte90/idf_component.yml +29 -0
  120. espp-1.1.5/components/byte90/include/byte90.hpp +356 -0
  121. espp-1.1.5/components/byte90/src/accelerometer.cpp +66 -0
  122. espp-1.1.5/components/byte90/src/button.cpp +29 -0
  123. espp-1.1.5/components/byte90/src/byte90.cpp +6 -0
  124. espp-1.1.5/components/byte90/src/display.cpp +246 -0
  125. espp-1.1.5/components/cdr/CMakeLists.txt +3 -0
  126. espp-1.1.5/components/cdr/README.md +34 -0
  127. espp-1.1.5/components/cdr/idf_component.yml +21 -0
  128. espp-1.1.5/components/cdr/include/cdr.hpp +547 -0
  129. espp-1.1.5/components/cdr/src/cdr.cpp +1 -0
  130. espp-1.1.5/components/chsc6x/CMakeLists.txt +4 -0
  131. espp-1.1.5/components/chsc6x/README.md +13 -0
  132. espp-1.1.5/components/chsc6x/idf_component.yml +22 -0
  133. espp-1.1.5/components/chsc6x/include/chsc6x.hpp +86 -0
  134. espp-1.1.5/components/cli/CMakeLists.txt +14 -0
  135. espp-1.1.5/components/cli/README.md +48 -0
  136. espp-1.1.5/components/cli/detail/cli/.gitignore +75 -0
  137. espp-1.1.5/components/cli/detail/cli/CHANGELOG.md +104 -0
  138. espp-1.1.5/components/cli/detail/cli/CMakeLists.txt +158 -0
  139. espp-1.1.5/components/cli/detail/cli/CODE_OF_CONDUCT.md +9 -0
  140. espp-1.1.5/components/cli/detail/cli/CONTRIBUTING.md +41 -0
  141. espp-1.1.5/components/cli/detail/cli/LICENSE +23 -0
  142. espp-1.1.5/components/cli/detail/cli/README.md +550 -0
  143. espp-1.1.5/components/cli/detail/cli/cli.pc.in +8 -0
  144. espp-1.1.5/components/cli/detail/cli/cliConfig.cmake.in +13 -0
  145. espp-1.1.5/components/cli/detail/cli/examples/CMakeLists.txt +61 -0
  146. espp-1.1.5/components/cli/detail/cli/examples/Makefile.boostasio +41 -0
  147. espp-1.1.5/components/cli/detail/cli/examples/Makefile.noasio +41 -0
  148. espp-1.1.5/components/cli/detail/cli/examples/Makefile.standaloneasio +41 -0
  149. espp-1.1.5/components/cli/detail/cli/examples/asyncsession.cpp +135 -0
  150. espp-1.1.5/components/cli/detail/cli/examples/boostasio_nonowner_iocontext.cpp +142 -0
  151. espp-1.1.5/components/cli/detail/cli/examples/boostasio_nonowner_iocontext_vsprj/boostasio_nonowner_iocontext.vcxproj +151 -0
  152. espp-1.1.5/components/cli/detail/cli/examples/complete.cpp +298 -0
  153. espp-1.1.5/components/cli/detail/cli/examples/complete_vsprj/common.props +16 -0
  154. espp-1.1.5/components/cli/detail/cli/examples/complete_vsprj/complete.vcxproj +129 -0
  155. espp-1.1.5/components/cli/detail/cli/examples/examples.sln +81 -0
  156. espp-1.1.5/components/cli/detail/cli/examples/filesession.cpp +104 -0
  157. espp-1.1.5/components/cli/detail/cli/examples/filesession_vsprj/filesession.vcxproj +133 -0
  158. espp-1.1.5/components/cli/detail/cli/examples/input.txt +3 -0
  159. espp-1.1.5/components/cli/detail/cli/examples/makefile.boostasio.win +55 -0
  160. espp-1.1.5/components/cli/detail/cli/examples/makefile.noasio.win +54 -0
  161. espp-1.1.5/components/cli/detail/cli/examples/makefile.standaloneasio.win +54 -0
  162. espp-1.1.5/components/cli/detail/cli/examples/pluginmanager.cpp +344 -0
  163. espp-1.1.5/components/cli/detail/cli/examples/pluginmanager_vsprj/pluginmanager.vcxproj +133 -0
  164. espp-1.1.5/components/cli/detail/cli/examples/simplelocalsession.cpp +91 -0
  165. espp-1.1.5/components/cli/detail/cli/examples/simplelocalsession_vsprj/simplelocalsession.vcxproj +133 -0
  166. espp-1.1.5/components/cli/detail/cli/examples/standaloneasio_nonowner_iocontext.cpp +137 -0
  167. espp-1.1.5/components/cli/detail/cli/examples/standaloneasio_nonowner_iocontext_vsprj/standaloneasio_nonowner_iocontext.vcxproj +149 -0
  168. espp-1.1.5/components/cli/detail/cli/include/cli/boostasiocliasyncsession.h +40 -0
  169. espp-1.1.5/components/cli/detail/cli/include/cli/boostasioremotecli.h +39 -0
  170. espp-1.1.5/components/cli/detail/cli/include/cli/boostasioscheduler.h +38 -0
  171. espp-1.1.5/components/cli/detail/cli/include/cli/cli.h +997 -0
  172. espp-1.1.5/components/cli/detail/cli/include/cli/clifilesession.h +83 -0
  173. espp-1.1.5/components/cli/detail/cli/include/cli/clilocalsession.h +82 -0
  174. espp-1.1.5/components/cli/detail/cli/include/cli/colorprofile.h +76 -0
  175. espp-1.1.5/components/cli/detail/cli/include/cli/detail/boostasiolib.h +49 -0
  176. espp-1.1.5/components/cli/detail/cli/include/cli/detail/commandprocessor.h +174 -0
  177. espp-1.1.5/components/cli/detail/cli/include/cli/detail/commonprefix.h +70 -0
  178. espp-1.1.5/components/cli/detail/cli/include/cli/detail/fromstring.h +272 -0
  179. espp-1.1.5/components/cli/detail/cli/include/cli/detail/genericasioremotecli.h +593 -0
  180. espp-1.1.5/components/cli/detail/cli/include/cli/detail/genericasioscheduler.h +113 -0
  181. espp-1.1.5/components/cli/detail/cli/include/cli/detail/genericcliasyncsession.h +102 -0
  182. espp-1.1.5/components/cli/detail/cli/include/cli/detail/history.h +213 -0
  183. espp-1.1.5/components/cli/detail/cli/include/cli/detail/inputdevice.h +74 -0
  184. espp-1.1.5/components/cli/detail/cli/include/cli/detail/keyboard.h +46 -0
  185. espp-1.1.5/components/cli/detail/cli/include/cli/detail/linuxkeyboard.h +241 -0
  186. espp-1.1.5/components/cli/detail/cli/include/cli/detail/newboostasiolib.h +89 -0
  187. espp-1.1.5/components/cli/detail/cli/include/cli/detail/newstandaloneasiolib.h +89 -0
  188. espp-1.1.5/components/cli/detail/cli/include/cli/detail/oldboostasiolib.h +82 -0
  189. espp-1.1.5/components/cli/detail/cli/include/cli/detail/oldstandaloneasiolib.h +85 -0
  190. espp-1.1.5/components/cli/detail/cli/include/cli/detail/platform.h +44 -0
  191. espp-1.1.5/components/cli/detail/cli/include/cli/detail/rang.h +303 -0
  192. espp-1.1.5/components/cli/detail/cli/include/cli/detail/screen.h +46 -0
  193. espp-1.1.5/components/cli/detail/cli/include/cli/detail/server.h +157 -0
  194. espp-1.1.5/components/cli/detail/cli/include/cli/detail/split.h +248 -0
  195. espp-1.1.5/components/cli/detail/cli/include/cli/detail/standaloneasiolib.h +49 -0
  196. espp-1.1.5/components/cli/detail/cli/include/cli/detail/telnetscreen.h +48 -0
  197. espp-1.1.5/components/cli/detail/cli/include/cli/detail/terminal.h +220 -0
  198. espp-1.1.5/components/cli/detail/cli/include/cli/detail/winkeyboard.h +181 -0
  199. espp-1.1.5/components/cli/detail/cli/include/cli/detail/winscreen.h +62 -0
  200. espp-1.1.5/components/cli/detail/cli/include/cli/filehistorystorage.h +94 -0
  201. espp-1.1.5/components/cli/detail/cli/include/cli/historystorage.h +56 -0
  202. espp-1.1.5/components/cli/detail/cli/include/cli/loopscheduler.h +128 -0
  203. espp-1.1.5/components/cli/detail/cli/include/cli/scheduler.h +55 -0
  204. espp-1.1.5/components/cli/detail/cli/include/cli/standaloneasiocliasyncsession.h +40 -0
  205. espp-1.1.5/components/cli/detail/cli/include/cli/standaloneasioremotecli.h +40 -0
  206. espp-1.1.5/components/cli/detail/cli/include/cli/standaloneasioscheduler.h +38 -0
  207. espp-1.1.5/components/cli/detail/cli/include/cli/volatilehistorystorage.h +76 -0
  208. espp-1.1.5/components/cli/detail/cli/test/CMakeLists.txt +72 -0
  209. espp-1.1.5/components/cli/detail/cli/test/Makefile +66 -0
  210. espp-1.1.5/components/cli/detail/cli/test/driver.cpp +33 -0
  211. espp-1.1.5/components/cli/detail/cli/test/makefile.win +103 -0
  212. espp-1.1.5/components/cli/detail/cli/test/scheduler_test_templates.h +80 -0
  213. espp-1.1.5/components/cli/detail/cli/test/test_boostasioscheduler.cpp +63 -0
  214. espp-1.1.5/components/cli/detail/cli/test/test_cli.cpp +436 -0
  215. espp-1.1.5/components/cli/detail/cli/test/test_commonprefix.cpp +46 -0
  216. espp-1.1.5/components/cli/detail/cli/test/test_filehistorystorage.cpp +86 -0
  217. espp-1.1.5/components/cli/detail/cli/test/test_history.cpp +240 -0
  218. espp-1.1.5/components/cli/detail/cli/test/test_loopscheduler.cpp +53 -0
  219. espp-1.1.5/components/cli/detail/cli/test/test_menu.cpp +124 -0
  220. espp-1.1.5/components/cli/detail/cli/test/test_split.cpp +287 -0
  221. espp-1.1.5/components/cli/detail/cli/test/test_standaloneasioscheduler.cpp +63 -0
  222. espp-1.1.5/components/cli/detail/cli/test/test_volatilehistorystorage.cpp +59 -0
  223. espp-1.1.5/components/cli/idf_component.yml +25 -0
  224. espp-1.1.5/components/cli/include/cli.hpp +442 -0
  225. espp-1.1.5/components/cli/include/line_input.hpp +429 -0
  226. espp-1.1.5/components/cli/src/cli.cpp +4 -0
  227. espp-1.1.5/components/cobs/CMakeLists.txt +3 -0
  228. espp-1.1.5/components/cobs/README.md +237 -0
  229. espp-1.1.5/components/cobs/idf_component.yml +21 -0
  230. espp-1.1.5/components/cobs/include/cobs.hpp +88 -0
  231. espp-1.1.5/components/cobs/include/cobs_stream.hpp +133 -0
  232. espp-1.1.5/components/cobs/src/cobs.cpp +133 -0
  233. espp-1.1.5/components/cobs/src/cobs_stream.cpp +177 -0
  234. espp-1.1.5/components/codec/CMakeLists.txt +13 -0
  235. espp-1.1.5/components/codec/README.md +18 -0
  236. espp-1.1.5/components/codec/es7210/es7210.cpp +511 -0
  237. espp-1.1.5/components/codec/es7210/es7210.hpp +262 -0
  238. espp-1.1.5/components/codec/es8311/es8311.cpp +745 -0
  239. espp-1.1.5/components/codec/es8311/es8311.hpp +294 -0
  240. espp-1.1.5/components/codec/es8388/es8388.cpp +510 -0
  241. espp-1.1.5/components/codec/es8388/es8388.hpp +311 -0
  242. espp-1.1.5/components/codec/idf_component.yml +18 -0
  243. espp-1.1.5/components/codec/include/audio_hal.h +138 -0
  244. espp-1.1.5/components/codec/include/esxxx_common.h +190 -0
  245. espp-1.1.5/components/color/CMakeLists.txt +4 -0
  246. espp-1.1.5/components/color/README.md +23 -0
  247. espp-1.1.5/components/color/idf_component.yml +20 -0
  248. espp-1.1.5/components/color/include/color.hpp +169 -0
  249. espp-1.1.5/components/color/include/color_formatters.hpp +50 -0
  250. espp-1.1.5/components/color/src/color.cpp +151 -0
  251. espp-1.1.5/components/controller/CMakeLists.txt +4 -0
  252. espp-1.1.5/components/controller/README.md +19 -0
  253. espp-1.1.5/components/controller/idf_component.yml +21 -0
  254. espp-1.1.5/components/controller/include/controller.hpp +326 -0
  255. espp-1.1.5/components/cst816/CMakeLists.txt +4 -0
  256. espp-1.1.5/components/cst816/README.md +13 -0
  257. espp-1.1.5/components/cst816/idf_component.yml +23 -0
  258. espp-1.1.5/components/cst816/include/cst816.hpp +112 -0
  259. espp-1.1.5/components/csv/CMakeLists.txt +3 -0
  260. espp-1.1.5/components/csv/README.md +14 -0
  261. espp-1.1.5/components/csv/detail/csv2/.clang-format +117 -0
  262. espp-1.1.5/components/csv/detail/csv2/.gitignore +273 -0
  263. espp-1.1.5/components/csv/detail/csv2/CMakeLists.txt +89 -0
  264. espp-1.1.5/components/csv/detail/csv2/CONTRIBUTING.md +7 -0
  265. espp-1.1.5/components/csv/detail/csv2/LICENSE +21 -0
  266. espp-1.1.5/components/csv/detail/csv2/LICENSE.mio +21 -0
  267. espp-1.1.5/components/csv/detail/csv2/README.md +206 -0
  268. espp-1.1.5/components/csv/detail/csv2/benchmark/csv-game/README.md +40 -0
  269. espp-1.1.5/components/csv/detail/csv2/benchmark/csv-game/csv_count.cpp +33 -0
  270. espp-1.1.5/components/csv/detail/csv2/benchmark/csv-game/fieldcount.cpp +24 -0
  271. espp-1.1.5/components/csv/detail/csv2/benchmark/main.cpp +46 -0
  272. espp-1.1.5/components/csv/detail/csv2/clang-format.bash +3 -0
  273. espp-1.1.5/components/csv/detail/csv2/csv2.pc.in +7 -0
  274. espp-1.1.5/components/csv/detail/csv2/csv2Config.cmake.in +7 -0
  275. espp-1.1.5/components/csv/detail/csv2/img/logo.png +0 -0
  276. espp-1.1.5/components/csv/detail/csv2/include/csv2/mio.hpp +1562 -0
  277. espp-1.1.5/components/csv/detail/csv2/include/csv2/parameters.hpp +50 -0
  278. espp-1.1.5/components/csv/detail/csv2/include/csv2/reader.hpp +276 -0
  279. espp-1.1.5/components/csv/detail/csv2/include/csv2/writer.hpp +57 -0
  280. espp-1.1.5/components/csv/detail/csv2/single_include/csv2/csv2.hpp +1964 -0
  281. espp-1.1.5/components/csv/detail/csv2/single_include.json +11 -0
  282. espp-1.1.5/components/csv/detail/csv2/test/CMakeLists.txt +17 -0
  283. espp-1.1.5/components/csv/detail/csv2/test/doctest.hpp +5941 -0
  284. espp-1.1.5/components/csv/detail/csv2/test/inputs/empty.csv +0 -0
  285. espp-1.1.5/components/csv/detail/csv2/test/inputs/empty_lines.csv +8 -0
  286. espp-1.1.5/components/csv/detail/csv2/test/inputs/missing_columns.csv +3 -0
  287. espp-1.1.5/components/csv/detail/csv2/test/inputs/test_01.csv +3 -0
  288. espp-1.1.5/components/csv/detail/csv2/test/inputs/test_02.csv +3 -0
  289. espp-1.1.5/components/csv/detail/csv2/test/inputs/test_03.csv +2 -0
  290. espp-1.1.5/components/csv/detail/csv2/test/inputs/test_04.csv +2 -0
  291. espp-1.1.5/components/csv/detail/csv2/test/inputs/test_05.csv +2 -0
  292. espp-1.1.5/components/csv/detail/csv2/test/inputs/test_06.csv +1 -0
  293. espp-1.1.5/components/csv/detail/csv2/test/inputs/test_07.csv +1 -0
  294. espp-1.1.5/components/csv/detail/csv2/test/inputs/test_08.csv +3 -0
  295. espp-1.1.5/components/csv/detail/csv2/test/inputs/test_09.csv +3 -0
  296. espp-1.1.5/components/csv/detail/csv2/test/inputs/test_10.csv +3 -0
  297. espp-1.1.5/components/csv/detail/csv2/test/inputs/test_11_excel.csv +3 -0
  298. espp-1.1.5/components/csv/detail/csv2/test/inputs/test_12_unix.csv +3 -0
  299. espp-1.1.5/components/csv/detail/csv2/test/inputs/test_13.csv +3 -0
  300. espp-1.1.5/components/csv/detail/csv2/test/inputs/test_14.csv +4 -0
  301. espp-1.1.5/components/csv/detail/csv2/test/inputs/test_15.csv +6 -0
  302. espp-1.1.5/components/csv/detail/csv2/test/inputs/too_many_columns.csv +3 -0
  303. espp-1.1.5/components/csv/detail/csv2/test/main.cpp +387 -0
  304. espp-1.1.5/components/csv/detail/csv2/utils/amalgamate/CHANGES.md +10 -0
  305. espp-1.1.5/components/csv/detail/csv2/utils/amalgamate/LICENSE.md +27 -0
  306. espp-1.1.5/components/csv/detail/csv2/utils/amalgamate/README.md +66 -0
  307. espp-1.1.5/components/csv/detail/csv2/utils/amalgamate/amalgamate.py +299 -0
  308. espp-1.1.5/components/csv/detail/csv2/utils/amalgamate/config.json +8 -0
  309. espp-1.1.5/components/csv/idf_component.yml +18 -0
  310. espp-1.1.5/components/csv/include/csv.hpp +29 -0
  311. espp-1.1.5/components/display/CMakeLists.txt +5 -0
  312. espp-1.1.5/components/display/README.md +7 -0
  313. espp-1.1.5/components/display/idf_component.yml +22 -0
  314. espp-1.1.5/components/display/include/display.hpp +479 -0
  315. espp-1.1.5/components/display/include/lv_conf.h +988 -0
  316. espp-1.1.5/components/display_drivers/CMakeLists.txt +5 -0
  317. espp-1.1.5/components/display_drivers/README.md +32 -0
  318. espp-1.1.5/components/display_drivers/idf_component.yml +27 -0
  319. espp-1.1.5/components/display_drivers/include/display_drivers.hpp +579 -0
  320. espp-1.1.5/components/display_drivers/include/ek79007.hpp +93 -0
  321. espp-1.1.5/components/display_drivers/include/gc9a01.hpp +152 -0
  322. espp-1.1.5/components/display_drivers/include/ili9341.hpp +97 -0
  323. espp-1.1.5/components/display_drivers/include/ili9881.hpp +391 -0
  324. espp-1.1.5/components/display_drivers/include/sh8601.hpp +125 -0
  325. espp-1.1.5/components/display_drivers/include/spi_panel_io.hpp +115 -0
  326. espp-1.1.5/components/display_drivers/include/ssd1351.hpp +184 -0
  327. espp-1.1.5/components/display_drivers/include/st7123.hpp +149 -0
  328. espp-1.1.5/components/display_drivers/include/st7789.hpp +154 -0
  329. espp-1.1.5/components/display_drivers/include/st7796.hpp +89 -0
  330. espp-1.1.5/components/display_drivers/src/spi_panel_io.cpp +195 -0
  331. espp-1.1.5/components/dns_server/CMakeLists.txt +5 -0
  332. espp-1.1.5/components/dns_server/README.md +67 -0
  333. espp-1.1.5/components/dns_server/idf_component.yml +23 -0
  334. espp-1.1.5/components/dns_server/include/dns_server.hpp +79 -0
  335. espp-1.1.5/components/dns_server/src/dns_server.cpp +204 -0
  336. espp-1.1.5/components/drv2605/CMakeLists.txt +4 -0
  337. espp-1.1.5/components/drv2605/README.md +21 -0
  338. espp-1.1.5/components/drv2605/idf_component.yml +22 -0
  339. espp-1.1.5/components/drv2605/include/drv2605.hpp +931 -0
  340. espp-1.1.5/components/drv2605/include/drv2605_menu.hpp +312 -0
  341. espp-1.1.5/components/encoder/CMakeLists.txt +3 -0
  342. espp-1.1.5/components/encoder/README.md +18 -0
  343. espp-1.1.5/components/encoder/idf_component.yml +22 -0
  344. espp-1.1.5/components/encoder/include/abi_encoder.hpp +274 -0
  345. espp-1.1.5/components/encoder/include/encoder_types.hpp +14 -0
  346. espp-1.1.5/components/esp-box/CMakeLists.txt +6 -0
  347. espp-1.1.5/components/esp-box/Kconfig +23 -0
  348. espp-1.1.5/components/esp-box/README.md +17 -0
  349. espp-1.1.5/components/esp-box/idf_component.yml +34 -0
  350. espp-1.1.5/components/esp-box/include/esp-box.hpp +562 -0
  351. espp-1.1.5/components/esp-box/src/audio.cpp +191 -0
  352. espp-1.1.5/components/esp-box/src/buttons.cpp +49 -0
  353. espp-1.1.5/components/esp-box/src/esp-box.cpp +56 -0
  354. espp-1.1.5/components/esp-box/src/imu.cpp +76 -0
  355. espp-1.1.5/components/esp-box/src/touchpad.cpp +136 -0
  356. espp-1.1.5/components/esp-box/src/video.cpp +272 -0
  357. espp-1.1.5/components/esp32-p4-function-ev-board/CMakeLists.txt +24 -0
  358. espp-1.1.5/components/esp32-p4-function-ev-board/Kconfig +84 -0
  359. espp-1.1.5/components/esp32-p4-function-ev-board/README.md +124 -0
  360. espp-1.1.5/components/esp32-p4-function-ev-board/idf_component.yml +31 -0
  361. espp-1.1.5/components/esp32-p4-function-ev-board/include/esp32-p4-function-ev-board.hpp +582 -0
  362. espp-1.1.5/components/esp32-p4-function-ev-board/src/audio.cpp +178 -0
  363. espp-1.1.5/components/esp32-p4-function-ev-board/src/esp32-p4-function-ev-board.cpp +56 -0
  364. espp-1.1.5/components/esp32-p4-function-ev-board/src/ethernet.cpp +196 -0
  365. espp-1.1.5/components/esp32-p4-function-ev-board/src/sdcard.cpp +89 -0
  366. espp-1.1.5/components/esp32-p4-function-ev-board/src/touchpad.cpp +169 -0
  367. espp-1.1.5/components/esp32-p4-function-ev-board/src/video.cpp +396 -0
  368. espp-1.1.5/components/esp32-timer-cam/CMakeLists.txt +6 -0
  369. espp-1.1.5/components/esp32-timer-cam/Kconfig +22 -0
  370. espp-1.1.5/components/esp32-timer-cam/README.md +16 -0
  371. espp-1.1.5/components/esp32-timer-cam/idf_component.yml +29 -0
  372. espp-1.1.5/components/esp32-timer-cam/include/esp32-timer-cam.hpp +275 -0
  373. espp-1.1.5/components/esp32-timer-cam/src/esp32-timer-cam.cpp +140 -0
  374. espp-1.1.5/components/event_manager/CMakeLists.txt +4 -0
  375. espp-1.1.5/components/event_manager/README.md +22 -0
  376. espp-1.1.5/components/event_manager/idf_component.yml +23 -0
  377. espp-1.1.5/components/event_manager/include/event_manager.hpp +158 -0
  378. espp-1.1.5/components/event_manager/include/event_map.hpp +37 -0
  379. espp-1.1.5/components/event_manager/src/event_manager.cpp +265 -0
  380. espp-1.1.5/components/expressive_eyes/CMakeLists.txt +5 -0
  381. espp-1.1.5/components/expressive_eyes/README.md +56 -0
  382. espp-1.1.5/components/expressive_eyes/idf_component.yml +21 -0
  383. espp-1.1.5/components/expressive_eyes/include/expressive_eyes.hpp +252 -0
  384. espp-1.1.5/components/expressive_eyes/src/expressive_eyes.cpp +440 -0
  385. espp-1.1.5/components/file_system/CMakeLists.txt +4 -0
  386. espp-1.1.5/components/file_system/Kconfig.projbuild +9 -0
  387. espp-1.1.5/components/file_system/README.md +20 -0
  388. espp-1.1.5/components/file_system/idf_component.yml +21 -0
  389. espp-1.1.5/components/file_system/include/file_system.hpp +303 -0
  390. espp-1.1.5/components/file_system/src/file_system.cpp +387 -0
  391. espp-1.1.5/components/filters/CMakeLists.txt +4 -0
  392. espp-1.1.5/components/filters/README.md +96 -0
  393. espp-1.1.5/components/filters/idf_component.yml +28 -0
  394. espp-1.1.5/components/filters/include/biquad_filter.hpp +165 -0
  395. espp-1.1.5/components/filters/include/biquad_filter_formatters.hpp +29 -0
  396. espp-1.1.5/components/filters/include/butterworth_filter.hpp +76 -0
  397. espp-1.1.5/components/filters/include/butterworth_filter_formatters.hpp +24 -0
  398. espp-1.1.5/components/filters/include/complementary_filter.hpp +78 -0
  399. espp-1.1.5/components/filters/include/kalman_filter.hpp +161 -0
  400. espp-1.1.5/components/filters/include/lowpass_filter.hpp +89 -0
  401. espp-1.1.5/components/filters/include/lowpass_filter_formatters.hpp +16 -0
  402. espp-1.1.5/components/filters/include/madgwick_filter.hpp +253 -0
  403. espp-1.1.5/components/filters/include/simple_lowpass_filter.hpp +84 -0
  404. espp-1.1.5/components/filters/include/simple_lowpass_filter_formatters.hpp +16 -0
  405. espp-1.1.5/components/filters/include/sos_filter.hpp +57 -0
  406. espp-1.1.5/components/filters/include/sos_filter_formatters.hpp +24 -0
  407. espp-1.1.5/components/filters/include/transfer_function.hpp +22 -0
  408. espp-1.1.5/components/filters/include/transfer_function_formatters.hpp +16 -0
  409. espp-1.1.5/components/filters/src/lowpass_filter.cpp +64 -0
  410. espp-1.1.5/components/filters/src/simple_lowpass_filter.cpp +43 -0
  411. espp-1.1.5/components/format/CMakeLists.txt +3 -0
  412. espp-1.1.5/components/format/README.md +7 -0
  413. espp-1.1.5/components/format/detail/fmt/.clang-format +15 -0
  414. espp-1.1.5/components/format/detail/fmt/.clang-tidy +4 -0
  415. espp-1.1.5/components/format/detail/fmt/.cmake-format +4 -0
  416. espp-1.1.5/components/format/detail/fmt/.gitignore +23 -0
  417. espp-1.1.5/components/format/detail/fmt/CMakeLists.txt +593 -0
  418. espp-1.1.5/components/format/detail/fmt/CONTRIBUTING.md +20 -0
  419. espp-1.1.5/components/format/detail/fmt/ChangeLog.md +3299 -0
  420. espp-1.1.5/components/format/detail/fmt/LICENSE +20 -0
  421. espp-1.1.5/components/format/detail/fmt/README.md +493 -0
  422. espp-1.1.5/components/format/detail/fmt/include/fmt/args.h +218 -0
  423. espp-1.1.5/components/format/detail/fmt/include/fmt/base.h +2944 -0
  424. espp-1.1.5/components/format/detail/fmt/include/fmt/chrono.h +2244 -0
  425. espp-1.1.5/components/format/detail/fmt/include/fmt/color.h +637 -0
  426. espp-1.1.5/components/format/detail/fmt/include/fmt/compile.h +601 -0
  427. espp-1.1.5/components/format/detail/fmt/include/fmt/core.h +7 -0
  428. espp-1.1.5/components/format/detail/fmt/include/fmt/fmt-c.h +192 -0
  429. espp-1.1.5/components/format/detail/fmt/include/fmt/format-inl.h +1974 -0
  430. espp-1.1.5/components/format/detail/fmt/include/fmt/format.h +4412 -0
  431. espp-1.1.5/components/format/detail/fmt/include/fmt/os.h +419 -0
  432. espp-1.1.5/components/format/detail/fmt/include/fmt/ostream.h +167 -0
  433. espp-1.1.5/components/format/detail/fmt/include/fmt/printf.h +653 -0
  434. espp-1.1.5/components/format/detail/fmt/include/fmt/ranges.h +863 -0
  435. espp-1.1.5/components/format/detail/fmt/include/fmt/std.h +809 -0
  436. espp-1.1.5/components/format/detail/fmt/include/fmt/xchar.h +377 -0
  437. espp-1.1.5/components/format/detail/fmt/src/fmt-c.cc +42 -0
  438. espp-1.1.5/components/format/detail/fmt/src/fmt.cc +150 -0
  439. espp-1.1.5/components/format/detail/fmt/src/format.cc +43 -0
  440. espp-1.1.5/components/format/detail/fmt/src/os.cc +401 -0
  441. espp-1.1.5/components/format/detail/fmt/support/Android.mk +15 -0
  442. espp-1.1.5/components/format/detail/fmt/support/AndroidManifest.xml +2 -0
  443. espp-1.1.5/components/format/detail/fmt/support/C++.sublime-syntax +2061 -0
  444. espp-1.1.5/components/format/detail/fmt/support/README +4 -0
  445. espp-1.1.5/components/format/detail/fmt/support/Vagrantfile +19 -0
  446. espp-1.1.5/components/format/detail/fmt/support/build.gradle +130 -0
  447. espp-1.1.5/components/format/detail/fmt/support/check-commits +43 -0
  448. espp-1.1.5/components/format/detail/fmt/support/cmake/FindSetEnv.cmake +11 -0
  449. espp-1.1.5/components/format/detail/fmt/support/cmake/JoinPaths.cmake +28 -0
  450. espp-1.1.5/components/format/detail/fmt/support/cmake/fmt-config.cmake.in +7 -0
  451. espp-1.1.5/components/format/detail/fmt/support/cmake/fmt.pc.in +11 -0
  452. espp-1.1.5/components/format/detail/fmt/support/docopt.py +581 -0
  453. espp-1.1.5/components/format/detail/fmt/support/gradle/wrapper/gradle-wrapper.properties +6 -0
  454. espp-1.1.5/components/format/detail/fmt/support/gradle.properties +8 -0
  455. espp-1.1.5/components/format/detail/fmt/support/mkdocs +86 -0
  456. espp-1.1.5/components/format/detail/fmt/support/mkdocs.yml +48 -0
  457. espp-1.1.5/components/format/detail/fmt/support/printable.py +201 -0
  458. espp-1.1.5/components/format/detail/fmt/support/release.py +188 -0
  459. espp-1.1.5/components/format/idf_component.yml +17 -0
  460. espp-1.1.5/components/format/include/format.hpp +23 -0
  461. espp-1.1.5/components/ft5x06/CMakeLists.txt +4 -0
  462. espp-1.1.5/components/ft5x06/README.md +11 -0
  463. espp-1.1.5/components/ft5x06/idf_component.yml +22 -0
  464. espp-1.1.5/components/ft5x06/include/ft5x06.hpp +219 -0
  465. espp-1.1.5/components/ftp/CMakeLists.txt +3 -0
  466. espp-1.1.5/components/ftp/README.md +33 -0
  467. espp-1.1.5/components/ftp/idf_component.yml +27 -0
  468. espp-1.1.5/components/ftp/include/ftp_client.hpp +296 -0
  469. espp-1.1.5/components/ftp/include/ftp_client_session.hpp +1067 -0
  470. espp-1.1.5/components/ftp/include/ftp_server.hpp +165 -0
  471. espp-1.1.5/components/gt911/CMakeLists.txt +4 -0
  472. espp-1.1.5/components/gt911/README.md +14 -0
  473. espp-1.1.5/components/gt911/idf_component.yml +24 -0
  474. espp-1.1.5/components/gt911/include/gt911.hpp +274 -0
  475. espp-1.1.5/components/hid-rp/CMakeLists.txt +4 -0
  476. espp-1.1.5/components/hid-rp/README.md +19 -0
  477. espp-1.1.5/components/hid-rp/detail/hid-rp/.clang-format +38 -0
  478. espp-1.1.5/components/hid-rp/detail/hid-rp/.gitignore +6 -0
  479. espp-1.1.5/components/hid-rp/detail/hid-rp/CMakeLists.txt +60 -0
  480. espp-1.1.5/components/hid-rp/detail/hid-rp/LICENSE +373 -0
  481. espp-1.1.5/components/hid-rp/detail/hid-rp/README.md +147 -0
  482. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/app/keyboard.hpp +140 -0
  483. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/app/mouse.hpp +155 -0
  484. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/app/opaque.hpp +44 -0
  485. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/constants.hpp +195 -0
  486. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/descriptor.hpp +33 -0
  487. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/descriptor_view.hpp +275 -0
  488. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/exception.hpp +311 -0
  489. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/global_items.hpp +127 -0
  490. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/item.hpp +330 -0
  491. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/local_items.hpp +76 -0
  492. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/main_items.hpp +223 -0
  493. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/parser.hpp +394 -0
  494. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/short_item.hpp +116 -0
  495. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/rdf/unit.hpp +184 -0
  496. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/report.hpp +120 -0
  497. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/report_array.hpp +61 -0
  498. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/report_bitset.hpp +83 -0
  499. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/report_protocol.hpp +304 -0
  500. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/hid/usage.hpp +96 -0
  501. espp-1.1.5/components/hid-rp/detail/hid-rp/hid-rp/sized_unsigned.hpp +58 -0
  502. espp-1.1.5/components/hid-rp/idf_component.yml +18 -0
  503. espp-1.1.5/components/hid-rp/include/gamepad_hat.hpp +20 -0
  504. espp-1.1.5/components/hid-rp/include/gamepad_imu.hpp +42 -0
  505. espp-1.1.5/components/hid-rp/include/hid/page/arcade.hpp +44 -0
  506. espp-1.1.5/components/hid-rp/include/hid/page/auxiliary_display.hpp +92 -0
  507. espp-1.1.5/components/hid-rp/include/hid/page/barcode_scanner.hpp +211 -0
  508. espp-1.1.5/components/hid-rp/include/hid/page/battery_system.hpp +108 -0
  509. espp-1.1.5/components/hid-rp/include/hid/page/braille_display.hpp +60 -0
  510. espp-1.1.5/components/hid-rp/include/hid/page/button.hpp +22 -0
  511. espp-1.1.5/components/hid-rp/include/hid/page/camera.hpp +19 -0
  512. espp-1.1.5/components/hid-rp/include/hid/page/consumer.hpp +467 -0
  513. espp-1.1.5/components/hid-rp/include/hid/page/digitizer.hpp +125 -0
  514. espp-1.1.5/components/hid-rp/include/hid/page/eye_and_head_trackers.hpp +51 -0
  515. espp-1.1.5/components/hid-rp/include/hid/page/fido.hpp +20 -0
  516. espp-1.1.5/components/hid-rp/include/hid/page/game.hpp +46 -0
  517. espp-1.1.5/components/hid-rp/include/hid/page/generic_desktop.hpp +132 -0
  518. espp-1.1.5/components/hid-rp/include/hid/page/generic_device.hpp +41 -0
  519. espp-1.1.5/components/hid-rp/include/hid/page/haptics.hpp +46 -0
  520. espp-1.1.5/components/hid-rp/include/hid/page/keyboard_keypad.hpp +235 -0
  521. espp-1.1.5/components/hid-rp/include/hid/page/leds.hpp +113 -0
  522. espp-1.1.5/components/hid-rp/include/hid/page/lighting_and_illumination.hpp +50 -0
  523. espp-1.1.5/components/hid-rp/include/hid/page/magnetic_stripe_reader.hpp +27 -0
  524. espp-1.1.5/components/hid-rp/include/hid/page/medical_instruments.hpp +46 -0
  525. espp-1.1.5/components/hid-rp/include/hid/page/monitor.hpp +21 -0
  526. espp-1.1.5/components/hid-rp/include/hid/page/monitor_enumerated.hpp +22 -0
  527. espp-1.1.5/components/hid-rp/include/hid/page/ordinal.hpp +22 -0
  528. espp-1.1.5/components/hid-rp/include/hid/page/physical_input_device.hpp +122 -0
  529. espp-1.1.5/components/hid-rp/include/hid/page/power.hpp +94 -0
  530. espp-1.1.5/components/hid-rp/include/hid/page/scale.hpp +63 -0
  531. espp-1.1.5/components/hid-rp/include/hid/page/sensor.hpp +690 -0
  532. espp-1.1.5/components/hid-rp/include/hid/page/simulation.hpp +68 -0
  533. espp-1.1.5/components/hid-rp/include/hid/page/soc.hpp +27 -0
  534. espp-1.1.5/components/hid-rp/include/hid/page/sport.hpp +51 -0
  535. espp-1.1.5/components/hid-rp/include/hid/page/telephony.hpp +116 -0
  536. espp-1.1.5/components/hid-rp/include/hid/page/unicode.hpp +22 -0
  537. espp-1.1.5/components/hid-rp/include/hid/page/vesa_virtual.hpp +62 -0
  538. espp-1.1.5/components/hid-rp/include/hid/page/vr.hpp +29 -0
  539. espp-1.1.5/components/hid-rp/include/hid-rp-gamepad-formatters.hpp +45 -0
  540. espp-1.1.5/components/hid-rp/include/hid-rp-gamepad.hpp +531 -0
  541. espp-1.1.5/components/hid-rp/include/hid-rp-playstation-formatters.hpp +73 -0
  542. espp-1.1.5/components/hid-rp/include/hid-rp-playstation.hpp +1370 -0
  543. espp-1.1.5/components/hid-rp/include/hid-rp-ps4-formatters.hpp +56 -0
  544. espp-1.1.5/components/hid-rp/include/hid-rp-ps4.hpp +598 -0
  545. espp-1.1.5/components/hid-rp/include/hid-rp-switch-pro-formatters.hpp +21 -0
  546. espp-1.1.5/components/hid-rp/include/hid-rp-switch-pro.hpp +780 -0
  547. espp-1.1.5/components/hid-rp/include/hid-rp-xbox-formatters.hpp +37 -0
  548. espp-1.1.5/components/hid-rp/include/hid-rp-xbox.hpp +441 -0
  549. espp-1.1.5/components/hid-rp/include/hid-rp.hpp +41 -0
  550. espp-1.1.5/components/hid_service/CMakeLists.txt +4 -0
  551. espp-1.1.5/components/hid_service/README.md +17 -0
  552. espp-1.1.5/components/hid_service/idf_component.yml +22 -0
  553. espp-1.1.5/components/hid_service/include/hid_service.hpp +360 -0
  554. espp-1.1.5/components/i2c/CMakeLists.txt +5 -0
  555. espp-1.1.5/components/i2c/Kconfig +37 -0
  556. espp-1.1.5/components/i2c/README.md +46 -0
  557. espp-1.1.5/components/i2c/idf_component.yml +20 -0
  558. espp-1.1.5/components/i2c/include/i2c.hpp +913 -0
  559. espp-1.1.5/components/i2c/include/i2c_format_helpers.hpp +54 -0
  560. espp-1.1.5/components/i2c/include/i2c_master.hpp +284 -0
  561. espp-1.1.5/components/i2c/include/i2c_master_device_menu.hpp +180 -0
  562. espp-1.1.5/components/i2c/include/i2c_master_menu.hpp +217 -0
  563. espp-1.1.5/components/i2c/include/i2c_menu.hpp +211 -0
  564. espp-1.1.5/components/i2c/include/i2c_slave.hpp +190 -0
  565. espp-1.1.5/components/i2c/include/i2c_slave_menu.hpp +114 -0
  566. espp-1.1.5/components/i2c/src/i2c_master.cpp +356 -0
  567. espp-1.1.5/components/i2c/src/i2c_slave.cpp +523 -0
  568. espp-1.1.5/components/icm20948/CMakeLists.txt +5 -0
  569. espp-1.1.5/components/icm20948/README.md +19 -0
  570. espp-1.1.5/components/icm20948/idf_component.yml +22 -0
  571. espp-1.1.5/components/icm20948/include/icm20948.hpp +828 -0
  572. espp-1.1.5/components/icm20948/include/icm20948_detail.hpp +427 -0
  573. espp-1.1.5/components/icm20948/src/icm20948.cpp +1072 -0
  574. espp-1.1.5/components/icm42607/CMakeLists.txt +4 -0
  575. espp-1.1.5/components/icm42607/README.md +19 -0
  576. espp-1.1.5/components/icm42607/idf_component.yml +21 -0
  577. espp-1.1.5/components/icm42607/include/icm42607.hpp +825 -0
  578. espp-1.1.5/components/icm42607/include/icm42607_detail.hpp +332 -0
  579. espp-1.1.5/components/ina226/CMakeLists.txt +6 -0
  580. espp-1.1.5/components/ina226/README.md +14 -0
  581. espp-1.1.5/components/ina226/idf_component.yml +22 -0
  582. espp-1.1.5/components/ina226/include/ina226.hpp +318 -0
  583. espp-1.1.5/components/input_drivers/CMakeLists.txt +3 -0
  584. espp-1.1.5/components/input_drivers/README.md +42 -0
  585. espp-1.1.5/components/input_drivers/idf_component.yml +25 -0
  586. espp-1.1.5/components/input_drivers/include/encoder_input.hpp +131 -0
  587. espp-1.1.5/components/input_drivers/include/keypad_input.hpp +111 -0
  588. espp-1.1.5/components/input_drivers/include/pointer_input.hpp +228 -0
  589. espp-1.1.5/components/input_drivers/include/touchpad_input.hpp +178 -0
  590. espp-1.1.5/components/interrupt/CMakeLists.txt +4 -0
  591. espp-1.1.5/components/interrupt/README.md +22 -0
  592. espp-1.1.5/components/interrupt/idf_component.yml +19 -0
  593. espp-1.1.5/components/interrupt/include/interrupt.hpp +702 -0
  594. espp-1.1.5/components/interrupt/src/interrupt.cpp +3 -0
  595. espp-1.1.5/components/iperf_menu/CMakeLists.txt +3 -0
  596. espp-1.1.5/components/iperf_menu/README.md +78 -0
  597. espp-1.1.5/components/iperf_menu/idf_component.yml +25 -0
  598. espp-1.1.5/components/iperf_menu/include/iperf_menu.hpp +449 -0
  599. espp-1.1.5/components/joystick/CMakeLists.txt +4 -0
  600. espp-1.1.5/components/joystick/README.md +15 -0
  601. espp-1.1.5/components/joystick/idf_component.yml +20 -0
  602. espp-1.1.5/components/joystick/include/joystick.hpp +236 -0
  603. espp-1.1.5/components/joystick/include/joystick_formatters.hpp +38 -0
  604. espp-1.1.5/components/joystick/src/joystick.cpp +99 -0
  605. espp-1.1.5/components/kts1622/CMakeLists.txt +4 -0
  606. espp-1.1.5/components/kts1622/README.md +11 -0
  607. espp-1.1.5/components/kts1622/idf_component.yml +20 -0
  608. espp-1.1.5/components/kts1622/include/kts1622.hpp +898 -0
  609. espp-1.1.5/components/led/CMakeLists.txt +4 -0
  610. espp-1.1.5/components/led/README.md +15 -0
  611. espp-1.1.5/components/led/idf_component.yml +19 -0
  612. espp-1.1.5/components/led/include/led.hpp +218 -0
  613. espp-1.1.5/components/led/src/led.cpp +248 -0
  614. espp-1.1.5/components/led_strip/CMakeLists.txt +5 -0
  615. espp-1.1.5/components/led_strip/README.md +25 -0
  616. espp-1.1.5/components/led_strip/idf_component.yml +20 -0
  617. espp-1.1.5/components/led_strip/include/led_strip.hpp +418 -0
  618. espp-1.1.5/components/led_strip/src/led_strip.cpp +4 -0
  619. espp-1.1.5/components/logger/CMakeLists.txt +12 -0
  620. espp-1.1.5/components/logger/Kconfig +25 -0
  621. espp-1.1.5/components/logger/README.md +13 -0
  622. espp-1.1.5/components/logger/idf_component.yml +18 -0
  623. espp-1.1.5/components/logger/include/logger.hpp +493 -0
  624. espp-1.1.5/components/logger/include/logger_formatters.hpp +21 -0
  625. espp-1.1.5/components/logger/src/logger.cpp +5 -0
  626. espp-1.1.5/components/lp5817/CMakeLists.txt +4 -0
  627. espp-1.1.5/components/lp5817/README.md +14 -0
  628. espp-1.1.5/components/lp5817/idf_component.yml +21 -0
  629. espp-1.1.5/components/lp5817/include/lp5817.hpp +791 -0
  630. espp-1.1.5/components/lsm6dso/CMakeLists.txt +5 -0
  631. espp-1.1.5/components/lsm6dso/README.md +32 -0
  632. espp-1.1.5/components/lsm6dso/idf_component.yml +21 -0
  633. espp-1.1.5/components/lsm6dso/include/lsm6dso.hpp +272 -0
  634. espp-1.1.5/components/lsm6dso/include/lsm6dso_detail.hpp +298 -0
  635. espp-1.1.5/components/lsm6dso/src/lsm6dso.cpp +469 -0
  636. espp-1.1.5/components/m5stack-tab5/CMakeLists.txt +6 -0
  637. espp-1.1.5/components/m5stack-tab5/Kconfig +30 -0
  638. espp-1.1.5/components/m5stack-tab5/README.md +94 -0
  639. espp-1.1.5/components/m5stack-tab5/idf_component.yml +34 -0
  640. espp-1.1.5/components/m5stack-tab5/include/m5stack-tab5.hpp +794 -0
  641. espp-1.1.5/components/m5stack-tab5/src/audio.cpp +281 -0
  642. espp-1.1.5/components/m5stack-tab5/src/buttons.cpp +22 -0
  643. espp-1.1.5/components/m5stack-tab5/src/imu.cpp +54 -0
  644. espp-1.1.5/components/m5stack-tab5/src/m5stack-tab5.cpp +147 -0
  645. espp-1.1.5/components/m5stack-tab5/src/power.cpp +132 -0
  646. espp-1.1.5/components/m5stack-tab5/src/rtc.cpp +136 -0
  647. espp-1.1.5/components/m5stack-tab5/src/sdcard.cpp +99 -0
  648. espp-1.1.5/components/m5stack-tab5/src/touchpad.cpp +193 -0
  649. espp-1.1.5/components/m5stack-tab5/src/video.cpp +472 -0
  650. espp-1.1.5/components/math/CMakeLists.txt +3 -0
  651. espp-1.1.5/components/math/README.md +72 -0
  652. espp-1.1.5/components/math/idf_component.yml +25 -0
  653. espp-1.1.5/components/math/include/bezier.hpp +109 -0
  654. espp-1.1.5/components/math/include/fast_math.hpp +199 -0
  655. espp-1.1.5/components/math/include/gaussian.hpp +125 -0
  656. espp-1.1.5/components/math/include/range_mapper.hpp +289 -0
  657. espp-1.1.5/components/math/include/range_mapper_formatters.hpp +24 -0
  658. espp-1.1.5/components/math/include/vector2d.hpp +356 -0
  659. espp-1.1.5/components/math/include/vector2d_formatters.hpp +16 -0
  660. espp-1.1.5/components/matouch-rotary-display/CMakeLists.txt +7 -0
  661. espp-1.1.5/components/matouch-rotary-display/Kconfig +23 -0
  662. espp-1.1.5/components/matouch-rotary-display/README.md +18 -0
  663. espp-1.1.5/components/matouch-rotary-display/idf_component.yml +32 -0
  664. espp-1.1.5/components/matouch-rotary-display/include/matouch-rotary-display.hpp +365 -0
  665. espp-1.1.5/components/matouch-rotary-display/src/matouch-rotary-display.cpp +466 -0
  666. espp-1.1.5/components/max1704x/CMakeLists.txt +4 -0
  667. espp-1.1.5/components/max1704x/README.md +35 -0
  668. espp-1.1.5/components/max1704x/idf_component.yml +22 -0
  669. espp-1.1.5/components/max1704x/include/max1704x.hpp +213 -0
  670. espp-1.1.5/components/mcp23x17/CMakeLists.txt +4 -0
  671. espp-1.1.5/components/mcp23x17/README.md +12 -0
  672. espp-1.1.5/components/mcp23x17/idf_component.yml +21 -0
  673. espp-1.1.5/components/mcp23x17/include/mcp23x17.hpp +320 -0
  674. espp-1.1.5/components/monitor/CMakeLists.txt +4 -0
  675. espp-1.1.5/components/monitor/README.md +30 -0
  676. espp-1.1.5/components/monitor/idf_component.yml +21 -0
  677. espp-1.1.5/components/monitor/include/heap_monitor.hpp +141 -0
  678. espp-1.1.5/components/monitor/include/task_monitor.hpp +265 -0
  679. espp-1.1.5/components/monitor/src/heap_monitor.cpp +103 -0
  680. espp-1.1.5/components/motorgo-axis/CMakeLists.txt +6 -0
  681. espp-1.1.5/components/motorgo-axis/README.md +72 -0
  682. espp-1.1.5/components/motorgo-axis/idf_component.yml +36 -0
  683. espp-1.1.5/components/motorgo-axis/include/motorgo-axis.hpp +413 -0
  684. espp-1.1.5/components/motorgo-axis/src/motorgo-axis.cpp +481 -0
  685. espp-1.1.5/components/motorgo-mini/CMakeLists.txt +6 -0
  686. espp-1.1.5/components/motorgo-mini/Kconfig +23 -0
  687. espp-1.1.5/components/motorgo-mini/README.md +57 -0
  688. espp-1.1.5/components/motorgo-mini/idf_component.yml +34 -0
  689. espp-1.1.5/components/motorgo-mini/include/motorgo-mini.hpp +650 -0
  690. espp-1.1.5/components/motorgo-mini/src/button.cpp +28 -0
  691. espp-1.1.5/components/motorgo-mini/src/motorgo-mini.cpp +393 -0
  692. espp-1.1.5/components/motorgo-plink/CMakeLists.txt +6 -0
  693. espp-1.1.5/components/motorgo-plink/README.md +37 -0
  694. espp-1.1.5/components/motorgo-plink/idf_component.yml +34 -0
  695. espp-1.1.5/components/motorgo-plink/include/motorgo-plink.hpp +388 -0
  696. espp-1.1.5/components/motorgo-plink/src/motorgo-plink.cpp +405 -0
  697. espp-1.1.5/components/mt6701/CMakeLists.txt +4 -0
  698. espp-1.1.5/components/mt6701/Kconfig +21 -0
  699. espp-1.1.5/components/mt6701/README.md +29 -0
  700. espp-1.1.5/components/mt6701/idf_component.yml +24 -0
  701. espp-1.1.5/components/mt6701/include/mt6701.hpp +611 -0
  702. espp-1.1.5/components/ndef/CMakeLists.txt +3 -0
  703. espp-1.1.5/components/ndef/README.md +7 -0
  704. espp-1.1.5/components/ndef/idf_component.yml +16 -0
  705. espp-1.1.5/components/ndef/include/ndef.hpp +785 -0
  706. espp-1.1.5/components/neopixel/CMakeLists.txt +5 -0
  707. espp-1.1.5/components/neopixel/README.md +12 -0
  708. espp-1.1.5/components/neopixel/idf_component.yml +21 -0
  709. espp-1.1.5/components/neopixel/include/neopixel.hpp +81 -0
  710. espp-1.1.5/components/neopixel/src/neopixel.cpp +137 -0
  711. espp-1.1.5/components/nvs/CMakeLists.txt +4 -0
  712. espp-1.1.5/components/nvs/README.md +33 -0
  713. espp-1.1.5/components/nvs/idf_component.yml +18 -0
  714. espp-1.1.5/components/nvs/include/nvs.hpp +174 -0
  715. espp-1.1.5/components/nvs/include/nvs_errc.hpp +85 -0
  716. espp-1.1.5/components/nvs/include/nvs_handle_espp.hpp +508 -0
  717. espp-1.1.5/components/odrive_ascii/CMakeLists.txt +5 -0
  718. espp-1.1.5/components/odrive_ascii/README.md +47 -0
  719. espp-1.1.5/components/odrive_ascii/idf_component.yml +24 -0
  720. espp-1.1.5/components/odrive_ascii/include/odrive_ascii.hpp +343 -0
  721. espp-1.1.5/components/odrive_ascii/src/odrive_ascii.cpp +363 -0
  722. espp-1.1.5/components/pcf85063/CMakeLists.txt +4 -0
  723. espp-1.1.5/components/pcf85063/README.md +12 -0
  724. espp-1.1.5/components/pcf85063/idf_component.yml +21 -0
  725. espp-1.1.5/components/pcf85063/include/pcf85063.hpp +298 -0
  726. espp-1.1.5/components/pi4ioe5v/CMakeLists.txt +6 -0
  727. espp-1.1.5/components/pi4ioe5v/README.md +32 -0
  728. espp-1.1.5/components/pi4ioe5v/idf_component.yml +23 -0
  729. espp-1.1.5/components/pi4ioe5v/include/pi4ioe5v.hpp +448 -0
  730. espp-1.1.5/components/pid/CMakeLists.txt +3 -0
  731. espp-1.1.5/components/pid/README.md +12 -0
  732. espp-1.1.5/components/pid/idf_component.yml +20 -0
  733. espp-1.1.5/components/pid/include/pid.hpp +170 -0
  734. espp-1.1.5/components/pid/include/pid_formatters.hpp +29 -0
  735. espp-1.1.5/components/ping/CMakeLists.txt +5 -0
  736. espp-1.1.5/components/ping/README.md +13 -0
  737. espp-1.1.5/components/ping/idf_component.yml +20 -0
  738. espp-1.1.5/components/ping/include/ping.hpp +341 -0
  739. espp-1.1.5/components/ping/src/ping.cpp +482 -0
  740. espp-1.1.5/components/provisioning/CMakeLists.txt +5 -0
  741. espp-1.1.5/components/provisioning/README.md +26 -0
  742. espp-1.1.5/components/provisioning/idf_component.yml +20 -0
  743. espp-1.1.5/components/provisioning/include/provisioning.hpp +152 -0
  744. espp-1.1.5/components/provisioning/src/provisioning.cpp +873 -0
  745. espp-1.1.5/components/qmi8658/CMakeLists.txt +4 -0
  746. espp-1.1.5/components/qmi8658/README.md +19 -0
  747. espp-1.1.5/components/qmi8658/idf_component.yml +21 -0
  748. espp-1.1.5/components/qmi8658/include/qmi8658.hpp +568 -0
  749. espp-1.1.5/components/qmi8658/include/qmi8658_detail.hpp +214 -0
  750. espp-1.1.5/components/qtpy/CMakeLists.txt +7 -0
  751. espp-1.1.5/components/qtpy/Kconfig +23 -0
  752. espp-1.1.5/components/qtpy/README.md +15 -0
  753. espp-1.1.5/components/qtpy/idf_component.yml +27 -0
  754. espp-1.1.5/components/qtpy/include/qtpy.hpp +170 -0
  755. espp-1.1.5/components/qtpy/src/qtpy.cpp +88 -0
  756. espp-1.1.5/components/qwiicnes/CMakeLists.txt +4 -0
  757. espp-1.1.5/components/qwiicnes/README.md +11 -0
  758. espp-1.1.5/components/qwiicnes/idf_component.yml +18 -0
  759. espp-1.1.5/components/qwiicnes/include/qwiicnes.hpp +197 -0
  760. espp-1.1.5/components/remote_debug/CMakeLists.txt +5 -0
  761. espp-1.1.5/components/remote_debug/README.md +76 -0
  762. espp-1.1.5/components/remote_debug/idf_component.yml +24 -0
  763. espp-1.1.5/components/remote_debug/include/remote_debug.hpp +216 -0
  764. espp-1.1.5/components/remote_debug/src/remote_debug.cpp +1168 -0
  765. espp-1.1.5/components/rmt/CMakeLists.txt +4 -0
  766. espp-1.1.5/components/rmt/README.md +23 -0
  767. espp-1.1.5/components/rmt/idf_component.yml +18 -0
  768. espp-1.1.5/components/rmt/include/rmt.hpp +123 -0
  769. espp-1.1.5/components/rmt/include/rmt_encoder.hpp +213 -0
  770. espp-1.1.5/components/rtps/CMakeLists.txt +4 -0
  771. espp-1.1.5/components/rtps/README.md +119 -0
  772. espp-1.1.5/components/rtps/RELIABLE_RTPS_PLAN.md +192 -0
  773. espp-1.1.5/components/rtps/idf_component.yml +26 -0
  774. espp-1.1.5/components/rtps/include/rtps.hpp +576 -0
  775. espp-1.1.5/components/rtps/src/rtps.cpp +2926 -0
  776. espp-1.1.5/components/rtsp/CMakeLists.txt +4 -0
  777. espp-1.1.5/components/rtsp/README.md +175 -0
  778. espp-1.1.5/components/rtsp/idf_component.yml +29 -0
  779. espp-1.1.5/components/rtsp/include/generic_depacketizer.hpp +51 -0
  780. espp-1.1.5/components/rtsp/include/generic_packetizer.hpp +70 -0
  781. espp-1.1.5/components/rtsp/include/h264_depacketizer.hpp +63 -0
  782. espp-1.1.5/components/rtsp/include/h264_packetizer.hpp +100 -0
  783. espp-1.1.5/components/rtsp/include/jpeg_frame.hpp +182 -0
  784. espp-1.1.5/components/rtsp/include/jpeg_header.hpp +780 -0
  785. espp-1.1.5/components/rtsp/include/mjpeg_depacketizer.hpp +61 -0
  786. espp-1.1.5/components/rtsp/include/mjpeg_packetizer.hpp +49 -0
  787. espp-1.1.5/components/rtsp/include/rtcp_packet.hpp +28 -0
  788. espp-1.1.5/components/rtsp/include/rtp_depacketizer.hpp +50 -0
  789. espp-1.1.5/components/rtsp/include/rtp_jpeg_packet.hpp +243 -0
  790. espp-1.1.5/components/rtsp/include/rtp_packet.hpp +167 -0
  791. espp-1.1.5/components/rtsp/include/rtp_packetizer.hpp +60 -0
  792. espp-1.1.5/components/rtsp/include/rtp_types.hpp +21 -0
  793. espp-1.1.5/components/rtsp/include/rtsp_client.hpp +257 -0
  794. espp-1.1.5/components/rtsp/include/rtsp_server.hpp +210 -0
  795. espp-1.1.5/components/rtsp/include/rtsp_session.hpp +259 -0
  796. espp-1.1.5/components/rtsp/src/generic_depacketizer.cpp +42 -0
  797. espp-1.1.5/components/rtsp/src/generic_packetizer.cpp +73 -0
  798. espp-1.1.5/components/rtsp/src/h264_depacketizer.cpp +124 -0
  799. espp-1.1.5/components/rtsp/src/h264_packetizer.cpp +256 -0
  800. espp-1.1.5/components/rtsp/src/mjpeg_depacketizer.cpp +100 -0
  801. espp-1.1.5/components/rtsp/src/mjpeg_packetizer.cpp +141 -0
  802. espp-1.1.5/components/rtsp/src/rtcp_packet.cpp +7 -0
  803. espp-1.1.5/components/rtsp/src/rtp_packet.cpp +96 -0
  804. espp-1.1.5/components/rtsp/src/rtsp_client.cpp +743 -0
  805. espp-1.1.5/components/rtsp/src/rtsp_server.cpp +619 -0
  806. espp-1.1.5/components/rtsp/src/rtsp_session.cpp +542 -0
  807. espp-1.1.5/components/runqueue/CMakeLists.txt +4 -0
  808. espp-1.1.5/components/runqueue/README.md +19 -0
  809. espp-1.1.5/components/runqueue/idf_component.yml +20 -0
  810. espp-1.1.5/components/runqueue/include/runqueue.hpp +210 -0
  811. espp-1.1.5/components/runqueue/src/runqueue.cpp +179 -0
  812. espp-1.1.5/components/rx8130ce/CMakeLists.txt +3 -0
  813. espp-1.1.5/components/rx8130ce/README.md +28 -0
  814. espp-1.1.5/components/rx8130ce/idf_component.yml +19 -0
  815. espp-1.1.5/components/rx8130ce/include/rx8130ce.hpp +608 -0
  816. espp-1.1.5/components/seeed-studio-round-display/CMakeLists.txt +6 -0
  817. espp-1.1.5/components/seeed-studio-round-display/Kconfig +23 -0
  818. espp-1.1.5/components/seeed-studio-round-display/README.md +18 -0
  819. espp-1.1.5/components/seeed-studio-round-display/idf_component.yml +31 -0
  820. espp-1.1.5/components/seeed-studio-round-display/include/seeed-studio-round-display.hpp +329 -0
  821. espp-1.1.5/components/seeed-studio-round-display/src/seeed-studio-round-display.cpp +425 -0
  822. espp-1.1.5/components/serialization/CMakeLists.txt +3 -0
  823. espp-1.1.5/components/serialization/README.md +18 -0
  824. espp-1.1.5/components/serialization/detail/alpaca/.clang-format +111 -0
  825. espp-1.1.5/components/serialization/detail/alpaca/.gitignore +273 -0
  826. espp-1.1.5/components/serialization/detail/alpaca/.gitmodules +3 -0
  827. espp-1.1.5/components/serialization/detail/alpaca/CMakeLists.txt +108 -0
  828. espp-1.1.5/components/serialization/detail/alpaca/LICENSE +7 -0
  829. espp-1.1.5/components/serialization/detail/alpaca/README.md +1480 -0
  830. espp-1.1.5/components/serialization/detail/alpaca/benchmark/CMakeLists.txt +56 -0
  831. espp-1.1.5/components/serialization/detail/alpaca/benchmark/benchmark_log_10k_deserialize.cpp +36 -0
  832. espp-1.1.5/components/serialization/detail/alpaca/benchmark/benchmark_log_10k_serialize.cpp +33 -0
  833. espp-1.1.5/components/serialization/detail/alpaca/benchmark/benchmark_mesh_125k_deserialize.cpp +55 -0
  834. espp-1.1.5/components/serialization/detail/alpaca/benchmark/benchmark_mesh_125k_serialize.cpp +54 -0
  835. espp-1.1.5/components/serialization/detail/alpaca/benchmark/benchmark_minecraft_players_50_deserialize.cpp +41 -0
  836. espp-1.1.5/components/serialization/detail/alpaca/benchmark/benchmark_minecraft_players_50_serialize.cpp +40 -0
  837. espp-1.1.5/components/serialization/detail/alpaca/benchmark/log.h +72 -0
  838. espp-1.1.5/components/serialization/detail/alpaca/benchmark/mesh.h +39 -0
  839. espp-1.1.5/components/serialization/detail/alpaca/benchmark/minecraft_save.h +334 -0
  840. espp-1.1.5/components/serialization/detail/alpaca/benchmark_results.txt +99 -0
  841. espp-1.1.5/components/serialization/detail/alpaca/clang_format.bash +1 -0
  842. espp-1.1.5/components/serialization/detail/alpaca/cmake/project-is-top-level.cmake +6 -0
  843. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/alpaca.h +559 -0
  844. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/aggregate_arity.h +35 -0
  845. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/crc32.h +1377 -0
  846. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/endian.h +137 -0
  847. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/field_type.h +48 -0
  848. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/from_bytes.h +434 -0
  849. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/is_bitset.h +21 -0
  850. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/is_specialization.h +17 -0
  851. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/options.h +72 -0
  852. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/output_container.h +36 -0
  853. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/print_bytes.h +30 -0
  854. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/struct_nth_field.h +10721 -0
  855. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/to_bytes.h +91 -0
  856. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/type_info.h +300 -0
  857. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/array.h +85 -0
  858. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/bitset.h +128 -0
  859. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/deque.h +102 -0
  860. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/duration.h +70 -0
  861. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/filesystem_path.h +85 -0
  862. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/glm_vector.h +52 -0
  863. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/list.h +101 -0
  864. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/map.h +157 -0
  865. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/optional.h +86 -0
  866. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/pair.h +65 -0
  867. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/set.h +150 -0
  868. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/string.h +128 -0
  869. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/tuple.h +109 -0
  870. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/unique_ptr.h +93 -0
  871. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/variant.h +87 -0
  872. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/types/vector.h +120 -0
  873. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/variable_length_encoding.h +245 -0
  874. espp-1.1.5/components/serialization/detail/alpaca/include/alpaca/detail/variant_nth_field.h +20226 -0
  875. espp-1.1.5/components/serialization/detail/alpaca/packaging/pkgconfig.pc.in +7 -0
  876. espp-1.1.5/components/serialization/detail/alpaca/samples/CMakeLists.txt +32 -0
  877. espp-1.1.5/components/serialization/detail/alpaca/samples/arrays_vectors_strings.cpp +39 -0
  878. espp-1.1.5/components/serialization/detail/alpaca/samples/chrono_duration.cpp +20 -0
  879. espp-1.1.5/components/serialization/detail/alpaca/samples/demo.cpp +47 -0
  880. espp-1.1.5/components/serialization/detail/alpaca/samples/fundamental_types.cpp +37 -0
  881. espp-1.1.5/components/serialization/detail/alpaca/samples/maps_and_sets.cpp +45 -0
  882. espp-1.1.5/components/serialization/detail/alpaca/samples/nested_structures.cpp +62 -0
  883. espp-1.1.5/components/serialization/detail/alpaca/samples/optional_values.cpp +44 -0
  884. espp-1.1.5/components/serialization/detail/alpaca/samples/pyalpaca_demo.py +43 -0
  885. espp-1.1.5/components/serialization/detail/alpaca/samples/time_t.cpp +31 -0
  886. espp-1.1.5/components/serialization/detail/alpaca/samples/unique_ptr.cpp +80 -0
  887. espp-1.1.5/components/serialization/detail/alpaca/samples/variant.cpp +32 -0
  888. espp-1.1.5/components/serialization/detail/alpaca/samples/write_file.cpp +55 -0
  889. espp-1.1.5/components/serialization/detail/alpaca/test/CMakeLists.txt +37 -0
  890. espp-1.1.5/components/serialization/detail/alpaca/test/doctest.hpp +6816 -0
  891. espp-1.1.5/components/serialization/detail/alpaca/test/main.cpp +1 -0
  892. espp-1.1.5/components/serialization/detail/alpaca/test/test_backwards_compatibility.cpp +38 -0
  893. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_array.cpp +141 -0
  894. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_big_endian.cpp +701 -0
  895. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_bool.cpp +45 -0
  896. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_bool_from_array.cpp +45 -0
  897. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_chrono_duration.cpp +27 -0
  898. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_chrono_duration_from_array.cpp +27 -0
  899. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_deque.cpp +125 -0
  900. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_deque_from_array.cpp +125 -0
  901. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_enum_class.cpp +26 -0
  902. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_enum_class_from_array.cpp +26 -0
  903. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_error_crc32.cpp +56 -0
  904. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_error_crc32_from_array.cpp +58 -0
  905. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_error_set.cpp +24 -0
  906. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_error_set_from_array.cpp +24 -0
  907. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_error_vector.cpp +24 -0
  908. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_error_vector_from_array.cpp +24 -0
  909. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_error_version.cpp +79 -0
  910. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_error_version_from_array.cpp +79 -0
  911. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_float.cpp +41 -0
  912. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_float_from_array.cpp +41 -0
  913. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_from_carray.cpp +44 -0
  914. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_from_ifstream.cpp +99 -0
  915. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_int.cpp +341 -0
  916. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_int_from_array.cpp +341 -0
  917. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_list.cpp +125 -0
  918. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_list_from_array.cpp +125 -0
  919. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_map.cpp +76 -0
  920. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_map_from_array.cpp +76 -0
  921. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_optional.cpp +91 -0
  922. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_optional_from_array.cpp +94 -0
  923. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_pair.cpp +49 -0
  924. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_pair_from_array.cpp +49 -0
  925. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_set.cpp +29 -0
  926. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_set_from_array.cpp +29 -0
  927. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_string.cpp +60 -0
  928. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_string_from_array.cpp +60 -0
  929. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_tuple.cpp +52 -0
  930. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_tuple_from_array.cpp +52 -0
  931. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_uint.cpp +329 -0
  932. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_uint_from_array.cpp +329 -0
  933. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_unique_ptr.cpp +64 -0
  934. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_unique_ptr_from_array.cpp +64 -0
  935. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_ustring.cpp +31 -0
  936. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_variant.cpp +73 -0
  937. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_variant_from_array.cpp +73 -0
  938. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_vector.cpp +119 -0
  939. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_vector_from_array.cpp +119 -0
  940. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_with_crc32.cpp +50 -0
  941. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_with_crc32_from_array.cpp +51 -0
  942. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_with_version.cpp +49 -0
  943. espp-1.1.5/components/serialization/detail/alpaca/test/test_deserialize_with_version_from_array.cpp +49 -0
  944. espp-1.1.5/components/serialization/detail/alpaca/test/test_extended_serialize_deserialize.cpp +461 -0
  945. espp-1.1.5/components/serialization/detail/alpaca/test/test_force_alignment.cpp +69 -0
  946. espp-1.1.5/components/serialization/detail/alpaca/test/test_forwards_compatibility.cpp +74 -0
  947. espp-1.1.5/components/serialization/detail/alpaca/test/test_forwards_compatibility_from_array.cpp +74 -0
  948. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_array.cpp +205 -0
  949. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_array_into_array.cpp +202 -0
  950. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_big_endian.cpp +114 -0
  951. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_big_endian_into_array.cpp +124 -0
  952. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_bool.cpp +29 -0
  953. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_bool_into_array.cpp +29 -0
  954. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_chrono_duration.cpp +21 -0
  955. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_chrono_duration_to_array.cpp +22 -0
  956. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_deque.cpp +229 -0
  957. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_deque_into_array.cpp +229 -0
  958. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_enum_class.cpp +18 -0
  959. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_enum_class_into_array.cpp +18 -0
  960. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_float.cpp +46 -0
  961. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_float_into_array.cpp +46 -0
  962. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_int.cpp +156 -0
  963. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_int_into_array.cpp +61 -0
  964. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_into_carray.cpp +34 -0
  965. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_list.cpp +229 -0
  966. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_list_into_array.cpp +229 -0
  967. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_map.cpp +67 -0
  968. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_map_into_array.cpp +68 -0
  969. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_nested_struct.cpp +64 -0
  970. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_nested_struct_into_array.cpp +66 -0
  971. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_optional.cpp +45 -0
  972. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_optional_into_array.cpp +47 -0
  973. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_pair.cpp +34 -0
  974. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_pair_optional.cpp +34 -0
  975. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_set.cpp +40 -0
  976. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_set_into_array.cpp +40 -0
  977. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_string.cpp +21 -0
  978. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_string_into_array.cpp +21 -0
  979. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_to_fstream.cpp +65 -0
  980. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_tuple.cpp +50 -0
  981. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_tuple_into_array.cpp +51 -0
  982. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_uint.cpp +141 -0
  983. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_uint_into_array.cpp +141 -0
  984. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_unique_ptr.cpp +55 -0
  985. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_unique_ptr_into_array.cpp +56 -0
  986. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_variant.cpp +151 -0
  987. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_variant_into_array.cpp +152 -0
  988. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_vector.cpp +229 -0
  989. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_vector_into_array.cpp +229 -0
  990. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_with_crc32.cpp +26 -0
  991. espp-1.1.5/components/serialization/detail/alpaca/test/test_serialize_with_crc32_into_array.cpp +27 -0
  992. espp-1.1.5/components/serialization/detail/alpaca/test/test_type_info.cpp +392 -0
  993. espp-1.1.5/components/serialization/idf_component.yml +19 -0
  994. espp-1.1.5/components/serialization/include/serialization.hpp +112 -0
  995. espp-1.1.5/components/smartpanlee-sc01-plus/CMakeLists.txt +6 -0
  996. espp-1.1.5/components/smartpanlee-sc01-plus/Kconfig +28 -0
  997. espp-1.1.5/components/smartpanlee-sc01-plus/README.md +38 -0
  998. espp-1.1.5/components/smartpanlee-sc01-plus/idf_component.yml +34 -0
  999. espp-1.1.5/components/smartpanlee-sc01-plus/include/smartpanlee-sc01-plus.hpp +381 -0
  1000. espp-1.1.5/components/smartpanlee-sc01-plus/src/smartpanlee-sc01-plus.cpp +603 -0
  1001. espp-1.1.5/components/socket/CMakeLists.txt +4 -0
  1002. espp-1.1.5/components/socket/README.md +68 -0
  1003. espp-1.1.5/components/socket/idf_component.yml +22 -0
  1004. espp-1.1.5/components/socket/include/socket.hpp +250 -0
  1005. espp-1.1.5/components/socket/include/socket_formatters.hpp +16 -0
  1006. espp-1.1.5/components/socket/include/socket_msvc.hpp +16 -0
  1007. espp-1.1.5/components/socket/include/tcp_socket.hpp +241 -0
  1008. espp-1.1.5/components/socket/include/udp_socket.hpp +194 -0
  1009. espp-1.1.5/components/socket/src/socket.cpp +403 -0
  1010. espp-1.1.5/components/socket/src/tcp_socket.cpp +264 -0
  1011. espp-1.1.5/components/socket/src/udp_socket.cpp +259 -0
  1012. espp-1.1.5/components/spi/CMakeLists.txt +5 -0
  1013. espp-1.1.5/components/spi/README.md +13 -0
  1014. espp-1.1.5/components/spi/idf_component.yml +20 -0
  1015. espp-1.1.5/components/spi/include/spi.hpp +264 -0
  1016. espp-1.1.5/components/spi/src/spi.cpp +449 -0
  1017. espp-1.1.5/components/st25dv/CMakeLists.txt +4 -0
  1018. espp-1.1.5/components/st25dv/README.md +16 -0
  1019. espp-1.1.5/components/st25dv/idf_component.yml +21 -0
  1020. espp-1.1.5/components/st25dv/include/st25dv.hpp +626 -0
  1021. espp-1.1.5/components/st7123touch/CMakeLists.txt +4 -0
  1022. espp-1.1.5/components/st7123touch/README.md +59 -0
  1023. espp-1.1.5/components/st7123touch/idf_component.yml +23 -0
  1024. espp-1.1.5/components/st7123touch/include/st7123touch.hpp +179 -0
  1025. espp-1.1.5/components/state_machine/CMakeLists.txt +4 -0
  1026. espp-1.1.5/components/state_machine/README.md +23 -0
  1027. espp-1.1.5/components/state_machine/detail/magic_enum/.bazelignore +5 -0
  1028. espp-1.1.5/components/state_machine/detail/magic_enum/.bazelrc +9 -0
  1029. espp-1.1.5/components/state_machine/detail/magic_enum/.bazelversion +1 -0
  1030. espp-1.1.5/components/state_machine/detail/magic_enum/.gitignore +54 -0
  1031. espp-1.1.5/components/state_machine/detail/magic_enum/BUILD.bazel +11 -0
  1032. espp-1.1.5/components/state_machine/detail/magic_enum/CMakeLists.txt +127 -0
  1033. espp-1.1.5/components/state_machine/detail/magic_enum/LICENSE +21 -0
  1034. espp-1.1.5/components/state_machine/detail/magic_enum/MODULE.bazel +5 -0
  1035. espp-1.1.5/components/state_machine/detail/magic_enum/README.md +351 -0
  1036. espp-1.1.5/components/state_machine/detail/magic_enum/SECURITY.md +13 -0
  1037. espp-1.1.5/components/state_machine/detail/magic_enum/WORKSPACE.bazel +0 -0
  1038. espp-1.1.5/components/state_machine/detail/magic_enum/cmake/GenPkgConfig/GenPkgConfig.cmake +239 -0
  1039. espp-1.1.5/components/state_machine/detail/magic_enum/cmake/GenPkgConfig/ReadMe.md +45 -0
  1040. espp-1.1.5/components/state_machine/detail/magic_enum/cmake/GenPkgConfig/UNLICENSE +24 -0
  1041. espp-1.1.5/components/state_machine/detail/magic_enum/cmake/GenPkgConfig/buildTimeScripts/getObjectFilesBaseNames.cmake +18 -0
  1042. espp-1.1.5/components/state_machine/detail/magic_enum/example/CMakeLists.txt +30 -0
  1043. espp-1.1.5/components/state_machine/detail/magic_enum/example/enum_flag_example.cpp +101 -0
  1044. espp-1.1.5/components/state_machine/detail/magic_enum/example/example.cpp +120 -0
  1045. espp-1.1.5/components/state_machine/detail/magic_enum/example/example_containers_array.cpp +65 -0
  1046. espp-1.1.5/components/state_machine/detail/magic_enum/example/example_containers_bitset.cpp +56 -0
  1047. espp-1.1.5/components/state_machine/detail/magic_enum/example/example_containers_set.cpp +56 -0
  1048. espp-1.1.5/components/state_machine/detail/magic_enum/example/example_custom_name.cpp +71 -0
  1049. espp-1.1.5/components/state_machine/detail/magic_enum/example/example_nonascii_name.cpp +45 -0
  1050. espp-1.1.5/components/state_machine/detail/magic_enum/example/example_switch.cpp +105 -0
  1051. espp-1.1.5/components/state_machine/detail/magic_enum/include/magic_enum/magic_enum.hpp +1478 -0
  1052. espp-1.1.5/components/state_machine/detail/magic_enum/include/magic_enum/magic_enum_all.hpp +44 -0
  1053. espp-1.1.5/components/state_machine/detail/magic_enum/include/magic_enum/magic_enum_containers.hpp +1170 -0
  1054. espp-1.1.5/components/state_machine/detail/magic_enum/include/magic_enum/magic_enum_flags.hpp +222 -0
  1055. espp-1.1.5/components/state_machine/detail/magic_enum/include/magic_enum/magic_enum_format.hpp +110 -0
  1056. espp-1.1.5/components/state_machine/detail/magic_enum/include/magic_enum/magic_enum_fuse.hpp +89 -0
  1057. espp-1.1.5/components/state_machine/detail/magic_enum/include/magic_enum/magic_enum_iostream.hpp +115 -0
  1058. espp-1.1.5/components/state_machine/detail/magic_enum/include/magic_enum/magic_enum_switch.hpp +195 -0
  1059. espp-1.1.5/components/state_machine/detail/magic_enum/include/magic_enum/magic_enum_utility.hpp +138 -0
  1060. espp-1.1.5/components/state_machine/detail/magic_enum/meson.build +22 -0
  1061. espp-1.1.5/components/state_machine/detail/magic_enum/meson_options.txt +13 -0
  1062. espp-1.1.5/components/state_machine/detail/magic_enum/package.xml +22 -0
  1063. espp-1.1.5/components/state_machine/detail/magic_enum/test/.bazelrc +2 -0
  1064. espp-1.1.5/components/state_machine/detail/magic_enum/test/3rdparty/Catch2/LICENSE +23 -0
  1065. espp-1.1.5/components/state_machine/detail/magic_enum/test/3rdparty/Catch2/include/catch2/catch.hpp +17937 -0
  1066. espp-1.1.5/components/state_machine/detail/magic_enum/test/BUILD.bazel +25 -0
  1067. espp-1.1.5/components/state_machine/detail/magic_enum/test/CMakeLists.txt +78 -0
  1068. espp-1.1.5/components/state_machine/detail/magic_enum/test/MODULE.bazel +6 -0
  1069. espp-1.1.5/components/state_machine/detail/magic_enum/test/WORKSPACE.bazel +0 -0
  1070. espp-1.1.5/components/state_machine/detail/magic_enum/test/meson.build +17 -0
  1071. espp-1.1.5/components/state_machine/detail/magic_enum/test/test.cpp +1276 -0
  1072. espp-1.1.5/components/state_machine/detail/magic_enum/test/test_aliases.cpp +137 -0
  1073. espp-1.1.5/components/state_machine/detail/magic_enum/test/test_containers.cpp +313 -0
  1074. espp-1.1.5/components/state_machine/detail/magic_enum/test/test_flags.cpp +834 -0
  1075. espp-1.1.5/components/state_machine/detail/magic_enum/test/test_nonascii.cpp +445 -0
  1076. espp-1.1.5/components/state_machine/detail/magic_enum/test/test_wchar_t.cpp +147 -0
  1077. espp-1.1.5/components/state_machine/idf_component.yml +19 -0
  1078. espp-1.1.5/components/state_machine/include/deep_history_state.hpp +38 -0
  1079. espp-1.1.5/components/state_machine/include/shallow_history_state.hpp +38 -0
  1080. espp-1.1.5/components/state_machine/include/state_base.hpp +157 -0
  1081. espp-1.1.5/components/state_machine/include/state_machine.hpp +30 -0
  1082. espp-1.1.5/components/state_machine/src/state_base.cpp +77 -0
  1083. espp-1.1.5/components/t-deck/CMakeLists.txt +7 -0
  1084. espp-1.1.5/components/t-deck/Kconfig +23 -0
  1085. espp-1.1.5/components/t-deck/README.md +26 -0
  1086. espp-1.1.5/components/t-deck/idf_component.yml +31 -0
  1087. espp-1.1.5/components/t-deck/include/t-deck.hpp +674 -0
  1088. espp-1.1.5/components/t-deck/src/audio.cpp +155 -0
  1089. espp-1.1.5/components/t-deck/src/sdcard.cpp +75 -0
  1090. espp-1.1.5/components/t-deck/src/t-deck.cpp +538 -0
  1091. espp-1.1.5/components/t-dongle-s3/CMakeLists.txt +7 -0
  1092. espp-1.1.5/components/t-dongle-s3/Kconfig +23 -0
  1093. espp-1.1.5/components/t-dongle-s3/README.md +16 -0
  1094. espp-1.1.5/components/t-dongle-s3/idf_component.yml +29 -0
  1095. espp-1.1.5/components/t-dongle-s3/include/t-dongle-s3.hpp +328 -0
  1096. espp-1.1.5/components/t-dongle-s3/src/sdcard.cpp +70 -0
  1097. espp-1.1.5/components/t-dongle-s3/src/t-dongle-s3.cpp +370 -0
  1098. espp-1.1.5/components/t_keyboard/CMakeLists.txt +4 -0
  1099. espp-1.1.5/components/t_keyboard/README.md +15 -0
  1100. espp-1.1.5/components/t_keyboard/idf_component.yml +20 -0
  1101. espp-1.1.5/components/t_keyboard/include/t_keyboard.hpp +152 -0
  1102. espp-1.1.5/components/tabulate/CMakeLists.txt +3 -0
  1103. espp-1.1.5/components/tabulate/README.md +18 -0
  1104. espp-1.1.5/components/tabulate/detail/tabulate/.clang-format +4 -0
  1105. espp-1.1.5/components/tabulate/detail/tabulate/.gitignore +36 -0
  1106. espp-1.1.5/components/tabulate/detail/tabulate/.travis.yml +55 -0
  1107. espp-1.1.5/components/tabulate/detail/tabulate/CMakeLists.txt +74 -0
  1108. espp-1.1.5/components/tabulate/detail/tabulate/CONTRIBUTING.md +7 -0
  1109. espp-1.1.5/components/tabulate/detail/tabulate/LICENSE +21 -0
  1110. espp-1.1.5/components/tabulate/detail/tabulate/LICENSE.optional-lite +23 -0
  1111. espp-1.1.5/components/tabulate/detail/tabulate/LICENSE.termcolor +31 -0
  1112. espp-1.1.5/components/tabulate/detail/tabulate/LICENSE.variant-lite +23 -0
  1113. espp-1.1.5/components/tabulate/detail/tabulate/README.md +759 -0
  1114. espp-1.1.5/components/tabulate/detail/tabulate/clang-format.bash +5 -0
  1115. espp-1.1.5/components/tabulate/detail/tabulate/generate-single-include.bash +2 -0
  1116. espp-1.1.5/components/tabulate/detail/tabulate/img/class_diagram.png +0 -0
  1117. espp-1.1.5/components/tabulate/detail/tabulate/img/colors.png +0 -0
  1118. espp-1.1.5/components/tabulate/detail/tabulate/img/font_styles.png +0 -0
  1119. espp-1.1.5/components/tabulate/detail/tabulate/img/iterators.png +0 -0
  1120. espp-1.1.5/components/tabulate/detail/tabulate/img/logo.jpg +0 -0
  1121. espp-1.1.5/components/tabulate/detail/tabulate/img/mario.png +0 -0
  1122. espp-1.1.5/components/tabulate/detail/tabulate/img/markdown_export.png +0 -0
  1123. espp-1.1.5/components/tabulate/detail/tabulate/img/movies.png +0 -0
  1124. espp-1.1.5/components/tabulate/detail/tabulate/img/runic.png +0 -0
  1125. espp-1.1.5/components/tabulate/detail/tabulate/img/summary.png +0 -0
  1126. espp-1.1.5/components/tabulate/detail/tabulate/img/unicode.png +0 -0
  1127. espp-1.1.5/components/tabulate/detail/tabulate/img/universal_constants.png +0 -0
  1128. espp-1.1.5/components/tabulate/detail/tabulate/img/word_wrapping.png +0 -0
  1129. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/asciidoc_exporter.hpp +140 -0
  1130. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/cell.hpp +77 -0
  1131. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/color.hpp +40 -0
  1132. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/column.hpp +385 -0
  1133. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/column_format.hpp +95 -0
  1134. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/exporter.hpp +46 -0
  1135. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/font_align.hpp +39 -0
  1136. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/font_style.hpp +39 -0
  1137. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/format.hpp +874 -0
  1138. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/latex_exporter.hpp +122 -0
  1139. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/markdown_exporter.hpp +138 -0
  1140. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/optional_lite.hpp +1501 -0
  1141. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/printer.hpp +249 -0
  1142. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/row.hpp +191 -0
  1143. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/string_view_lite.hpp +1638 -0
  1144. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/table.hpp +221 -0
  1145. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/table_internal.hpp +469 -0
  1146. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/tabulate.hpp +63 -0
  1147. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/termcolor.hpp +447 -0
  1148. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/utf8.hpp +93 -0
  1149. espp-1.1.5/components/tabulate/detail/tabulate/include/tabulate/variant_lite.hpp +2485 -0
  1150. espp-1.1.5/components/tabulate/detail/tabulate/samples/CMakeLists.txt +61 -0
  1151. espp-1.1.5/components/tabulate/detail/tabulate/samples/asciidoc_export.cpp +42 -0
  1152. espp-1.1.5/components/tabulate/detail/tabulate/samples/class_diagram.cpp +70 -0
  1153. espp-1.1.5/components/tabulate/detail/tabulate/samples/colors.cpp +45 -0
  1154. espp-1.1.5/components/tabulate/detail/tabulate/samples/employees.cpp +33 -0
  1155. espp-1.1.5/components/tabulate/detail/tabulate/samples/font_styles.cpp +28 -0
  1156. espp-1.1.5/components/tabulate/detail/tabulate/samples/iterators.cpp +48 -0
  1157. espp-1.1.5/components/tabulate/detail/tabulate/samples/latex_export.cpp +40 -0
  1158. espp-1.1.5/components/tabulate/detail/tabulate/samples/mario.cpp +196 -0
  1159. espp-1.1.5/components/tabulate/detail/tabulate/samples/markdown_export.cpp +35 -0
  1160. espp-1.1.5/components/tabulate/detail/tabulate/samples/movies.cpp +32 -0
  1161. espp-1.1.5/components/tabulate/detail/tabulate/samples/no_trim.cpp +11 -0
  1162. espp-1.1.5/components/tabulate/detail/tabulate/samples/padding.cpp +19 -0
  1163. espp-1.1.5/components/tabulate/detail/tabulate/samples/refresh_table.cpp +56 -0
  1164. espp-1.1.5/components/tabulate/detail/tabulate/samples/runic.cpp +51 -0
  1165. espp-1.1.5/components/tabulate/detail/tabulate/samples/shape.cpp +17 -0
  1166. espp-1.1.5/components/tabulate/detail/tabulate/samples/string_view_in_row.cpp +28 -0
  1167. espp-1.1.5/components/tabulate/detail/tabulate/samples/summary.cpp +212 -0
  1168. espp-1.1.5/components/tabulate/detail/tabulate/samples/unicode.cpp +30 -0
  1169. espp-1.1.5/components/tabulate/detail/tabulate/samples/universal_constants.cpp +47 -0
  1170. espp-1.1.5/components/tabulate/detail/tabulate/samples/word_wrapping.cpp +19 -0
  1171. espp-1.1.5/components/tabulate/detail/tabulate/single_include/tabulate/tabulate.hpp +9352 -0
  1172. espp-1.1.5/components/tabulate/detail/tabulate/single_include.json +27 -0
  1173. espp-1.1.5/components/tabulate/detail/tabulate/tabulate.pri +19 -0
  1174. espp-1.1.5/components/tabulate/detail/tabulate/tabulateConfig.cmake.in +7 -0
  1175. espp-1.1.5/components/tabulate/detail/tabulate/utils/amalgamate/CHANGES.md +10 -0
  1176. espp-1.1.5/components/tabulate/detail/tabulate/utils/amalgamate/LICENSE.md +27 -0
  1177. espp-1.1.5/components/tabulate/detail/tabulate/utils/amalgamate/README.md +66 -0
  1178. espp-1.1.5/components/tabulate/detail/tabulate/utils/amalgamate/amalgamate.py +299 -0
  1179. espp-1.1.5/components/tabulate/detail/tabulate/utils/amalgamate/config.json +8 -0
  1180. espp-1.1.5/components/tabulate/idf_component.yml +18 -0
  1181. espp-1.1.5/components/tabulate/include/tabulate.hpp +27 -0
  1182. espp-1.1.5/components/task/CMakeLists.txt +4 -0
  1183. espp-1.1.5/components/task/README.md +19 -0
  1184. espp-1.1.5/components/task/idf_component.yml +19 -0
  1185. espp-1.1.5/components/task/include/run_on_core.hpp +192 -0
  1186. espp-1.1.5/components/task/include/task.hpp +553 -0
  1187. espp-1.1.5/components/task/include/task_formatters.hpp +28 -0
  1188. espp-1.1.5/components/task/src/task.cpp +326 -0
  1189. espp-1.1.5/components/thermistor/CMakeLists.txt +3 -0
  1190. espp-1.1.5/components/thermistor/README.md +41 -0
  1191. espp-1.1.5/components/thermistor/idf_component.yml +22 -0
  1192. espp-1.1.5/components/thermistor/include/thermistor.hpp +145 -0
  1193. espp-1.1.5/components/timer/CMakeLists.txt +4 -0
  1194. espp-1.1.5/components/timer/README.md +41 -0
  1195. espp-1.1.5/components/timer/idf_component.yml +19 -0
  1196. espp-1.1.5/components/timer/include/high_resolution_timer.hpp +124 -0
  1197. espp-1.1.5/components/timer/include/timer.hpp +168 -0
  1198. espp-1.1.5/components/timer/src/high_resolution_timer.cpp +171 -0
  1199. espp-1.1.5/components/timer/src/timer.cpp +162 -0
  1200. espp-1.1.5/components/tla2528/CMakeLists.txt +4 -0
  1201. espp-1.1.5/components/tla2528/README.md +18 -0
  1202. espp-1.1.5/components/tla2528/idf_component.yml +21 -0
  1203. espp-1.1.5/components/tla2528/include/tla2528.hpp +1107 -0
  1204. espp-1.1.5/components/touch/CMakeLists.txt +4 -0
  1205. espp-1.1.5/components/touch/README.md +19 -0
  1206. espp-1.1.5/components/touch/idf_component.yml +19 -0
  1207. espp-1.1.5/components/touch/include/touch.hpp +182 -0
  1208. espp-1.1.5/components/touch/src/touch.cpp +1 -0
  1209. espp-1.1.5/components/tt21100/CMakeLists.txt +4 -0
  1210. espp-1.1.5/components/tt21100/README.md +14 -0
  1211. espp-1.1.5/components/tt21100/idf_component.yml +23 -0
  1212. espp-1.1.5/components/tt21100/include/tt21100.hpp +224 -0
  1213. espp-1.1.5/components/utils/CMakeLists.txt +3 -0
  1214. espp-1.1.5/components/utils/README.md +6 -0
  1215. espp-1.1.5/components/utils/idf_component.yml +14 -0
  1216. espp-1.1.5/components/utils/include/bitmask_operators.hpp +34 -0
  1217. espp-1.1.5/components/utils/include/espp_chrono.hpp +19 -0
  1218. espp-1.1.5/components/vl53l/CMakeLists.txt +4 -0
  1219. espp-1.1.5/components/vl53l/README.md +27 -0
  1220. espp-1.1.5/components/vl53l/idf_component.yml +23 -0
  1221. espp-1.1.5/components/vl53l/include/vl53l.hpp +850 -0
  1222. espp-1.1.5/components/wifi/CMakeLists.txt +4 -0
  1223. espp-1.1.5/components/wifi/README.md +46 -0
  1224. espp-1.1.5/components/wifi/idf_component.yml +22 -0
  1225. espp-1.1.5/components/wifi/include/wifi.hpp +710 -0
  1226. espp-1.1.5/components/wifi/include/wifi_ap.hpp +480 -0
  1227. espp-1.1.5/components/wifi/include/wifi_ap_menu.hpp +220 -0
  1228. espp-1.1.5/components/wifi/include/wifi_base.hpp +141 -0
  1229. espp-1.1.5/components/wifi/include/wifi_format_helpers.hpp +154 -0
  1230. espp-1.1.5/components/wifi/include/wifi_sta.hpp +841 -0
  1231. espp-1.1.5/components/wifi/include/wifi_sta_menu.hpp +271 -0
  1232. espp-1.1.5/components/wifi/src/wifi_ap.cpp +35 -0
  1233. espp-1.1.5/components/wifi/src/wifi_sta.cpp +38 -0
  1234. espp-1.1.5/components/wrover-kit/CMakeLists.txt +6 -0
  1235. espp-1.1.5/components/wrover-kit/README.md +15 -0
  1236. espp-1.1.5/components/wrover-kit/idf_component.yml +25 -0
  1237. espp-1.1.5/components/wrover-kit/include/wrover-kit.hpp +201 -0
  1238. espp-1.1.5/components/wrover-kit/src/wrover-kit.cpp +262 -0
  1239. espp-1.1.5/components/ws-s3-geek/CMakeLists.txt +7 -0
  1240. espp-1.1.5/components/ws-s3-geek/Kconfig +23 -0
  1241. espp-1.1.5/components/ws-s3-geek/README.md +15 -0
  1242. espp-1.1.5/components/ws-s3-geek/idf_component.yml +29 -0
  1243. espp-1.1.5/components/ws-s3-geek/include/ws-s3-geek.hpp +273 -0
  1244. espp-1.1.5/components/ws-s3-geek/src/sdcard.cpp +102 -0
  1245. espp-1.1.5/components/ws-s3-geek/src/ws-s3-geek.cpp +287 -0
  1246. espp-1.1.5/components/ws-s3-lcd-1-47/CMakeLists.txt +7 -0
  1247. espp-1.1.5/components/ws-s3-lcd-1-47/Kconfig +23 -0
  1248. espp-1.1.5/components/ws-s3-lcd-1-47/README.md +17 -0
  1249. espp-1.1.5/components/ws-s3-lcd-1-47/idf_component.yml +29 -0
  1250. espp-1.1.5/components/ws-s3-lcd-1-47/include/ws-s3-lcd-1-47.hpp +312 -0
  1251. espp-1.1.5/components/ws-s3-lcd-1-47/src/sdcard.cpp +70 -0
  1252. espp-1.1.5/components/ws-s3-lcd-1-47/src/ws-s3-lcd-1-47.cpp +321 -0
  1253. espp-1.1.5/components/ws-s3-touch/CMakeLists.txt +6 -0
  1254. espp-1.1.5/components/ws-s3-touch/Kconfig +43 -0
  1255. espp-1.1.5/components/ws-s3-touch/README.md +17 -0
  1256. espp-1.1.5/components/ws-s3-touch/idf_component.yml +33 -0
  1257. espp-1.1.5/components/ws-s3-touch/include/ws-s3-touch.hpp +442 -0
  1258. espp-1.1.5/components/ws-s3-touch/src/audio.cpp +30 -0
  1259. espp-1.1.5/components/ws-s3-touch/src/board.cpp +25 -0
  1260. espp-1.1.5/components/ws-s3-touch/src/buttons.cpp +28 -0
  1261. espp-1.1.5/components/ws-s3-touch/src/imu.cpp +40 -0
  1262. espp-1.1.5/components/ws-s3-touch/src/rtc.cpp +33 -0
  1263. espp-1.1.5/components/ws-s3-touch/src/touchpad.cpp +118 -0
  1264. espp-1.1.5/components/ws-s3-touch/src/video.cpp +270 -0
  1265. espp-1.1.5/components/xiao-esp32s3-sense/CMakeLists.txt +6 -0
  1266. espp-1.1.5/components/xiao-esp32s3-sense/README.md +38 -0
  1267. espp-1.1.5/components/xiao-esp32s3-sense/idf_component.yml +29 -0
  1268. espp-1.1.5/components/xiao-esp32s3-sense/include/xiao-esp32s3-sense.hpp +332 -0
  1269. espp-1.1.5/components/xiao-esp32s3-sense/src/xiao-esp32s3-sense.cpp +235 -0
  1270. espp-1.1.5/lib/.gitignore +1 -0
  1271. espp-1.1.5/lib/CMakeLists.txt +77 -0
  1272. espp-1.1.5/lib/README.md +178 -0
  1273. espp-1.1.5/lib/README_PYPI.md +65 -0
  1274. espp-1.1.5/lib/autogenerate_bindings.py +538 -0
  1275. espp-1.1.5/lib/cmake/CPM.cmake +24 -0
  1276. espp-1.1.5/lib/espp.cmake +149 -0
  1277. espp-1.1.5/lib/espp.cpp +5 -0
  1278. espp-1.1.5/lib/fix_generated_bindings.py +157 -0
  1279. espp-1.1.5/lib/include/espp.hpp +65 -0
  1280. espp-1.1.5/lib/include/wcswidth.h +7 -0
  1281. espp-1.1.5/lib/python_bindings/cdr_bindings.cpp +246 -0
  1282. espp-1.1.5/lib/python_bindings/espp/__init__.py +9 -0
  1283. espp-1.1.5/lib/python_bindings/espp/__init__.pyi +5797 -0
  1284. espp-1.1.5/lib/python_bindings/espp/py.typed +0 -0
  1285. espp-1.1.5/lib/python_bindings/module.cpp +27 -0
  1286. espp-1.1.5/lib/python_bindings/pybind_espp.cpp +3689 -0
  1287. espp-1.1.5/lib/python_bindings/rtps_bindings.cpp +268 -0
  1288. espp-1.1.5/lib/python_bindings/span_caster.h +162 -0
  1289. espp-1.1.5/lib/requirements.txt +1 -0
  1290. espp-1.1.5/lib/wcswidth.c +262 -0
  1291. espp-1.1.5/pyproject.toml +93 -0
  1292. espp-1.1.5/suppressions.txt +11 -0
@@ -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
+ }
@@ -0,0 +1,2 @@
1
+ # Normalize EOL for all files that Git considers text files.
2
+ * text=auto eol=lf
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,15 @@
1
+ {
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "type": "gdbtarget",
6
+ "request": "attach",
7
+ "name": "Eclipse CDT GDB Adapter"
8
+ },
9
+ {
10
+ "type": "espidf",
11
+ "name": "Launch",
12
+ "request": "launch"
13
+ }
14
+ ]
15
+ }
@@ -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,3 @@
1
+ idf_component_register(
2
+ INCLUDE_DIRS "include"
3
+ REQUIRES base_component task esp_adc)
@@ -0,0 +1,30 @@
1
+ # ADC (Analog to Digital Converter) Component
2
+
3
+ [![Badge](https://components.espressif.com/components/espp/adc/badge.svg)](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'