Difference between revisions of "Hameg HMO2024"

From sigrok
Jump to navigation Jump to search
m
 
(3 intermediate revisions by 3 users not shown)
Line 4: Line 4:


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.
See [[Hameg HMO compact series]] for information common to all devices in this series.


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


TODO.
TODO.
Line 14: Line 18:
File:Hameg HMO2024.png|<small>Device, front</small>
File:Hameg HMO2024.png|<small>Device, front</small>
File:Hameg HMO2024 back.png|<small>Device, back</small>
File:Hameg HMO2024 back.png|<small>Device, back</small>
File:Hameg_HMO_USB-serial_module.jpg|<small>HO 720 serial communication option</small>
File:Hameg_HMO_USB-serial_module.jpg|<small>HO720 serial communication option</small>
File:Hameg HO3508 logic probe pod.jpg|<small>HO3508 logic probe pod</small>
File:Hameg HO3508 logic probe pod.jpg|<small>HO3508 logic probe pod</small>
File:Hameg HO3508 logic probe back.jpg|<small>HO3508 logic probe pod, back</small>
File:Hameg HO3508 logic probe back.jpg|<small>HO3508 logic probe pod, back</small>
Line 23: Line 27:


The Hameg HMO series of scopes use [[IEEE-488|SCPI]] as the communication protocol.
The Hameg HMO series of scopes use [[IEEE-488|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 [http://www.ftdichip.com/Drivers/VCP.htm FTDI VCP driver for OS X].
Then, follow the instructions [https://rowley.zendesk.com/entries/109069-getting-jtag-and-serial-port-to-work-under-mac-os-x-using-a-luminary-ftdi-target-interface here] and add the following section to the Info.plist:
<small>
<nowiki>
<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></nowiki></small>
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:
<small>
$ '''sigrok-cli --driver hameg-hmo:conn=/dev/cu.usbserial-xxxxyyyy --scan'''
</small>


== Resources ==
== Resources ==
Line 28: Line 66:
* [http://www.hameg.com/manuals.0.html?no_cache=1 Hameg - resource page]
* [http://www.hameg.com/manuals.0.html?no_cache=1 Hameg - resource page]
* [http://midas.herts.ac.uk/helpsheets/hameg_scpi_hmo72.pdf Hameg HMO - programming guide]
* [http://midas.herts.ac.uk/helpsheets/hameg_scpi_hmo72.pdf Hameg HMO - programming guide]
* [http://www.soselectronic.cz/a_info/resource/l/hameg/HAMEG_Addendum_HMO_EN%5B1%5D.pdf Hameg HMO compact series - datasheet]
* [http://www.ftdichip.com/Support/Documents/TechnicalNotes/TN_105%20Adding%20Support%20for%20New%20FTDI%20Devices%20to%20Mac%20Driver.pdf FTDI OS X Driver]
* [https://rowley.zendesk.com/entries/109069-getting-jtag-and-serial-port-to-work-under-mac-os-x-using-a-luminary-ftdi-target-interface Changing VID/PID in FTDIUSBSerialDriver.kext]


[[Category:Device]]
[[Category:Device]]

Latest revision as of 18:20, 21 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.

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

See Hameg HMO compact series for information common to all devices in this series.

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