Skip to content

Commit

Permalink
RTL-SDR: fixed frequency range max control
Browse files Browse the repository at this point in the history
  • Loading branch information
f4exb committed Apr 30, 2019
1 parent 84f5313 commit b830b07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/device-details/rtlsdr/rtlsdr.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<app-frequency-dial
[frequency]="centerFreqKhz"
[min]="noModMode ? 0 : 24000"
[max]="lowSampleRate ? 275000 : 1900000"
[max]="noModMode ? 275000 : 1900000"
tooltip="Center frequency"
[steps]="frequencySteps"
(frequencyChanged)="onFrequencyUpdate($event)">
Expand Down

0 comments on commit b830b07

Please sign in to comment.