Use consistent baud rate across examples

This commit is contained in:
Manuel Pégourié-Gonnard 2015-08-06 18:10:17 +02:00
parent 278098f4f4
commit bd5bbec715
8 changed files with 20 additions and 4 deletions

View file

@ -921,6 +921,10 @@ int benchmark( int argc, char *argv[] )
#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);