Logo white

Peter M. Groen / libmodbus

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Commits 855
  • Compare
  • Branches 1
  • Tags 0
  • libmodbus
11 Jul, 2011
8 commits
  • Removed recently added .la file in packages ...
    c8f3a053
    http://wiki.debian.org/ReleaseGoals/LAFileRemoval
    Stéphane Raimbault authored
    2011-07-11 18:35:14 +0200  
    Browse Code »
  • Updated RPM spec file with new man pages
    0b62fdd6
    Stéphane Raimbault authored
    2011-07-11 08:56:53 +0200  
    Browse Code »
  • Add manpages to debian package
    16d909ab
    Stéphane Raimbault authored
    2011-07-11 08:37:31 +0200  
    Browse Code »
  • Litian fixes provided by Ivo De Decker
    daf0e4c4
    Stéphane Raimbault authored
    2011-07-11 08:07:52 +0200  
    Browse Code »
  • Add log for RPM spec file in NEWS
    3db8dfe7
    Stéphane Raimbault authored
    2011-07-11 00:55:23 +0200  
    Browse Code »
  • Add documentation for many functions and tweak argument names ...
    9b803dd4
    Add macros in libmodbus.txt and:
    - modbus_get_byte_from_bits.txt
    - modbus_get_float.txt
    - modbus_reply.txt
    - modbus_reply_exception.txt
    - modbus_set_bits_from_byte.txt
    - modbus_set_bits_from_bytes.txt
    - modbus_set_float.txt
    Stéphane Raimbault authored
    2011-07-11 00:52:17 +0200  
    Browse Code »
  • Fix bad links in the documentation
    fb89fa36
    Stéphane Raimbault authored
    2011-07-11 00:42:27 +0200  
    Browse Code »
  • Add traling ';' to all synopsises in the documentation
    c2313dd9
    Stéphane Raimbault authored
    2011-07-11 00:41:12 +0200  
    Browse Code »

07 Jul, 2011
3 commits
  • New spec file for RPM packaging
    51495a9a
    Stéphane Raimbault authored
    2011-07-07 21:48:17 +0200  
    Browse Code »
  • Update links in libmodbus.txt to modbus_*_timeout
    716dcac9
    Stéphane Raimbault authored
    2011-07-07 21:40:29 +0200  
    Browse Code »
  • Added missing modbus_receive_from to Makefile
    295abc53
    Stéphane Raimbault authored
    2011-07-07 21:14:12 +0200  
    Browse Code »

04 Jul, 2011
1 commit
  • Enhanced report slave ID and documentation
    ad80a6d3
    Stéphane Raimbault authored
    2011-07-04 02:48:32 +0200  
    Browse Code »

29 Jun, 2011
1 commit
  • Minor change to documentation
    78587bdf
    Stéphane Raimbault authored
    2011-06-29 19:10:25 +0200  
    Browse Code »

28 Jun, 2011
3 commits
  • Documentation of modbus_mapping_new and modbus_mapping_free
    3e4cce54
    Stéphane Raimbault authored
    2011-06-28 09:10:10 +0200  
    Browse Code »
  • Added documentation of modbus_write_and_read_registers
    64e21cce
    Stéphane Raimbault authored
    2011-06-28 08:18:41 +0200  
    Browse Code »
  • Renamed modbus_read_and_write_registers to modbus_write_and_read_registers ...
    a2e41db3
    The function name was confusing because the write operation is performed
    before the read. Take care to swap the arguments in the migration process.
    Stéphane Raimbault authored
    2011-06-28 08:15:08 +0200  
    Browse Code »

17 Jun, 2011
1 commit
  • Revert libmodbus licence from LGPLv3 to LGPLv2.1 ...
    12753875
    Avoid incompatibility with GPLv2 program. This change has been approved by
    Tobias Doerffel, Florian octo Forster and Hannu Vuolasaho.
    Stéphane Raimbault authored
    2011-06-17 20:35:53 +0200  
    Browse Code »

08 Jun, 2011
1 commit
  • Export the MODBUS_RTU_RS232/485 and rtu_set_serial_mode on all platforms
    e97b72e3
    Stéphane Raimbault authored
    2011-06-08 12:48:49 +0200  
    Browse Code »

