i.MX RT1064 Mac Address

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

i.MX RT1064 Mac Address

1,348 Views
dmckeever
Contributor II

Am I correct in assuming that each rt1064 device is shipped with a unique mac address ?

How can I read this mac address?

(I am developing software using lwip.)

Labels (1)
0 Kudos
2 Replies

1,151 Views
MartinHo
Contributor IV

Hi,

Daniel is right, but if You don't have the need for a big MAC address block, the cheaper way is to buy an Serial EEPROM with pre-programmed MAC-Address (see 24AA02E48 or similar).

Martin

0 Kudos

1,151 Views
danielchen
NXP TechSupport
NXP TechSupport

Hi

NXP does not supply MAC addresses for its products. The only way, I see, is to buy them from the IEEE:
 
http://standards.ieee.org/regauth/oui/index.shtml

https://standards.ieee.org/regauth-bin/application?rt=OUI

If you refer to one the lwip examples in the SDK, there is a macro defined the MAC address.

SDK_2.6.1_EVK-MIMXRT1064\boards\evkmimxrt1064\lwip_examples\lwip_ping\freertos

/* MAC address configuration. */
#define configMAC_ADDR                     \
    {                                      \
        0x02, 0x12, 0x13, 0x10, 0x15, 0x11 \
    }

Regards

Daniel