esp32: Add KConfig option to disable ROM Console fallback on first boot

This commit is contained in:
Angus Gratton
2017-08-22 14:55:23 +10:00
committed by Angus Gratton
parent 881aa43b69
commit 1e22bcdfde
4 changed files with 43 additions and 4 deletions

View File

@@ -48,6 +48,16 @@ void esp_efuse_burn_new_values(void);
*/
void esp_efuse_reset(void);
/* @brief Disable BASIC ROM Console via efuse
*
* By default, if booting from flash fails the ESP32 will boot a
* BASIC console in ROM.
*
* Call this function (from bootloader or app) to permanently
* disable the console on this chip.
*/
void esp_efuse_disable_basic_rom_console(void);
#ifdef __cplusplus
}
#endif