Merge pull request #127 from naweiss/fix/oscilloscope

Fix Oscilloscope
This commit is contained in:
David Montero Crespo 2026-05-02 19:15:34 -03:00 committed by GitHub
commit 81f3563b9f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -1209,7 +1209,7 @@ export const useSimulatorStore = create<SimulatorState>((set, get) => {
);
return { boards, serialBaudRate: baud };
}),
getOscilloscopeCallback(),
getOscilloscopeCallback(boardId),
);
simulatorMap.set(boardId, sim);
@ -1289,7 +1289,7 @@ export const useSimulatorStore = create<SimulatorState>((set, get) => {
);
return { boards, serialBaudRate: baud };
}),
getOscilloscopeCallback(),
getOscilloscopeCallback(boardId),
);
simulatorMap.set(boardId, sim);
set({ simulator: sim, serialOutput: '', serialBaudRate: 0 });