Skip to content

Commit

Permalink
fix (waveform): Increase square frequency limit to 10MHz
Browse files Browse the repository at this point in the history
  • Loading branch information
cynthi8 authored and orangecms committed Apr 10, 2021
1 parent d858cde commit 832580a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screen/WaveGenerator/components/DigitalController.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ class DigitalController extends Component {
const getMaxSliderValue = () => {
switch (activeSetting) {
case 'Freq':
return 5000;
return 1e7;
case 'Phase':
// the maximum angle is 360
return 360;
Expand Down

0 comments on commit 832580a

Please sign in to comment.