2021-11-06 17:21:57 +08:00
|
|
|
/*
|
2022-01-18 10:32:56 +08:00
|
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
2021-11-06 17:21:57 +08:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
#include "sdkconfig.h"
|
|
|
|
|
#include "bootloader_random.h"
|
|
|
|
|
#include "esp_log.h"
|
|
|
|
|
#include "soc/syscon_reg.h"
|
|
|
|
|
#include "soc/rtc_cntl_reg.h"
|
|
|
|
|
#include "soc/apb_saradc_reg.h"
|
|
|
|
|
#include "soc/system_reg.h"
|
2022-01-05 06:08:37 +00:00
|
|
|
#include "esp_private/regi2c_ctrl.h"
|
2021-11-06 17:21:57 +08:00
|
|
|
|
|
|
|
|
void bootloader_random_enable(void)
|
|
|
|
|
{
|
|
|
|
|
// TODO: IDF-4021
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void bootloader_random_disable(void)
|
|
|
|
|
{
|
|
|
|
|
// TODO: IDF-4021
|
|
|
|
|
}
|