Skip to content

Commit

Permalink
build: Add more bindgen-Debug exceptions for nimble 1.8
Browse files Browse the repository at this point in the history
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]: rust-lang/rust-bindgen#2221
[21108]: RIOT-OS/RIOT#21108
  • Loading branch information
chrysn committed Dec 28, 2024
1 parent ce540e2 commit 707fa8a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 707fa8a

Please sign in to comment.