Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Jan 2, 2025
1 parent fbbf0b6 commit 4ed5c26
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,8 @@ where
#[cfg(esp32c2)]
version_num: unsafe { crate::sys::esp_ble_get_chip_rev_version() },
#[cfg(esp32c6)]
version_num: unsafe { crate::sys::efuse_hal_chip_revision() },
#[allow(clippy::unnecessary_cast)]
version_num: unsafe { crate::sys::efuse_hal_chip_revision() as u8 },
#[cfg(not(esp32c2))]
cpu_freq_mhz: crate::sys::CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ as _,
ignore_wl_for_direct_adv: 0,
Expand Down

0 comments on commit 4ed5c26

Please sign in to comment.