efuse_hal.h 329 B

123456789101112131415161718192021222324
  1. /*
  2. * SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #pragma once
  7. #include <stdint.h>
  8. #include <stdbool.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /**
  13. * @brief get factory mac address
  14. */
  15. void efuse_hal_get_mac(uint8_t *mac);
  16. #ifdef __cplusplus
  17. }
  18. #endif