You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,7 @@ All notable changes to this project will be documented in this file.
43
43
*### `nidcpower` (NI-DCPower)
44
44
*#### Added
45
45
*#### Changed
46
+
* Fix [#1664](https://github.com/ni/nimi-python/issues/1970): nidcpower_advanced_sequence.py has several issues preventing it from working out of the box on real hardware.
parser=argparse.ArgumentParser(description='Output ramping voltage to voltage max, then ramping current to current max.', formatter_class=argparse.ArgumentDefaultsHelpFormatter)
52
54
parser.add_argument('-n', '--resource-name', default='PXI1Slot2/0, PXI1Slot3/0-1', help='Resource names of NI SMUs.')
53
-
parser.add_argument('-s', '--number-steps', default=256, help='Number of steps per output function')
55
+
parser.add_argument('-s', '--number-steps', default=256, type=int, help='Number of steps per output function')
54
56
parser.add_argument('-v', '--voltage-max', default=1.0, type=float, help='Maximum voltage (V)')
55
57
parser.add_argument('-i', '--current-max', default=0.001, type=float, help='Maximum Current (I)')
0 commit comments