Editing Instrument control package

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 70: Line 70:
To be able to use GPIB on windows, the linux-gpib library needs to be 'faked'. This can be done by copying the following script and run it in a bash-terminal.
To be able to use GPIB on windows, the linux-gpib library needs to be 'faked'. This can be done by copying the following script and run it in a bash-terminal.


<syntaxhighlight lang="bash">
<source lang="bash">
#!/bin/bash
#!/bin/bash
# fake_linux_gpib.sh, Kire Pûdsje, Dec 2017
# fake_linux_gpib.sh, Kire Pûdsje, Dec 2017
Line 106: Line 106:
#cleanup  
#cleanup  
rm -f ${NI_DEF_FILE}
rm -f ${NI_DEF_FILE}
</syntaxhighlight>
</source>


== MacOS ==
== MacOS ==
Line 509: Line 509:
instrhwinfo will display the avilable devices in the system
instrhwinfo will display the avilable devices in the system


{{Code|SPI example|<syntaxhighlight lang="octave" style="font-size:13px">
{{Code|GPIB example|<syntaxhighlight lang="octave" style="font-size:13px">
instrhwinfo("spi")
instrhwinfo("spi")
</syntaxhighlight>
}}
}}


Line 519: Line 518:
Example opening an performing IO on a device /dev/spidev0.0.
Example opening an performing IO on a device /dev/spidev0.0.
   
   
{{Code|SPI example|<syntaxhighlight lang="octave" style="font-size:13px">
{{Code|GPIB example|<syntaxhighlight lang="octave" style="font-size:13px">
# open device
# open device
spidev = spi("/dev/spidev0.0", 'clockpolarity', 'idlehigh', 'clockphase', 'firstedge')
spidev = spi("/dev/spidev0.0", 'clockpolarity', 'idlehigh', 'clockphase', 'firstedge')
Line 529: Line 528:
# close the device
# close the device
clear spidev
clear spidev
</syntaxhighlight>
 
}}
}}




[[Category:Octave Forge]][[Category:Packages]]
[[Category:Octave Forge]][[Category:Packages]]
Please note that all contributions to Octave may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see Octave:Copyrights for details). Do not submit copyrighted work without permission!

To edit this page, please answer the question that appears below (more info):

Cancel Editing help (opens in new window)

Template used on this page: