Lab Connections are here!

This commit is contained in:
Silas Labor Zizour
2024-09-26 14:50:25 +02:00
parent 9571f73b24
commit 8577f5f6f4
13 changed files with 1078 additions and 40 deletions

10
Datatypes/awg_model.m Normal file
View File

@@ -0,0 +1,10 @@
classdef awg_model < int32
enumeration
M8196A (1)
M8199A (2)
M8199A_ILV (3)
M8199B (4)
end
end

22
Datatypes/scope_fadc.m Normal file
View File

@@ -0,0 +1,22 @@
classdef scope_fadc < int32
enumeration
GSa_2_5 (2.5) %Gigasamples
GSa_4 (4) %Gigasamples
GSa_5 (5) %Gigasamples
GSa_10 (10) %Gigasamples
GSa_20 (20)
GSa_40 (40)
GSa_80 (80)
GSa_160 (160)
GSa_256 (256)
end
methods
function val = getValue(obj)
val = double(obj); % Convert int32 to double to get the numeric value
end
end
end

9
Datatypes/scope_model.m Normal file
View File

@@ -0,0 +1,9 @@
classdef scope_model < int32
enumeration
DSAZ634A (1)
UXR1102A (2)
UXR1104A (3)
end
end