Reference Information for Remote Control
R&S
®
SMW200A
1340User Manual 1175.6632.02 ─ 30
else
{
cin.getline( buffer, 1024 );
input = buffer;
if( input == "end" )
{
terminate = true;
}
}
if( !terminate)
{
client.transmit( input ); //send string
int qPos = input.find( "?", 0 );
//receive string only when needed
if( qPos > 0 )
{
string rcStr = "";
client.receive( rcStr );
cout << rcStr << endl;
}
}
if( useSingleCommand )
{
terminate = true;
}
}
}catch( const string errorString )
{
cout<<errorString<<endl;
}
client.disconnect( );
return errorCode;
}
D.3 Extensions for User Files
The Table D-10 lists all available file extensions for user files. The currently available
files on the instrument depend on the installed options.
Table D-10: List of the automatically assigned file extensions in the instrument
Function List type Contents File suffix
Instrument State Settings Instrument settings
*.savrcltxt
User Menu Settings User-defined favorite settings
*.user_menu
License Key
License Key
*.xml
"User Correction" List User-defined level correction values
*.uco
"List Mode" List User-defined frequency/level value pairs
*.lsw
Extensions for User Files