Tmc

SCPI Commands :

[SOURce<HW>]:BB:RADio:FM:RDS:TMC:READy
[SOURce<HW>]:BB:RADio:FM:RDS:TMC:[STATe]
class TmcCls[source]

Tmc commands group definition. 8 total commands, 3 Subgroups, 2 group commands

get_ready() bool[source]
# SCPI: [SOURce<HW>]:BB:RADio:FM:RDS:TMC:READy
value: bool = driver.source.bb.radio.fm.rds.tmc.get_ready()

No command help available

return:

tmc_ready: 1| ON| 0| OFF

get_state() bool[source]
# SCPI: [SOURce<HW>]:BB:RADio:FM:RDS:TMC:[STATe]
value: bool = driver.source.bb.radio.fm.rds.tmc.get_state()

Enables the traffic message channel.

return:

tmc_state: 1| ON| 0| OFF

set_state(tmc_state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:RADio:FM:RDS:TMC:[STATe]
driver.source.bb.radio.fm.rds.tmc.set_state(tmc_state = False)

Enables the traffic message channel.

param tmc_state:

1| ON| 0| OFF

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.radio.fm.rds.tmc.clone()

Subgroups