[docs]classKeysightB1530A(KeysightB1500Module):""" Driver for Keysight B1530A Waveform Generator/Fast Measurement Unit module for B1500 Semiconductor Parameter Analyzer. Warning: At the moment this driver implements no functionality of the module. Args: parent: mainframe B1500 instance that this module belongs to name: Name of the instrument instance to create. If `None` (Default), then the name is autogenerated from the instrument class. slot_nr: Slot number of this module (not channel number) """MODULE_KIND=ModuleKind.WGFMUdef__init__(self,parent:"KeysightB1500",name:str|None,slot_nr:int,**kwargs:"Unpack[InstrumentBaseKWArgs]",):super().__init__(parent,name,slot_nr,**kwargs)self.channels=(ChNr(slot_nr),ChNr(int(f"{slot_nr:d}02")))
B1530A=KeysightB1530A"""Alias for backwards compatibility"""