Lab Connections are here!
This commit is contained in:
10
Datatypes/awg_model.m
Normal file
10
Datatypes/awg_model.m
Normal 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
22
Datatypes/scope_fadc.m
Normal 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
9
Datatypes/scope_model.m
Normal file
@@ -0,0 +1,9 @@
|
||||
classdef scope_model < int32
|
||||
|
||||
enumeration
|
||||
DSAZ634A (1)
|
||||
UXR1102A (2)
|
||||
UXR1104A (3)
|
||||
end
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user