Skip to content

Commit

Permalink
Merge pull request #159 from chscr/softtrig3000a
Browse files Browse the repository at this point in the history
Expose software trigger for signal generator in ps3000a
  • Loading branch information
hmaarrfk authored Apr 14, 2020
2 parents 372308d + 3df9d23 commit 87a247e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions picoscope/ps3000a.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,3 +461,9 @@ def _lowLevelChangePowerSource(self, powerstate):
c_int16(self.handle),
c_enum(powerstate))
self.checkResult(m)

def _lowLevelSigGenSoftwareControl(self, triggerType):
m = self.lib.ps3000aSigGenSoftwareControl(
c_int16(self.handle),
c_enum(triggerType))
self.checkResult(m)

0 comments on commit 87a247e

Please sign in to comment.