We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 169a9f3 commit 14e9603Copy full SHA for 14e9603
2 files changed
ats-mini/Menu.cpp
@@ -680,6 +680,10 @@ bool tuneToMemory(const Memory *memory)
680
// Save current band settings
681
bands[bandIdx].currentFreq = currentFrequency + currentBFO / 1000;
682
683
+ // Use default step when changing modes
684
+ if(bands[memory->band].bandMode != memory->mode)
685
+ bands[memory->band].currentStepIdx = defaultStepIdx[memory->mode];
686
+
687
// Load frequency and modulation from memory slot
688
bands[memory->band].currentFreq = freq;
689
bands[memory->band].bandMode = memory->mode;
changelog/+step.fixed.md
@@ -1 +1 @@
1
-Use default step when switching modes.
+Use default step when switching modes or memories.
0 commit comments