Skip to content

Commit

Permalink
BTstack updated to latest develop branch
Browse files Browse the repository at this point in the history
In theory it should fix the C6/H2 issues.
Not tested yet.
  • Loading branch information
ricardoquesada committed Dec 10, 2024
1 parent 7a777cf commit 5db56e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external/btstack
Submodule btstack updated 72 files
+15 −3 CHANGELOG.md
+4 −0 chipset/bcm/btstack_chipset_bcm_download_firmware.c
+1 −1 example/gatt_battery_query.c
+6 −2 port/esp32/components/btstack/Kconfig
+30 −21 port/esp32/components/btstack/btstack_port_esp32.c
+12 −2 port/esp32/components/btstack/btstack_stdio_esp32.c
+6 −0 port/posix-h4-bcm/main.c
+22 −0 src/ble/gatt-service/battery_service_v1.gatt
+989 −0 src/ble/gatt-service/battery_service_v1_server.c
+456 −0 src/ble/gatt-service/battery_service_v1_server.h
+23 −2 src/ble/gatt-service/cycling_speed_and_cadence_service_server.c
+8 −3 src/ble/gatt-service/device_information_service_client.c
+4 −3 src/ble/gatt-service/scan_parameters_service_client.c
+1 −1 src/ble/gatt-service/tx_power_service.gatt
+12 −10 src/ble/gatt_client.c
+8 −0 src/ble/gatt_client.h
+38 −15 src/ble/sm.c
+1 −0 src/bluetooth.h
+1 −0 src/btstack.h
+119 −51 src/btstack_defines.h
+285 −35 src/btstack_event.h
+6 −1 src/btstack_util.c
+1 −1 src/classic/a2dp.c
+74 −66 src/classic/avdtp.c
+15 −0 src/classic/avdtp.h
+2 −4 src/classic/avrcp.c
+150 −24 src/classic/avrcp.h
+7 −7 src/classic/avrcp_browsing_controller.c
+0 −43 src/classic/avrcp_browsing_controller.h
+329 −17 src/classic/avrcp_browsing_target.c
+5 −1 src/classic/avrcp_browsing_target.h
+375 −23 src/classic/avrcp_controller.c
+69 −0 src/classic/avrcp_controller.h
+147 −7 src/classic/avrcp_target.c
+4 −0 src/classic/avrcp_target.h
+19 −24 src/classic/bnep.c
+8 −0 src/classic/bnep.h
+10 −0 src/classic/goep_client.c
+6 −0 src/classic/goep_client.h
+24 −9 src/classic/hfp_ag.c
+4 −0 src/classic/hfp_hf.c
+21 −6 src/classic/obex_srm_client.c
+10 −0 src/classic/obex_srm_client.h
+53 −10 src/classic/pbap_client.c
+9 −0 src/classic/pbap_client.h
+77 −53 src/classic/rfcomm.c
+7 −7 src/classic/sdp_client.c
+39 −7 src/classic/sdp_server.c
+4 −0 src/classic/sdp_server.h
+46 −0 src/classic/sdp_util.c
+2 −1 src/classic/sdp_util.h
+13 −0 src/gap.h
+40 −4 src/hci.c
+14 −1 src/hci.h
+37 −1 src/hci_cmd.c
+6 −0 src/hci_cmd.h
+1 −1 src/hci_dump.c
+38 −36 src/l2cap.c
+4 −1 src/l2cap.h
+72 −0 src/le-audio/broadcast_audio_uri.h
+232 −0 src/le-audio/broadcast_audio_uri_builder.c
+225 −0 src/le-audio/broadcast_audio_uri_builder.h
+42 −0 test/bau/CMakeLists.txt
+45 −0 test/bau/bau_encoder_test.cpp
+2 −3 test/gatt-service-client/battery_service_client_test.cpp
+2 −0 test/hfp/CMakeLists.txt
+7 −0 test/mock/mock_att_server.c
+0 −0 test/pts/sdp.md
+1 −0 test/security_manager_sc/Makefile
+3 −0 test/security_manager_sc/btstack_config.h
+2 −2 tool/dump_pklg.py
+5 −5 tool/state_enums.sh

0 comments on commit 5db56e2

Please sign in to comment.