Skip to content

Commit

Permalink
Fix usage of Ficr::address
Browse files Browse the repository at this point in the history
This is following a rebase on top of
#2074, which now uses `address()`
rather than `full_address()` for retrieving the device address.
  • Loading branch information
David Ross authored and bradjc committed Dec 9, 2020
1 parent 9e7294c commit 73039ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chips/nrf52/src/ble_radio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@ impl<'a> rubble::RubbleDataDriver<'a> for Radio<'a> {
// accessors of FICR also only use read-only access.
let (raw_address, address_type) = unsafe {
let ficr = &FICR_INSTANCE;
(ficr.full_address(), ficr.address_type())
(ficr.address(), ficr.address_type())
};

rubble::DeviceAddress {
Expand Down

0 comments on commit 73039ac

Please sign in to comment.