<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://sigrok.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ipolit</id>
	<title>sigrok - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://sigrok.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ipolit"/>
	<link rel="alternate" type="text/html" href="https://sigrok.org/wiki/Special:Contributions/Ipolit"/>
	<updated>2026-04-19T11:31:56Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.1</generator>
	<entry>
		<id>https://sigrok.org/w/index.php?title=Protocol_decoder:I2c&amp;diff=12865</id>
		<title>Protocol decoder:I2c</title>
		<link rel="alternate" type="text/html" href="https://sigrok.org/w/index.php?title=Protocol_decoder:I2c&amp;diff=12865"/>
		<updated>2017-10-11T12:45:47Z</updated>

		<summary type="html">&lt;p&gt;Ipolit: /* Decoder */ Add another decoder usage&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox protocol decoder&lt;br /&gt;
| id              = i2c&lt;br /&gt;
| name            = Inter-Integrated Circuit&lt;br /&gt;
| description     = Two-wire, multi-master, serial bus&lt;br /&gt;
| status          = supported&lt;br /&gt;
| license         = GPLv2+&lt;br /&gt;
| source_code_dir = i2c&lt;br /&gt;
| image           = [[File:Pd i2c example.png|250px]]&lt;br /&gt;
| input           = logic&lt;br /&gt;
| output          = i2c&lt;br /&gt;
| probes          = SCL, SDA&lt;br /&gt;
| optional_probes = &amp;amp;mdash;&lt;br /&gt;
| options         = address_format&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
The &amp;#039;&amp;#039;&amp;#039;i2c&amp;#039;&amp;#039;&amp;#039; protocol decoder supports the [https://en.wikipedia.org/wiki/I%C2%B2C Inter-Integrated Circuit] (I²C) bidirectional, multi-master serial protocol.&lt;br /&gt;
&lt;br /&gt;
== Protocol ==&lt;br /&gt;
&lt;br /&gt;
The Inter-Integrated Circuit (I²C) bus is a bidirectional, multi-master bus using two signals (SCL = serial clock line, SDA = serial data line).&lt;br /&gt;
&lt;br /&gt;
There can be many devices on the same bus. Each device can potentially be master or slave (and that can change during runtime). Both slave and master can potentially play the transmitter or receiver role (this can also change at runtime).&lt;br /&gt;
&lt;br /&gt;
Possible maximum data rates:&lt;br /&gt;
&lt;br /&gt;
* Standard mode: 100 kbit/s&lt;br /&gt;
* Fast mode: 400 kbit/s&lt;br /&gt;
* Fast-mode Plus: 1 Mbit/s&lt;br /&gt;
* High-speed mode: 3.4 Mbit/s&lt;br /&gt;
&lt;br /&gt;
Basic protocol:&lt;br /&gt;
* START condition: SDA = falling, SCL = high&lt;br /&gt;
* Repeated START condition: same as START condition&lt;br /&gt;
* Data bit sampling: SCL = rising&lt;br /&gt;
* STOP condition: SDA = rising, SCL = high&lt;br /&gt;
&lt;br /&gt;
All data bytes on SDA are exactly 8 bits long (transmitted MSB-first). Each byte has to be followed by a 9th ACK/NACK bit. If that bit is low, that indicates an ACK, if it&amp;#039;s high that indicates a NACK.&lt;br /&gt;
&lt;br /&gt;
After the first START condition, a master sends the device address of the slave it wants to talk to. Slave addresses are 7 bits long (MSB-first). After those 7 bits, a data direction bit is sent. If the bit is low that indicates a WRITE operation, if it&amp;#039;s high that indicates a READ operation.&lt;br /&gt;
&lt;br /&gt;
Later an optional 10bit slave addressing scheme was added.&lt;br /&gt;
&lt;br /&gt;
== Decoder ==&lt;br /&gt;
&lt;br /&gt;
[http://www.eevblog.com/forum/testgear/ds1000z-series-serial-decode/msg536854/#msg536854 EEVblog forum post] showing how to use the &amp;#039;&amp;#039;&amp;#039;i2c&amp;#039;&amp;#039;&amp;#039; decoder, among other things (like reading the input from a CSV file, stacking decoders, binary output).&lt;br /&gt;
&lt;br /&gt;
Another example of i2c decoder usage with sigrok-cli is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ sigrok-cli -P i2c:scl=D1:sda=D0:address_format=unshifted -i trace.sr -A i2c=address-read:address-write:data-read:data-write&lt;br /&gt;
i2c-1: Write&lt;br /&gt;
i2c-1: Address write: A0&lt;br /&gt;
i2c-1: Data write: 01&lt;br /&gt;
i2c-1: Data write: 50&lt;br /&gt;
i2c-1: Read&lt;br /&gt;
i2c-1: Address read: A1&lt;br /&gt;
i2c-1: Data read: FF&lt;br /&gt;
i2c-1: Data read: 11&lt;br /&gt;
i2c-1: Data read: 22&lt;br /&gt;
i2c-1: Data read: 33&lt;br /&gt;
i2c-1: Data read: 44&lt;br /&gt;
i2c-1: Data read: 55&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
* [https://en.wikipedia.org/wiki/I%C2%B2C Wikipedia: I²C]&lt;br /&gt;
* [http://www.nxp.com/documents/other/UM10204_v5.pdf NXP: I2C-bus specification and user manual] (v5)&lt;br /&gt;
&lt;br /&gt;
__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
[[Category:Protocol decoder]]&lt;/div&gt;</summary>
		<author><name>Ipolit</name></author>
	</entry>
	<entry>
		<id>https://sigrok.org/w/index.php?title=LeCroy_oscilloscope_series&amp;diff=12788</id>
		<title>LeCroy oscilloscope series</title>
		<link rel="alternate" type="text/html" href="https://sigrok.org/w/index.php?title=LeCroy_oscilloscope_series&amp;diff=12788"/>
		<updated>2017-10-03T06:09:32Z</updated>

		<summary type="html">&lt;p&gt;Ipolit: /* Devices */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox oscilloscope&lt;br /&gt;
| image               = [[File:LeCroy_WaveSurfer_24Xs-A_front.png|180px]]&lt;br /&gt;
| name                = LeCroy oscilloscope series&lt;br /&gt;
| status              = supported&lt;br /&gt;
| source_code_dir     = lecroy-xstream&lt;br /&gt;
| website             = [http://teledynelecroy.com/oscilloscope/ Teledyne LeCroy]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
LeCroy sells everything from entry-level to very high-end oscilloscopes, making use of own designs as well as contract manufacturers such as Iwatsu and Siglent. One feature that&amp;#039;s common to all of those models is the support for LeCroy&amp;#039;s waveform template, a data format used to retrieve waveform data using GPIB/SCPI commands. For this reason, this page isn&amp;#039;t about a single oscilloscope in particular but all scopes belonging to the X-Stream family.&lt;br /&gt;
&lt;br /&gt;
== Devices ==&lt;br /&gt;
&lt;br /&gt;
Virtually all devices listed on http://teledynelecroy.com/oscilloscope/ should work (except for the 8-channel, 10-bit and 12-bit models).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Family || Manufacturer || OS || Bandwidth || Connectivity || Tested?&lt;br /&gt;
|-&lt;br /&gt;
|| WaveAce 1000 || Atten || ? || 40 - 100 MHz || USB || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveAce 2000 || Siglent || ? || 70 - 300 MHz || USB || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveJet 300 || Iwatsu || ? || 350 - 500 MHz || USB || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveSurfer 10 || ? || Windows || 1 GHz || LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveSurfer 400 || Iwatsu || Windows || 200 - 500 MHz || LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveSurfer 3000 || Siglent || Windows Embedded || 200 - 750 MHz || USB, LAN, GPIB || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveSurfer (M)Xs || Iwatsu || Windows XP || 200 MHz - 1 GHz || LAN || Yes&lt;br /&gt;
|-&lt;br /&gt;
|| WaveRunner 6 Zi || ? || Windows 7 || 400 MHz - 4 GHz || USB, LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveRunner 6000 || Iwatsu || Windows 2000 || 350 MHz - 2 GHz || LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveRunner 8000 || ? || Windows || 500 MHz - 4 GHz || LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveRunner (M)Xi || Iwatsu || Windows XP || 400 MHz - 2 GHz || LAN || Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The digital channels aren&amp;#039;t supported yet.&lt;br /&gt;
&lt;br /&gt;
== Protocol ==&lt;br /&gt;
&lt;br /&gt;
The protocol is based on SCPI commands and there is a USB-GPIB converter available which you can use on all Windows-based models.&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
* [http://teledynelecroy.com/doc/docview.aspx?id=9905 WaveSurfer 3000 family remote control manual]&lt;br /&gt;
* [http://cdn.teledynelecroy.com/files/manuals/wa1k2k_remote-control_manual.pdf WaveAce family remote control manual]&lt;br /&gt;
&lt;br /&gt;
[[Category:Device]]&lt;br /&gt;
[[Category:Oscilloscope]]&lt;br /&gt;
[[Category:Mixed-signal oscilloscope]]&lt;br /&gt;
[[Category:Supported]]&lt;/div&gt;</summary>
		<author><name>Ipolit</name></author>
	</entry>
	<entry>
		<id>https://sigrok.org/w/index.php?title=LeCroy_oscilloscope_series&amp;diff=12777</id>
		<title>LeCroy oscilloscope series</title>
		<link rel="alternate" type="text/html" href="https://sigrok.org/w/index.php?title=LeCroy_oscilloscope_series&amp;diff=12777"/>
		<updated>2017-09-29T10:01:58Z</updated>

		<summary type="html">&lt;p&gt;Ipolit: /* Devices */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox oscilloscope&lt;br /&gt;
| image               = [[File:LeCroy_WaveSurfer_24Xs-A_front.png|180px]]&lt;br /&gt;
| name                = LeCroy oscilloscope series&lt;br /&gt;
| status              = supported&lt;br /&gt;
| source_code_dir     = lecroy-xstream&lt;br /&gt;
| website             = [http://teledynelecroy.com/oscilloscope/ Teledyne LeCroy]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
LeCroy sells everything from entry-level to very high-end oscilloscopes, making use of own designs as well as contract manufacturers such as Iwatsu and Siglent. One feature that&amp;#039;s common to all of those models is the support for LeCroy&amp;#039;s waveform template, a data format used to retrieve waveform data using GPIB/SCPI commands. For this reason, this page isn&amp;#039;t about a single oscilloscope in particular but all scopes belonging to the X-Stream family.&lt;br /&gt;
&lt;br /&gt;
== Devices ==&lt;br /&gt;
&lt;br /&gt;
Virtually all devices listed on http://teledynelecroy.com/oscilloscope/ should work (except for the 8-channel, 10-bit and 12-bit models).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Family || Manufacturer || OS || Bandwidth || Connectivity || Tested?&lt;br /&gt;
|-&lt;br /&gt;
|| WaveAce 1000 || Atten || ? || 40 - 100 MHz || USB || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveAce 2000 || Siglent || ? || 70 - 300 MHz || USB || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveJet 300 || Iwatsu || ? || 350 - 500 MHz || USB || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveSurfer 10 || ? || Windows || 1 GHz || LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveSurfer 400 || Iwatsu || Windows || 200 - 500 MHz || LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveSurfer 3000 || Siglent || Windows Embedded || 200 - 750 MHz || USB, LAN, GPIB || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveSurfer (M)Xs || Iwatsu || Windows XP || 200 MHz - 1 GHz || LAN || Yes&lt;br /&gt;
|-&lt;br /&gt;
|| WaveRunner 6 Zi || ? || Windows || 400 MHz - 4 GHz || USB, LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveRunner 6000 || Iwatsu || Windows 2000 || 350 MHz - 2 GHz || LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveRunner 8000 || ? || Windows || 500 MHz - 4 GHz || LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveRunner (M)Xi || Iwatsu || Windows XP || 400 MHz - 2 GHz || LAN || Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The digital channels aren&amp;#039;t supported yet.&lt;br /&gt;
&lt;br /&gt;
== Protocol ==&lt;br /&gt;
&lt;br /&gt;
The protocol is based on SCPI commands and there is a USB-GPIB converter available which you can use on all Windows-based models.&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
* [http://teledynelecroy.com/doc/docview.aspx?id=9905 WaveSurfer 3000 family remote control manual]&lt;br /&gt;
* [http://cdn.teledynelecroy.com/files/manuals/wa1k2k_remote-control_manual.pdf WaveAce family remote control manual]&lt;br /&gt;
&lt;br /&gt;
[[Category:Device]]&lt;br /&gt;
[[Category:Oscilloscope]]&lt;br /&gt;
[[Category:Mixed-signal oscilloscope]]&lt;br /&gt;
[[Category:Supported]]&lt;/div&gt;</summary>
		<author><name>Ipolit</name></author>
	</entry>
	<entry>
		<id>https://sigrok.org/w/index.php?title=LeCroy_oscilloscope_series&amp;diff=12776</id>
		<title>LeCroy oscilloscope series</title>
		<link rel="alternate" type="text/html" href="https://sigrok.org/w/index.php?title=LeCroy_oscilloscope_series&amp;diff=12776"/>
		<updated>2017-09-29T06:12:04Z</updated>

		<summary type="html">&lt;p&gt;Ipolit: /* Protocol */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox oscilloscope&lt;br /&gt;
| image               = [[File:LeCroy_WaveSurfer_24Xs-A_front.png|180px]]&lt;br /&gt;
| name                = LeCroy oscilloscope series&lt;br /&gt;
| status              = supported&lt;br /&gt;
| source_code_dir     = lecroy-xstream&lt;br /&gt;
| website             = [http://teledynelecroy.com/oscilloscope/ Teledyne LeCroy]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
LeCroy sells everything from entry-level to very high-end oscilloscopes, making use of own designs as well as contract manufacturers such as Iwatsu and Siglent. One feature that&amp;#039;s common to all of those models is the support for LeCroy&amp;#039;s waveform template, a data format used to retrieve waveform data using GPIB/SCPI commands. For this reason, this page isn&amp;#039;t about a single oscilloscope in particular but all scopes belonging to the X-Stream family.&lt;br /&gt;
&lt;br /&gt;
== Devices ==&lt;br /&gt;
&lt;br /&gt;
Virtually all devices listed on http://teledynelecroy.com/oscilloscope/ should work (except for the 8-channel, 10-bit and 12-bit models).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Family || Manufacturer || OS || Bandwidth || Connectivity || Tested?&lt;br /&gt;
|-&lt;br /&gt;
|| WaveAce 1000 || Atten || ? || 40 - 100 MHz || USB || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveAce 2000 || Siglent || ? || 70 - 300 MHz || USB || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveJet 300 || Iwatsu || ? || 350 - 500 MHz || USB || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveSurfer 10 || ? || Windows || 1 GHz || LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveSurfer 400 || Iwatsu || Windows || 200 - 500 MHz || LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveSurfer 3000 || Siglent || Windows Embedded || 200 - 750 MHz || USB, LAN, GPIB || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveSurfer (M)Xs || Iwatsu || Windows XP || 200 MHz - 1 GHz || LAN || Yes&lt;br /&gt;
|-&lt;br /&gt;
|| WaveRunner 6 Zi || ? || Windows || 400 MHz - 4 GHz || LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveRunner 6000 || Iwatsu || Windows 2000 || 350 MHz - 2 GHz || LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveRunner 8000 || ? || Windows || 500 MHz - 4 GHz || LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveRunner (M)Xi || Iwatsu || Windows XP || 400 MHz - 2 GHz || LAN || Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The digital channels aren&amp;#039;t supported yet.&lt;br /&gt;
&lt;br /&gt;
== Protocol ==&lt;br /&gt;
&lt;br /&gt;
The protocol is based on SCPI commands and there is a USB-GPIB converter available which you can use on all Windows-based models.&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
* [http://teledynelecroy.com/doc/docview.aspx?id=9905 WaveSurfer 3000 family remote control manual]&lt;br /&gt;
* [http://cdn.teledynelecroy.com/files/manuals/wa1k2k_remote-control_manual.pdf WaveAce family remote control manual]&lt;br /&gt;
&lt;br /&gt;
[[Category:Device]]&lt;br /&gt;
[[Category:Oscilloscope]]&lt;br /&gt;
[[Category:Mixed-signal oscilloscope]]&lt;br /&gt;
[[Category:Supported]]&lt;/div&gt;</summary>
		<author><name>Ipolit</name></author>
	</entry>
	<entry>
		<id>https://sigrok.org/w/index.php?title=LeCroy_oscilloscope_series&amp;diff=12769</id>
		<title>LeCroy oscilloscope series</title>
		<link rel="alternate" type="text/html" href="https://sigrok.org/w/index.php?title=LeCroy_oscilloscope_series&amp;diff=12769"/>
		<updated>2017-09-28T11:42:10Z</updated>

		<summary type="html">&lt;p&gt;Ipolit: /* Protocol */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox oscilloscope&lt;br /&gt;
| image               = [[File:LeCroy_WaveSurfer_24Xs-A_front.png|180px]]&lt;br /&gt;
| name                = LeCroy oscilloscope series&lt;br /&gt;
| status              = supported&lt;br /&gt;
| source_code_dir     = lecroy-xstream&lt;br /&gt;
| website             = [http://teledynelecroy.com/oscilloscope/ Teledyne LeCroy]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
LeCroy sells everything from entry-level to very high-end oscilloscopes, making use of own designs as well as contract manufacturers such as Iwatsu and Siglent. One feature that&amp;#039;s common to all of those models is the support for LeCroy&amp;#039;s waveform template, a data format used to retrieve waveform data using GPIB/SCPI commands. For this reason, this page isn&amp;#039;t about a single oscilloscope in particular but all scopes belonging to the X-Stream family.&lt;br /&gt;
&lt;br /&gt;
== Devices ==&lt;br /&gt;
&lt;br /&gt;
Virtually all devices listed on http://teledynelecroy.com/oscilloscope/ should work (except for the 8-channel, 10-bit and 12-bit models).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Family || Manufacturer || OS || Bandwidth || Connectivity || Tested?&lt;br /&gt;
|-&lt;br /&gt;
|| WaveAce 1000 || Atten || ? || 40 - 100 MHz || USB || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveAce 2000 || Siglent || ? || 70 - 300 MHz || USB || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveJet 300 || Iwatsu || ? || 350 - 500 MHz || USB || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveSurfer 10 || ? || Windows || 1 GHz || LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveSurfer 400 || Iwatsu || Windows || 200 - 500 MHz || LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveSurfer 3000 || Siglent || Windows Embedded || 200 - 750 MHz || USB, LAN, GPIB || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveSurfer (M)Xs || Iwatsu || Windows XP || 200 MHz - 1 GHz || LAN || Yes&lt;br /&gt;
|-&lt;br /&gt;
|| WaveRunner 6 Zi || ? || Windows || 400 MHz - 4 GHz || LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveRunner 6000 || Iwatsu || Windows 2000 || 350 MHz - 2 GHz || LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveRunner 8000 || ? || Windows || 500 MHz - 4 GHz || LAN || No&lt;br /&gt;
|-&lt;br /&gt;
|| WaveRunner (M)Xi || Iwatsu || Windows XP || 400 MHz - 2 GHz || LAN || Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The digital channels aren&amp;#039;t supported yet.&lt;br /&gt;
&lt;br /&gt;
== Protocol ==&lt;br /&gt;
&lt;br /&gt;
The protocol is based on SCPI commands and there is a USB-GPIB converter available which you can use on all Windows-based models. To allow communicating properly the parameter &amp;#039;&amp;#039;&amp;#039;COMM_HEADER&amp;#039;&amp;#039;&amp;#039; has to be turn &amp;#039;&amp;#039;&amp;#039;OFF&amp;#039;&amp;#039;&amp;#039;. Otherwise, the device will echo the command and won&amp;#039;t allow to be recognized.&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
* [http://teledynelecroy.com/doc/docview.aspx?id=9905 WaveSurfer 3000 family remote control manual]&lt;br /&gt;
* [http://cdn.teledynelecroy.com/files/manuals/wa1k2k_remote-control_manual.pdf WaveAce family remote control manual]&lt;br /&gt;
&lt;br /&gt;
[[Category:Device]]&lt;br /&gt;
[[Category:Oscilloscope]]&lt;br /&gt;
[[Category:Mixed-signal oscilloscope]]&lt;br /&gt;
[[Category:Supported]]&lt;/div&gt;</summary>
		<author><name>Ipolit</name></author>
	</entry>
</feed>