Skip to content
This repository was archived by the owner on Jan 5, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dahlend/TekAwg
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: qutech/TekAwg
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 13 commits
  • 7 files changed
  • 2 contributors

Commits on Jun 11, 2018

  1. Use setuptools

    shumpohl committed Jun 11, 2018
    Copy the full SHA
    df0cbb8 View commit details
  2. WIP

    shumpohl committed Jun 11, 2018
    Copy the full SHA
    23c918d View commit details

Commits on Jul 4, 2018

  1. Working version:

    - drop socket for pyvisa
    - Put binary waveform handling in class
    - use pyvisa write and query methods
    
    Missing:
    Some unification
    shumpohl committed Jul 4, 2018
    Copy the full SHA
    fb1e5e5 View commit details

Commits on Jul 5, 2018

  1. Copy the full SHA
    1cf6a5b View commit details

Commits on Aug 10, 2018

  1. Copy the full SHA
    d50e7fe View commit details

Commits on May 26, 2019

  1. Rename to tek_awg

    shumpohl committed May 26, 2019
    Copy the full SHA
    04cb73a View commit details
  2. Copy the full SHA
    f54ccac View commit details
  3. Prepare release on PyPi

    shumpohl committed May 26, 2019
    Copy the full SHA
    98e61d9 View commit details
  4. Merge pull request #1 from qutech-lab/master

    Prepare release under new name tek_awg
    Simon Humpohl authored May 26, 2019
    Copy the full SHA
    a8b95fa View commit details
  5. Copy the full SHA
    6066427 View commit details
  6. Merge pull request #2 from qutech-lab/master

    Push version and load it dynamically
    Simon Humpohl authored May 26, 2019
    Copy the full SHA
    5876f6c View commit details

Commits on May 31, 2019

  1. Copy the full SHA
    3dcb6a0 View commit details
  2. Merge pull request #3 from qutech-lab/master

    Fix bug in sequence entry comparison and push version
    Simon Humpohl authored May 31, 2019
    Copy the full SHA
    fc64a60 View commit details
Showing with 1,066 additions and 888 deletions.
  1. +7 −0 CHANGES
  2. +2 −0 MANIFEST.in
  3. +7 −1 README.md
  4. +0 −877 TekAwg.py
  5. 0 __init__.py
  6. +37 −10 setup.py
  7. +1,013 −0 tek_awg.py
7 changes: 7 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Changelog for tek_awg
=====================

0.2.1
-----

- Fix bug in sequence entry comparison
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include CHANGES
include LICENSE
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
# TekAwg
# TekAwg

Python driver for Tektronix AWG 5000/7000 series.

This fork uses `pyvisa` for communication.

Forked from https://github.com/dahlend/TekAwg/
Loading