bootloader: dont print assert msg if CONFIG_OPTIMIZATION_ASSERTIONS_SILENT is set

Closes https://github.com/espressif/esp-idf/pull/7518
This commit is contained in:
Marius Vikhammer 2022-09-02 10:29:11 +08:00
parent 4532e6e0b2
commit 587aab3720

View File

@ -12,7 +12,11 @@
void __assert_func(const char *file, int line, const char *func, const char *expr)
{
#if !CONFIG_OPTIMIZATION_ASSERTIONS_SILENT
esp_rom_printf("Assert failed in %s, %s:%d (%s)\r\n", func, file, line, expr);
#endif
while (1) {
}
}