| 123456789101112131415161718192021222324 |
- /*
- * SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #include "sdkconfig.h"
- #include <sys/param.h>
- #include "soc/soc_caps.h"
- #include "hal/efuse_ll.h"
- #include "hal/assert.h"
- #include "hal/efuse_hal.h"
- void efuse_hal_get_mac(uint8_t *mac)
- {
- *((uint32_t*)&mac[0]) = efuse_ll_get_mac0();
- *((uint16_t*)&mac[4]) = (uint16_t) efuse_ll_get_mac1();
- }
- uint32_t efuse_hal_chip_revision(void)
- {
- return efuse_hal_get_major_chip_version() * 100 + efuse_hal_get_minor_chip_version();
- }
|