From 707fa8aa2403decbbad64466c5f39b794ab4ae46 Mon Sep 17 00:00:00 2001 From: chrysn Date: Sat, 28 Dec 2024 17:07:17 +0100 Subject: [PATCH] build: Add more bindgen-Debug exceptions for nimble 1.8 These are more instances where [2221] bites, which will be introduced when RIOT updates to Nimble 1.8 (as is being worked on in [21108]) [2221]: https://github.com/rust-lang/rust-bindgen/issues/2221 [21108]: https://github.com/RIOT-OS/RIOT/pull/21108 --- build.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/build.rs b/build.rs index 9550a8e..7c04201 100644 --- a/build.rs +++ b/build.rs @@ -226,7 +226,19 @@ fn main() { .no_debug("ble_hci_ev_command_complete") .no_debug("ble_hci_ev_le_subev_big_complete") .no_debug("ble_hci_ev_le_subev_big_sync_established") + .no_debug("ble_hci_ev_le_subev_create_big_complete") + .no_debug("ble_hci_ev_le_subev_cs_subevent_result") + .no_debug("ble_hci_ev_le_subev_cs_subevent_result_continue") .no_debug("ble_hci_ev_le_subev_periodic_adv_rpt") + .no_debug("ble_hci_iso") + .no_debug("ble_hci_iso_data") + .no_debug("ble_hci_le_big_create_sync_cp") + .no_debug("ble_hci_le_cs_test_cp") + .no_debug("ble_hci_le_set_cig_params_cp") + .no_debug("ble_hci_le_set_cig_params_rp") + .no_debug("ble_hci_le_set_cig_params_test_cp") + .no_debug("ble_hci_le_set_cig_params_test_rp") + .no_debug("ble_hci_le_setup_iso_data_path_cp") .no_debug("ext_adv_report") .derive_default(true) .parse_callbacks(Box::new(bindgen::CargoCallbacks))