Added bode plots to GUI.

This commit is contained in:
2025-10-07 10:18:04 +02:00
parent beefe733c0
commit e71b02477a
10 changed files with 331 additions and 49 deletions

View File

@@ -1,7 +1,8 @@
use crate::icd::IcdDftNum;
use crate::icd::{IcdDftNum, NumberOfPoints};
#[derive(Copy, Clone)]
pub enum SingleFrequencySignal {
Start(u32, IcdDftNum), // frequency in Hz, DFT number
pub enum StartStopSignal {
StartSingle(u32, IcdDftNum), // frequency in Hz, DFT number
StartMulti(IcdDftNum, NumberOfPoints), // DFT number, number of points per measurement
Stop,
}