Skip to content

Commit

Permalink
Merge pull request #200 from csi-bbio/bugfix/PicoScope_5444D_lowLevel…
Browse files Browse the repository at this point in the history
…SigGenSoftwareControl_function_missing

Bugfix/PicoScope 5444D _lowLevelSigGenSoftwareControl function missing
  • Loading branch information
hmaarrfk committed Apr 23, 2024
2 parents e71dee8 + 6e4a2de commit 3f13e90
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions picoscope/ps5000a.py
Expand Up @@ -494,6 +494,12 @@ def _lowLevelSetSigGenBuiltInSimple(self, offsetVoltage, pkToPk, waveType,
c_int16(0))
self.checkResult(m)

def _lowLevelSigGenSoftwareControl(self, state):
m = self.lib.ps5000aSigGenSoftwareControl(
c_int16(self.handle),
c_int16(state))
self.checkResult(m)

def _lowLevelSetDeviceResolution(self, resolution):
self.resolution = resolution
m = self.lib.ps5000aSetDeviceResolution(
Expand Down

0 comments on commit 3f13e90

Please sign in to comment.