2021-05-10 04:35:07 +02:00
|
|
|
/*
|
|
|
|
|
* SPDX-FileCopyrightText: 2020-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
2020-07-08 10:42:50 +02:00
|
|
|
|
|
|
|
|
#include "soc/rtc.h"
|
|
|
|
|
|
|
|
|
|
#ifdef BOOTLOADER_BUILD
|
|
|
|
|
|
|
|
|
|
int esp_clk_apb_freq(void)
|
|
|
|
|
{
|
|
|
|
|
return rtc_clk_apb_freq_get();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // BOOTLOADER_BUILD
|