2021-06-10 07:28:18 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2020-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* 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 01:08:37 -05:00
|
|
|
#include "esp_private/regi2c_ctrl.h"
|
2021-06-10 07:28:18 -04:00
|
|
|
|
2022-10-19 03:57:24 -04:00
|
|
|
// ESP32H4-TODO: IDF-3381
|
2021-06-10 07:28:18 -04:00
|
|
|
void bootloader_random_enable(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void bootloader_random_disable(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|