XMOS xsoftip Audio SDRAM-Delay Function Library

Size: px
Start display at page:

Download "XMOS xsoftip Audio SDRAM-Delay Function Library"

Transcription

1 XMOS xsoftip Audio SDRAM-Delay Function Library Document Number: Publication Date: 2014/4/16 XMOS 2014, All Rights Reserved.

2 XMOS xsoftip Audio SDRAM-Delay Function Library 2/10 Table of Contents 1 Overview 3 2 Resource Requirements Available Memory Computation Evaluation Platforms Recommended Hardware slicekit Demonstration Applications Stand Alone Demo Reverb Demo API Configuration Defines Functions Data Types Data Structures Configuration Functions DSP Processing Functions Programming Guide Key Files Usage Demo Applications Long-Delay Application For slicekit Board (app_slicekit_long_delay) Makefile Running the application with the Command Line Tools Trouble-shooting Try Other Audio Applications

3 1 Overview This function library can be used to create long multiple echoes by feeding the input audio stream into a delay-line. The delay-line returns a set of delayed outputs (taps), with the number of taps being configurable. This library makes use of the xsoftip SDRAM controller component, and for an 8 MByte SDRAM, can delay a stereo channel by up to 20 seconds (at 48 khz sample rate) There is a delay-line that uses only the 64 KByte xcore memory, but only short delays are possible. See the Short Delay Function Library.

4 2 Resource Requirements IN THIS CHAPTER Available Memory Computation 2.1 Available Memory This application stores the delayed samples in the SDRAM Memory-Slice, the memory useage is variable depending on the maximum delay requested, and the number of channels being processed. A MEM_SAMPS definition is used to indicate the amount of memory available for the delay-line. Currently this is set at 2 Mega-samples, which is the default size for a 8 MByte SDRAM Memory-slice. This approximate memory usage for this module is (figures shown in Bytes): codememory: 11K datamemory: 10K 2.2 Computation The DSP processing for the delay-line does NOT use multiplication. So far a maximum of 4 delay taps have been used successfully, each on 4 channels. By inspecting timings, the processing time for one tap is about 80 cycles. For a 48 khz sample rate and 500 MHz processor, this would allow about 100 taps/sample/channel.

5 3 Evaluation Platforms IN THIS CHAPTER Recommended Hardware Demonstration Applications 3.1 Recommended Hardware slicekit This module may be evaluated using the slicekit Modular Development Platform, available from digikey. Minimum Required board SKUs are: XP-SKC-L16 (slicekit L16 Core Board) plus XA-SK-AUDIO plus XA-SK-XTAG2 (slicekit xtag adaptor) XA-SK-SDRAM (Memory-Slice Board) plugged into same Tile as running main.xc 3.2 Demonstration Applications Stand Alone Demo Example stand-alone usage of this module can be found within the xsoftip suite as follows: Package: sw_audio_effects Application: app_slicekit_long_delay Reverb Demo This module is used in the app_slicekit_long_reverb example application which shows how the module is deployed within the context of a more complex audio processing application. Note that in addition to the recommended hardware above, the XA-SK-SDRAM slicecard will also be required, since this application buffers more audio samples than can be accommodated in the free internal SRAM of the xcore Tile. Package: sw_audio_effects Application: app_slicekit_long_reverb

6 4 API IN THIS CHAPTER Configuration Defines Functions 4.1 Configuration Defines DEF_SAMP_FREQ MEM_SAMPS Default Sample Frequency (In Hz) MByte Memory available to configure delay buffers (in samples), adjust to suit platform: (2 << 20) 4.2 Functions Data Types S32_T 32-bit types Data Structures DELAY_PARAM_TAG Structure containing delay parameters. Fields S32_T us_delays S32_T num S32_T freq S32_T dbg

7 XMOS xsoftip Audio SDRAM-Delay Function Library 7/ Configuration Functions config_sdram_delay() Configure sdram_delay parameters. Must be called before use_sdram_delay Type void config_sdram_delay(delay_param_s &cur_param_s) Parameters cur_param_s DSP Processing Functions use_sdram_delay() // Reference to structure containing delay-line parameters Exercise sdram_delay for one input sample. Must have previously called config_sdram_delay Type void use_sdram_delay(cntrl_sdram_s &sdram_gs) Parameters sdram_gs // Reference to structure containing data to control SDRAM buffering

8 5 Programming Guide IN THIS CHAPTER Key Files Usage 5.1 Key Files sdram_delay.c: Contains C function library sdram_delay.h: Header file for C function library 5.2 Usage There are 2 functions in the C library, designed to be called from an xc file. config_sdram_delay() Called to do initial configuration of delay parameters (e.g. delay offsets). WARNING: This must be called before... use_sdram_delay() Called to apply set of delays to one audio-sample, designed to be called from an xc file. Note, after initialization, config_sdram_delay() can be called again as required to re-configure the delay offsets. Delays are set in microseconds in the us_delays field of the DELAY_PARAM_S structure.

