Anetwork
SCPI Commands :
[SOURce<HW>]:BB:EVDO:ANETwork:CPMode
[SOURce<HW>]:BB:EVDO:ANETwork:OUCount
[SOURce<HW>]:BB:EVDO:ANETwork:SUBType
- Commands in total: 14Subgroups: 3Direct child commands: 3
- get_cp_mode() bool[source]
# [SOURce<HW>]:BB:EVDO:ANETwork:CPMode value: bool = driver.source.bb.evdo.anetwork.get_cp_mode()
Enables or disables a special mode within the 1xEV-DO generator. Note: During the special mode, all other parameters do not affect the signal output.
- Returns:
cp_mode: 1 | ON | 0| OFF
- get_ou_count() int[source]
# [SOURce<HW>]:BB:EVDO:ANETwork:OUCount value: int = driver.source.bb.evdo.anetwork.get_ou_count()
Sets the number of additional users (beyond the four defined users) that appear in the MAC Channel.
- Returns:
ou_count: integer Range: 0 to 55 for physical layer subtype 0&1) , 0 to 110 for physical layer subtype 2, 0 to 360 for physical layer subtype 3
- get_sub_type() EvdoLayerDn[source]
# [SOURce<HW>]:BB:EVDO:ANETwork:SUBType value: enums.EvdoLayerDn = driver.source.bb.evdo.anetwork.get_sub_type()
Selects the physical layer subtype. Note: The physical layer subtype settings can be queried per user.
- Returns:
sub_type: S1 | S2 | S3
- set_cp_mode(cp_mode: bool) None[source]
# [SOURce<HW>]:BB:EVDO:ANETwork:CPMode driver.source.bb.evdo.anetwork.set_cp_mode(cp_mode = False)
Enables or disables a special mode within the 1xEV-DO generator. Note: During the special mode, all other parameters do not affect the signal output.
- Parameters:
cp_mode – 1 | ON | 0| OFF
- set_ou_count(ou_count: int) None[source]
# [SOURce<HW>]:BB:EVDO:ANETwork:OUCount driver.source.bb.evdo.anetwork.set_ou_count(ou_count = 1)
Sets the number of additional users (beyond the four defined users) that appear in the MAC Channel.
- Parameters:
ou_count – integer Range: 0 to 55 for physical layer subtype 0&1) , 0 to 110 for physical layer subtype 2, 0 to 360 for physical layer subtype 3
- set_sub_type(sub_type: EvdoLayerDn) None[source]
# [SOURce<HW>]:BB:EVDO:ANETwork:SUBType driver.source.bb.evdo.anetwork.set_sub_type(sub_type = enums.EvdoLayerDn.S1)
Selects the physical layer subtype. Note: The physical layer subtype settings can be queried per user.
- Parameters:
sub_type – S1 | S2 | S3
Cloning the Group
# Create a copy of the original group, that exists independently
anetwork_copy = driver.source.bb.evdo.anetwork.clone()
Subgroups