remove unnecessary function in bootloader_support

1. Delete bootloader_clock_get_rated_freq_mhz, esp32s2 do not need it right now
2. Remove bootloader_flash_gpio_config () because it has the same function as bootloader_flash_dummy_config
This commit is contained in:
duyi
2020-01-06 20:08:50 +08:00
committed by morris
parent eaafe7f599
commit 9c5a981ef1
3 changed files with 1 additions and 13 deletions

View File

@@ -16,12 +16,6 @@
#include "bootloader_clock.h"
#include "bootloader_common.h"
int bootloader_clock_get_rated_freq_mhz()
{
/* No known limitation: all chips are 240MHz rated */
return 240;
}
uint8_t bootloader_common_get_chip_revision(void)
{
/* No other revisions for ESP32-S2beta */