9 6 Demo Applications IN THIS CHAPTER Long-Delay Application For slicekit Board (app_slicekit_long_delay) Try Other Audio Applications To get started with this application, run through the instructions in the BiQuad Filter quickstart guide. 6.1 Long-Delay Application For slicekit Board (app_slicekit_long_delay) This application uses module_dsp_long_delay to create a set of delays (or echoes) for an audio-stream, passing through the slicekit Core board. The audio is connected to the Audio Slice board using the following Analogue ports: Input 0/1 (Microphone mini-jack) Output 0/1 (Headphone mini-jack) An intermediate signal is created mixing the input stream with the output of the delay-line, which is set-up to produce 4 different echoes. This intermedate signal is used for the output, but also fed back into the delay-line, to create a potentially infinite set of echoes. In fact the mixing is arranged so that the echoes decay exponentially in amplitude Makefile The Makefile is found in the top-level directory of the application (e.g. app_slicekit_long_delay) The application is for the slicekit Core Board so the TARGET variable needs to be set in the Makefile: e.g TARGET = SLICEKIT-L16.xn The number of channels supported in currently 2 or 4, this is set in auto_conf.h: e.g. NUM_DELAY_CHANS = Running the application with the Command Line Tools In the top-level directory of the application (e.g. app_slicekit_long_delay) type

10 XMOS xsoftip Audio SDRAM-Delay Function Library 10/10 xmake clean xmake all Connect the board to your PC using an xtag-2 To start the demo type xrun io bin/app_slicekit_long_delay.xe When listening to the output audio at 48kHz sample rate, you should hear the following... About 16 seconds of the effect (i.e. multiple echoes decaying in amplitude), followed by About 8 seconds of the dry (un-effected) signal. This cycle will repeat indefinitely Trouble-shooting During initialization, and when the system is reconfigured, there may be audible clicks in the audio. This is expected. 6.2 Try Other Audio Applications Another audio application is app_slicekit_long_reverb. The long reverb application is an example of a more complex application running 4 cores, and combining the biquad, loudness and long-delay modules to create large room-sizes, e.g. 200 meters (for a stereo channel at 48 khz). Long-Reverb slicekit Audio Demo Copyright 2014, All Rights Reserved. Xmos Ltd. is the owner or licensee of this design, code, or Information (collectively, the Information ) and is providing it to you AS IS with no warranty of any kind, express or implied and shall have no liability in relation to its use. Xmos Ltd. makes no representation that the Information, or any particular implementation thereof, is or will be free from any claims of infringement and again, shall have no liability in relation to any such claims. XMOS and the XMOS logo are registered trademarks of Xmos Ltd. in the United Kingdom and other countries, and may not be used without written permission. All other trademarks are property of their respective owners. Where those designations appear in this book, and XMOS was aware of a trademark claim, the designations have been printed with initial capital letters or in all capitals.

Application Note: AN00141 xcore-xa - Application Development

Application Note: AN00141 xcore-xa - Application Development Application Note: AN00141 xcore-xa - Application Development This application note shows how to create a simple example which targets the XMOS xcore-xa device and demonstrates how to build and run this

More information

Application Note: AN00121 Using XMOS TCP/IP Library for UDP-based Networking

Application Note: AN00121 Using XMOS TCP/IP Library for UDP-based Networking Application Note: AN00121 Using XMOS TCP/IP Library for UDP-based Networking This application note demonstrates the use of XMOS TCP/IP stack on an XMOS multicore micro controller to communicate on an ethernet-based

More information

AN3998 Application note

AN3998 Application note Application note PDM audio software decoding on STM32 microcontrollers 1 Introduction This application note presents the algorithms and architecture of an optimized software implementation for PDM signal

More information

S/PDIF Software Component

S/PDIF Software Component S/PDIF Software Component Document Number: Publication Date: 2012/3/21 XMOS 2012, All Rights Reserved. S/PDIF Software Component 2/11 CONTENTS SPDIF software S/PDIF Receive S/PDIF Transmit 1 SPDIF software

More information

Application Note: AN00103 Enabling DSD256 in the USB Audio 2.0 Device Reference Design Software

Application Note: AN00103 Enabling DSD256 in the USB Audio 2.0 Device Reference Design Software Application Note: AN00103 Enabling DSD256 in the USB Audio 2.0 Device Reference Design Software The XMOS USB Audio 2.0 device software reference design software supports stereo DSD64 and DSD128 streaming

More information

DFU loader for XMOS USB AUDIO devices

DFU loader for XMOS USB AUDIO devices DFU loader for XMOS USB AUDIO devices Document Number: Publication Date: 2014/6/12 XMOS 2014, All Rights Reserved. DFU loader for XMOS USB AUDIO devices 2/10 Table of Contents 1 Overview 3 2 Creating factory

More information

MASTER GUIDE 1. PACKAGE CONTENTS

MASTER GUIDE 1. PACKAGE CONTENTS Behold the Razer Tiamat 7.1, the world s first circumaural gaming headset with 10 individual drivers built-in to deliver the ultimate 7.1 Surround Sound experience. Dominate deathmatches when you can hear

More information

Radio Interface Setup

Radio Interface Setup For getting started with Ham Radio Sound Card digital modes. Jeffrey Kopcak K8JTK Table of Contents Introduction... 3 Program versions... 3 Resources... 3 SignaLink... 3 Rigblaster... 3 Configuration...

More information

WiFiPerf User Guide 1.5

WiFiPerf User Guide 1.5 WiFiPerf User Guide 1.5 AccessAgility LLC 2012 AccessAgility LLC. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any

More information

ReSound Unite TV FREQUENTLY ASKED QUESTIONS. Setup & Configuration. Use & Operation. Troubleshooting

