├── .clang-format ├── .github ├── FUNDING.yml └── workflows │ └── esp-idf-latest.yaml ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── components ├── bluepad32 │ ├── CMakeLists.txt │ ├── Kconfig │ ├── arch │ │ ├── uni_console_esp32.c │ │ ├── uni_console_pico.c │ │ ├── uni_console_posix.c │ │ ├── uni_log_esp32.c │ │ ├── uni_log_pico.c │ │ ├── uni_log_posix.c │ │ ├── uni_property_esp32.c │ │ ├── uni_property_pico.c │ │ ├── uni_property_posix.c │ │ ├── uni_system_esp32.c │ │ ├── uni_system_pico.c │ │ └── uni_system_posix.c │ ├── bt │ │ ├── uni_bt.c │ │ ├── uni_bt_allowlist.c │ │ ├── uni_bt_bredr.c │ │ ├── uni_bt_conn.c │ │ ├── uni_bt_hci_cmd.c │ │ ├── uni_bt_le.c │ │ ├── uni_bt_sdp.c │ │ ├── uni_bt_service.c │ │ ├── uni_bt_service.gatt │ │ └── uni_bt_setup.c │ ├── controller │ │ ├── uni_balance_board.c │ │ ├── uni_controller.c │ │ ├── uni_controller_type.c │ │ ├── uni_gamepad.c │ │ ├── uni_keyboard.c │ │ └── uni_mouse.c │ ├── idf_component.yml │ ├── include │ │ ├── bt │ │ │ ├── uni_bt.h │ │ │ ├── uni_bt_allowlist.h │ │ │ ├── uni_bt_bredr.h │ │ │ ├── uni_bt_conn.h │ │ │ ├── uni_bt_defines.h │ │ │ ├── uni_bt_hci_cmd.h │ │ │ ├── uni_bt_le.h │ │ │ ├── uni_bt_sdp.h │ │ │ ├── uni_bt_service.gatt.h │ │ │ ├── uni_bt_service.h │ │ │ └── uni_bt_setup.h │ │ ├── controller │ │ │ ├── uni_balance_board.h │ │ │ ├── uni_controller.h │ │ │ ├── uni_controller_list.h │ │ │ ├── uni_controller_type.h │ │ │ ├── uni_gamepad.h │ │ │ ├── uni_keyboard.h │ │ │ └── uni_mouse.h │ │ ├── hid_usage.h │ │ ├── parser │ │ │ ├── uni_hid_parser.h │ │ │ ├── uni_hid_parser_8bitdo.h │ │ │ ├── uni_hid_parser_android.h │ │ │ ├── uni_hid_parser_atari.h │ │ │ ├── uni_hid_parser_ds3.h │ │ │ ├── uni_hid_parser_ds4.h │ │ │ ├── uni_hid_parser_ds5.h │ │ │ ├── uni_hid_parser_generic.h │ │ │ ├── uni_hid_parser_icade.h │ │ │ ├── uni_hid_parser_keyboard.h │ │ │ ├── uni_hid_parser_mouse.h │ │ │ ├── uni_hid_parser_nimbus.h │ │ │ ├── uni_hid_parser_ouya.h │ │ │ ├── uni_hid_parser_psmove.h │ │ │ ├── uni_hid_parser_smarttvremote.h │ │ │ ├── uni_hid_parser_stadia.h │ │ │ ├── uni_hid_parser_steam.h │ │ │ ├── uni_hid_parser_switch.h │ │ │ ├── uni_hid_parser_wii.h │ │ │ └── uni_hid_parser_xboxone.h │ │ ├── platform │ │ │ ├── uni_platform.h │ │ │ ├── uni_platform_custom.h │ │ │ ├── uni_platform_mightymiggy.h │ │ │ ├── uni_platform_nina.h │ │ │ ├── uni_platform_unijoysticle.h │ │ │ ├── uni_platform_unijoysticle_2.h │ │ │ ├── uni_platform_unijoysticle_2plus.h │ │ │ ├── uni_platform_unijoysticle_800xl.h │ │ │ ├── uni_platform_unijoysticle_a500.h │ │ │ ├── uni_platform_unijoysticle_c64.h │ │ │ ├── uni_platform_unijoysticle_msx.h │ │ │ └── uni_platform_unijoysticle_singleport.h │ │ ├── uni.h │ │ ├── uni_btstack_version_compat.h │ │ ├── uni_circular_buffer.h │ │ ├── uni_common.h │ │ ├── uni_config.h │ │ ├── uni_console.h │ │ ├── uni_error.h │ │ ├── uni_gpio.h │ │ ├── uni_hid_device.h │ │ ├── uni_init.h │ │ ├── uni_joystick.h │ │ ├── uni_log.h │ │ ├── uni_mouse_quadrature.h │ │ ├── uni_property.h │ │ ├── uni_system.h │ │ ├── uni_utils.h │ │ ├── uni_version.h │ │ └── uni_virtual_device.h │ ├── parser │ │ ├── uni_hid_parser.c │ │ ├── uni_hid_parser_8bitdo.c │ │ ├── uni_hid_parser_android.c │ │ ├── uni_hid_parser_atari.c │ │ ├── uni_hid_parser_ds3.c │ │ ├── uni_hid_parser_ds4.c │ │ ├── uni_hid_parser_ds5.c │ │ ├── uni_hid_parser_generic.c │ │ ├── uni_hid_parser_icade.c │ │ ├── uni_hid_parser_keyboard.c │ │ ├── uni_hid_parser_mouse.c │ │ ├── uni_hid_parser_nimbus.c │ │ ├── uni_hid_parser_ouya.c │ │ ├── uni_hid_parser_psmove.c │ │ ├── uni_hid_parser_smarttvremote.c │ │ ├── uni_hid_parser_stadia.c │ │ ├── uni_hid_parser_steam.c │ │ ├── uni_hid_parser_switch.c │ │ ├── uni_hid_parser_wii.c │ │ └── uni_hid_parser_xboxone.c │ ├── platform │ │ ├── uni_platform.c │ │ ├── uni_platform_mightymiggy.c │ │ ├── uni_platform_nina.c │ │ ├── uni_platform_unijoysticle.c │ │ ├── uni_platform_unijoysticle_2.c │ │ ├── uni_platform_unijoysticle_2plus.c │ │ ├── uni_platform_unijoysticle_800xl.c │ │ ├── uni_platform_unijoysticle_a500.c │ │ ├── uni_platform_unijoysticle_c64.c │ │ ├── uni_platform_unijoysticle_msx.c │ │ └── uni_platform_unijoysticle_singleport.c │ ├── uni_circular_buffer.c │ ├── uni_gpio.c │ ├── uni_hid_device.c │ ├── uni_init.c │ ├── uni_joystick.c │ ├── uni_log.c │ ├── uni_mouse_quadrature.c │ ├── uni_property.c │ ├── uni_utils.c │ ├── uni_version.c │ └── uni_virtual_device.c ├── bluepad32_arduino │ ├── ArduinoBluepad32.cpp │ ├── ArduinoConsole.cpp │ ├── ArduinoController.cpp │ ├── ArduinoGamepad.cpp │ ├── CMakeLists.txt │ ├── arduino_bootstrap.cpp │ ├── arduino_platform.c │ └── include │ │ ├── ArduinoBluepad32.h │ │ ├── ArduinoConsole.h │ │ ├── ArduinoController.h │ │ ├── ArduinoControllerData.h │ │ ├── ArduinoControllerProperties.h │ │ ├── ArduinoGamepad.h │ │ ├── ArduinoGamepadProperties.h │ │ ├── ArduinoKeyboardConstants.h │ │ ├── Bluepad32.h │ │ ├── arduino_bootstrap.h │ │ └── arduino_platform.h ├── btstack │ ├── 3rd-party │ │ ├── bluedroid │ │ │ ├── decoder │ │ │ │ ├── Makefile.inc │ │ │ │ ├── include │ │ │ │ │ ├── oi_assert.h │ │ │ │ │ ├── oi_bitstream.h │ │ │ │ │ ├── oi_bt_spec.h │ │ │ │ │ ├── oi_codec_sbc.h │ │ │ │ │ ├── oi_codec_sbc_private.h │ │ │ │ │ ├── oi_common.h │ │ │ │ │ ├── oi_cpu_dep.h │ │ │ │ │ ├── oi_modules.h │ │ │ │ │ ├── oi_osinterface.h │ │ │ │ │ ├── oi_status.h │ │ │ │ │ ├── oi_stddefs.h │ │ │ │ │ ├── oi_string.h │ │ │ │ │ ├── oi_time.h │ │ │ │ │ └── oi_utils.h │ │ │ │ └── srce │ │ │ │ │ ├── alloc.c │ │ │ │ │ ├── bitalloc-sbc.c │ │ │ │ │ ├── bitalloc.c │ │ │ │ │ ├── bitstream-decode.c │ │ │ │ │ ├── decoder-oina.c │ │ │ │ │ ├── decoder-private.c │ │ │ │ │ ├── decoder-sbc.c │ │ │ │ │ ├── dequant.c │ │ │ │ │ ├── framing-sbc.c │ │ │ │ │ ├── framing.c │ │ │ │ │ ├── oi_codec_version.c │ │ │ │ │ ├── readsamplesjoint.inc │ │ │ │ │ ├── synthesis-8-generated.c │ │ │ │ │ ├── synthesis-dct8.c │ │ │ │ │ └── synthesis-sbc.c │ │ │ └── encoder │ │ │ │ ├── Makefile.inc │ │ │ │ ├── include │ │ │ │ ├── sbc_dct.h │ │ │ │ ├── sbc_enc_func_declare.h │ │ │ │ ├── sbc_encoder.h │ │ │ │ └── sbc_types.h │ │ │ │ └── srce │ │ │ │ ├── sbc_analysis.c │ │ │ │ ├── sbc_dct.c │ │ │ │ ├── sbc_dct_coeffs.c │ │ │ │ ├── sbc_enc_bit_alloc_mono.c │ │ │ │ ├── sbc_enc_bit_alloc_ste.c │ │ │ │ ├── sbc_enc_coeffs.c │ │ │ │ ├── sbc_encoder.c │ │ │ │ └── sbc_packing.c │ │ ├── hxcmod-player │ │ │ ├── hxcmod.c │ │ │ ├── hxcmod.h │ │ │ ├── mods │ │ │ │ ├── mod.h │ │ │ │ ├── nao-deceased_by_disease.c │ │ │ │ └── nao-deceased_by_disease.mod │ │ │ └── readme.txt │ │ ├── lc3-google │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── conformance │ │ │ │ ├── README.md │ │ │ │ ├── lc3plus_decode.html │ │ │ │ ├── lc3plus_encdec.html │ │ │ │ ├── lc3plus_encode.html │ │ │ │ ├── lc3plus_hr_decode.html │ │ │ │ ├── lc3plus_hr_encdec.html │ │ │ │ ├── lc3plus_hr_encode.html │ │ │ │ ├── lc3plus_hr_fallback.html │ │ │ │ ├── lc3plus_hr_precision.html │ │ │ │ ├── music_decode_10m.html │ │ │ │ ├── music_decode_7m5.html │ │ │ │ ├── music_encdec_10m.html │ │ │ │ ├── music_encdec_7m5.html │ │ │ │ ├── music_encode_10m.html │ │ │ │ ├── music_encode_7m5.html │ │ │ │ ├── png_liblc3-hr-precision │ │ │ │ │ ├── thd+n_decode_10.0ms_48kHz_300.0kbps.png │ │ │ │ │ ├── thd+n_decode_10.0ms_48kHz_500.0kbps.png │ │ │ │ │ ├── thd+n_decode_10.0ms_96kHz_300.0kbps.png │ │ │ │ │ ├── thd+n_decode_10.0ms_96kHz_500.0kbps.png │ │ │ │ │ ├── thd+n_decode_2.5ms_48kHz_400.0kbps.png │ │ │ │ │ ├── thd+n_decode_2.5ms_48kHz_672.0kbps.png │ │ │ │ │ ├── thd+n_decode_2.5ms_96kHz_400.0kbps.png │ │ │ │ │ ├── thd+n_decode_2.5ms_96kHz_672.0kbps.png │ │ │ │ │ ├── thd+n_decode_5.0ms_48kHz_400.0kbps.png │ │ │ │ │ ├── thd+n_decode_5.0ms_48kHz_600.0kbps.png │ │ │ │ │ ├── thd+n_decode_5.0ms_96kHz_400.0kbps.png │ │ │ │ │ ├── thd+n_decode_5.0ms_96kHz_600.0kbps.png │ │ │ │ │ ├── thd+n_encdec_10.0ms_48kHz_300.0kbps.png │ │ │ │ │ ├── thd+n_encdec_10.0ms_48kHz_500.0kbps.png │ │ │ │ │ ├── thd+n_encdec_10.0ms_96kHz_300.0kbps.png │ │ │ │ │ ├── thd+n_encdec_10.0ms_96kHz_500.0kbps.png │ │ │ │ │ ├── thd+n_encdec_2.5ms_48kHz_400.0kbps.png │ │ │ │ │ ├── thd+n_encdec_2.5ms_48kHz_672.0kbps.png │ │ │ │ │ ├── thd+n_encdec_2.5ms_96kHz_400.0kbps.png │ │ │ │ │ ├── thd+n_encdec_2.5ms_96kHz_672.0kbps.png │ │ │ │ │ ├── thd+n_encdec_5.0ms_48kHz_400.0kbps.png │ │ │ │ │ ├── thd+n_encdec_5.0ms_48kHz_600.0kbps.png │ │ │ │ │ ├── thd+n_encdec_5.0ms_96kHz_400.0kbps.png │ │ │ │ │ ├── thd+n_encdec_5.0ms_96kHz_600.0kbps.png │ │ │ │ │ ├── thd+n_encode_10.0ms_48kHz_300.0kbps.png │ │ │ │ │ ├── thd+n_encode_10.0ms_48kHz_500.0kbps.png │ │ │ │ │ ├── thd+n_encode_10.0ms_96kHz_300.0kbps.png │ │ │ │ │ ├── thd+n_encode_10.0ms_96kHz_500.0kbps.png │ │ │ │ │ ├── thd+n_encode_2.5ms_48kHz_400.0kbps.png │ │ │ │ │ ├── thd+n_encode_2.5ms_48kHz_672.0kbps.png │ │ │ │ │ ├── thd+n_encode_2.5ms_96kHz_400.0kbps.png │ │ │ │ │ ├── thd+n_encode_2.5ms_96kHz_672.0kbps.png │ │ │ │ │ ├── thd+n_encode_5.0ms_48kHz_400.0kbps.png │ │ │ │ │ ├── thd+n_encode_5.0ms_48kHz_600.0kbps.png │ │ │ │ │ ├── thd+n_encode_5.0ms_96kHz_400.0kbps.png │ │ │ │ │ └── thd+n_encode_5.0ms_96kHz_600.0kbps.png │ │ │ │ ├── speech_decode_10m.html │ │ │ │ ├── speech_decode_7m5.html │ │ │ │ ├── speech_encdec_10m.html │ │ │ │ ├── speech_encdec_7m5.html │ │ │ │ ├── speech_encode_10m.html │ │ │ │ └── speech_encode_7m5.html │ │ │ ├── fuzz │ │ │ │ ├── dfuzz.cc │ │ │ │ ├── efuzz.cc │ │ │ │ └── makefile.mk │ │ │ ├── include │ │ │ │ ├── lc3.h │ │ │ │ ├── lc3_cpp.h │ │ │ │ └── lc3_private.h │ │ │ ├── meson.build │ │ │ ├── meson_options.txt │ │ │ ├── pyproject.toml │ │ │ ├── python │ │ │ │ ├── LICENSE │ │ │ │ ├── lc3.py │ │ │ │ ├── meson.build │ │ │ │ └── tools │ │ │ │ │ ├── decoder.py │ │ │ │ │ ├── encoder.py │ │ │ │ │ └── specgram.py │ │ │ ├── src │ │ │ │ ├── attdet.c │ │ │ │ ├── attdet.h │ │ │ │ ├── bits.c │ │ │ │ ├── bits.h │ │ │ │ ├── bwdet.c │ │ │ │ ├── bwdet.h │ │ │ │ ├── common.h │ │ │ │ ├── energy.c │ │ │ │ ├── energy.h │ │ │ │ ├── fastmath.h │ │ │ │ ├── lc3.c │ │ │ │ ├── ltpf.c │ │ │ │ ├── ltpf.h │ │ │ │ ├── ltpf_arm.h │ │ │ │ ├── ltpf_neon.h │ │ │ │ ├── makefile.mk │ │ │ │ ├── mdct.c │ │ │ │ ├── mdct.h │ │ │ │ ├── mdct_neon.h │ │ │ │ ├── meson.build │ │ │ │ ├── plc.c │ │ │ │ ├── plc.h │ │ │ │ ├── sns.c │ │ │ │ ├── sns.h │ │ │ │ ├── spec.c │ │ │ │ ├── spec.h │ │ │ │ ├── tables.c │ │ │ │ ├── tables.h │ │ │ │ ├── tns.c │ │ │ │ └── tns.h │ │ │ ├── tables │ │ │ │ ├── fastmath.py │ │ │ │ └── mktables.py │ │ │ ├── test │ │ │ │ ├── appendix_c.py │ │ │ │ ├── arm │ │ │ │ │ ├── ltpf_arm.c │ │ │ │ │ ├── makefile.mk │ │ │ │ │ ├── simd32.h │ │ │ │ │ └── test_arm.c │ │ │ │ ├── attdet.py │ │ │ │ ├── attdet_py.c │ │ │ │ ├── bitstream.py │ │ │ │ ├── bwdet.py │ │ │ │ ├── bwdet_py.c │ │ │ │ ├── ctypes.h │ │ │ │ ├── decoder.py │ │ │ │ ├── encoder.py │ │ │ │ ├── energy.py │ │ │ │ ├── energy_py.c │ │ │ │ ├── lc3_py.c │ │ │ │ ├── ltpf.py │ │ │ │ ├── ltpf_py.c │ │ │ │ ├── makefile.mk │ │ │ │ ├── mdct.py │ │ │ │ ├── mdct_py.c │ │ │ │ ├── module_py.c │ │ │ │ ├── neon │ │ │ │ │ ├── ltpf_neon.c │ │ │ │ │ ├── makefile.mk │ │ │ │ │ ├── mdct_neon.c │ │ │ │ │ ├── neon.h │ │ │ │ │ └── test_neon.c │ │ │ │ ├── run.py │ │ │ │ ├── setup.py │ │ │ │ ├── sns.py │ │ │ │ ├── sns_py.c │ │ │ │ ├── spec.py │ │ │ │ ├── spec_py.c │ │ │ │ ├── tables.py │ │ │ │ ├── tns.py │ │ │ │ └── tns_py.c │ │ │ ├── tools │ │ │ │ ├── dlc3.c │ │ │ │ ├── elc3.c │ │ │ │ ├── lc3bin.c │ │ │ │ ├── lc3bin.h │ │ │ │ ├── makefile.mk │ │ │ │ ├── meson.build │ │ │ │ ├── wave.c │ │ │ │ └── wave.h │ │ │ ├── wasm │ │ │ │ ├── math.h │ │ │ │ └── string.h │ │ │ └── zephyr │ │ │ │ └── module.yml │ │ ├── lwip │ │ │ └── dhcp-server │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── dhserver.c │ │ │ │ └── dhserver.h │ │ ├── md5 │ │ │ ├── md5.c │ │ │ └── md5.h │ │ ├── micro-ecc │ │ │ ├── .gitignore │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── asm_arm.inc │ │ │ ├── asm_avr.inc │ │ │ ├── btstack_config_uECC.h │ │ │ ├── emk_project.py │ │ │ ├── emk_rules.py │ │ │ ├── scripts │ │ │ │ ├── mult_arm.py │ │ │ │ ├── mult_avr.py │ │ │ │ ├── square_arm.py │ │ │ │ └── square_avr.py │ │ │ ├── test │ │ │ │ ├── ecc_test │ │ │ │ │ └── ecc_test.ino │ │ │ │ ├── emk_rules.py │ │ │ │ ├── test_compress.c │ │ │ │ ├── test_compute.c │ │ │ │ ├── test_ecdh.c │ │ │ │ ├── test_ecdsa.c │ │ │ │ └── test_ecdsa_deterministic.c │ │ │ ├── uECC.c │ │ │ └── uECC.h │ │ └── yxml │ │ │ ├── COPYING │ │ │ ├── yxml.c │ │ │ └── yxml.h │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.projbuild │ ├── btstack_audio_esp32_v4.c │ ├── btstack_audio_esp32_v5.c │ ├── btstack_port_esp32.c │ ├── btstack_stdio_esp32.c │ ├── btstack_tlv_esp32.c │ ├── es8388.c │ ├── es8388.h │ ├── include │ │ ├── btstack_config.h │ │ ├── btstack_port_esp32.h │ │ ├── btstack_stdio_esp32.h │ │ └── btstack_tlv_esp32.h │ ├── platform │ │ ├── embedded │ │ │ ├── hal_time_ms.h │ │ │ ├── hal_uart_dma.h │ │ │ ├── hci_dump_embedded_stdout.c │ │ │ └── hci_dump_embedded_stdout.h │ │ ├── freertos │ │ │ ├── btstack_run_loop_freertos.c │ │ │ ├── btstack_run_loop_freertos.h │ │ │ └── btstack_uart_block_freertos.c │ │ └── lwip │ │ │ ├── README.md │ │ │ ├── bnep_lwip.c │ │ │ ├── bnep_lwip.h │ │ │ └── port │ │ │ ├── arch │ │ │ └── cc.h │ │ │ ├── lwipopts.h │ │ │ └── sys_arch.c │ ├── src │ │ ├── Makefile.inc │ │ ├── ad_parser.c │ │ ├── ad_parser.h │ │ ├── ble │ │ │ ├── Makefile.inc │ │ │ ├── att_db.c │ │ │ ├── att_db.h │ │ │ ├── att_db_util.c │ │ │ ├── att_db_util.h │ │ │ ├── att_dispatch.c │ │ │ ├── att_dispatch.h │ │ │ ├── att_server.c │ │ │ ├── att_server.h │ │ │ ├── core.h │ │ │ ├── gatt-service │ │ │ │ ├── Makefile.inc │ │ │ │ ├── ancs_client.c │ │ │ │ ├── ancs_client.h │ │ │ │ ├── battery_service.gatt │ │ │ │ ├── battery_service_client.c │ │ │ │ ├── battery_service_client.h │ │ │ │ ├── battery_service_server.c │ │ │ │ ├── battery_service_server.h │ │ │ │ ├── battery_service_v1.gatt │ │ │ │ ├── battery_service_v1_server.c │ │ │ │ ├── battery_service_v1_server.h │ │ │ │ ├── bond_management_service.gatt │ │ │ │ ├── bond_management_service_server.c │ │ │ │ ├── bond_management_service_server.h │ │ │ │ ├── cycling_power_service.gatt │ │ │ │ ├── cycling_power_service_server.c │ │ │ │ ├── cycling_power_service_server.h │ │ │ │ ├── cycling_speed_and_cadence_service.gatt │ │ │ │ ├── cycling_speed_and_cadence_service_server.c │ │ │ │ ├── cycling_speed_and_cadence_service_server.h │ │ │ │ ├── device_information_service.gatt │ │ │ │ ├── device_information_service_client.c │ │ │ │ ├── device_information_service_client.h │ │ │ │ ├── device_information_service_server.c │ │ │ │ ├── device_information_service_server.h │ │ │ │ ├── device_information_service_v1.gatt │ │ │ │ ├── gatt_service.gatt │ │ │ │ ├── heart_rate_service.gatt │ │ │ │ ├── heart_rate_service_server.c │ │ │ │ ├── heart_rate_service_server.h │ │ │ │ ├── hids.gatt │ │ │ │ ├── hids_client.c │ │ │ │ ├── hids_client.h │ │ │ │ ├── hids_device.c │ │ │ │ ├── hids_device.h │ │ │ │ ├── immediate_alert_service.gatt │ │ │ │ ├── immediate_alert_service_client.c │ │ │ │ ├── immediate_alert_service_client.h │ │ │ │ ├── immediate_alert_service_server.c │ │ │ │ ├── immediate_alert_service_server.h │ │ │ │ ├── immediate_alert_service_util.h │ │ │ │ ├── link_loss_service.gatt │ │ │ │ ├── link_loss_service_client.c │ │ │ │ ├── link_loss_service_client.h │ │ │ │ ├── link_loss_service_server.c │ │ │ │ ├── link_loss_service_server.h │ │ │ │ ├── link_loss_service_util.h │ │ │ │ ├── nordic_spp_service.gatt │ │ │ │ ├── nordic_spp_service_server.c │ │ │ │ ├── nordic_spp_service_server.h │ │ │ │ ├── scan_parameters_service.gatt │ │ │ │ ├── scan_parameters_service_client.c │ │ │ │ ├── scan_parameters_service_client.h │ │ │ │ ├── scan_parameters_service_server.c │ │ │ │ ├── scan_parameters_service_server.h │ │ │ │ ├── tx_power_service.gatt │ │ │ │ ├── tx_power_service_client.c │ │ │ │ ├── tx_power_service_client.h │ │ │ │ ├── tx_power_service_server.c │ │ │ │ ├── tx_power_service_server.h │ │ │ │ ├── ublox_spp_service.gatt │ │ │ │ ├── ublox_spp_service_server.c │ │ │ │ └── ublox_spp_service_server.h │ │ │ ├── gatt_client.c │ │ │ ├── gatt_client.h │ │ │ ├── gatt_service_client.c │ │ │ ├── gatt_service_client.h │ │ │ ├── le_device_db.h │ │ │ ├── le_device_db_memory.c │ │ │ ├── le_device_db_tlv.c │ │ │ ├── le_device_db_tlv.h │ │ │ ├── sm.c │ │ │ └── sm.h │ │ ├── bluetooth.h │ │ ├── bluetooth_company_id.h │ │ ├── bluetooth_data_types.h │ │ ├── bluetooth_gatt.h │ │ ├── bluetooth_psm.h │ │ ├── bluetooth_sdp.h │ │ ├── btstack.h │ │ ├── btstack_audio.c │ │ ├── btstack_audio.h │ │ ├── btstack_base64_decoder.c │ │ ├── btstack_base64_decoder.h │ │ ├── btstack_bool.h │ │ ├── btstack_chipset.h │ │ ├── btstack_control.h │ │ ├── btstack_crypto.c │ │ ├── btstack_crypto.h │ │ ├── btstack_debug.h │ │ ├── btstack_defines.h │ │ ├── btstack_em9304_spi.h │ │ ├── btstack_event.h │ │ ├── btstack_fsm.c │ │ ├── btstack_fsm.h │ │ ├── btstack_hid.c │ │ ├── btstack_hid.h │ │ ├── btstack_hid_parser.c │ │ ├── btstack_hid_parser.h │ │ ├── btstack_hsm.c │ │ ├── btstack_hsm.h │ │ ├── btstack_lc3.c │ │ ├── btstack_lc3.h │ │ ├── btstack_lc3_google.c │ │ ├── btstack_lc3_google.h │ │ ├── btstack_lc3plus_fraunhofer.c │ │ ├── btstack_lc3plus_fraunhofer.h │ │ ├── btstack_linked_list.c │ │ ├── btstack_linked_list.h │ │ ├── btstack_linked_queue.c │ │ ├── btstack_linked_queue.h │ │ ├── btstack_ltv_builder.c │ │ ├── btstack_ltv_builder.h │ │ ├── btstack_memory.c │ │ ├── btstack_memory.h │ │ ├── btstack_memory_pool.c │ │ ├── btstack_memory_pool.h │ │ ├── btstack_network.h │ │ ├── btstack_resample.c │ │ ├── btstack_resample.h │ │ ├── btstack_ring_buffer.c │ │ ├── btstack_ring_buffer.h │ │ ├── btstack_run_loop.c │ │ ├── btstack_run_loop.h │ │ ├── btstack_run_loop_base.c │ │ ├── btstack_run_loop_base.h │ │ ├── btstack_sample_rate_compensation.c │ │ ├── btstack_sample_rate_compensation.h │ │ ├── btstack_sco_transport.h │ │ ├── btstack_slip.c │ │ ├── btstack_slip.h │ │ ├── btstack_stdin.h │ │ ├── btstack_tlv.c │ │ ├── btstack_tlv.h │ │ ├── btstack_tlv_builder.c │ │ ├── btstack_tlv_builder.h │ │ ├── btstack_tlv_none.c │ │ ├── btstack_tlv_none.h │ │ ├── btstack_uart.h │ │ ├── btstack_uart_block.h │ │ ├── btstack_uart_slip_wrapper.c │ │ ├── btstack_uart_slip_wrapper.h │ │ ├── btstack_util.c │ │ ├── btstack_util.h │ │ ├── btstack_version.h │ │ ├── classic │ │ │ ├── Makefile.inc │ │ │ ├── a2dp.c │ │ │ ├── a2dp.h │ │ │ ├── a2dp_sink.c │ │ │ ├── a2dp_sink.h │ │ │ ├── a2dp_source.c │ │ │ ├── a2dp_source.h │ │ │ ├── avdtp.c │ │ │ ├── avdtp.h │ │ │ ├── avdtp_acceptor.c │ │ │ ├── avdtp_acceptor.h │ │ │ ├── avdtp_initiator.c │ │ │ ├── avdtp_initiator.h │ │ │ ├── avdtp_sink.c │ │ │ ├── avdtp_sink.h │ │ │ ├── avdtp_source.c │ │ │ ├── avdtp_source.h │ │ │ ├── avdtp_util.c │ │ │ ├── avdtp_util.h │ │ │ ├── avrcp.c │ │ │ ├── avrcp.h │ │ │ ├── avrcp_browsing.c │ │ │ ├── avrcp_browsing.h │ │ │ ├── avrcp_browsing_controller.c │ │ │ ├── avrcp_browsing_controller.h │ │ │ ├── avrcp_browsing_target.c │ │ │ ├── avrcp_browsing_target.h │ │ │ ├── avrcp_controller.c │ │ │ ├── avrcp_controller.h │ │ │ ├── avrcp_cover_art_client.c │ │ │ ├── avrcp_cover_art_client.h │ │ │ ├── avrcp_media_item_iterator.c │ │ │ ├── avrcp_media_item_iterator.h │ │ │ ├── avrcp_target.c │ │ │ ├── avrcp_target.h │ │ │ ├── bnep.c │ │ │ ├── bnep.h │ │ │ ├── btstack_cvsd_plc.c │ │ │ ├── btstack_cvsd_plc.h │ │ │ ├── btstack_link_key_db.h │ │ │ ├── btstack_link_key_db_memory.c │ │ │ ├── btstack_link_key_db_memory.h │ │ │ ├── btstack_link_key_db_static.c │ │ │ ├── btstack_link_key_db_static.h │ │ │ ├── btstack_link_key_db_tlv.c │ │ │ ├── btstack_link_key_db_tlv.h │ │ │ ├── btstack_sbc.h │ │ │ ├── btstack_sbc_bluedroid.c │ │ │ ├── btstack_sbc_bluedroid.h │ │ │ ├── btstack_sbc_decoder_bluedroid.c │ │ │ ├── btstack_sbc_encoder_bluedroid.c │ │ │ ├── btstack_sbc_plc.c │ │ │ ├── btstack_sbc_plc.h │ │ │ ├── core.h │ │ │ ├── device_id_server.c │ │ │ ├── device_id_server.h │ │ │ ├── gatt_sdp.c │ │ │ ├── gatt_sdp.h │ │ │ ├── goep_client.c │ │ │ ├── goep_client.h │ │ │ ├── goep_server.c │ │ │ ├── goep_server.h │ │ │ ├── hfp.c │ │ │ ├── hfp.h │ │ │ ├── hfp_ag.c │ │ │ ├── hfp_ag.h │ │ │ ├── hfp_codec.c │ │ │ ├── hfp_codec.h │ │ │ ├── hfp_gsm_model.c │ │ │ ├── hfp_gsm_model.h │ │ │ ├── hfp_hf.c │ │ │ ├── hfp_hf.h │ │ │ ├── hfp_msbc.c │ │ │ ├── hfp_msbc.h │ │ │ ├── hid_device.c │ │ │ ├── hid_device.h │ │ │ ├── hid_host.c │ │ │ ├── hid_host.h │ │ │ ├── hsp_ag.c │ │ │ ├── hsp_ag.h │ │ │ ├── hsp_hs.c │ │ │ ├── hsp_hs.h │ │ │ ├── obex.h │ │ │ ├── obex_iterator.c │ │ │ ├── obex_iterator.h │ │ │ ├── obex_message_builder.c │ │ │ ├── obex_message_builder.h │ │ │ ├── obex_parser.c │ │ │ ├── obex_parser.h │ │ │ ├── obex_srm_client.c │ │ │ ├── obex_srm_client.h │ │ │ ├── obex_srm_server.c │ │ │ ├── obex_srm_server.h │ │ │ ├── pan.c │ │ │ ├── pan.h │ │ │ ├── pbap.h │ │ │ ├── pbap_client.c │ │ │ ├── pbap_client.h │ │ │ ├── rfcomm.c │ │ │ ├── rfcomm.h │ │ │ ├── sdp_client.c │ │ │ ├── sdp_client.h │ │ │ ├── sdp_client_rfcomm.c │ │ │ ├── sdp_client_rfcomm.h │ │ │ ├── sdp_server.c │ │ │ ├── sdp_server.h │ │ │ ├── sdp_util.c │ │ │ ├── sdp_util.h │ │ │ ├── spp_server.c │ │ │ └── spp_server.h │ │ ├── gap.h │ │ ├── hci.c │ │ ├── hci.h │ │ ├── hci_cmd.c │ │ ├── hci_cmd.h │ │ ├── hci_dump.c │ │ ├── hci_dump.h │ │ ├── hci_dump_dispatch.c │ │ ├── hci_dump_dispatch.h │ │ ├── hci_event.c │ │ ├── hci_event.h │ │ ├── hci_event_builder.c │ │ ├── hci_event_builder.h │ │ ├── hci_transport.h │ │ ├── hci_transport_em9304_spi.c │ │ ├── hci_transport_em9304_spi.h │ │ ├── hci_transport_h4.c │ │ ├── hci_transport_h4.h │ │ ├── hci_transport_h5.c │ │ ├── hci_transport_h5.h │ │ ├── hci_transport_usb.h │ │ ├── l2cap.c │ │ ├── l2cap.h │ │ ├── l2cap_signaling.c │ │ ├── l2cap_signaling.h │ │ ├── le-audio │ │ │ ├── broadcast_audio_uri.h │ │ │ ├── broadcast_audio_uri_builder.c │ │ │ ├── broadcast_audio_uri_builder.h │ │ │ ├── gatt-service │ │ │ │ ├── Makefile.inc │ │ │ │ ├── broadcast_audio_scan_service.gatt │ │ │ │ ├── broadcast_audio_scan_service_client.c │ │ │ │ ├── broadcast_audio_scan_service_client.h │ │ │ │ ├── broadcast_audio_scan_service_server.c │ │ │ │ ├── broadcast_audio_scan_service_server.h │ │ │ │ ├── broadcast_audio_scan_service_util.c │ │ │ │ └── broadcast_audio_scan_service_util.h │ │ │ ├── le_audio.h │ │ │ ├── le_audio_base_builder.c │ │ │ ├── le_audio_base_builder.h │ │ │ ├── le_audio_base_parser.c │ │ │ ├── le_audio_base_parser.h │ │ │ ├── le_audio_util.c │ │ │ └── le_audio_util.h │ │ └── mesh │ │ │ ├── adv_bearer.c │ │ │ ├── adv_bearer.h │ │ │ ├── beacon.c │ │ │ ├── beacon.h │ │ │ ├── gatt-service │ │ │ ├── mesh_provisioning_service.gatt │ │ │ ├── mesh_provisioning_service_server.c │ │ │ ├── mesh_provisioning_service_server.h │ │ │ ├── mesh_proxy_service.gatt │ │ │ ├── mesh_proxy_service_server.c │ │ │ └── mesh_proxy_service_server.h │ │ │ ├── gatt_bearer.c │ │ │ ├── gatt_bearer.h │ │ │ ├── mesh.c │ │ │ ├── mesh.h │ │ │ ├── mesh_access.c │ │ │ ├── mesh_access.h │ │ │ ├── mesh_configuration_client.c │ │ │ ├── mesh_configuration_client.h │ │ │ ├── mesh_configuration_server.c │ │ │ ├── mesh_configuration_server.h │ │ │ ├── mesh_crypto.c │ │ │ ├── mesh_crypto.h │ │ │ ├── mesh_foundation.c │ │ │ ├── mesh_foundation.h │ │ │ ├── mesh_generic_default_transition_time_client.c │ │ │ ├── mesh_generic_default_transition_time_client.h │ │ │ ├── mesh_generic_default_transition_time_server.c │ │ │ ├── mesh_generic_default_transition_time_server.h │ │ │ ├── mesh_generic_level_client.c │ │ │ ├── mesh_generic_level_client.h │ │ │ ├── mesh_generic_level_server.c │ │ │ ├── mesh_generic_level_server.h │ │ │ ├── mesh_generic_model.h │ │ │ ├── mesh_generic_on_off_client.c │ │ │ ├── mesh_generic_on_off_client.h │ │ │ ├── mesh_generic_on_off_server.c │ │ │ ├── mesh_generic_on_off_server.h │ │ │ ├── mesh_health_server.c │ │ │ ├── mesh_health_server.h │ │ │ ├── mesh_iv_index_seq_number.c │ │ │ ├── mesh_iv_index_seq_number.h │ │ │ ├── mesh_keys.c │ │ │ ├── mesh_keys.h │ │ │ ├── mesh_lower_transport.c │ │ │ ├── mesh_lower_transport.h │ │ │ ├── mesh_network.c │ │ │ ├── mesh_network.h │ │ │ ├── mesh_node.c │ │ │ ├── mesh_node.h │ │ │ ├── mesh_peer.c │ │ │ ├── mesh_peer.h │ │ │ ├── mesh_proxy.c │ │ │ ├── mesh_proxy.h │ │ │ ├── mesh_upper_transport.c │ │ │ ├── mesh_upper_transport.h │ │ │ ├── mesh_virtual_addresses.c │ │ │ ├── mesh_virtual_addresses.h │ │ │ ├── pb_adv.c │ │ │ ├── pb_adv.h │ │ │ ├── pb_gatt.c │ │ │ ├── pb_gatt.h │ │ │ ├── provisioning.c │ │ │ ├── provisioning.h │ │ │ ├── provisioning_device.c │ │ │ ├── provisioning_device.h │ │ │ ├── provisioning_provisioner.c │ │ │ └── provisioning_provisioner.h │ └── tool │ │ ├── .gitignore │ │ ├── bluetooth_company_id.py │ │ ├── bluetooth_data_types.py │ │ ├── bluetooth_gatt.py │ │ ├── bluetooth_gatt_process_uuid_list.py │ │ ├── bluetooth_psm.py │ │ ├── bluetooth_sdp.py │ │ ├── btstack_code_template.py │ │ ├── btstack_event_generator.py │ │ ├── btstack_memory_generator.py │ │ ├── btstack_parser.py │ │ ├── btstack_rtos_generator.py │ │ ├── clean_tree.sh │ │ ├── compile_gatt.py │ │ ├── create_makefile_inc.py │ │ ├── create_packet_log.py │ │ ├── dump_gatt.py │ │ ├── dump_h4.py │ │ ├── dump_keys.py │ │ ├── dump_pklg.py │ │ ├── dump_tlv.py │ │ ├── get_git_version.sh │ │ ├── get_version.sh │ │ ├── java_binding.py │ │ ├── metrics │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── btstack_config.h │ │ ├── goto.sh │ │ ├── inttypes.h │ │ ├── metrics-lizard.py │ │ └── metrics_ccsm.py │ │ ├── migration_to_v1.0 │ │ ├── README.md │ │ ├── migration.cocci │ │ ├── migration.sed │ │ └── migration.sh │ │ ├── misc │ │ ├── add_callback_to_ds_process.cocci │ │ ├── add_copyright.py │ │ ├── append_u_to_constants.cocci │ │ ├── drop_internal.py │ │ ├── fix-misra-10.4a.py │ │ ├── fix-misra-10.4a.sh │ │ ├── fix-misra-12.1.py │ │ ├── fix_null_pointer_checks.cocci │ │ ├── fix_void_declarations.cocci │ │ ├── ignore_return_mempcy.cocci │ │ ├── replace_bzero_with_memset.cocci │ │ ├── replace_malloc_plus_memset_by_calloc.cocci │ │ ├── replace_sprintf.cocci │ │ ├── update_btstack_config.py │ │ ├── update_btstack_config_docu_link.py │ │ └── update_copyright.py │ │ ├── package.sh │ │ ├── python_generator.py │ │ ├── sine_table_generator.py │ │ ├── sm_random_check.py │ │ ├── state_enums.sh │ │ ├── template.h │ │ ├── update_filename.py │ │ └── uuid128_formats.py ├── cmd_nvs │ ├── CMakeLists.txt │ ├── cmd_nvs.c │ ├── cmd_nvs.h │ └── component.mk ├── cmd_nvs_4.4 │ ├── CMakeLists.txt │ ├── cmd_nvs.c │ ├── cmd_nvs.h │ └── component.mk ├── cmd_system │ ├── CMakeLists.txt │ ├── cmd_system.c │ ├── cmd_system.h │ └── component.mk └── cmd_system_4.4 │ ├── CMakeLists.txt │ ├── cmd_system.c │ ├── cmd_system.h │ └── component.mk ├── examples └── ota │ ├── CMakeLists.txt │ ├── README.md │ ├── main │ ├── CMakeLists.txt │ ├── att_delayed_response.gatt │ ├── att_delayed_response.h │ ├── ble_server.cpp │ ├── ble_server.h │ ├── main.c │ └── sketch.cpp │ └── sdkconfig.defaults ├── main ├── CMakeLists.txt ├── main.c └── sketch.cpp ├── patches └── 0001-Call-initBluepad32-when-AUTOSTART_ARDUINO-is-enabled.patch ├── platformio.ini ├── sdkconfig.defaults └── sdkconfig.defaults.esp32c6 /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/esp-idf-latest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/.github/workflows/esp-idf-latest.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/README.md -------------------------------------------------------------------------------- /components/bluepad32/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/CMakeLists.txt -------------------------------------------------------------------------------- /components/bluepad32/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/Kconfig -------------------------------------------------------------------------------- /components/bluepad32/arch/uni_console_esp32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/arch/uni_console_esp32.c -------------------------------------------------------------------------------- /components/bluepad32/arch/uni_console_pico.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/arch/uni_console_pico.c -------------------------------------------------------------------------------- /components/bluepad32/arch/uni_console_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/arch/uni_console_posix.c -------------------------------------------------------------------------------- /components/bluepad32/arch/uni_log_esp32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/arch/uni_log_esp32.c -------------------------------------------------------------------------------- /components/bluepad32/arch/uni_log_pico.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/arch/uni_log_pico.c -------------------------------------------------------------------------------- /components/bluepad32/arch/uni_log_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/arch/uni_log_posix.c -------------------------------------------------------------------------------- /components/bluepad32/arch/uni_property_esp32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/arch/uni_property_esp32.c -------------------------------------------------------------------------------- /components/bluepad32/arch/uni_property_pico.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/arch/uni_property_pico.c -------------------------------------------------------------------------------- /components/bluepad32/arch/uni_property_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/arch/uni_property_posix.c -------------------------------------------------------------------------------- /components/bluepad32/arch/uni_system_esp32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/arch/uni_system_esp32.c -------------------------------------------------------------------------------- /components/bluepad32/arch/uni_system_pico.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/arch/uni_system_pico.c -------------------------------------------------------------------------------- /components/bluepad32/arch/uni_system_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/arch/uni_system_posix.c -------------------------------------------------------------------------------- /components/bluepad32/bt/uni_bt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/bt/uni_bt.c -------------------------------------------------------------------------------- /components/bluepad32/bt/uni_bt_allowlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/bt/uni_bt_allowlist.c -------------------------------------------------------------------------------- /components/bluepad32/bt/uni_bt_bredr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/bt/uni_bt_bredr.c -------------------------------------------------------------------------------- /components/bluepad32/bt/uni_bt_conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/bt/uni_bt_conn.c -------------------------------------------------------------------------------- /components/bluepad32/bt/uni_bt_hci_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/bt/uni_bt_hci_cmd.c -------------------------------------------------------------------------------- /components/bluepad32/bt/uni_bt_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/bt/uni_bt_le.c -------------------------------------------------------------------------------- /components/bluepad32/bt/uni_bt_sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/bt/uni_bt_sdp.c -------------------------------------------------------------------------------- /components/bluepad32/bt/uni_bt_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/bt/uni_bt_service.c -------------------------------------------------------------------------------- /components/bluepad32/bt/uni_bt_service.gatt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/bt/uni_bt_service.gatt -------------------------------------------------------------------------------- /components/bluepad32/bt/uni_bt_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/bt/uni_bt_setup.c -------------------------------------------------------------------------------- /components/bluepad32/controller/uni_balance_board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/controller/uni_balance_board.c -------------------------------------------------------------------------------- /components/bluepad32/controller/uni_controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/controller/uni_controller.c -------------------------------------------------------------------------------- /components/bluepad32/controller/uni_controller_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/controller/uni_controller_type.c -------------------------------------------------------------------------------- /components/bluepad32/controller/uni_gamepad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/controller/uni_gamepad.c -------------------------------------------------------------------------------- /components/bluepad32/controller/uni_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/controller/uni_keyboard.c -------------------------------------------------------------------------------- /components/bluepad32/controller/uni_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/controller/uni_mouse.c -------------------------------------------------------------------------------- /components/bluepad32/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/idf_component.yml -------------------------------------------------------------------------------- /components/bluepad32/include/bt/uni_bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/bt/uni_bt.h -------------------------------------------------------------------------------- /components/bluepad32/include/bt/uni_bt_allowlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/bt/uni_bt_allowlist.h -------------------------------------------------------------------------------- /components/bluepad32/include/bt/uni_bt_bredr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/bt/uni_bt_bredr.h -------------------------------------------------------------------------------- /components/bluepad32/include/bt/uni_bt_conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/bt/uni_bt_conn.h -------------------------------------------------------------------------------- /components/bluepad32/include/bt/uni_bt_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/bt/uni_bt_defines.h -------------------------------------------------------------------------------- /components/bluepad32/include/bt/uni_bt_hci_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/bt/uni_bt_hci_cmd.h -------------------------------------------------------------------------------- /components/bluepad32/include/bt/uni_bt_le.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/bt/uni_bt_le.h -------------------------------------------------------------------------------- /components/bluepad32/include/bt/uni_bt_sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/bt/uni_bt_sdp.h -------------------------------------------------------------------------------- /components/bluepad32/include/bt/uni_bt_service.gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/bt/uni_bt_service.gatt.h -------------------------------------------------------------------------------- /components/bluepad32/include/bt/uni_bt_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/bt/uni_bt_service.h -------------------------------------------------------------------------------- /components/bluepad32/include/bt/uni_bt_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/bt/uni_bt_setup.h -------------------------------------------------------------------------------- /components/bluepad32/include/controller/uni_balance_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/controller/uni_balance_board.h -------------------------------------------------------------------------------- /components/bluepad32/include/controller/uni_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/controller/uni_controller.h -------------------------------------------------------------------------------- /components/bluepad32/include/controller/uni_controller_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/controller/uni_controller_list.h -------------------------------------------------------------------------------- /components/bluepad32/include/controller/uni_controller_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/controller/uni_controller_type.h -------------------------------------------------------------------------------- /components/bluepad32/include/controller/uni_gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/controller/uni_gamepad.h -------------------------------------------------------------------------------- /components/bluepad32/include/controller/uni_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/controller/uni_keyboard.h -------------------------------------------------------------------------------- /components/bluepad32/include/controller/uni_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/controller/uni_mouse.h -------------------------------------------------------------------------------- /components/bluepad32/include/hid_usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/hid_usage.h -------------------------------------------------------------------------------- /components/bluepad32/include/parser/uni_hid_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/parser/uni_hid_parser.h -------------------------------------------------------------------------------- /components/bluepad32/include/parser/uni_hid_parser_8bitdo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/parser/uni_hid_parser_8bitdo.h -------------------------------------------------------------------------------- /components/bluepad32/include/parser/uni_hid_parser_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/parser/uni_hid_parser_android.h -------------------------------------------------------------------------------- /components/bluepad32/include/parser/uni_hid_parser_atari.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/parser/uni_hid_parser_atari.h -------------------------------------------------------------------------------- /components/bluepad32/include/parser/uni_hid_parser_ds3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/parser/uni_hid_parser_ds3.h -------------------------------------------------------------------------------- /components/bluepad32/include/parser/uni_hid_parser_ds4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/parser/uni_hid_parser_ds4.h -------------------------------------------------------------------------------- /components/bluepad32/include/parser/uni_hid_parser_ds5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/parser/uni_hid_parser_ds5.h -------------------------------------------------------------------------------- /components/bluepad32/include/parser/uni_hid_parser_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/parser/uni_hid_parser_generic.h -------------------------------------------------------------------------------- /components/bluepad32/include/parser/uni_hid_parser_icade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/parser/uni_hid_parser_icade.h -------------------------------------------------------------------------------- /components/bluepad32/include/parser/uni_hid_parser_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/parser/uni_hid_parser_keyboard.h -------------------------------------------------------------------------------- /components/bluepad32/include/parser/uni_hid_parser_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/parser/uni_hid_parser_mouse.h -------------------------------------------------------------------------------- /components/bluepad32/include/parser/uni_hid_parser_nimbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/parser/uni_hid_parser_nimbus.h -------------------------------------------------------------------------------- /components/bluepad32/include/parser/uni_hid_parser_ouya.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/parser/uni_hid_parser_ouya.h -------------------------------------------------------------------------------- /components/bluepad32/include/parser/uni_hid_parser_psmove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/parser/uni_hid_parser_psmove.h -------------------------------------------------------------------------------- /components/bluepad32/include/parser/uni_hid_parser_stadia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/parser/uni_hid_parser_stadia.h -------------------------------------------------------------------------------- /components/bluepad32/include/parser/uni_hid_parser_steam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/parser/uni_hid_parser_steam.h -------------------------------------------------------------------------------- /components/bluepad32/include/parser/uni_hid_parser_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/parser/uni_hid_parser_switch.h -------------------------------------------------------------------------------- /components/bluepad32/include/parser/uni_hid_parser_wii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/parser/uni_hid_parser_wii.h -------------------------------------------------------------------------------- /components/bluepad32/include/parser/uni_hid_parser_xboxone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/parser/uni_hid_parser_xboxone.h -------------------------------------------------------------------------------- /components/bluepad32/include/platform/uni_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/platform/uni_platform.h -------------------------------------------------------------------------------- /components/bluepad32/include/platform/uni_platform_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/platform/uni_platform_custom.h -------------------------------------------------------------------------------- /components/bluepad32/include/platform/uni_platform_mightymiggy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/platform/uni_platform_mightymiggy.h -------------------------------------------------------------------------------- /components/bluepad32/include/platform/uni_platform_nina.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/platform/uni_platform_nina.h -------------------------------------------------------------------------------- /components/bluepad32/include/uni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/uni.h -------------------------------------------------------------------------------- /components/bluepad32/include/uni_btstack_version_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/uni_btstack_version_compat.h -------------------------------------------------------------------------------- /components/bluepad32/include/uni_circular_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/uni_circular_buffer.h -------------------------------------------------------------------------------- /components/bluepad32/include/uni_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/uni_common.h -------------------------------------------------------------------------------- /components/bluepad32/include/uni_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/uni_config.h -------------------------------------------------------------------------------- /components/bluepad32/include/uni_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/uni_console.h -------------------------------------------------------------------------------- /components/bluepad32/include/uni_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/uni_error.h -------------------------------------------------------------------------------- /components/bluepad32/include/uni_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/uni_gpio.h -------------------------------------------------------------------------------- /components/bluepad32/include/uni_hid_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/uni_hid_device.h -------------------------------------------------------------------------------- /components/bluepad32/include/uni_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/uni_init.h -------------------------------------------------------------------------------- /components/bluepad32/include/uni_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/uni_joystick.h -------------------------------------------------------------------------------- /components/bluepad32/include/uni_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/uni_log.h -------------------------------------------------------------------------------- /components/bluepad32/include/uni_mouse_quadrature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/uni_mouse_quadrature.h -------------------------------------------------------------------------------- /components/bluepad32/include/uni_property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/uni_property.h -------------------------------------------------------------------------------- /components/bluepad32/include/uni_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/uni_system.h -------------------------------------------------------------------------------- /components/bluepad32/include/uni_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/uni_utils.h -------------------------------------------------------------------------------- /components/bluepad32/include/uni_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/uni_version.h -------------------------------------------------------------------------------- /components/bluepad32/include/uni_virtual_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/include/uni_virtual_device.h -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser.c -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser_8bitdo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser_8bitdo.c -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser_android.c -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser_atari.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser_atari.c -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser_ds3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser_ds3.c -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser_ds4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser_ds4.c -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser_ds5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser_ds5.c -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser_generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser_generic.c -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser_icade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser_icade.c -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser_keyboard.c -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser_mouse.c -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser_nimbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser_nimbus.c -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser_ouya.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser_ouya.c -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser_psmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser_psmove.c -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser_smarttvremote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser_smarttvremote.c -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser_stadia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser_stadia.c -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser_steam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser_steam.c -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser_switch.c -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser_wii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser_wii.c -------------------------------------------------------------------------------- /components/bluepad32/parser/uni_hid_parser_xboxone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/parser/uni_hid_parser_xboxone.c -------------------------------------------------------------------------------- /components/bluepad32/platform/uni_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/platform/uni_platform.c -------------------------------------------------------------------------------- /components/bluepad32/platform/uni_platform_mightymiggy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/platform/uni_platform_mightymiggy.c -------------------------------------------------------------------------------- /components/bluepad32/platform/uni_platform_nina.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/platform/uni_platform_nina.c -------------------------------------------------------------------------------- /components/bluepad32/platform/uni_platform_unijoysticle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/platform/uni_platform_unijoysticle.c -------------------------------------------------------------------------------- /components/bluepad32/platform/uni_platform_unijoysticle_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/platform/uni_platform_unijoysticle_2.c -------------------------------------------------------------------------------- /components/bluepad32/platform/uni_platform_unijoysticle_2plus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/platform/uni_platform_unijoysticle_2plus.c -------------------------------------------------------------------------------- /components/bluepad32/platform/uni_platform_unijoysticle_800xl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/platform/uni_platform_unijoysticle_800xl.c -------------------------------------------------------------------------------- /components/bluepad32/platform/uni_platform_unijoysticle_a500.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/platform/uni_platform_unijoysticle_a500.c -------------------------------------------------------------------------------- /components/bluepad32/platform/uni_platform_unijoysticle_c64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/platform/uni_platform_unijoysticle_c64.c -------------------------------------------------------------------------------- /components/bluepad32/platform/uni_platform_unijoysticle_msx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/platform/uni_platform_unijoysticle_msx.c -------------------------------------------------------------------------------- /components/bluepad32/uni_circular_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/uni_circular_buffer.c -------------------------------------------------------------------------------- /components/bluepad32/uni_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/uni_gpio.c -------------------------------------------------------------------------------- /components/bluepad32/uni_hid_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/uni_hid_device.c -------------------------------------------------------------------------------- /components/bluepad32/uni_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/uni_init.c -------------------------------------------------------------------------------- /components/bluepad32/uni_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/uni_joystick.c -------------------------------------------------------------------------------- /components/bluepad32/uni_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/uni_log.c -------------------------------------------------------------------------------- /components/bluepad32/uni_mouse_quadrature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/uni_mouse_quadrature.c -------------------------------------------------------------------------------- /components/bluepad32/uni_property.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/uni_property.c -------------------------------------------------------------------------------- /components/bluepad32/uni_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/uni_utils.c -------------------------------------------------------------------------------- /components/bluepad32/uni_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/uni_version.c -------------------------------------------------------------------------------- /components/bluepad32/uni_virtual_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32/uni_virtual_device.c -------------------------------------------------------------------------------- /components/bluepad32_arduino/ArduinoBluepad32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32_arduino/ArduinoBluepad32.cpp -------------------------------------------------------------------------------- /components/bluepad32_arduino/ArduinoConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32_arduino/ArduinoConsole.cpp -------------------------------------------------------------------------------- /components/bluepad32_arduino/ArduinoController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32_arduino/ArduinoController.cpp -------------------------------------------------------------------------------- /components/bluepad32_arduino/ArduinoGamepad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32_arduino/ArduinoGamepad.cpp -------------------------------------------------------------------------------- /components/bluepad32_arduino/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32_arduino/CMakeLists.txt -------------------------------------------------------------------------------- /components/bluepad32_arduino/arduino_bootstrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32_arduino/arduino_bootstrap.cpp -------------------------------------------------------------------------------- /components/bluepad32_arduino/arduino_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32_arduino/arduino_platform.c -------------------------------------------------------------------------------- /components/bluepad32_arduino/include/ArduinoBluepad32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32_arduino/include/ArduinoBluepad32.h -------------------------------------------------------------------------------- /components/bluepad32_arduino/include/ArduinoConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32_arduino/include/ArduinoConsole.h -------------------------------------------------------------------------------- /components/bluepad32_arduino/include/ArduinoController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32_arduino/include/ArduinoController.h -------------------------------------------------------------------------------- /components/bluepad32_arduino/include/ArduinoControllerData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32_arduino/include/ArduinoControllerData.h -------------------------------------------------------------------------------- /components/bluepad32_arduino/include/ArduinoGamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32_arduino/include/ArduinoGamepad.h -------------------------------------------------------------------------------- /components/bluepad32_arduino/include/ArduinoGamepadProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32_arduino/include/ArduinoGamepadProperties.h -------------------------------------------------------------------------------- /components/bluepad32_arduino/include/ArduinoKeyboardConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32_arduino/include/ArduinoKeyboardConstants.h -------------------------------------------------------------------------------- /components/bluepad32_arduino/include/Bluepad32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32_arduino/include/Bluepad32.h -------------------------------------------------------------------------------- /components/bluepad32_arduino/include/arduino_bootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32_arduino/include/arduino_bootstrap.h -------------------------------------------------------------------------------- /components/bluepad32_arduino/include/arduino_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/bluepad32_arduino/include/arduino_platform.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/bluedroid/decoder/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/bluedroid/decoder/Makefile.inc -------------------------------------------------------------------------------- /components/btstack/3rd-party/bluedroid/decoder/include/oi_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/bluedroid/decoder/include/oi_time.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/bluedroid/decoder/srce/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/bluedroid/decoder/srce/alloc.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/bluedroid/decoder/srce/bitalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/bluedroid/decoder/srce/bitalloc.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/bluedroid/decoder/srce/dequant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/bluedroid/decoder/srce/dequant.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/bluedroid/decoder/srce/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/bluedroid/decoder/srce/framing.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/bluedroid/encoder/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/bluedroid/encoder/Makefile.inc -------------------------------------------------------------------------------- /components/btstack/3rd-party/bluedroid/encoder/srce/sbc_dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/bluedroid/encoder/srce/sbc_dct.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/hxcmod-player/hxcmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/hxcmod-player/hxcmod.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/hxcmod-player/hxcmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/hxcmod-player/hxcmod.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/hxcmod-player/mods/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/hxcmod-player/mods/mod.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/hxcmod-player/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/hxcmod-player/readme.txt -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/CONTRIBUTING.md -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/LICENSE -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/Makefile -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/README.md -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/conformance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/conformance/README.md -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/fuzz/dfuzz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/fuzz/dfuzz.cc -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/fuzz/efuzz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/fuzz/efuzz.cc -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/fuzz/makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/fuzz/makefile.mk -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/include/lc3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/include/lc3.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/include/lc3_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/include/lc3_cpp.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/include/lc3_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/include/lc3_private.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/meson.build -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/meson_options.txt -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/pyproject.toml -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/python/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/python/LICENSE -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/python/lc3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/python/lc3.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/python/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/python/meson.build -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/attdet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/attdet.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/attdet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/attdet.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/bits.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/bits.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/bwdet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/bwdet.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/bwdet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/bwdet.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/common.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/energy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/energy.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/energy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/energy.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/fastmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/fastmath.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/lc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/lc3.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/ltpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/ltpf.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/ltpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/ltpf.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/ltpf_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/ltpf_arm.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/ltpf_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/ltpf_neon.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/makefile.mk -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/mdct.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/mdct.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/mdct_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/mdct_neon.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/meson.build -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/plc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/plc.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/plc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/plc.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/sns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/sns.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/sns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/sns.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/spec.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/spec.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/tables.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/tables.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/tns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/tns.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/src/tns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/src/tns.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/tables/fastmath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/tables/fastmath.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/tables/mktables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/tables/mktables.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/appendix_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/appendix_c.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/arm/ltpf_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/arm/ltpf_arm.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/arm/makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/arm/makefile.mk -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/arm/simd32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/arm/simd32.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/arm/test_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/arm/test_arm.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/attdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/attdet.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/attdet_py.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/attdet_py.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/bitstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/bitstream.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/bwdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/bwdet.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/bwdet_py.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/bwdet_py.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/ctypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/ctypes.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/decoder.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/encoder.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/energy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/energy.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/energy_py.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/energy_py.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/lc3_py.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/lc3_py.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/ltpf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/ltpf.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/ltpf_py.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/ltpf_py.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/makefile.mk -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/mdct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/mdct.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/mdct_py.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/mdct_py.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/module_py.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/module_py.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/neon/ltpf_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/neon/ltpf_neon.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/neon/makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/neon/makefile.mk -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/neon/mdct_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/neon/mdct_neon.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/neon/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/neon/neon.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/neon/test_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/neon/test_neon.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/run.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/setup.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/sns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/sns.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/sns_py.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/sns_py.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/spec.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/spec_py.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/spec_py.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/tables.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/tns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/tns.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/test/tns_py.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/test/tns_py.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/tools/dlc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/tools/dlc3.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/tools/elc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/tools/elc3.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/tools/lc3bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/tools/lc3bin.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/tools/lc3bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/tools/lc3bin.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/tools/makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/tools/makefile.mk -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/tools/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/tools/meson.build -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/tools/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/tools/wave.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/tools/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/tools/wave.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/wasm/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/wasm/math.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/wasm/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/wasm/string.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/lc3-google/zephyr/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lc3-google/zephyr/module.yml -------------------------------------------------------------------------------- /components/btstack/3rd-party/lwip/dhcp-server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lwip/dhcp-server/LICENSE -------------------------------------------------------------------------------- /components/btstack/3rd-party/lwip/dhcp-server/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lwip/dhcp-server/README -------------------------------------------------------------------------------- /components/btstack/3rd-party/lwip/dhcp-server/dhserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lwip/dhcp-server/dhserver.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/lwip/dhcp-server/dhserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/lwip/dhcp-server/dhserver.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/md5/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/md5/md5.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/md5/md5.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/micro-ecc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/micro-ecc/.gitignore -------------------------------------------------------------------------------- /components/btstack/3rd-party/micro-ecc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/micro-ecc/LICENSE.txt -------------------------------------------------------------------------------- /components/btstack/3rd-party/micro-ecc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/micro-ecc/README.md -------------------------------------------------------------------------------- /components/btstack/3rd-party/micro-ecc/asm_arm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/micro-ecc/asm_arm.inc -------------------------------------------------------------------------------- /components/btstack/3rd-party/micro-ecc/asm_avr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/micro-ecc/asm_avr.inc -------------------------------------------------------------------------------- /components/btstack/3rd-party/micro-ecc/btstack_config_uECC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/micro-ecc/btstack_config_uECC.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/micro-ecc/emk_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/micro-ecc/emk_project.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/micro-ecc/emk_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/micro-ecc/emk_rules.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/micro-ecc/scripts/mult_arm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/micro-ecc/scripts/mult_arm.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/micro-ecc/scripts/mult_avr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/micro-ecc/scripts/mult_avr.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/micro-ecc/scripts/square_arm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/micro-ecc/scripts/square_arm.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/micro-ecc/scripts/square_avr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/micro-ecc/scripts/square_avr.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/micro-ecc/test/emk_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/micro-ecc/test/emk_rules.py -------------------------------------------------------------------------------- /components/btstack/3rd-party/micro-ecc/test/test_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/micro-ecc/test/test_compress.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/micro-ecc/test/test_compute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/micro-ecc/test/test_compute.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/micro-ecc/test/test_ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/micro-ecc/test/test_ecdh.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/micro-ecc/test/test_ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/micro-ecc/test/test_ecdsa.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/micro-ecc/uECC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/micro-ecc/uECC.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/micro-ecc/uECC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/micro-ecc/uECC.h -------------------------------------------------------------------------------- /components/btstack/3rd-party/yxml/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/yxml/COPYING -------------------------------------------------------------------------------- /components/btstack/3rd-party/yxml/yxml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/yxml/yxml.c -------------------------------------------------------------------------------- /components/btstack/3rd-party/yxml/yxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/3rd-party/yxml/yxml.h -------------------------------------------------------------------------------- /components/btstack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/CMakeLists.txt -------------------------------------------------------------------------------- /components/btstack/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/Kconfig -------------------------------------------------------------------------------- /components/btstack/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/Kconfig.projbuild -------------------------------------------------------------------------------- /components/btstack/btstack_audio_esp32_v4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/btstack_audio_esp32_v4.c -------------------------------------------------------------------------------- /components/btstack/btstack_audio_esp32_v5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/btstack_audio_esp32_v5.c -------------------------------------------------------------------------------- /components/btstack/btstack_port_esp32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/btstack_port_esp32.c -------------------------------------------------------------------------------- /components/btstack/btstack_stdio_esp32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/btstack_stdio_esp32.c -------------------------------------------------------------------------------- /components/btstack/btstack_tlv_esp32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/btstack_tlv_esp32.c -------------------------------------------------------------------------------- /components/btstack/es8388.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/es8388.c -------------------------------------------------------------------------------- /components/btstack/es8388.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/es8388.h -------------------------------------------------------------------------------- /components/btstack/include/btstack_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/include/btstack_config.h -------------------------------------------------------------------------------- /components/btstack/include/btstack_port_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/include/btstack_port_esp32.h -------------------------------------------------------------------------------- /components/btstack/include/btstack_stdio_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/include/btstack_stdio_esp32.h -------------------------------------------------------------------------------- /components/btstack/include/btstack_tlv_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/include/btstack_tlv_esp32.h -------------------------------------------------------------------------------- /components/btstack/platform/embedded/hal_time_ms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/platform/embedded/hal_time_ms.h -------------------------------------------------------------------------------- /components/btstack/platform/embedded/hal_uart_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/platform/embedded/hal_uart_dma.h -------------------------------------------------------------------------------- /components/btstack/platform/lwip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/platform/lwip/README.md -------------------------------------------------------------------------------- /components/btstack/platform/lwip/bnep_lwip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/platform/lwip/bnep_lwip.c -------------------------------------------------------------------------------- /components/btstack/platform/lwip/bnep_lwip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/platform/lwip/bnep_lwip.h -------------------------------------------------------------------------------- /components/btstack/platform/lwip/port/arch/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/platform/lwip/port/arch/cc.h -------------------------------------------------------------------------------- /components/btstack/platform/lwip/port/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/platform/lwip/port/lwipopts.h -------------------------------------------------------------------------------- /components/btstack/platform/lwip/port/sys_arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/platform/lwip/port/sys_arch.c -------------------------------------------------------------------------------- /components/btstack/src/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/Makefile.inc -------------------------------------------------------------------------------- /components/btstack/src/ad_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ad_parser.c -------------------------------------------------------------------------------- /components/btstack/src/ad_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ad_parser.h -------------------------------------------------------------------------------- /components/btstack/src/ble/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/Makefile.inc -------------------------------------------------------------------------------- /components/btstack/src/ble/att_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/att_db.c -------------------------------------------------------------------------------- /components/btstack/src/ble/att_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/att_db.h -------------------------------------------------------------------------------- /components/btstack/src/ble/att_db_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/att_db_util.c -------------------------------------------------------------------------------- /components/btstack/src/ble/att_db_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/att_db_util.h -------------------------------------------------------------------------------- /components/btstack/src/ble/att_dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/att_dispatch.c -------------------------------------------------------------------------------- /components/btstack/src/ble/att_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/att_dispatch.h -------------------------------------------------------------------------------- /components/btstack/src/ble/att_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/att_server.c -------------------------------------------------------------------------------- /components/btstack/src/ble/att_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/att_server.h -------------------------------------------------------------------------------- /components/btstack/src/ble/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/core.h -------------------------------------------------------------------------------- /components/btstack/src/ble/gatt-service/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/gatt-service/Makefile.inc -------------------------------------------------------------------------------- /components/btstack/src/ble/gatt-service/ancs_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/gatt-service/ancs_client.c -------------------------------------------------------------------------------- /components/btstack/src/ble/gatt-service/ancs_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/gatt-service/ancs_client.h -------------------------------------------------------------------------------- /components/btstack/src/ble/gatt-service/battery_service.gatt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/gatt-service/battery_service.gatt -------------------------------------------------------------------------------- /components/btstack/src/ble/gatt-service/gatt_service.gatt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/gatt-service/gatt_service.gatt -------------------------------------------------------------------------------- /components/btstack/src/ble/gatt-service/hids.gatt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/gatt-service/hids.gatt -------------------------------------------------------------------------------- /components/btstack/src/ble/gatt-service/hids_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/gatt-service/hids_client.c -------------------------------------------------------------------------------- /components/btstack/src/ble/gatt-service/hids_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/gatt-service/hids_client.h -------------------------------------------------------------------------------- /components/btstack/src/ble/gatt-service/hids_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/gatt-service/hids_device.c -------------------------------------------------------------------------------- /components/btstack/src/ble/gatt-service/hids_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/gatt-service/hids_device.h -------------------------------------------------------------------------------- /components/btstack/src/ble/gatt-service/tx_power_service.gatt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/gatt-service/tx_power_service.gatt -------------------------------------------------------------------------------- /components/btstack/src/ble/gatt_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/gatt_client.c -------------------------------------------------------------------------------- /components/btstack/src/ble/gatt_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/gatt_client.h -------------------------------------------------------------------------------- /components/btstack/src/ble/gatt_service_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/gatt_service_client.c -------------------------------------------------------------------------------- /components/btstack/src/ble/gatt_service_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/gatt_service_client.h -------------------------------------------------------------------------------- /components/btstack/src/ble/le_device_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/le_device_db.h -------------------------------------------------------------------------------- /components/btstack/src/ble/le_device_db_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/le_device_db_memory.c -------------------------------------------------------------------------------- /components/btstack/src/ble/le_device_db_tlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/le_device_db_tlv.c -------------------------------------------------------------------------------- /components/btstack/src/ble/le_device_db_tlv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/le_device_db_tlv.h -------------------------------------------------------------------------------- /components/btstack/src/ble/sm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/sm.c -------------------------------------------------------------------------------- /components/btstack/src/ble/sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/ble/sm.h -------------------------------------------------------------------------------- /components/btstack/src/bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/bluetooth.h -------------------------------------------------------------------------------- /components/btstack/src/bluetooth_company_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/bluetooth_company_id.h -------------------------------------------------------------------------------- /components/btstack/src/bluetooth_data_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/bluetooth_data_types.h -------------------------------------------------------------------------------- /components/btstack/src/bluetooth_gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/bluetooth_gatt.h -------------------------------------------------------------------------------- /components/btstack/src/bluetooth_psm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/bluetooth_psm.h -------------------------------------------------------------------------------- /components/btstack/src/bluetooth_sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/bluetooth_sdp.h -------------------------------------------------------------------------------- /components/btstack/src/btstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_audio.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_audio.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_base64_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_base64_decoder.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_base64_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_base64_decoder.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_bool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_bool.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_chipset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_chipset.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_control.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_crypto.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_crypto.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_debug.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_defines.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_em9304_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_em9304_spi.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_event.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_fsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_fsm.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_fsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_fsm.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_hid.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_hid.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_hid_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_hid_parser.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_hid_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_hid_parser.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_hsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_hsm.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_hsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_hsm.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_lc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_lc3.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_lc3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_lc3.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_lc3_google.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_lc3_google.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_lc3_google.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_lc3_google.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_lc3plus_fraunhofer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_lc3plus_fraunhofer.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_lc3plus_fraunhofer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_lc3plus_fraunhofer.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_linked_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_linked_list.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_linked_list.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_linked_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_linked_queue.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_linked_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_linked_queue.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_ltv_builder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_ltv_builder.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_ltv_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_ltv_builder.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_memory.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_memory.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_memory_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_memory_pool.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_memory_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_memory_pool.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_network.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_resample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_resample.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_resample.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_ring_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_ring_buffer.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_ring_buffer.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_run_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_run_loop.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_run_loop.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_run_loop_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_run_loop_base.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_run_loop_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_run_loop_base.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_sample_rate_compensation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_sample_rate_compensation.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_sample_rate_compensation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_sample_rate_compensation.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_sco_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_sco_transport.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_slip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_slip.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_slip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_slip.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_stdin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_stdin.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_tlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_tlv.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_tlv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_tlv.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_tlv_builder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_tlv_builder.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_tlv_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_tlv_builder.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_tlv_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_tlv_none.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_tlv_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_tlv_none.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_uart.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_uart_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_uart_block.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_uart_slip_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_uart_slip_wrapper.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_uart_slip_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_uart_slip_wrapper.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_util.c -------------------------------------------------------------------------------- /components/btstack/src/btstack_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_util.h -------------------------------------------------------------------------------- /components/btstack/src/btstack_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/btstack_version.h -------------------------------------------------------------------------------- /components/btstack/src/classic/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/Makefile.inc -------------------------------------------------------------------------------- /components/btstack/src/classic/a2dp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/a2dp.c -------------------------------------------------------------------------------- /components/btstack/src/classic/a2dp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/a2dp.h -------------------------------------------------------------------------------- /components/btstack/src/classic/a2dp_sink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/a2dp_sink.c -------------------------------------------------------------------------------- /components/btstack/src/classic/a2dp_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/a2dp_sink.h -------------------------------------------------------------------------------- /components/btstack/src/classic/a2dp_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/a2dp_source.c -------------------------------------------------------------------------------- /components/btstack/src/classic/a2dp_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/a2dp_source.h -------------------------------------------------------------------------------- /components/btstack/src/classic/avdtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avdtp.c -------------------------------------------------------------------------------- /components/btstack/src/classic/avdtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avdtp.h -------------------------------------------------------------------------------- /components/btstack/src/classic/avdtp_acceptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avdtp_acceptor.c -------------------------------------------------------------------------------- /components/btstack/src/classic/avdtp_acceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avdtp_acceptor.h -------------------------------------------------------------------------------- /components/btstack/src/classic/avdtp_initiator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avdtp_initiator.c -------------------------------------------------------------------------------- /components/btstack/src/classic/avdtp_initiator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avdtp_initiator.h -------------------------------------------------------------------------------- /components/btstack/src/classic/avdtp_sink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avdtp_sink.c -------------------------------------------------------------------------------- /components/btstack/src/classic/avdtp_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avdtp_sink.h -------------------------------------------------------------------------------- /components/btstack/src/classic/avdtp_source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avdtp_source.c -------------------------------------------------------------------------------- /components/btstack/src/classic/avdtp_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avdtp_source.h -------------------------------------------------------------------------------- /components/btstack/src/classic/avdtp_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avdtp_util.c -------------------------------------------------------------------------------- /components/btstack/src/classic/avdtp_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avdtp_util.h -------------------------------------------------------------------------------- /components/btstack/src/classic/avrcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avrcp.c -------------------------------------------------------------------------------- /components/btstack/src/classic/avrcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avrcp.h -------------------------------------------------------------------------------- /components/btstack/src/classic/avrcp_browsing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avrcp_browsing.c -------------------------------------------------------------------------------- /components/btstack/src/classic/avrcp_browsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avrcp_browsing.h -------------------------------------------------------------------------------- /components/btstack/src/classic/avrcp_browsing_controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avrcp_browsing_controller.c -------------------------------------------------------------------------------- /components/btstack/src/classic/avrcp_browsing_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avrcp_browsing_controller.h -------------------------------------------------------------------------------- /components/btstack/src/classic/avrcp_browsing_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avrcp_browsing_target.c -------------------------------------------------------------------------------- /components/btstack/src/classic/avrcp_browsing_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avrcp_browsing_target.h -------------------------------------------------------------------------------- /components/btstack/src/classic/avrcp_controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avrcp_controller.c -------------------------------------------------------------------------------- /components/btstack/src/classic/avrcp_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avrcp_controller.h -------------------------------------------------------------------------------- /components/btstack/src/classic/avrcp_cover_art_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avrcp_cover_art_client.c -------------------------------------------------------------------------------- /components/btstack/src/classic/avrcp_cover_art_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avrcp_cover_art_client.h -------------------------------------------------------------------------------- /components/btstack/src/classic/avrcp_media_item_iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avrcp_media_item_iterator.c -------------------------------------------------------------------------------- /components/btstack/src/classic/avrcp_media_item_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avrcp_media_item_iterator.h -------------------------------------------------------------------------------- /components/btstack/src/classic/avrcp_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avrcp_target.c -------------------------------------------------------------------------------- /components/btstack/src/classic/avrcp_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/avrcp_target.h -------------------------------------------------------------------------------- /components/btstack/src/classic/bnep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/bnep.c -------------------------------------------------------------------------------- /components/btstack/src/classic/bnep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/bnep.h -------------------------------------------------------------------------------- /components/btstack/src/classic/btstack_cvsd_plc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/btstack_cvsd_plc.c -------------------------------------------------------------------------------- /components/btstack/src/classic/btstack_cvsd_plc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/btstack_cvsd_plc.h -------------------------------------------------------------------------------- /components/btstack/src/classic/btstack_link_key_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/btstack_link_key_db.h -------------------------------------------------------------------------------- /components/btstack/src/classic/btstack_link_key_db_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/btstack_link_key_db_memory.c -------------------------------------------------------------------------------- /components/btstack/src/classic/btstack_link_key_db_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/btstack_link_key_db_memory.h -------------------------------------------------------------------------------- /components/btstack/src/classic/btstack_link_key_db_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/btstack_link_key_db_static.c -------------------------------------------------------------------------------- /components/btstack/src/classic/btstack_link_key_db_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/btstack_link_key_db_static.h -------------------------------------------------------------------------------- /components/btstack/src/classic/btstack_link_key_db_tlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/btstack_link_key_db_tlv.c -------------------------------------------------------------------------------- /components/btstack/src/classic/btstack_link_key_db_tlv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/btstack_link_key_db_tlv.h -------------------------------------------------------------------------------- /components/btstack/src/classic/btstack_sbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/btstack_sbc.h -------------------------------------------------------------------------------- /components/btstack/src/classic/btstack_sbc_bluedroid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/btstack_sbc_bluedroid.c -------------------------------------------------------------------------------- /components/btstack/src/classic/btstack_sbc_bluedroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/btstack_sbc_bluedroid.h -------------------------------------------------------------------------------- /components/btstack/src/classic/btstack_sbc_plc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/btstack_sbc_plc.c -------------------------------------------------------------------------------- /components/btstack/src/classic/btstack_sbc_plc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/btstack_sbc_plc.h -------------------------------------------------------------------------------- /components/btstack/src/classic/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/core.h -------------------------------------------------------------------------------- /components/btstack/src/classic/device_id_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/device_id_server.c -------------------------------------------------------------------------------- /components/btstack/src/classic/device_id_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/device_id_server.h -------------------------------------------------------------------------------- /components/btstack/src/classic/gatt_sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/gatt_sdp.c -------------------------------------------------------------------------------- /components/btstack/src/classic/gatt_sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/gatt_sdp.h -------------------------------------------------------------------------------- /components/btstack/src/classic/goep_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/goep_client.c -------------------------------------------------------------------------------- /components/btstack/src/classic/goep_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/goep_client.h -------------------------------------------------------------------------------- /components/btstack/src/classic/goep_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/goep_server.c -------------------------------------------------------------------------------- /components/btstack/src/classic/goep_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/goep_server.h -------------------------------------------------------------------------------- /components/btstack/src/classic/hfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hfp.c -------------------------------------------------------------------------------- /components/btstack/src/classic/hfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hfp.h -------------------------------------------------------------------------------- /components/btstack/src/classic/hfp_ag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hfp_ag.c -------------------------------------------------------------------------------- /components/btstack/src/classic/hfp_ag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hfp_ag.h -------------------------------------------------------------------------------- /components/btstack/src/classic/hfp_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hfp_codec.c -------------------------------------------------------------------------------- /components/btstack/src/classic/hfp_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hfp_codec.h -------------------------------------------------------------------------------- /components/btstack/src/classic/hfp_gsm_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hfp_gsm_model.c -------------------------------------------------------------------------------- /components/btstack/src/classic/hfp_gsm_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hfp_gsm_model.h -------------------------------------------------------------------------------- /components/btstack/src/classic/hfp_hf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hfp_hf.c -------------------------------------------------------------------------------- /components/btstack/src/classic/hfp_hf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hfp_hf.h -------------------------------------------------------------------------------- /components/btstack/src/classic/hfp_msbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hfp_msbc.c -------------------------------------------------------------------------------- /components/btstack/src/classic/hfp_msbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hfp_msbc.h -------------------------------------------------------------------------------- /components/btstack/src/classic/hid_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hid_device.c -------------------------------------------------------------------------------- /components/btstack/src/classic/hid_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hid_device.h -------------------------------------------------------------------------------- /components/btstack/src/classic/hid_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hid_host.c -------------------------------------------------------------------------------- /components/btstack/src/classic/hid_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hid_host.h -------------------------------------------------------------------------------- /components/btstack/src/classic/hsp_ag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hsp_ag.c -------------------------------------------------------------------------------- /components/btstack/src/classic/hsp_ag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hsp_ag.h -------------------------------------------------------------------------------- /components/btstack/src/classic/hsp_hs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hsp_hs.c -------------------------------------------------------------------------------- /components/btstack/src/classic/hsp_hs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/hsp_hs.h -------------------------------------------------------------------------------- /components/btstack/src/classic/obex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/obex.h -------------------------------------------------------------------------------- /components/btstack/src/classic/obex_iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/obex_iterator.c -------------------------------------------------------------------------------- /components/btstack/src/classic/obex_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/obex_iterator.h -------------------------------------------------------------------------------- /components/btstack/src/classic/obex_message_builder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/obex_message_builder.c -------------------------------------------------------------------------------- /components/btstack/src/classic/obex_message_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/obex_message_builder.h -------------------------------------------------------------------------------- /components/btstack/src/classic/obex_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/obex_parser.c -------------------------------------------------------------------------------- /components/btstack/src/classic/obex_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/obex_parser.h -------------------------------------------------------------------------------- /components/btstack/src/classic/obex_srm_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/obex_srm_client.c -------------------------------------------------------------------------------- /components/btstack/src/classic/obex_srm_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/obex_srm_client.h -------------------------------------------------------------------------------- /components/btstack/src/classic/obex_srm_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/obex_srm_server.c -------------------------------------------------------------------------------- /components/btstack/src/classic/obex_srm_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/obex_srm_server.h -------------------------------------------------------------------------------- /components/btstack/src/classic/pan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/pan.c -------------------------------------------------------------------------------- /components/btstack/src/classic/pan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/pan.h -------------------------------------------------------------------------------- /components/btstack/src/classic/pbap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/pbap.h -------------------------------------------------------------------------------- /components/btstack/src/classic/pbap_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/pbap_client.c -------------------------------------------------------------------------------- /components/btstack/src/classic/pbap_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/pbap_client.h -------------------------------------------------------------------------------- /components/btstack/src/classic/rfcomm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/rfcomm.c -------------------------------------------------------------------------------- /components/btstack/src/classic/rfcomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/rfcomm.h -------------------------------------------------------------------------------- /components/btstack/src/classic/sdp_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/sdp_client.c -------------------------------------------------------------------------------- /components/btstack/src/classic/sdp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/sdp_client.h -------------------------------------------------------------------------------- /components/btstack/src/classic/sdp_client_rfcomm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/sdp_client_rfcomm.c -------------------------------------------------------------------------------- /components/btstack/src/classic/sdp_client_rfcomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/sdp_client_rfcomm.h -------------------------------------------------------------------------------- /components/btstack/src/classic/sdp_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/sdp_server.c -------------------------------------------------------------------------------- /components/btstack/src/classic/sdp_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/sdp_server.h -------------------------------------------------------------------------------- /components/btstack/src/classic/sdp_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/sdp_util.c -------------------------------------------------------------------------------- /components/btstack/src/classic/sdp_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/sdp_util.h -------------------------------------------------------------------------------- /components/btstack/src/classic/spp_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/spp_server.c -------------------------------------------------------------------------------- /components/btstack/src/classic/spp_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/classic/spp_server.h -------------------------------------------------------------------------------- /components/btstack/src/gap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/gap.h -------------------------------------------------------------------------------- /components/btstack/src/hci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci.c -------------------------------------------------------------------------------- /components/btstack/src/hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci.h -------------------------------------------------------------------------------- /components/btstack/src/hci_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci_cmd.c -------------------------------------------------------------------------------- /components/btstack/src/hci_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci_cmd.h -------------------------------------------------------------------------------- /components/btstack/src/hci_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci_dump.c -------------------------------------------------------------------------------- /components/btstack/src/hci_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci_dump.h -------------------------------------------------------------------------------- /components/btstack/src/hci_dump_dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci_dump_dispatch.c -------------------------------------------------------------------------------- /components/btstack/src/hci_dump_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci_dump_dispatch.h -------------------------------------------------------------------------------- /components/btstack/src/hci_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci_event.c -------------------------------------------------------------------------------- /components/btstack/src/hci_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci_event.h -------------------------------------------------------------------------------- /components/btstack/src/hci_event_builder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci_event_builder.c -------------------------------------------------------------------------------- /components/btstack/src/hci_event_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci_event_builder.h -------------------------------------------------------------------------------- /components/btstack/src/hci_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci_transport.h -------------------------------------------------------------------------------- /components/btstack/src/hci_transport_em9304_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci_transport_em9304_spi.c -------------------------------------------------------------------------------- /components/btstack/src/hci_transport_em9304_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci_transport_em9304_spi.h -------------------------------------------------------------------------------- /components/btstack/src/hci_transport_h4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci_transport_h4.c -------------------------------------------------------------------------------- /components/btstack/src/hci_transport_h4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci_transport_h4.h -------------------------------------------------------------------------------- /components/btstack/src/hci_transport_h5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci_transport_h5.c -------------------------------------------------------------------------------- /components/btstack/src/hci_transport_h5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci_transport_h5.h -------------------------------------------------------------------------------- /components/btstack/src/hci_transport_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/hci_transport_usb.h -------------------------------------------------------------------------------- /components/btstack/src/l2cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/l2cap.c -------------------------------------------------------------------------------- /components/btstack/src/l2cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/l2cap.h -------------------------------------------------------------------------------- /components/btstack/src/l2cap_signaling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/l2cap_signaling.c -------------------------------------------------------------------------------- /components/btstack/src/l2cap_signaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/l2cap_signaling.h -------------------------------------------------------------------------------- /components/btstack/src/le-audio/broadcast_audio_uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/le-audio/broadcast_audio_uri.h -------------------------------------------------------------------------------- /components/btstack/src/le-audio/broadcast_audio_uri_builder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/le-audio/broadcast_audio_uri_builder.c -------------------------------------------------------------------------------- /components/btstack/src/le-audio/broadcast_audio_uri_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/le-audio/broadcast_audio_uri_builder.h -------------------------------------------------------------------------------- /components/btstack/src/le-audio/gatt-service/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/le-audio/gatt-service/Makefile.inc -------------------------------------------------------------------------------- /components/btstack/src/le-audio/le_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/le-audio/le_audio.h -------------------------------------------------------------------------------- /components/btstack/src/le-audio/le_audio_base_builder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/le-audio/le_audio_base_builder.c -------------------------------------------------------------------------------- /components/btstack/src/le-audio/le_audio_base_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/le-audio/le_audio_base_builder.h -------------------------------------------------------------------------------- /components/btstack/src/le-audio/le_audio_base_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/le-audio/le_audio_base_parser.c -------------------------------------------------------------------------------- /components/btstack/src/le-audio/le_audio_base_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/le-audio/le_audio_base_parser.h -------------------------------------------------------------------------------- /components/btstack/src/le-audio/le_audio_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/le-audio/le_audio_util.c -------------------------------------------------------------------------------- /components/btstack/src/le-audio/le_audio_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/le-audio/le_audio_util.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/adv_bearer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/adv_bearer.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/adv_bearer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/adv_bearer.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/beacon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/beacon.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/beacon.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/gatt_bearer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/gatt_bearer.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/gatt_bearer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/gatt_bearer.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_access.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_access.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_configuration_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_configuration_client.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_configuration_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_configuration_client.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_configuration_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_configuration_server.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_configuration_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_configuration_server.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_crypto.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_crypto.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_foundation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_foundation.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_foundation.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_generic_level_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_generic_level_client.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_generic_level_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_generic_level_client.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_generic_level_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_generic_level_server.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_generic_level_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_generic_level_server.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_generic_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_generic_model.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_generic_on_off_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_generic_on_off_client.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_generic_on_off_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_generic_on_off_client.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_generic_on_off_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_generic_on_off_server.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_generic_on_off_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_generic_on_off_server.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_health_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_health_server.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_health_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_health_server.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_iv_index_seq_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_iv_index_seq_number.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_iv_index_seq_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_iv_index_seq_number.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_keys.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_keys.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_lower_transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_lower_transport.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_lower_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_lower_transport.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_network.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_network.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_node.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_node.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_peer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_peer.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_peer.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_proxy.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_proxy.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_upper_transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_upper_transport.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_upper_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_upper_transport.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_virtual_addresses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_virtual_addresses.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/mesh_virtual_addresses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/mesh_virtual_addresses.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/pb_adv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/pb_adv.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/pb_adv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/pb_adv.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/pb_gatt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/pb_gatt.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/pb_gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/pb_gatt.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/provisioning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/provisioning.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/provisioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/provisioning.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/provisioning_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/provisioning_device.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/provisioning_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/provisioning_device.h -------------------------------------------------------------------------------- /components/btstack/src/mesh/provisioning_provisioner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/provisioning_provisioner.c -------------------------------------------------------------------------------- /components/btstack/src/mesh/provisioning_provisioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/src/mesh/provisioning_provisioner.h -------------------------------------------------------------------------------- /components/btstack/tool/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /components/btstack/tool/bluetooth_company_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/bluetooth_company_id.py -------------------------------------------------------------------------------- /components/btstack/tool/bluetooth_data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/bluetooth_data_types.py -------------------------------------------------------------------------------- /components/btstack/tool/bluetooth_gatt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/bluetooth_gatt.py -------------------------------------------------------------------------------- /components/btstack/tool/bluetooth_gatt_process_uuid_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/bluetooth_gatt_process_uuid_list.py -------------------------------------------------------------------------------- /components/btstack/tool/bluetooth_psm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/bluetooth_psm.py -------------------------------------------------------------------------------- /components/btstack/tool/bluetooth_sdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/bluetooth_sdp.py -------------------------------------------------------------------------------- /components/btstack/tool/btstack_code_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/btstack_code_template.py -------------------------------------------------------------------------------- /components/btstack/tool/btstack_event_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/btstack_event_generator.py -------------------------------------------------------------------------------- /components/btstack/tool/btstack_memory_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/btstack_memory_generator.py -------------------------------------------------------------------------------- /components/btstack/tool/btstack_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/btstack_parser.py -------------------------------------------------------------------------------- /components/btstack/tool/btstack_rtos_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/btstack_rtos_generator.py -------------------------------------------------------------------------------- /components/btstack/tool/clean_tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/clean_tree.sh -------------------------------------------------------------------------------- /components/btstack/tool/compile_gatt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/compile_gatt.py -------------------------------------------------------------------------------- /components/btstack/tool/create_makefile_inc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/create_makefile_inc.py -------------------------------------------------------------------------------- /components/btstack/tool/create_packet_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/create_packet_log.py -------------------------------------------------------------------------------- /components/btstack/tool/dump_gatt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/dump_gatt.py -------------------------------------------------------------------------------- /components/btstack/tool/dump_h4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/dump_h4.py -------------------------------------------------------------------------------- /components/btstack/tool/dump_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/dump_keys.py -------------------------------------------------------------------------------- /components/btstack/tool/dump_pklg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/dump_pklg.py -------------------------------------------------------------------------------- /components/btstack/tool/dump_tlv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/dump_tlv.py -------------------------------------------------------------------------------- /components/btstack/tool/get_git_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/get_git_version.sh -------------------------------------------------------------------------------- /components/btstack/tool/get_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/get_version.sh -------------------------------------------------------------------------------- /components/btstack/tool/java_binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/java_binding.py -------------------------------------------------------------------------------- /components/btstack/tool/metrics/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/metrics/.gitignore -------------------------------------------------------------------------------- /components/btstack/tool/metrics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/metrics/Makefile -------------------------------------------------------------------------------- /components/btstack/tool/metrics/btstack_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/metrics/btstack_config.h -------------------------------------------------------------------------------- /components/btstack/tool/metrics/goto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/metrics/goto.sh -------------------------------------------------------------------------------- /components/btstack/tool/metrics/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/metrics/inttypes.h -------------------------------------------------------------------------------- /components/btstack/tool/metrics/metrics-lizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/metrics/metrics-lizard.py -------------------------------------------------------------------------------- /components/btstack/tool/metrics/metrics_ccsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/metrics/metrics_ccsm.py -------------------------------------------------------------------------------- /components/btstack/tool/migration_to_v1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/migration_to_v1.0/README.md -------------------------------------------------------------------------------- /components/btstack/tool/migration_to_v1.0/migration.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/migration_to_v1.0/migration.cocci -------------------------------------------------------------------------------- /components/btstack/tool/migration_to_v1.0/migration.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/migration_to_v1.0/migration.sed -------------------------------------------------------------------------------- /components/btstack/tool/migration_to_v1.0/migration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/migration_to_v1.0/migration.sh -------------------------------------------------------------------------------- /components/btstack/tool/misc/add_callback_to_ds_process.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/misc/add_callback_to_ds_process.cocci -------------------------------------------------------------------------------- /components/btstack/tool/misc/add_copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/misc/add_copyright.py -------------------------------------------------------------------------------- /components/btstack/tool/misc/append_u_to_constants.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/misc/append_u_to_constants.cocci -------------------------------------------------------------------------------- /components/btstack/tool/misc/drop_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/misc/drop_internal.py -------------------------------------------------------------------------------- /components/btstack/tool/misc/fix-misra-10.4a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/misc/fix-misra-10.4a.py -------------------------------------------------------------------------------- /components/btstack/tool/misc/fix-misra-10.4a.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/misc/fix-misra-10.4a.sh -------------------------------------------------------------------------------- /components/btstack/tool/misc/fix-misra-12.1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/misc/fix-misra-12.1.py -------------------------------------------------------------------------------- /components/btstack/tool/misc/fix_null_pointer_checks.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/misc/fix_null_pointer_checks.cocci -------------------------------------------------------------------------------- /components/btstack/tool/misc/fix_void_declarations.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/misc/fix_void_declarations.cocci -------------------------------------------------------------------------------- /components/btstack/tool/misc/ignore_return_mempcy.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/misc/ignore_return_mempcy.cocci -------------------------------------------------------------------------------- /components/btstack/tool/misc/replace_bzero_with_memset.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/misc/replace_bzero_with_memset.cocci -------------------------------------------------------------------------------- /components/btstack/tool/misc/replace_sprintf.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/misc/replace_sprintf.cocci -------------------------------------------------------------------------------- /components/btstack/tool/misc/update_btstack_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/misc/update_btstack_config.py -------------------------------------------------------------------------------- /components/btstack/tool/misc/update_copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/misc/update_copyright.py -------------------------------------------------------------------------------- /components/btstack/tool/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/package.sh -------------------------------------------------------------------------------- /components/btstack/tool/python_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/python_generator.py -------------------------------------------------------------------------------- /components/btstack/tool/sine_table_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/sine_table_generator.py -------------------------------------------------------------------------------- /components/btstack/tool/sm_random_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/sm_random_check.py -------------------------------------------------------------------------------- /components/btstack/tool/state_enums.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/state_enums.sh -------------------------------------------------------------------------------- /components/btstack/tool/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/template.h -------------------------------------------------------------------------------- /components/btstack/tool/update_filename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/update_filename.py -------------------------------------------------------------------------------- /components/btstack/tool/uuid128_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/btstack/tool/uuid128_formats.py -------------------------------------------------------------------------------- /components/cmd_nvs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/cmd_nvs/CMakeLists.txt -------------------------------------------------------------------------------- /components/cmd_nvs/cmd_nvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/cmd_nvs/cmd_nvs.c -------------------------------------------------------------------------------- /components/cmd_nvs/cmd_nvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/cmd_nvs/cmd_nvs.h -------------------------------------------------------------------------------- /components/cmd_nvs/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/cmd_nvs/component.mk -------------------------------------------------------------------------------- /components/cmd_nvs_4.4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/cmd_nvs_4.4/CMakeLists.txt -------------------------------------------------------------------------------- /components/cmd_nvs_4.4/cmd_nvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/cmd_nvs_4.4/cmd_nvs.c -------------------------------------------------------------------------------- /components/cmd_nvs_4.4/cmd_nvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/cmd_nvs_4.4/cmd_nvs.h -------------------------------------------------------------------------------- /components/cmd_nvs_4.4/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/cmd_nvs_4.4/component.mk -------------------------------------------------------------------------------- /components/cmd_system/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/cmd_system/CMakeLists.txt -------------------------------------------------------------------------------- /components/cmd_system/cmd_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/cmd_system/cmd_system.c -------------------------------------------------------------------------------- /components/cmd_system/cmd_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/cmd_system/cmd_system.h -------------------------------------------------------------------------------- /components/cmd_system/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/cmd_system/component.mk -------------------------------------------------------------------------------- /components/cmd_system_4.4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/cmd_system_4.4/CMakeLists.txt -------------------------------------------------------------------------------- /components/cmd_system_4.4/cmd_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/cmd_system_4.4/cmd_system.c -------------------------------------------------------------------------------- /components/cmd_system_4.4/cmd_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/cmd_system_4.4/cmd_system.h -------------------------------------------------------------------------------- /components/cmd_system_4.4/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/components/cmd_system_4.4/component.mk -------------------------------------------------------------------------------- /examples/ota/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/examples/ota/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ota/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/examples/ota/README.md -------------------------------------------------------------------------------- /examples/ota/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/examples/ota/main/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ota/main/att_delayed_response.gatt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/examples/ota/main/att_delayed_response.gatt -------------------------------------------------------------------------------- /examples/ota/main/att_delayed_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/examples/ota/main/att_delayed_response.h -------------------------------------------------------------------------------- /examples/ota/main/ble_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/examples/ota/main/ble_server.cpp -------------------------------------------------------------------------------- /examples/ota/main/ble_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/examples/ota/main/ble_server.h -------------------------------------------------------------------------------- /examples/ota/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/examples/ota/main/main.c -------------------------------------------------------------------------------- /examples/ota/main/sketch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/examples/ota/main/sketch.cpp -------------------------------------------------------------------------------- /examples/ota/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/examples/ota/sdkconfig.defaults -------------------------------------------------------------------------------- /main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/main/CMakeLists.txt -------------------------------------------------------------------------------- /main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/main/main.c -------------------------------------------------------------------------------- /main/sketch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/main/sketch.cpp -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/platformio.ini -------------------------------------------------------------------------------- /sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/sdkconfig.defaults -------------------------------------------------------------------------------- /sdkconfig.defaults.esp32c6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardoquesada/esp-idf-arduino-bluepad32-template/HEAD/sdkconfig.defaults.esp32c6 --------------------------------------------------------------------------------