Use consistent baud rate across examples
diff --git a/yotta/data/example-benchmark/main.cpp b/yotta/data/example-benchmark/main.cpp
index fabaef9..c61c639 100644
--- a/yotta/data/example-benchmark/main.cpp
+++ b/yotta/data/example-benchmark/main.cpp
@@ -921,6 +921,10 @@
#include "mbed/test_env.h"
int main() {
+ /* Use 115200 bps for consistency with other examples */
+ Serial pc(USBTX, USBRX);
+ pc.baud(115200);
+
MBED_HOSTTEST_TIMEOUT(150);
MBED_HOSTTEST_SELECT(default);
MBED_HOSTTEST_DESCRIPTION(mbed TLS benchmark program);