Hi Phil,
in case of using the latest MSVC versions, you can change the implementation of EwOpenConsole() - it is located in {Program Files (x86)}\Embedded Wizard 9.20\Platforms\Tara\Win32\RTE:
void EwOpenConsole( void )
{
FILE* f;
/* At first open the standard console */
if ( !AllocConsole())
return;
/* Set the title of the console window */
SetConsoleTitleA( "Embedded Wizard Console" );
/* ... and connect this console with the standard output file handle */
freopen_s( &f, "CONOUT$", "w", stderr );
freopen_s( &f, "CONOUT$", "w", stdout );
}
It will be changed in the next release version.
Best regards,
Manfred.