mirror of
https://github.com/espressif/esp-idf.git
synced 2026-07-19 09:23:21 +03:00
19 lines
321 B
C
19 lines
321 B
C
/*
|
|
* SPDX-FileCopyrightText: 2026 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#include "sdkconfig.h"
|
|
#include "bootloader_random.h"
|
|
#include "hal/rng_ll.h"
|
|
|
|
void bootloader_random_enable(void)
|
|
{
|
|
rng_ll_enable();
|
|
}
|
|
|
|
void bootloader_random_disable(void)
|
|
{
|
|
rng_ll_disable();
|
|
}
|