Skip to content

Commit 3f13e90

Browse files
authored
Merge pull request #200 from csi-bbio/bugfix/PicoScope_5444D_lowLevelSigGenSoftwareControl_function_missing
Bugfix/PicoScope 5444D _lowLevelSigGenSoftwareControl function missing
2 parents e71dee8 + 6e4a2de commit 3f13e90

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

picoscope/ps5000a.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -494,6 +494,12 @@ def _lowLevelSetSigGenBuiltInSimple(self, offsetVoltage, pkToPk, waveType,
494494
c_int16(0))
495495
self.checkResult(m)
496496

497+
def _lowLevelSigGenSoftwareControl(self, state):
498+
m = self.lib.ps5000aSigGenSoftwareControl(
499+
c_int16(self.handle),
500+
c_int16(state))
501+
self.checkResult(m)
502+
497503
def _lowLevelSetDeviceResolution(self, resolution):
498504
self.resolution = resolution
499505
m = self.lib.ps5000aSetDeviceResolution(

0 commit comments

Comments
 (0)