Skip to content

Commit

Permalink
Change lower limit of freq allowed to 1 MHz
Browse files Browse the repository at this point in the history
  • Loading branch information
nataliejpg committed Nov 1, 2016
1 parent fc47d1a commit e8190ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qcodes/instrument_drivers/rohde_schwarz/SGS100A.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(self, name, address, **kwargs):
get_cmd='SOUR:FREQ' + '?',
set_cmd='SOUR:FREQ' + ' {:.2f}',
get_parser=float,
vals=vals.Numbers(1e9, 20e9))
vals=vals.Numbers(1e6, 20e9))
self.add_parameter(name='phase',
label='Phase',
units='deg',
Expand Down

0 comments on commit e8190ec

Please sign in to comment.