Skip to content

Commit

Permalink
Upd read_base_mac_address vns get_mac_address example
Browse files Browse the repository at this point in the history
Signed-off-by: Seb Ospina <[email protected]>
  • Loading branch information
sebosp committed Apr 27, 2024
1 parent df5ff87 commit 2fae482
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion esp-hal/src/soc/esp32/efuse/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
//!
//! ### Read chip's MAC address from the eFuse storage.
//! ```no_run
//! let mac_address = Efuse::get_mac_address();
//! let mac_address = Efuse::read_base_mac_address();
//! writeln!(
//! serial_tx,
//! "MAC: {:#X}:{:#X}:{:#X}:{:#X}:{:#X}:{:#X}",
Expand Down
2 changes: 1 addition & 1 deletion esp-hal/src/soc/esp32c2/efuse/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
//!
//! ### Read chip's MAC address from the eFuse storage.
//! ```no_run
//! let mac_address = Efuse::get_mac_address();
//! let mac_address = Efuse::read_base_mac_address();
//! writeln!(
//! serial_tx,
//! "MAC: {:#X}:{:#X}:{:#X}:{:#X}:{:#X}:{:#X}",
Expand Down
2 changes: 1 addition & 1 deletion esp-hal/src/soc/esp32c3/efuse/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
//!
//! ### Read chip's MAC address from the eFuse storage.
//! ```no_run
//! let mac_address = Efuse::get_mac_address();
//! let mac_address = Efuse::read_base_mac_address();
//! writeln!(
//! serial_tx,
//! "MAC: {:#X}:{:#X}:{:#X}:{:#X}:{:#X}:{:#X}",
Expand Down
2 changes: 1 addition & 1 deletion esp-hal/src/soc/esp32c6/efuse/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
//!
//! ### Read chip's MAC address from the eFuse storage.
//! ```no_run
//! let mac_address = Efuse::get_mac_address();
//! let mac_address = Efuse::read_base_mac_address();
//! writeln!(
//! serial_tx,
//! "MAC: {:#X}:{:#X}:{:#X}:{:#X}:{:#X}:{:#X}",
Expand Down
2 changes: 1 addition & 1 deletion esp-hal/src/soc/esp32h2/efuse/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
//!
//! ### Read chip's MAC address from the eFuse storage.
//! ```no_run
//! let mac_address = Efuse::get_mac_address();
//! let mac_address = Efuse::read_base_mac_address();
//! writeln!(
//! serial_tx,
//! "MAC: {:#X}:{:#X}:{:#X}:{:#X}:{:#X}:{:#X}",
Expand Down
2 changes: 1 addition & 1 deletion esp-hal/src/soc/esp32s2/efuse/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
//!
//! ### Read chip's MAC address from the eFuse storage.
//! ```no_run
//! let mac_address = Efuse::get_mac_address();
//! let mac_address = Efuse::read_base_mac_address();
//! writeln!(
//! serial_tx,
//! "MAC: {:#X}:{:#X}:{:#X}:{:#X}:{:#X}:{:#X}",
Expand Down
2 changes: 1 addition & 1 deletion esp-hal/src/soc/esp32s3/efuse/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
//!
//! ### Read chip's MAC address from the eFuse storage.
//! ```no_run
//! let mac_address = Efuse::get_mac_address();
//! let mac_address = Efuse::read_base_mac_address();
//! writeln!(
//! serial_tx,
//! "MAC: {:#X}:{:#X}:{:#X}:{:#X}:{:#X}:{:#X}",
Expand Down

0 comments on commit 2fae482

Please sign in to comment.