forked from espressif/esp-idf
Merge branch 'fix/panic_arch_size' into 'master'
fix(esp_system): fix cache error size message Closes IDF-11769 See merge request espressif/esp-idf!35112
This commit is contained in:
@@ -213,7 +213,7 @@ static inline void print_cache_err_details(const void *f)
|
|||||||
}
|
}
|
||||||
if (err.size) {
|
if (err.size) {
|
||||||
panic_print_str(", error size: 0x");
|
panic_print_str(", error size: 0x");
|
||||||
panic_print_hex(err.vaddr);
|
panic_print_hex(err.size);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Default to cache disabled message if no specific error is found
|
// Default to cache disabled message if no specific error is found
|
||||||
|
Reference in New Issue
Block a user