We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
APIs with the Query function missing for the following list of PI commands.
Models affected: MSO 2|4|5|6 series Oscilloscopes.
Models affected: DPO/MSO/DSA 70K SX/DX/C series Oscilloscopes.
Models affected: TekScopePC Oscilloscope.
Create a driver object named "scope" for any of the affected models.
Use the "scope" driver object to query the above-mentioned APIs. Examples:
scope.commands.search.search[1].trigger.a.state.query()
scope.commands.math.math[1].function.query()
Error message: The object has no attribute 'query'.
Operating System:
Software Version:
Alternative way to make the query is as follows:
Examples:
scope.query("ZOOm:MODe?") scope.query("DISplay:GLObal:B<x>:STATE?")
The text was updated successfully, but these errors were encountered:
The stroked-out APIs for MSO 2,4|5|6 models are available in the latest package upon merging #142.
Sorry, something went wrong.
No branches or pull requests
Description of the bug
APIs with the Query function missing for the following list of PI commands.
Models affected: MSO 2|4|5|6 series Oscilloscopes.
scope.commands.search.search[x].trigger.a.bus.arinc429a.label.value.query()SEARCH:SEARCH:TRIGger:A:BUS:ARINC429A:LABel:VALue?scope.commands.search.search[x].trigger.a.bus.usb.data.qualifier.query()SEARCH:SEARCH:TRIGger:A:BUS:USB:DATa:QUALifier?scope.commands.search.search[x].trigger.a.window.crossing.query()SEARCH:SEARCH:TRIGger:A:WINdow:CROSSIng?scope.commands.plot.plot[1].label.font.size.query()PLOT:PLOT:LABel:FONT:SIZE?scope.commands.bus.b[1].mil1553b.threshold.query()BUS:B:MIL1553B:THRESHold?scope.commands.bus.b[1].mdio.clock.threshold.query()BUS:B:MDIO:CLOCk:THReshold?scope.commands.ref.ref[x].deskew.query()REF:REF:DESKew?scope.commands.ref.ref[x].label.color.query()REF:REF:LABel:COLor?scope.commands.ref.ref[x].label.font.bold.query()REF:REF:LABel:FONT:BOLD?scope.commands.ref.ref[x].label.font.italic.query()REF:REF:LABel:FONT:ITALic?scope.commands.ref.ref[x].label.font.size.query()REF:REF:LABel:FONT:SIZE?scope.commands.ref.ref[x].label.font.type.query()REF:REF:LABel:FONT:TYPE?scope.commands.ref.ref[x].label.font.underline.query()REF:REF:LABel:FONT:UNDERline?scope.commands.ref.ref[x].source.query()REF:REF:SOUrce?scope.commands.ch[x].label.color.query()CH:LABel:COLor?scope.commands.ch[x].label.font.bold.query()CH:LABel:FONT:BOLD?scope.commands.ch[x].label.font.italic.query()CH:LABel:FONT:ITALic?scope.commands.ch[x].label.font.size.query()CH:LABel:FONT:SIZE?scope.commands.ch[x].label.font.type.query()CH:LABel:FONT:TYPE?scope.commands.ch[x].label.font.underline.query()CH:LABel:FONT:UNDERline?scope.commands.ch[x].ditherrange.query()CH:DITHERrange?scope.commands.ch[x].scale.query()CH:SCAle?scope.commands.ch[x].position.query()CH:POSition?scope.commands.saveonevent.filedest.query()SAVEONEVent:FILEDest?scope.commands.trigger.a.bus.b[x].sent.slow.identifier.value.query()TRIGger:A:BUS:B:SENT:SLOW:IDentifier:VALue?scope.commands.math.math[x].function.query()MATH:MATH:FUNCtion?scope.commands.math.math[x].label.color.query()MATH:MATH:LABel:COLor?scope.commands.math.math[x].label.font.bold.query()MATH:MATH:LABel:FONT:BOLD?scope.commands.math.math[x].label.font.italic.query()MATH:MATH:LABel:FONT:ITALic?scope.commands.math.math[x].label.font.size.query()MATH:MATH:LABel:FONT:SIZE?scope.commands.math.math[x].label.font.type.query()MATH:MATH:LABel:FONT:TYPE?scope.commands.math.math[x].label.font.underline.query()MATH:MATH:LABel:FONT:UNDERline?scope.commands.math.math[x].source.query()MATH:MATH:SOUrce1?scope.commands.bus.b[x].parallel.bitsource[x].threshold.query()BUS:B:PARallel:BITSOUrce:THReshold?scope.commands.display.plotview[x].xaxis.scale.query()DISplay:PLOTVIEW:XAXIS:SCALE?scope.commands.display.plotview[x].yaxis.scale.query()DISplay:PLOTVIEW:YAXIS:SCALE?scope.commands.display.global_.b[x].state.query()DISplay:GLObal:B:STATE?scope.commands.display.global_.ch[x].state.query()DISplay:GLObal:CH:STATE?scope.commands.display.global_.math[x].state.query()DISplay:GLObal:MATH:STATE?scope.commands.display.global_.ref[x].state.query()DISplay:GLObal:REF:STATE?scope.commands.display.mathfftview.math.math[x].state.query()DISplay:MATHFFTView1:MATH:MATH:STATE?scope.commands.display.select.reference.query()DISplay:SELect:REFerence?scope.commands.display.select.source.query()DISplay:SELect:SOUrce?scope.commands.display.select.view.query()DISplay:SELect:VIEW?scope.commands.display.select.waveview.source.query()DISplay:SELect:WAVEView1:SOUrce?scope.commands.display.mathfftview.zoom.xaxis.to.query()DISplay:MATHFFTView1:ZOOM:XAXIS:TO?Models affected: DPO/MSO/DSA 70K SX/DX/C series Oscilloscopes.
Models affected: TekScopePC Oscilloscope.
Steps To Reproduce
Create a driver object named "scope" for any of the affected models.
Use the "scope" driver object to query the above-mentioned APIs.
Examples:
Error message: The object has no attribute 'query'.
Environment Information
Operating System:
Software Version:
Additional Information
Alternative way to make the query is as follows:
Examples:
The text was updated successfully, but these errors were encountered: