Skip to content

Commit

Permalink
esp32-c6: initial support
Browse files Browse the repository at this point in the history
not quite working yet
  • Loading branch information
ricardoquesada committed Jun 18, 2024
1 parent 2152d0b commit b499f31
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion external/btstack
Submodule btstack updated 39 files
+4 −4 CHANGELOG.md
+34 −34 README.md
+16 −12 example/gatt_battery_query.c
+17 −11 example/gatt_browser.c
+16 −12 example/gatt_device_information_query.c
+14 −10 example/gatt_heart_rate_client.c
+3 −0 example/hid_host_demo.c
+13 −9 example/le_credit_based_flow_control_mode_client.c
+14 −9 example/le_streamer_client.c
+0 −34 example/mesh_node_demo.c
+1 −1 example/sdp_general_query.c
+1 −1 example/spp_streamer_client.c
+87 −29 platform/posix/btstack_audio_portaudio.c
+7 −3 port/esp32/components/btstack/CMakeLists.txt
+3 −1 port/esp32/components/btstack/btstack_audio_esp32_v5.c
+2 −2 src/ble/gatt_client.c
+2 −0 src/ble/sm.c
+4 −0 src/btstack_audio.h
+29 −27 src/btstack_defines.h
+151 −143 src/btstack_event.h
+1 −1 src/classic/hfp.c
+1 −1 src/classic/hid_host.c
+10 −52 src/classic/rfcomm.c
+1 −5 src/classic/rfcomm.h
+73 −47 src/hci.c
+2 −1 src/hci.h
+17 −0 src/l2cap.c
+8 −8 src/le-audio/gatt-service/broadcast_audio_scan_service_client.c
+9 −9 src/le-audio/gatt-service/broadcast_audio_scan_service_client.h
+10 −10 src/le-audio/gatt-service/broadcast_audio_scan_service_server.c
+6 −6 src/le-audio/gatt-service/broadcast_audio_scan_service_server.h
+1 −1 test/fuzz/Dockerfile
+273 −0 test/fuzz/fuzz_l2cap_whitebox.c
+41 −0 test/hfp/hfp_at_parser_test.cpp
+11 −11 test/le_audio/le_audio_broadcast_assistant.c
+15 −15 test/le_audio/le_audio_broadcast_sink.c
+1 −0 tool/btstack_event_generator.py
+8 −6 tool/metrics/Makefile
+27 −9 tool/metrics/metrics_ccsm.py
4 changes: 2 additions & 2 deletions src/components/bluepad32/include/uni_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
// Pico W, original ESP32 and Posix all support both BR/EDR and BLE
#define UNI_ENABLE_BREDR 1
#define UNI_ENABLE_BLE 1
#elif defined(CONFIG_IDF_TARGET_ESP32S3) || defined(CONFIG_IDF_TARGET_ESP32C3)
// ESP32-S3 / C3
#elif defined(CONFIG_IDF_TARGET_ESP32S3) || defined(CONFIG_IDF_TARGET_ESP32C3) || defined(CONFIG_IDF_TARGET_ESP32C6)
// ESP32-S3 / C3 / C6
#define UNI_ENABLE_BLE 1
#else
#error "Unsupported target platform"
Expand Down

0 comments on commit b499f31

Please sign in to comment.