Загрузить

Загрузить руководства, технические описания, программное обеспечение и т. д.:

ТИП ЗАГРУЗКИ
МОДЕЛЬ ИЛИ КЛЮЧЕВОЕ СЛОВО

Обратная связь

High-Speed Data Transfer from Scope to PC

TekHSI™ technology is a proprietary, gRPC-based interface that delivers low-latency, high-throughput data transfer between supported Tektronix oscilloscopes and your host system. Perfect for real-time signal capture and large datasets, TekHSI technology ensures fast, reliable transmission with acquisition-synchronized data.

Key Benefits:

  • Low-latency communication for real-time analysis
  • High-speed transfer of large amounts of data
  • Consistent, synchronized data sets even during live acquisition
  • Ideal for signal processing, telecommunications, and automated testing

 See Faster Waveform Transfer Compared to Curve Query

Get Started with TekHSI technology

Supported Tektronix oscilloscopes come equipped with the proprietary TekHSI server, enabling fast, reliable communication with your host computer. Connect using any of our available TekHSI clients—Python Package, C# Package—or PC software like TekScope® PC and SignalVu-PC.

 Getting Started with TekHSI Technology

Automation of Tektronix oscilloscope data acquisition and post-processing

Your Hub for Test Automation Resources

  • Jump start with step-by-step guides for automation with Python, TSP, and more.
  • Boost efficiency with tm_devices and TekHSI™ packages for Python.
  • Find programmer manuals, drivers, and example code.

 Discover dev.tek.com

Internal Benchmarks Show 5X Faster Data Transfer with TekHSI Technology

TekHSI drastically improves your test and measurement data transfer experience. At 1M sample rate, compared to CURVE acquisitions per minute is four times faster with TekScope PC and five times faster with TekHSI Python drivers. The GUI-based remote analysis tool TekScope PC favors higher cpu core and thread counts for performance.

 Compare TekHSI to SCPI/VISA-based Curve and CurveStream

Install TekHSI Package for Python

Leverage our Python Library to easily integrate TekHSI Technology into your automation projects for faster data transfer.

Download TekHSI

Installing TekHSI:

          
# install tekhsi
pip install tekhsi

Connect to scope and save acquisition data to CSV:


from tm_data_types import AnalogWaveform, write_file
from tekhsi import TekHSIConnect

addr = "192.168.0.1"  # Replace with the IP address of your instrument

# Connect to instrument, select channel 1
with TekHSIConnect(f"{addr}:5000", ["ch1"]) as connect:
    # Save data from 10 acquisitions as a set of CSV files
    for i in range(10):
        with connect.access_data():
            wfm: AnalogWaveform = connect.get_data("ch1")

        # Save the waveform to a file
        write_file(f"{wfm.source_name}_{i}.csv", wfm)
python, oscilloscope, and SMU

Supported Products

4 Series MSO Mixed Signal oscilloscope

Осциллограф смешанных сигналов MSO Серии 4

MSO Серии 4 — это осциллограф смешанных сигналов с полосой пропускания до 1,5 ГГц, сенсорным экраном высокой чёткости, цифровыми входами, а также функциями декодирования сигналов последовательных шин, анализа частотных характеристик сигналов и анализа источников питания

6 Series low profile digitizer

Низкопрофильный дигитайзер Серии 6

  • 4 аналоговых/спектральных канала
  • Частота дискретизации 25 Гвыб/с
  • Полоса пропускания от 1 ГГц до 8 ГГц (с возможностью расширения)
  • Аппаратный цифровой понижающий преобразователь РЧ-сигналов с полосой захвата до 2 GHz (опция)
  • Встроенная закрытая ОС или ОС Windows 10
  • Длина записи до 1 Gpts
6 Series B MSO Mixed Signal oscilloscope

Осциллограф смешанных сигналов MSO Серии 6 B

Прибор с широкой полосой пропускания — от 1 ГГц до 10 ГГц — может обеспечить диагностику и проверку высокоскоростных устройств.

5 series B MSO - MSO58B

Осциллограф смешанных сигналов Серии 5 B MSO

MSO Серии 5 — это осциллограф смешанных сигналов с сенсорным дисплеем высокого разрешения, числом входов до 8, 12-битными аналого-цифровыми преобразователями и полосой пропускания до 2 ГГц.

5 Series MSO Mixed Signal oscilloscope low profile oscilloscope

Низкопрофильный осциллограф MSO Серии 5

  • 8 аналоговых/спектральных каналов или 64 цифровых канала
  • Частота дискретизации 6,25 Гвыб/с
  • Полоса пропускания 1 ГГц
  • Только встроенная закрытая ОС
  • Поддержка пробников
  • Входное сопротивление 50 Ом и 1 МОм
7 Series DPO oscilloscope

7 Series DPO Digital Phosphor Oscilloscope

Unparalleled signal fidelity, high ENOB, low noise, low jitter and fast measurement throughout.  Bandwidth ranges from 8 GHz to 25 GHz with sample rate of 125 GS/s.
Image of Tekronix TekScope software on a laptop showing varius signal inputs.

Программное обеспечение TekScope PC для анализа сигналов с осциллографов

Функции анализа, доступные в самых лучших осциллографах, можно реализовать на обычном ПК. При этом сигналы можно анализировать в любом месте в любое время.

SignalVu VSA для осциллографов

Благодаря ПО SignalVu VSA вы сможете дополнить свой осциллограф функциями радиочастотного и векторного анализа.

Resources

Product Demo

What is HSI?

Watch this demo video to learn how Tektronix High Speed Interface (HSI) can boost performance speed to be much faster …
Product Demo

Leveraging HSI with Python

This video discusses the new Tektronix Python libraries - TekHSI and tm_data_types, how to install the new TekHSI Python …