README 970 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. ==================
  2. A groovy libmodbus
  3. ==================
  4. Presentation
  5. ============
  6. https://launchpad.net/libmodbus
  7. http://copyleft.free.fr/wordpress/index.php/libmodbus/
  8. libmodbus is a library to send/receive data with a device which
  9. respect the Modbus protocol. This library can use a serial port or an
  10. Ethernet connection.
  11. The functions included in the library have been derived from the
  12. Modicon Modbus Protocol Reference Guide which can be obtained from
  13. Schneider at www.schneiderautomation.com.
  14. Installation
  15. ============
  16. WARNING, don't use the two build systems at the same time.
  17. With autotools
  18. --------------
  19. The shell commands are './configure; make; make install'.
  20. With Waf
  21. --------
  22. The build system is Waf (http://code.google.com/p/waf), the shell commandes are:
  23. $ ./waf configure
  24. $ ./waf build
  25. $ sudo ./waf install
  26. or 'waf' if you use a global Waf script.
  27. The sources are built in the 'build' directory at the root of the
  28. project source files.