ReSound Unite TV FREQUENTLY ASKED QUESTIONS. Setup & Configuration. Use & Operation. Troubleshooting Tip for use of FAQ: Click on questions to go to answer. Setup & Configuration How do I pair the hearing aids to the Unite TV?... 2 What is the latency of the streamed signal?... 2 Does the Unite TV use

More information

USER GUIDE ENGLISH ( 3 6 )

USER GUIDE ENGLISH ( 3 6 ) USER GUIDE ENGLISH ( 3 6 ) GUÍA DEL USUARIO ESPAÑOL ( 7 10 ) GUIDE D'UTILISATION FRANÇAIS ( 11 14 ) GUIDA PER L'USO ITALIANO ( 15 18 ) BENUTZERHANDBUCH DEUTSCH ( 19 22 ) USER GUIDE (ENGLISH) Box Contents

More information

Cubase LE 5. Installing Cubase LE 5. Trademarks. Quick Start Guide

Cubase LE 5. Installing Cubase LE 5. Trademarks. Quick Start Guide Cubase LE 5 Quick Start Guide This chapter explains basic operations for using the unit with Cubase LE 5. This explanation is not intended to replace the user s manual for Cubase LE 5. Also, since Cubase

More information

USER GUIDE ENGLISH ( 3 6 )

USER GUIDE ENGLISH ( 3 6 ) USER GUIDE ENGLISH ( 3 6 ) GUÍA DEL USUARIO ESPAÑOL ( 7 10 ) GUIDE D'UTILISATION FRANÇAIS ( 11 14 ) GUIDA PER L'USO ITALIANO ( 15 18 ) BENUTZERHANDBUCH DEUTSCH ( 19 22 ) USER GUIDE (ENGLISH) Box Contents

More information

DSPDemo. By Moe Wheatley MoeTronix.

DSPDemo. By Moe Wheatley MoeTronix. DSPDemo By Moe Wheatley MoeTronix www.moetronix.com Sept. 10, 2004 Table of Contents 1 Introduction... 3 1.1 The Idea... 3 1.2 Hardware... 3 1.2.1 Block Diagram... 3 1.3 Software... 4 1.3.1 Basic Modules...

More information

User Guide FFFA001106. www.focusrite.com

User Guide FFFA001106. www.focusrite.com User Guide FFFA001106 www.focusrite.com TABLE OF CONTENTS OVERVIEW.... 3 Introduction...3 Features.................................................................... 3 Box Contents...3 System Requirements....4

More information

Spatialized Audio Rendering for Immersive Virtual Environments

Spatialized Audio Rendering for Immersive Virtual Environments Spatialized Audio Rendering for Immersive Virtual Environments Martin Naef, Markus Gross Computer Graphics Laboratory, ETH Zurich Oliver Staadt Computer Science Department, UC Davis 1 Context: The blue-c

More information

YAMAHA ASIO DirectKS Driver for Windows Owner's Manual

YAMAHA ASIO DirectKS Driver for Windows Owner's Manual YAMAHA ASIO DirectKS Driver for Windows Owner's Manual ATTENTION SOFTWARE LICENSE AGREEMENT PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ( AGREEMENT ) CAREFULLY BEFORE USING THIS SOFTWARE. YOU ARE ONLY

More information

Software Audio Processor. Users Guide

Software Audio Processor. Users Guide Waves R360 Surround Reverb Software Audio Processor Users Guide Waves R360 software guide page 1 of 8 Introduction Introducing the Waves 360 Surround Reverb. This Software audio processor is dedicated

More information

AN3997 Application note

AN3997 Application note Application note Audio playback and recording using the STM32F4DISCOVERY 1 Introduction This application note describes the audio (wave) playback and recording application based on the STM32F4xx microcontroller

More information

Configuring Video and Audio Devices for Use with Polycom PVX

Configuring Video and Audio Devices for Use with Polycom PVX Configuring Video and Audio Devices for Use with Polycom PVX You can select from a number of different audio and video input devices to use with your Polycom PVX application, version 8.0.1 or later. This

More information

GETTING STARTED WITH STUDIO ONE ARTIST

GETTING STARTED WITH STUDIO ONE ARTIST GETTING STARTED WITH STUDIO ONE ARTIST 2009, PreSonus Audio Electronics, Inc. All Rights Reserved. TABLE OF CONTENTS Studio One Artist Features...3 System Requirements...4 Installation and Authorization...5

More information

Basics. Mbox 2. Version 7.0

Basics. Mbox 2. Version 7.0 Basics Mbox 2 Version 7.0 Copyright 2005 Digidesign, a division of Avid Technology, Inc. All rights reserved. This guide may not be duplicated in whole or in part without the express written consent of

More information

Analog Representations of Sound

Analog Representations of Sound Analog Representations of Sound Magnified phonograph grooves, viewed from above: The shape of the grooves encodes the continuously varying audio signal. Analog to Digital Recording Chain ADC Microphone

More information

LonManager PCC-10 and ISA Protocol Analyzers Models 33100-00 and 33100-10

LonManager PCC-10 and ISA Protocol Analyzers Models 33100-00 and 33100-10 LonManager and Protocol Analyzers Models 33100-00 and 33100-10 Description The LonManager Protocol Analyzer provides LONWORKS manufacturers, system integrators, and end-users with a rich set of Windows

More information

AN3332 Application note

AN3332 Application note Application note Generating PWM signals using STM8S-DISCOVERY Application overview This application user manual provides a short description of how to use the Timer 2 peripheral (TIM2) to generate three

More information

