Final cosmetic changes in flashing code to improve output and variable naming.
This commit is contained in:
parent
e45bb43b84
commit
d8dfcc69a9
1 changed files with 3 additions and 3 deletions
|
|
@ -37,6 +37,6 @@ with ConnectHelper.session_with_chosen_probe() as session:
|
|||
target.reset_and_halt()
|
||||
target.resume()
|
||||
|
||||
mac_converter = MacAddressReader(target)
|
||||
mac_address = mac_converter.get_static_mac_address()
|
||||
print(f'Static manufacturer MAC address: {mac_address}')
|
||||
mac_address_reader = MacAddressReader(target)
|
||||
mac_address = mac_address_reader.get_static_mac_address()
|
||||
print(f'Static manufacturer MAC address (DEVICEADDR): {mac_address}')
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue