| 123456789101112131415161718192021222324 |
- /*
- * SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #pragma once
- #include <stdint.h>
- #include <stdbool.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- /**
- * @brief get factory mac address
- */
- void efuse_hal_get_mac(uint8_t *mac);
- #ifdef __cplusplus
- }
- #endif
|