var fDesc=new Array();
fDesc[0] = "Welcome to Signal Wizard 3 (SW3). This is a completely integrated software and hardware system for real-time multichannel mixing, amplification, filtering and delaying. It includes a user friendly software package for specifying the desired operations, and a hardware unit which performs the real-time processing. The hardware unit incorporates a 6-to-8 channel 24 bit codec, an S/PDIF transceiver and a variety of interfaces. All instructions from the software are downloaded to the unit through a USB cable. The system requires no knowledge of digital signal processing (DSP) theory on the part of the user, or of the mathematics associated with digital filter design. Signal Wizard 3 is a total-solution package.
Main Features:
- Eight input channels: six analogue, two digital (S/PDIF)
- Ten output channels: eight analogue, two digital (S/PDIF)
- 27 software selectable sample rates, from 96 kHz down to 3 kHz
- 24-bit sigma delta codec
- DSP incorporates coprocessor with a speed of 0.6 GMACs
- Each channel: 1st stage mixer ? gain stage ? filter stage ? delay stage ? 2nd stage mixer
- JTAG interface
- 3rd party software support (C design tools) if required";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}