Increase baud rate of mbed-os-example-crash-reporting to 115200

At 9600 baud, a large part of the serial output of the crash reporting
example is missing on CI boards, causing the example test to fail. At
a higher serial speed (115200 baud), the entire output is intact.

This is in alignment with ARMmbed/mbed-os-example-crash-reporting#65.

Fixes #14535
pull/14541/head
Lingkai Dong 2021-04-13 16:07:23 +01:00
parent 06a33d37f8
commit b5893bebbb
2 changed files with 2 additions and 2 deletions

View File

@ -364,7 +364,7 @@
"compile" : true,
"export": true,
"test" : true,
"baud_rate": 9600,
"baud_rate": 115200,
"compare_log": ["mbed-os-example-crash-reporting/tests/crash-reporting.log"],
"auto-update" : true
},

View File

@ -213,7 +213,7 @@
"compile" : true,
"export": true,
"test" : true,
"baud_rate": 9600,
"baud_rate": 115200,
"compare_log": ["mbed-os-example-crash-reporting/tests/crash-reporting.log"],
"auto-update" : true
},