kopia lustrzana https://github.com/espressif/esp-idf
26 wiersze
590 B
C
26 wiersze
590 B
C
/*
|
|
* 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"
|
|
#include "esp_attr.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();
|
|
}
|
|
|
|
IRAM_ATTR uint32_t efuse_hal_chip_revision(void)
|
|
{
|
|
return efuse_hal_get_major_chip_version() * 100 + efuse_hal_get_minor_chip_version();
|
|
}
|