1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- LinuxGpib guile extension version 0.0.1
- =======================================
- The README is used to introduce the module and provide instructions on
- how to install the module, any machine dependencies it may have (for
- example C compilers and installed libraries) and any other information
- that should be provided before the module is installed.
- INSTALLATION
- To install this module type the following:
- $ make
- $ make install
- USAGE
- In order to use the module you need to ensure that the libgpib-guile
- library can be located by the dynamic loader (e.g. by setting
- LD_LIBRARY_PATH appropriately). Then type this:
- $ guile
- guile> (primitive-load "gpib.scm")
- guile> (gpib:init)
- guile> (gpib:open 0 13 0 11 1 (char->integer '\n'))
- .. etc. ...
- DEPENDENCIES
- This module requires these other modules and libraries:
- libgpib (tested with version 3.1.93)
- libguile (tested with version 1.4)
- COPYRIGHT AND LICENCE
- This file is part of LinuxGpib.
- LinuxGpib is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
- LinuxGpib is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with LinuxGpib; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- Copyright (C) 2003 Stefan Jahn <stefan@lkcc.org>
|