Changed console object name from 'console' to something more unique like 'mbed_cpputest_console'

pull/408/head
Przemek Wirkus 2014-07-16 16:09:28 +01:00
parent 8c3fb1cdcc
commit 265de723ad
1 changed files with 2 additions and 2 deletions

View File

@ -5,10 +5,10 @@
#include "test_env.h"
/**
Object 'console' is used to show prints on console.
Object 'mbed_cpputest_console' is used to show prints on console.
It is declared in \cpputest\src\Platforms\armcc\UtestPlatform.cpp
*/
Serial console(STDIO_UART_TX, STDIO_UART_RX);
Serial mbed_cpputest_console(STDIO_UART_TX, STDIO_UART_RX);
int main(int ac, char** av)
{