9605f3eb1a
Replaced eFuse ROM funcs with hal layer
25 lines
329 B
C
25 lines
329 B
C
/*
|
|
* 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
|