Difference between revisions of "Hameg HMO2024"

From sigrok
Jump to navigation Jump to search
m (link to HMO compact and probes and interfaces)
Line 1: Line 1:
[[File:Hameg HMO2024.png|thumb|right|Hameg HMO2024]]
[[File:Hameg HMO2024.png|thumb|right|Hameg HMO2024]]


The [http://webstore.rohde-schwarz.com/us/hamegr-hmo2024.html Hameg HMO2024] is a USB-/RS232-based, 4-channel oscilloscope with an analog bandwidth of 200MHz and 2GS/s sampling rate.
The [http://webstore.rohde-schwarz.com/us/hamegr-hmo2024.html Hameg HMO2024] is a USB-/RS232-based, 4-channel oscilloscope with an analog bandwidth of 200MHz and 2GS/s sampling rate. It's a member of the [[Hameg HMO compact series | HMO compact]] series.


See [[Hameg HMO2024/Info]] for more details (such as '''lsusb -v''' output) about the device.
See [[Hameg HMO2024/Info]] for more details (such as '''lsusb -v''' output) about the device.


== Hardware ==
== Hardware ==
See [[Hameg HO3508|HO3508]] for digital probes.
See [[Hameg HO720 | HO720]] or [[Hameg HO730 | HO730]] for communication interfaces.


TODO.
TODO.

Revision as of 19:14, 8 January 2017

Hameg HMO2024

The Hameg HMO2024 is a USB-/RS232-based, 4-channel oscilloscope with an analog bandwidth of 200MHz and 2GS/s sampling rate. It's a member of the HMO compact series.

See Hameg HMO2024/Info for more details (such as lsusb -v output) about the device.

Hardware

See HO3508 for digital probes.

See HO720 or HO730 for communication interfaces.

TODO.

Photos

Protocol

The Hameg HMO series of scopes use SCPI as the communication protocol.

USB connection on OS X

To talk to the device over USB on OS X you need to ensure the HO720 interface card of the scope enumerates as a serial port. This does not happen automatically as the device ID of the HO720 card is not registered in the list of 'known devices' of the OS X FTDI driver.

To ensure you can communicate to the device, first install the - FTDI VCP driver for OS X.

Then, follow the instructions here and add the following section to the Info.plist:

<key>HamegScope</key>
<dict>
	<key>CFBundleIdentifier</key>
	<string>com.FTDI.driver.FTDIUSBSerialDriver</string>
	<key>IOClass</key>
	<string>FTDIUSBSerialDriver</string>
	<key>IOProviderClass</key>
	<string>IOUSBInterface</string>
	<key>bConfigurationValue</key>
	<integer>1</integer>
	<key>bInterfaceNumber</key>
	<integer>0</integer>
	<key>idProduct</key>
	<integer>60786</integer>
	<key>idVendor</key>
	<integer>1027</integer>
</dict>

Connect the cable, power on the scope, ensure the USB interface is enabled under Setup > Interface on the device. A new serial device will be generated and you should be able to get the device info with:

$ sigrok-cli --driver hameg-hmo:conn=/dev/cu.usbserial-xxxxyyyy --scan

Resources