Rapid Audio Prototyping

Rapid Audio Prototyping Rapid Audio Prototyping Rapid Audio Prototyping Do You want to combine research and prototyping in one step? Do You want to test and evaluate the audio processing chain of Your product idea already at

More information

LMS is a simple but powerful algorithm and can be implemented to take advantage of the Lattice FPGA architecture.

LMS is a simple but powerful algorithm and can be implemented to take advantage of the Lattice FPGA architecture. February 2012 Introduction Reference Design RD1031 Adaptive algorithms have become a mainstay in DSP. They are used in wide ranging applications including wireless channel estimation, radar guidance systems,

More information

Innkeeper PBX. Desktop Digital Hybrid. User Guide. JK Audio

Innkeeper PBX. Desktop Digital Hybrid. User Guide. JK Audio Innkeeper PBX Desktop Digital Hybrid User Guide JK Audio Introduction Innkeeper PBX will allow you to send and receive audio through your multi-line PBX, ISDN or analog telephone. While this may seem like

More information

AI Audio 2 (SoundMAX High Definition Audio utility)

AI Audio 2 (SoundMAX High Definition Audio utility) AI Audio 2 (SoundMAX High Definition Audio utility) The ADI High Definition Audio CODEC provides 8-channel audio capability through the SoundMAX audio utility with AudioESP software to deliver the ultimate

More information

Bandwidth Calculations for SA-1100 Processor LCD Displays

Bandwidth Calculations for SA-1100 Processor LCD Displays Bandwidth Calculations for SA-1100 Processor LCD Displays Application Note February 1999 Order Number: 278270-001 Information in this document is provided in connection with Intel products. No license,

More information

Universal Host. Desktop Digital Hybrid. User Guide. JK Audio

Universal Host. Desktop Digital Hybrid. User Guide. JK Audio Universal Host Desktop Digital Hybrid User Guide JK Audio Introduction Universal Host will allow you to send and receive audio through your multi-line PBX, ISDN, VoIP or analog telephone. While this may

More information

PC Base Adapter Daughter Card UART GPIO. Figure 1. ToolStick Development Platform Block Diagram

PC Base Adapter Daughter Card UART GPIO. Figure 1. ToolStick Development Platform Block Diagram TOOLSTICK VIRTUAL TOOLS USER S GUIDE RELEVANT DEVICES 1. Introduction The ToolStick development platform consists of a ToolStick Base Adapter and a ToolStick Daughter card. The ToolStick Virtual Tools

More information

Configuring USB Driver, ConFiG SoftRock Tool and High Definition Software Defined Radio Revised 27-September-2015

Configuring USB Driver, ConFiG SoftRock Tool and High Definition Software Defined Radio Revised 27-September-2015 Configuring USB Driver, ConFiG SoftRock Tool and High Definition Software Defined Radio Revised 27-September-2015 The ideal time to install the SoftRock drivers and software on your Windows 7, 8 or 10

More information

Intel RAID Controller Troubleshooting Guide

Intel RAID Controller Troubleshooting Guide Intel RAID Controller Troubleshooting Guide A Guide for Technically Qualified Assemblers of Intel Identified Subassemblies/Products Intel order number C18781-001 September 2, 2002 Revision History Troubleshooting

More information

Professional 24-bit USB Audio Interface. User s Guide

Professional 24-bit USB Audio Interface. User s Guide Professional 24-bit USB Audio Interface User s Guide - Copyright 2016 Revision 1, January 2016 www.esi-audio.com INDEX 1. Introduction... 4 1.1 Features... 4 2. Installation... 5 2.1 System Recommendation...

More information

Mbox Basics Guide. Version 6.7 for LE Systems on Windows XP or Mac OS X. Digidesign

Mbox Basics Guide. Version 6.7 for LE Systems on Windows XP or Mac OS X. Digidesign Mbox Basics Guide Version 6.7 for LE Systems on Windows XP or Mac OS X Digidesign 2001 Junipero Serra Boulevard Daly City, CA 94014-3886 USA tel: 650 731 6300 fax: 650 731 6399 Technical Support (USA)

More information

Concert Hall Sound You Can Hold In Your. Hand. Users Manual 0.9

Concert Hall Sound You Can Hold In Your. Hand. Users Manual 0.9 Concert Hall Sound You Can Hold In Your Hand Users Manual 0.9 1 Greetings Thank you for purchasing Calyx M. Calyx M is a product made for people who love music and want to listen no matter when or where

More information

User s Guide for Polycom CX7000 Systems

User s Guide for Polycom CX7000 Systems User s Guide for Polycom CX7000 Systems 1.1 August 2012 3725-63878-001/C Trademark Information Polycom, the Polycom Triangles logo, and the names and marks associated with Polycom s products are trademarks

More information

2.0 AUDIO RECORDING INTERFACE

2.0 AUDIO RECORDING INTERFACE 24-Bit/96kHz USB 2.0 AUDIO RECORDING INTERFACE USER MANUAL 1 of 13 Contents: 1. Instruction 03 2. Key Features 03 3. Front Panel 03 4. Rear Panel 04 5. Minimum System Requirements 04 6. Installation Process

More information

AND9035/D. BELASIGNA 250 and 300 for Low-Bandwidth Applications APPLICATION NOTE

AND9035/D. BELASIGNA 250 and 300 for Low-Bandwidth Applications APPLICATION NOTE BELASIGNA 250 and 300 for Low-Bandwidth Applications APPLICATION NOTE Introduction This application note describes the use of BELASIGNA 250 and BELASIGNA 300 in low bandwidth applications. The intended