05 Jun, 2011
8 commits
  • Replace spaces by tab in debian/rules
    71585404
    Stéphane Raimbault authored
    2011-06-05 21:40:20 +0200  
    Browse Code »
  • Indicates the required Linux version for RS485 functions ...
    a17a858c
    Thank you Ivo De Decker.
    Stéphane Raimbault authored
    2011-06-05 21:37:02 +0200  
    Browse Code »
  • Fix test of TIOCSRS485 define
    ccdf684b
    Stéphane Raimbault authored
    2011-06-05 21:36:30 +0200  
    Browse Code »
  • Add check to enable RS485 functions only when available
    e02f0a43
    Stéphane Raimbault authored
    2011-06-05 20:52:27 +0200  
    Browse Code »
  • Bump version to 2.9.4 ...
    c1a01312
    All related scripts and config files have been updated too.
    Stéphane Raimbault authored
    2011-06-05 12:47:59 +0200  
    Browse Code »
  • Updated NEWS file
    ea2d655e
    Stéphane Raimbault authored
    2011-06-05 05:57:03 +0200  
    Browse Code »
  • Update documentation of modbus_set_error_recovery
    3b09d0f4
    Stéphane Raimbault authored
    2011-06-05 05:51:17 +0200  
    Browse Code »
  • New error recovery modes: link and protocol ...
    d1f18543
    The two modes are complementary, MODBUS_ERROR_RECOVERY_LINK handles
    errors at data link level (bad file descriptor, timeout, etc) and
    MODBUS_ERROR_RECOVERY_PROTOCOL checks Modbus error (eg. invalid
    function code or trame length).
    
    This change introduces the use of the Sleep function for Windows.
    Some duplicated code has been moved from backends to modbus core.
    A new debug message is now available when a flush occurs.
    
    The unit tests are now based on this error recovery code.
    Stéphane Raimbault authored
    2011-06-05 05:49:32 +0200  
    Browse Code »

03 Jun, 2011
3 commits
  • Alphabetical ordering of tests in Makefile.am
    ac6ba5c1
    Stéphane Raimbault authored
    2011-06-03 16:34:05 +0200  
    Browse Code »
  • Documentation of modbus_rtu_set/get_serial_mode functions
    11e09965
    Stéphane Raimbault authored
    2011-06-03 01:08:00 +0200  
    Browse Code »
  • Add functions to set/get RS485 communications on Linux
    9bf83095
    Stéphane Raimbault authored
    2011-06-03 01:07:52 +0200  
    Browse Code »

28 May, 2011
1 commit
  • Remove set but unused req_lenth and address in unit tests
    bb23b4ab
    Stéphane Raimbault authored
    2011-05-28 17:49:43 +0200  
    Browse Code »

10 May, 2011
6 commits
  • Add check on transaction ID for Modbus TCP
    b4330d21
    Stéphane Raimbault authored
    2011-05-10 12:31:27 +0200  
    Browse Code »
  • Increase wait in unit test for Windows 7 slowness
    1a45c24d
    Stéphane Raimbault authored
    2011-05-10 10:02:33 +0200  
    Browse Code »
  • The test with too short timeout is allowed to fail
    a0a8242a
    Stéphane Raimbault authored
    2011-05-10 10:02:33 +0200  
    Browse Code »
  • Fix typo in modbus_new_tcp.txt
    9f316b36
    Stéphane Raimbault authored
    2011-05-10 10:02:33 +0200  
    Browse Code »
  • New unit test with invalid slave and invalid request
    e0839095
    Stéphane Raimbault authored
    2011-05-10 10:02:33 +0200  
    Browse Code »
  • Fix longstanding limitation of server to wait forever ...
    89d0dc01
    The change for serial on Windows is temporary. If you're interested of
    improving the situation for this, please have a look at the FIXME.
    Stéphane Raimbault authored
    2011-05-10 10:00:46 +0200  
    Browse Code »

06 May, 2011
2 commits
  • Update NEWS file for modbus_receive and modbus_[gs]et_socket
    33d92434
    Stéphane Raimbault authored
    2011-05-06 09:11:53 +0200  
    Browse Code »
  • Rename [gs]et_timeout_[begin|end] to [gs]et_[response|byte]_timeout ...
    852d7825
    The following functions have been renamed:
    - modbus_get_timeout_begin -> modbus_get_response_timeout
    - modbus_set_timeout_begin -> modbus_set_response_timeout
    - modbus_get_timeout_end -> modbus_get_byte_timeout
    - modbus_set_timeout_end -> modbus_set_byte_timeout
    
    The meaning of these timeout intervals is now clearer. The documentation
    has been updated.
    Stéphane Raimbault authored
    2011-05-06 09:11:11 +0200  
    Browse Code »

05 May, 2011
1 commit
  • New setter/getter for context socket (fixes bandwidth-server-many-up) ...
    1faf5c3a
    These new functions seem clearer than the recent modbus_receive_from
    function IHMO. This change fixes the bandwidth-server-many-up program.
    Stéphane Raimbault authored
    2011-05-05 00:03:52 +0200  
    Browse Code »

04 May, 2011
1 commit
  • Fix too short uint8_t for rsp_length (bug introduced by 018cdd6)
    5fd7ec5c
    Stéphane Raimbault authored
    2011-05-04 17:31:46 +0200  
    Browse Code »