Skip to content

Commit 393e53f

Browse files
Style
1 parent d0413b7 commit 393e53f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

TESTS/configs/greentea_full.json5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// Allow lots of reboots so that we don't get in a situation where the MCU refuses to boot
1010
// after crashing and being reflashed (since some MCUs/flash tools don't reset the
1111
// crash data RAM)
12-
"platform.error-reboot-max": 99999,
12+
"platform.error-reboot-max": 2147483648,
1313

1414
// Emit a KV pair when an assert fail or hardfault occurs
1515
"platform.mbed-error-emit-greentea-kv": true,

platform/source/mbed_error.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,7 @@ static void print_error_report(const mbed_error_ctx *ctx, const char *error_msg,
666666
#ifdef MBED_CONF_PLATFORM_MBED_ERROR_EMIT_GREENTEA_KV
667667
// Flag that error occurred. Print this first because the default test runner
668668
// just ends the test right away when it sees this.
669-
mbed_error_printf("{{mbed_error;1}}\r\n");
669+
mbed_error_printf("{{mbed_error;1}}\r\n");
670670

671671
mbed_error_printf("{{mbed_error_module;%d}}\r\n", error_module);
672672
mbed_error_printf("{{mbed_error_code;%d}}\r\n", error_code);

0 commit comments

Comments
 (0)