More information

Installing, upgrading and troubleshooting your CLIO system under the Windows environment.

Installing, upgrading and troubleshooting your CLIO system under the Windows environment. Installing, upgrading and troubleshooting your CLIO system under the Windows environment. Audiomatica Srl Rev. 1.1. June 2001. Contents 1 What does this document cover?... 1 2 Windows compatibility...

More information

Voice Communication Package v7.0 of front-end voice processing software technologies General description and technical specification

Voice Communication Package v7.0 of front-end voice processing software technologies General description and technical specification Voice Communication Package v7.0 of front-end voice processing software technologies General description and technical specification (Revision 1.0, May 2012) General VCP information Voice Communication

More information

Notification messages

Notification messages AXIS P8221 Network I/O Audio Module TECHNICAL NOTE Notification messages How to integrate AXIS P8221 Updated: August 19, 2011 Rev: 1.1 TABLE OF CONTENTS 1 INTRODUCTION 3 1.1 HTTP and TCP 3 1.2 VAPIX 3

More information

32-bit AVR UC3 Microcontrollers. 32-bit AtmelAVR Application Note. AVR32769: How to Compile the standalone AVR32 Software Framework in AVR32 Studio V2

32-bit AVR UC3 Microcontrollers. 32-bit AtmelAVR Application Note. AVR32769: How to Compile the standalone AVR32 Software Framework in AVR32 Studio V2 AVR32769: How to Compile the standalone AVR32 Software Framework in AVR32 Studio V2 1. Introduction The purpose of this application note is to show how to compile any of the application and driver examples

More information

STEREO BLUETOOTH WIRELESS HEADPHONES

STEREO BLUETOOTH WIRELESS HEADPHONES STEREO BLUETOOTH WIRELESS HEADPHONES model: AF32 USER MANUAL part of the series PACKAGE CONTENTS Runaway AF32 Stereo Bluetooth Wireless Headphones Charging cable (USB 3.5mm) Stereo audio cable (3.5mm 3.5mm)

More information

PicoScope 6000A/B Series

PicoScope 6000A/B Series PicoScope 6000A/B Series PC Oscilloscopes User's Guide -1 PicoScope 6000A/B Series User's Guide I Contents 1 Welcome...1 2 Introduction...2 1 Using this guide 2 Safety symbols 3 Safety warnings 4 FCC

More information

Step 1: Select the Start Menu, then Control Panel.

Step 1: Select the Start Menu, then Control Panel. Part of the Adobe Connect 9 software includes functionality to support full audio in addition to chat areas, shared spaces, and video. The technology that makes this possible is Voice- Over-IP (VOIP).

More information

Welcome to the tutorial for the MPLAB Starter Kit for dspic DSCs

Welcome to the tutorial for the MPLAB Starter Kit for dspic DSCs Welcome to the tutorial for the MPLAB Starter Kit for dspic DSCs Welcome to this tutorial on Microchip s MPLAB Starter Kit for dspic Digital Signal Controllers, or DSCs. The starter kit is an all-in-one

More information

DSP Laboratory: Analog to Digital and Digital to Analog Conversion

DSP Laboratory: Analog to Digital and Digital to Analog Conversion OpenStax-CNX module: m13035 1 DSP Laboratory: Analog to Digital and Digital to Analog Conversion Erik Luther This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License

More information

PERSONAL MONITOR MIXER/HEADPHONE AMP. S Class Signal Processors

PERSONAL MONITOR MIXER/HEADPHONE AMP. S Class Signal Processors PERSONAL MONITOR MIXER/HEADPHONE AMP S Class Signal Processors Table Of Contents Features 3 Front and Rear Panel Layout 4 Operating the S monitor 5-7 Specifications 8 Wiring Guide 8 Copyright 2003, Samson

More information

Reverb and Multi-Effects. Plug-in for Digidesign Pro Tools. User Guide

Reverb and Multi-Effects. Plug-in for Digidesign Pro Tools. User Guide Reverb and Multi-Effects Plug-in for Digidesign Pro Tools User Guide Copyright 2004, Eventide Inc. P/N: 141086, Rev A Eventide and Harmonizer are registered trademarks of Eventide Inc. Digidesign and Pro

More information

Quick Start Guide. MRB-KW01 Development Platform Radio Utility Application Demo MODULAR REFERENCE BOARD

Quick Start Guide. MRB-KW01 Development Platform Radio Utility Application Demo MODULAR REFERENCE BOARD Quick Start Guide MRB-KW01 Development Platform Radio Utility Application Demo MODULAR REFERENCE BOARD Quick Start Guide Get to Know the MRB-KW01x Module UART Selector ANT 1 RFIO (TX/RX) USB 2.0 Serial

More information

AlazarTech SDK Programmer s Guide. Version 5.8.2 May 28, 2010

AlazarTech SDK Programmer s Guide. Version 5.8.2 May 28, 2010 AlazarTech SDK Programmer s Guide Version 5.8.2 May 28, 2010 License Agreement Important By using this software you accept the following terms of this License Agreement. If you do not agree with these

More information

innkeeper PBX Desktop Digital Hybrid User Guide JK Audio Warranty

