NEWS 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. libmodbus 2.1.1 (2010-XX-XX)
  2. ============================
  3. - New API
  4. - Remove the internal function set_message_length_tcp
  5. - Restore slave ID (server ID) argument in functions
  6. - Error conventions of POSIX systems and error recover
  7. - Versioning infrastructure
  8. Inspired by the Clutter project and the work done by Florian Forster.
  9. - Fix the broadcast constant (255 -> 0)
  10. Reported by David Olivari.
  11. - Fix #463299 - New functions to define the timeouts of begin and end of trame
  12. Original patch by Sisyph (eric-paul).
  13. - Fix #591142 - Slave id check should be disabled in TCP connection
  14. Reported by aladdinwu.
  15. - Parity setting is now a single char ('N', 'E' or 'O')
  16. - Report slave ID server side
  17. - OpenBSD support by Anibal Limón.
  18. - New read and write registers function by Hannu Vuolasaho.
  19. libmodbus 2.1.0 (2010-03-24)
  20. ============================
  21. - New API to read and write float values by Stéphane Raimbault and Florian
  22. Forster.
  23. - New API for slave server (see MIGRATION)
  24. - New slave server able to handle multiple connections
  25. - Slave only replies to broadcast queries or queries with its slave ID
  26. - Improved Modbus protocol conformance
  27. - modbus_param_t is smaller (2 int removed)
  28. - Better error management and SIGPIPE signal is blocked
  29. - Faster
  30. - Fix #333455 - Cygwin IPTOS_LOWDELAY not supported on cygwin
  31. Reported by Jeff Laughlin and Yishin Li.
  32. - Fix #375926 - modbus.c:164: error: `MSG_DONTWAIT' undeclared
  33. Reported and tested by Yishin Li.
  34. - Fix #378981 - CRC error on RTU response doesn't return negative value
  35. Reported by Henrik Munktell.
  36. - Fix report slave ID request
  37. Patch (bzr) provided by Paul Fertser.
  38. - Fix #425604 - Conditional jump or move depends on uninitialised value(s)
  39. Occurs on first occurence of slave timeout.
  40. Reported by Henrik Munktell.
  41. - Fix #457200 - FreeBSD support
  42. Patch provided by Norbert Koch.
  43. Other changes:
  44. - The code is now published and developed on
  45. http://github.com/stephane/libmodbus
  46. - Waf support has been removed
  47. libmodbus 2.0.3 (2009-03-22)
  48. ============================
  49. - Fix CRC error when a slave RTU send a response.
  50. Thanks to Justin Carroll to have reported and tested my patch.
  51. - Remove an assignment in compute_response_length()
  52. - Remove duplicate counter in read_io_status()
  53. - Fix #274511 reported by 'Kylesch'
  54. Invalid error check in modbus_init_listen_tcp
  55. libmodbus 2.0.2 (2008-08-10)
  56. ============================
  57. - Fix a bug reported by email by Davide Pippa
  58. The function modbus_receive must check the number of values
  59. indicated in the response accordingly to the query.
  60. - Fix #241006 reported by Jesus Hernandez Tapia
  61. modbus_check_response() crashes on an invalid exception code
  62. - Reduce the number of function calls (read_reg_response and
  63. preset_response have been removed)
  64. - Add a new unit test for bad response
  65. - Catch the timeout even if the length is equal to a exception trame
  66. - Test only msg_length_computed on change
  67. - Many comments and cleanups
  68. libmodbus 2.0.1 (2008-07-02)
  69. ============================
  70. - Include libmodbus.spec in the tarball
  71. - Fix #241006 reported by Jesus Hernandez Tapia
  72. modbus_check_response() crashes on an invalid exception code
  73. libmodbus 2.0.0 (2008-05-18)
  74. ============================
  75. - Slave API
  76. https://blueprints.launchpad.net/libmodbus/+spec/slave-api
  77. - No more glib dependency
  78. https://blueprints.launchpad.net/libmodbus/+spec/glib-dependency
  79. - Unit testing and many test programs
  80. - Waf build support
  81. https://blueprints.launchpad.net/libmodbus/+spec/waf-support
  82. - MacOS X support by Matthew Butch
  83. https://blueprints.launchpad.net/libmodbus/+spec/macosx-support
  84. - Unit testing (unit-test-slave and unit-test-master)
  85. - Port number is now defined at initialisation by Dirk Reusch
  86. - Better memory management (uint8_t *data and packing of
  87. modbus_param_t)
  88. - Better error management
  89. - Declare many static functions and const arrays
  90. - Enhance an integer division
  91. - The GNU licences LGPL and GPL are in version 3
  92. - Debian and RPM packages (#224496)
  93. - Many cleanups
  94. - Fix #159443 reported by Stefan Bisanz
  95. Index of incoming data in force multiple coils function
  96. - Fix #161989 reported by Konstantinos Togias
  97. Serial device paths more than 10 chars long (eg. /dev/ttyUSB0) don't
  98. fit to modbus_param_t -> device char[11] var.
  99. - Fix #188189 reported by Chris Hellyar
  100. Compute_response_size() no entry for read_input_status()
  101. - Fix #191039 reported by Todd Denniston
  102. modbus.h is not installed at prefix.
  103. - Fix #211460 reported by Todd Denniston
  104. With TCP, automatic reconnect on error may not be desired.
  105. - Fix #224485 reported by Todd Denniston
  106. libmodbus does not link with c++ code.
  107. - Fix #224496 reported by Todd Denniston
  108. It is easier to install on rpm based systems with a spec file.
  109. libmodbus 1.2.5 (2008-05-18)
  110. ============================
  111. - Fix #224485 reported by Todd Denniston
  112. libmodbus does not link with c++ code.
  113. libmodbus 1.2.4 (2008-03-14)
  114. ============================
  115. - Fix #191039 reported by Todd Denniston
  116. modbus.h is not installed at prefix.
  117. libmodbus 1.2.3 (2008-02-03)
  118. ============================
  119. - Fix #188189 reported by Chris Hellyar
  120. Compute_response_size() no entry for read_input_status()
  121. - Fix #181887 reported by Jesus Hernandez Tapia.
  122. Slave address in build_request_packet_tcp() is hardcoded as 0xFF.
  123. libmodbus 1.2.2 (2007-11-12)
  124. ============================
  125. - Fix #161989 reported by Konstantinos Togias
  126. Serial device paths more than 10 chars long (eg. /dev/ttyUSB0) don't
  127. fit to modbus_param_t -> device char[11] var.
  128. - Structure is also bit better 'packed' to conserve memory (see the
  129. trunk for a real enhancement).
  130. libmodbus 1.2.1 (2007-11-02)
  131. ============================
  132. - Fix #159443 reported by Stefan Bisanz
  133. Index of incoming data in force multiple coils function
  134. - Deleted useless code in check_crc16()
  135. - Untabify source code
  136. - Changed author's email to Stéphane Raimbault
  137. libmodbus 1.2.0 (2007-05-10)
  138. ============================
  139. - FIX Compilation GCC-4.0
  140. - Project name in autogen.sh