This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 43d96a5d9e49d0b225477bfd02aae666348a6edb Author: yinshengkai <[email protected]> AuthorDate: Tue Nov 28 17:02:42 2023 +0800 note: Increase crash dump buffer Signed-off-by: yinshengkai <[email protected]> --- drivers/note/noteram_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/note/noteram_driver.c b/drivers/note/noteram_driver.c index c29447a28a..81b04d07f1 100644 --- a/drivers/note/noteram_driver.c +++ b/drivers/note/noteram_driver.c @@ -1244,7 +1244,7 @@ static void noteram_dump(FAR struct noteram_driver_s *drv) { struct noteram_dump_context_s ctx; struct lib_syslograwstream_s stream; - uint8_t note[64]; + uint8_t note[256]; lib_syslograwstream_open(&stream); lib_sprintf(&stream.common, "# tracer:nop\n#\n");
