Instrument control package: Difference between revisions
Jump to navigation
Jump to search
→SPI
(→SPI) |
|||
Line 505: | Line 505: | ||
instrhwinfo will display the avilable devices in the system | instrhwinfo will display the avilable devices in the system | ||
{{Code| | {{Code|SPI example|<syntaxhighlight lang="octave" style="font-size:13px"> | ||
instrhwinfo("spi") | instrhwinfo("spi") | ||
</syntaxhighlight> | |||
}} | }} | ||
Line 514: | Line 515: | ||
Example opening an performing IO on a device /dev/spidev0.0. | Example opening an performing IO on a device /dev/spidev0.0. | ||
{{Code| | {{Code|SPI 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 524: | Line 525: | ||
# close the device | # close the device | ||
clear spidev | clear spidev | ||
</syntaxhighlight> | |||
}} | }} | ||
[[Category:Octave Forge]] | [[Category:Octave Forge]] |