accessing esp efuse mac functions in bootloader
Posted: Fri Mar 18, 2022 2:18 pm
Hello,
i was wondering if it was possible somehow to include the headers or component that allow me to access and read internal mac address of esp32 rev3 ;like :
I am using a the bootloader sub_project that i copied from components folder of IDF to my project's component. but i cant seem to include the functions that allow efuse mac, i tried to add in bootloader sub project Cmake file (esp_hw_support) , but this component does not compile c files when building bootloader ( as i sse in its Cmake file
so i was wondering how to make a workaround for this ?
thank you all.
i was wondering if it was possible somehow to include the headers or component that allow me to access and read internal mac address of esp32 rev3 ;like :
Code: Select all
esp_base_mac_addr_get()
Code: Select all
REQUIRED
) .if(NOT BOOTLOADER_BUILD)
list(APPEND srcs "esp_async_memcpy.c
...
...
etc "
so i was wondering how to make a workaround for this ?
thank you all.