README 1.7 KB

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