Sfunction

SCPI Command :

DIAGnostic:SERVice:SFUNction
class SfunctionCls[source]

Sfunction commands group definition. 4 total commands, 2 Subgroups, 1 group commands

get(service_function: str) str[source]
# SCPI: DIAGnostic:SERVice:SFUNction
value: str = driver.diagnostic.service.sfunction.get(service_function = 'abc')

This command starts a service function. The service functions are available after you have entered the level 1 or level 2 system password.

param service_function

String containing the ID of the service function. The ID of the service function is made up out of five numbers, separated by a point. - function group number - board number - function number - parameter 1 (see the Service Manual) - parameter 2 (see the Service Manual)

return

result: String containing the ID of the service function. The ID of the service function is made up out of five numbers, separated by a point. - function group number - board number - function number - parameter 1 (see the Service Manual) - parameter 2 (see the Service Manual)

set(service_function: str) None[source]
# SCPI: DIAGnostic:SERVice:SFUNction
driver.diagnostic.service.sfunction.set(service_function = 'abc')

This command starts a service function. The service functions are available after you have entered the level 1 or level 2 system password.

param service_function

String containing the ID of the service function. The ID of the service function is made up out of five numbers, separated by a point. - function group number - board number - function number - parameter 1 (see the Service Manual) - parameter 2 (see the Service Manual)

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.diagnostic.service.sfunction.clone()

Subgroups