Searched refs:esp_read_mac (Results 1 – 25 of 26) sorted by relevance
12
/hal_espressif-latest/components/esp_hw_support/ |
D | mac_addr.c | 170 return esp_read_mac(mac, ESP_MAC_BASE); in esp_base_mac_addr_get() 323 esp_err_t esp_read_mac(uint8_t *mac, esp_mac_type_t type) in esp_read_mac() function 412 esp_read_mac(&mac[3], ESP_MAC_EFUSE_EXT); in generate_mac()
|
D | Kconfig | 60 …When this configuration is enabled, the user can invoke `esp_read_mac` to obtain the desired type …
|
/hal_espressif-latest/components/esp_hw_support/include/ |
D | esp_mac.h | 140 esp_err_t esp_read_mac(uint8_t *mac, esp_mac_type_t type);
|
/hal_espressif-latest/components/esp_hw_support/port/esp32c6/ |
D | Kconfig.mac | 24 …Note that ESP32-C6 has no integrated Ethernet MAC. Although it's possible to use the esp_read_mac()
|
/hal_espressif-latest/components/esp_hw_support/port/esp32c2/ |
D | Kconfig.mac | 24 …Note that ESP32-C2 has no integrated Ethernet MAC. Although it's possible to use the esp_read_mac()
|
/hal_espressif-latest/components/esp_hw_support/port/esp32c3/ |
D | Kconfig.mac | 24 …Note that ESP32-C3 has no integrated Ethernet MAC. Although it's possible to use the esp_read_mac()
|
/hal_espressif-latest/components/esp_wifi/esp32c6/ |
D | esp_adapter.c | 355 return esp_read_mac(mac, (esp_mac_type_t)type); in esp_read_mac_wrapper()
|
/hal_espressif-latest/components/esp_wifi/esp32s2/ |
D | esp_adapter.c | 661 ._read_mac = esp_read_mac,
|
/hal_espressif-latest/components/esp_wifi/esp32/ |
D | esp_adapter.c | 668 ._read_mac = esp_read_mac,
|
/hal_espressif-latest/components/esp_wifi/esp32c2/ |
D | esp_adapter.c | 349 return esp_read_mac(mac, (esp_mac_type_t)type); in esp_read_mac_wrapper()
|
/hal_espressif-latest/components/esp_wifi/esp32c3/ |
D | esp_adapter.c | 366 return esp_read_mac(mac, (esp_mac_type_t)type); in esp_read_mac_wrapper()
|
/hal_espressif-latest/components/esp_wifi/esp32s3/ |
D | esp_adapter.c | 679 ._read_mac = esp_read_mac,
|
/hal_espressif-latest/zephyr/esp32/src/wifi/ |
D | esp_wifi_adapter.c | 779 ._read_mac = esp_read_mac,
|
/hal_espressif-latest/zephyr/esp32s2/src/wifi/ |
D | esp_wifi_adapter.c | 782 ._read_mac = esp_read_mac,
|
/hal_espressif-latest/zephyr/esp32s3/src/wifi/ |
D | esp_wifi_adapter.c | 796 ._read_mac = esp_read_mac,
|
/hal_espressif-latest/zephyr/esp32c2/src/wifi/ |
D | esp_wifi_adapter.c | 863 ._read_mac = esp_read_mac,
|
/hal_espressif-latest/zephyr/esp32c3/src/wifi/ |
D | esp_wifi_adapter.c | 862 ._read_mac = esp_read_mac,
|
/hal_espressif-latest/zephyr/esp32c6/src/wifi/ |
D | esp_wifi_adapter.c | 878 ._read_mac = esp_read_mac,
|
/hal_espressif-latest/zephyr/esp32/src/bt/ |
D | esp_bt_adapter.c | 690 return esp_read_mac(mac, ESP_MAC_BT); in read_mac_wrapper()
|
/hal_espressif-latest/components/bt/controller/esp32c2/ |
D | bt.c | 856 ESP_ERROR_CHECK(esp_read_mac((uint8_t *)mac, ESP_MAC_BT)); in esp_bt_controller_init()
|
/hal_espressif-latest/zephyr/esp32c3/src/bt/ |
D | esp_bt_adapter.c | 733 return esp_read_mac(mac, ESP_MAC_BT); in read_mac_wrapper()
|
/hal_espressif-latest/zephyr/esp32s3/src/bt/ |
D | esp_bt_adapter.c | 722 return esp_read_mac(mac, ESP_MAC_BT); in read_mac_wrapper()
|
/hal_espressif-latest/components/bt/controller/esp32c6/ |
D | bt.c | 933 ESP_ERROR_CHECK(esp_read_mac((uint8_t *)mac, ESP_MAC_BT)); in esp_bt_controller_init()
|
/hal_espressif-latest/components/bt/controller/esp32h2/ |
D | bt.c | 913 ESP_ERROR_CHECK(esp_read_mac((uint8_t *)mac, ESP_MAC_BT)); in esp_bt_controller_init()
|
/hal_espressif-latest/components/bt/controller/esp32c3/ |
D | bt.c | 718 int ret = esp_read_mac(mac, ESP_MAC_BT); in read_mac_wrapper()
|
12