2021-12-22 09:18:43 -05:00
|
|
|
/*
|
|
|
|
* 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);
|
|
|
|
|
2022-05-25 15:16:15 -04:00
|
|
|
/**
|
|
|
|
* @brief Returns chip version
|
|
|
|
*
|
|
|
|
* @return Chip version in format: Major * 100 + Minor
|
|
|
|
*/
|
|
|
|
uint32_t efuse_hal_chip_revision(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Returns major chip version
|
|
|
|
*/
|
|
|
|
uint32_t efuse_hal_get_major_chip_version(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Returns minor chip version
|
|
|
|
*/
|
|
|
|
uint32_t efuse_hal_get_minor_chip_version(void);
|
|
|
|
|
2021-12-22 09:18:43 -05:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|