I'm converting an old GPIB calibration script and am seeing periods in the oddest of places and cannot determine the reason. Can someone explain?
For ibcmd I can understand this...
ibcmd(GPIB0, "?U!", 3 (0x3))
ibwrt(GPIB0, "MEASU:MEAS1:V...", 17 (0x11))
ibcmd(GPIB0, "_?", 2 (0x2))
But what about this one?
ibcmd(GPIB0, "?_5.", 4 (0x4))
ibcmd(GPIB0, "A", 1 (0x1))
ibrd(GPIB0, "P", 1 (0x1))
ibcmd(GPIB0, "._?", 3 (0x3))
It appears to be only seen when working with the board.. the Multiline interface message ends with a period then the untalk unlisten calls begin with one.
What is the reason behind this additional period? I would think that it would overwrite MLA/MTA's in the same command.