innkeeper PBX Desktop Digital Hybrid User Guide JK Audio Warranty Warranty Innkeeper PBX is covered by a 2-year warranty to be free from defective workmanship and materials. In the event that the innkeeper PBX needs repair, you must call us to get an authorization, and

More information

Keysight Technologies N1918A Power Analysis Manager and U2000 Series USB Power Sensors. Demo Guide

Keysight Technologies N1918A Power Analysis Manager and U2000 Series USB Power Sensors. Demo Guide Keysight Technologies N1918A Power Analysis Manager and U2000 Series USB Power Sensors Demo Guide Introduction This demonstration guide helps you to get familiar with the basic setup and coniguration requirements

More information

Portable MP3 Player User's Guide

Portable MP3 Player User's Guide MP3-128 LCD MP3-256 LCD MP3-512 LCD Portable MP3 Player User's Guide Safety Introduction Installing the MP3 Player Transfer data to and from the MP3 Player Listening to your WMA/MP3 music MP3 Player Controls

More information

Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com

Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-83 Sales: (888) 512-124 Tech Support: (888) 997-8267

More information

Chord Limited. Mojo Dac Headphone Amplifier OPERATING INSTRUCTIONS

Chord Limited. Mojo Dac Headphone Amplifier OPERATING INSTRUCTIONS Chord Limited Mojo Dac Headphone Amplifier OPERATING INSTRUCTIONS -!1 - Cleaning and care instructions: Mojo requires no special care other than common sense. Spray window cleaner (clear type) may be used

More information

IBM Tivoli Provisioning Manager V 7.1

IBM Tivoli Provisioning Manager V 7.1 IBM Tivoli Provisioning Manager V 7.1 Preparing for patch management in a small environment 2011 IBM Corporation Welcome to the training module for Tivoli Provisioning Manager version 7.1, preparing for

More information

NETWRIX CHANGE NOTIFIER

NETWRIX CHANGE NOTIFIER NETWRIX CHANGE NOTIFIER FOR SQL SERVER QUICK-START GUIDE Product Version: 2.6.194 February 2014. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

December 2002, ver. 1.0 Application Note 285. This document describes the Excalibur web server demonstration design and includes the following topics:

December 2002, ver. 1.0 Application Note 285. This document describes the Excalibur web server demonstration design and includes the following topics: Excalibur Web Server Demonstration December 2002, ver. 1.0 Application Note 285 Introduction This document describes the Excalibur web server demonstration design and includes the following topics: Design

More information

USB-MIDI Setup Guide. Operating requirements

USB-MIDI Setup Guide. Operating requirements About the software The most recent versions of the applications contained on the accessory disc can be downloaded from the Korg website (http://www.korg.com). -MIDI Setup Guide Please note before use Copyright

More information

USER GUIDE EDBG. Description

USER GUIDE EDBG. Description USER GUIDE EDBG Description The Atmel Embedded Debugger (EDBG) is an onboard debugger for integration into development kits with Atmel MCUs. In addition to programming and debugging support through Atmel

More information

Alcatel-Lucent OmniPCX Enterprise Communication Server TA-MMK (MMK V2)

Alcatel-Lucent OmniPCX Enterprise Communication Server TA-MMK (MMK V2) Alcatel-Lucent OmniPCX Enterprise Communication Server TA-MMK (MMK V2) Legal notice: Alcatel, Lucent, Alcatel-Lucent and the Alcatel-Lucent logo are trademarks of Alcatel-Lucent. All other trademarks are

More information

MP3 Player CSEE 4840 SPRING 2010 PROJECT DESIGN. zl2211@columbia.edu. ml3088@columbia.edu

MP3 Player CSEE 4840 SPRING 2010 PROJECT DESIGN. zl2211@columbia.edu. ml3088@columbia.edu MP3 Player CSEE 4840 SPRING 2010 PROJECT DESIGN Zheng Lai Zhao Liu Meng Li Quan Yuan zl2215@columbia.edu zl2211@columbia.edu ml3088@columbia.edu qy2123@columbia.edu I. Overview Architecture The purpose

More information

Wireless Internet Camera

Wireless Internet Camera Wireless Internet Camera Wireless G Mobile USB 2.0 Adapter with 3G Video Minimum System Requirements PC with: Windows XP/2000 1GHz processor Memory Size: 512MB 100MB of available hard drive space and a

More information

Installation and Testing of NMM (Windows)

Installation and Testing of NMM (Windows) Installation and Testing of NMM (Windows) Motama GmbH, Saarbruecken, Germany (http://www.motama.com) April 2010 Copyright (C) 2005-2010 Motama GmbH, Saarbruecken, Germany http://www.motama.com Permission

More information

User Guide. VT1708A VIA HD Audio Adeck For Windows 2000, Windows XP & Server 2003. Jun 13 2007 Revision 1.1e

User Guide. VT1708A VIA HD Audio Adeck For Windows 2000, Windows XP & Server 2003. Jun 13 2007 Revision 1.1e VT1708A VIA HD Audio Adeck For Windows 2000, Windows XP & Server 2003 Jun 13 2007 Revision 1.1e VT1708A VIA HD Audio Adeck For Windows 2000, Windows XP & Server 2003 Revision History Rev Date Initial Note

More information

Audio-Technica AT-LP60-USB, AT-LP120-USB, AT-LP240-USB & AT-LP1240-USB Turntables. Software Guide

Audio-Technica AT-LP60-USB, AT-LP120-USB, AT-LP240-USB & AT-LP1240-USB Turntables. Software Guide Audio-Technica AT-LP60-USB, AT-LP120-USB, AT-LP240-USB & AT-LP1240-USB Turntables Software Guide Audio-Technica USB Turntables Contents A note about software... 2 System requirements... 2 Installing Audacity

More information

User guide. Stereo Bluetooth Headset SBH50

User guide. Stereo Bluetooth Headset SBH50 User guide Stereo Bluetooth Headset SBH50 Contents Stereo Bluetooth Headset User guide...3 Introduction...4 Function overview...4 Hardware overview...4 Status icon overview...5 Basics...6 Charging the

More information

Roxio Easy LP to MP3

Roxio Easy LP to MP3 Roxio Easy LP to MP3 Getting Started Guide About Corel Corel is one of the world's top software companies providing some of the industry's best-known brands, including Roxio, Pinnacle and WinZip. Boasting

More information

P420-M TM USB speakerphone

P420-M TM USB speakerphone P420-M TM USB speakerphone User guide Welcome Congratulations on purchasing your new Plantronics product. This guide contains instructions for setting up and using your Plantronics P420-M USB speakerphone.

More information

z/os V1R11 Communications Server system management and monitoring

z/os V1R11 Communications Server system management and monitoring IBM Software Group Enterprise Networking Solutions z/os V1R11 Communications Server z/os V1R11 Communications Server system management and monitoring z/os Communications Server Development, Raleigh, North

More information

PART 1. Using USB Mixer with a Computer

PART 1. Using USB Mixer with a Computer PART 1. Using USB Mixer with a Computer Universal Serial Bus Mixers The USB mixer is equipped with either one or two USB ports that allow you to play and record audio directly from your computer! Just

More information

Audiomedia III Installation Guide

Audiomedia III Installation Guide Audiomedia III Installation Guide Digidesign Inc. 3401-A Hillview Avenue Palo Alto, CA 94304 USA tel: 650 842 7900 fax: 650 842 7999 Technical Support (USA) 650 842 6699 650 856 4275 Product Information

More information

Step 1: Select the Start Menu, then Control Panel.

Step 1: Select the Start Menu, then Control Panel. Part of the Adobe Connect 9 software includes functionality to support full audio in addition to chat areas, shared spaces, and video. The technology that makes this possible is Voice- Over-IP (VOIP).

More information

Enhanced Diagnostics Improve Performance, Configurability, and Usability

Enhanced Diagnostics Improve Performance, Configurability, and Usability Application Note Enhanced Diagnostics Improve Performance, Configurability, and Usability Improved Capabilities Available for Dialogic System Release Software Application Note Enhanced Diagnostics Improve

More information

Training Document for Comprehensive Automation Solutions Totally Integrated Automation (T I A) MODULE A5 Programming the CPU 314C-2DP

Training Document for Comprehensive Automation Solutions Totally Integrated Automation (T I A) MODULE A5 Programming the CPU 314C-2DP Training Document for Comprehensive Automation Solutions Totally Integrated Automation (T I A) MODULE T I A Training Document Page 1 of 25 Module This document has been written by Siemens AG for training

More information

WinCON8000-R2/R8. Hardware User s Manual

WinCON8000-R2/R8. Hardware User s Manual WinCON8000-R2/R8 Compact Embedded Controller Hardware User s Manual REV 1.1 2004/10/22 1 Warranty All products manufactured by ICP DAS are warranted against defective materials for a period of one year

More information

Voice Dialer Speech Recognition Dialing IC

Voice Dialer Speech Recognition Dialing IC Speech Recognition Dialing IC Speaker Dependent IC for Voice Dialing Applications GENERAL DESCRIPTION The IC, from the Interactive Speech family of products, is an application specific standard product

More information

NETWRIX DISK SPACE MONITOR

NETWRIX DISK SPACE MONITOR NETWRIX DISK SPACE MONITOR QUICK-START GUIDE Product Version: 1.2 February 2015 Copyright 2015 Netwrix Corporation. All Rights Reserved Legal Notice The information in this publication is furnished for

More information

PicoScope 3000 A and B Series

PicoScope 3000 A and B Series PicoScope 3000 A and B Series PC Oscilloscopes and MSOs User's Guide PicoScope 3000 A and B Series PC Oscilloscopes and MSOs User's Guide I Contents 1 Welcome...1 2 Introduction...2 1 Safety symbols 2

More information

An introduction to nxpusblib. March 2012

An introduction to nxpusblib. March 2012 An introduction to nxpusblib March 2012 Agenda NXP USB portfolio Demo using LPC1800- Out of the Box What is nxpusblib? How to use nxpusblib? Why to use nxpusblib? Summary 2 NXP USB Portfolio NXP MCU the

More information

User Guide. BlackBerry Remote Stereo Gateway

User Guide. BlackBerry Remote Stereo Gateway User Guide BlackBerry Remote Stereo Gateway MAT-17698-001 PRINTSPEC-021 SWD-324580-0416090732-001 Contents Basics...3 About the BlackBerry Remote Stereo Gateway...3 Components...4 LED notification...5

More information

RAM: 2 Gb Hard Drive: 168 hours of recording per Gb of disk space available NIC : 2 NIC cards required for IP Recording.

RAM: 2 Gb Hard Drive: 168 hours of recording per Gb of disk space available NIC : 2 NIC cards required for IP Recording. This guide describes the installation procedures for the BackOffice software when used with the MultiCorder Hardware as a centralized Call Recording and storage solution. The complete MultiCorder BackOffice

More information

IP Office - Job Aid Music on Hold

IP Office - Job Aid Music on Hold IP Office - Job Aid Music on Hold Summary This document covers how music on hold works on the IP Office and the sources from which music on hold can be provided. 031 Issue 2 (14th Febraury 2003) Introduction

More information

The Advanced JTAG Bridge. Nathan Yawn nathan.yawn@opencores.org 05/12/09

The Advanced JTAG Bridge. Nathan Yawn nathan.yawn@opencores.org 05/12/09 The Advanced JTAG Bridge Nathan Yawn nathan.yawn@opencores.org 05/12/09 Copyright (C) 2008-2009 Nathan Yawn Permission is granted to copy, distribute and/or modify this document under the terms of the

More information

MultiModem ZBA. Quick Start Guide. MT9234ZBA-Series MT9234ZBA MT9234ZBA-V

MultiModem ZBA. Quick Start Guide. MT9234ZBA-Series MT9234ZBA MT9234ZBA-V MultiModem ZBA MT9234ZBA-Series MT9234ZBA MT9234ZBA-V Quick Start Guide MultiModem ZBA Quick Start Guide MT9234ZBA & MT9234ZBA-V 82100201L Rev. B Copyright This publication may not be reproduced, in whole

More information

Fiber Channel Over Ethernet (FCoE)

Fiber Channel Over Ethernet (FCoE) Fiber Channel Over Ethernet (FCoE) Using Intel Ethernet Switch Family White Paper November, 2008 Legal INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR

More information

Intel Extreme Memory Profile (Intel XMP) DDR3 Technology

Intel Extreme Memory Profile (Intel XMP) DDR3 Technology Intel Extreme Memory Profile (Intel XMP) DDR3 Technology White Paper January 2009 Document Number: 319124-002 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

Legal Notices and Important Information

Legal Notices and Important Information Legal Notices and Important Information Intel processor numbers are not a measure of performance. Processor numbers differentiate features within each processor family, not across different processor families.

More information

8-Port HDMI Switch USER MANUAL VS0801H

8-Port HDMI Switch USER MANUAL VS0801H 8-Port HDMI Switch USER MANUAL VS0801H FCC Information This equipment has been tested and found to comply with the limits for a Class B digital device, pursuant to Part 15 of the FCC Rules. These limits

More information

Original brief explanation

Original brief explanation Original brief explanation I installed the Shoutcast server onto a desktop and made some minor configuration changes, such as setting the passwords and the maximum number of listeners. This was quite easy

More information

Building a Simulink model for real-time analysis V1.15.00. Copyright g.tec medical engineering GmbH

Building a Simulink model for real-time analysis V1.15.00. Copyright g.tec medical engineering GmbH g.tec medical engineering GmbH Sierningstrasse 14, A-4521 Schiedlberg Austria - Europe Tel.: (43)-7251-22240-0 Fax: (43)-7251-22240-39 office@gtec.at, http://www.gtec.at Building a Simulink model for real-time

More information

USER MANUAL DUET EXECUTIVE USB DESKTOP SPEAKERPHONE

USER MANUAL DUET EXECUTIVE USB DESKTOP SPEAKERPHONE USER MANUAL DUET EXECUTIVE USB DESKTOP SPEAKERPHONE DUET EXE OVERVIEW Control Button Panel Connector Panel Loudspeaker Microphone The Duet is a high performance speakerphone for desktop use that can cover

More information

Measure Up! DK T7 - Compliant Audio, Loudness & Logging System. DK T7 Data sheet Oct. 201 3 V.1. DK-Technologies

Measure Up! DK T7 - Compliant Audio, Loudness & Logging System. DK T7 Data sheet Oct. 201 3 V.1. DK-Technologies Measure Up! DK T7 Data sheet Oct. 201 3 V.1 Introducing the DK T7 Hit your Audio and Loudness sweet-spot with outstanding precision and instant overview no matter the standard or target. We are proud to

More information

COM Port Stress Test

COM Port Stress Test COM Port Stress Test COM Port Stress Test All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,

More information

Message from the Development Team. Contents. Message from the Development Team..2. Panel Controls and Terminals...3. Using the UR22mkII...

Message from the Development Team. Contents. Message from the Development Team..2. Panel Controls and Terminals...3. Using the UR22mkII... EN Contents Contents Message from the Development Team..2 Panel Controls and Terminals...3 Front Panel...3 Rear Panel...5 Software...7 Using the UR22mkII...10 Connections...10 Configuring Audio Driver

More information

MiniView Micro USB Plus 2-Port KVM Switch with Built-in KVM Cables and Audio Support. Installation Manual (GCS632U)

MiniView Micro USB Plus 2-Port KVM Switch with Built-in KVM Cables and Audio Support. Installation Manual (GCS632U) MiniView Micro USB Plus 2-Port KVM Switch with Built-in KVM Cables and Audio Support Installation Manual (GCS632U) 2005 IOGEAR. All Rights Reserved. PKG-M0089b IOGEAR, the IOGEAR logo, MiniView, VSE are

More information

VMR6512 Hi-Fi Audio FM Transmitter Module

VMR6512 Hi-Fi Audio FM Transmitter Module General Description VMR6512 is a highly integrated FM audio signal transmitter module. It integrates advanced digital signal processor (DSP), frequency synthesizer RF power amplifier and matching network.

More information