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
27 Mar, 2012
2 commits
  • I was certainly under the influence of drugs or hurry
    6f1ed722
    Stéphane Raimbault authored
    2012-03-27 18:53:36 +0200  
    Browse Code »
  • Fix a missing free in random-test-client ...
    1ffb31da
    Thanks again to Stefan Finzel.
    It would be nice to run Valgrind more often...
    Stéphane Raimbault authored
    2012-03-27 09:38:28 +0200  
    Browse Code »

24 Mar, 2012
1 commit
  • Fix OMG bug in modbus_mapping_free not freeing memory ...
    c9106fdb
    Thanks to Stefan Finzel for the bug report
    Stéphane Raimbault authored
    2012-03-24 16:29:58 +0100  
    Browse Code »

12 Mar, 2012
2 commits
  • Add basic information about installation
    d9d1b507
    Stéphane Raimbault authored
    2012-03-12 22:20:30 +0100  
    Browse Code »
  • Fix typo in typedef ...
    da49761b
    Signed-off-by: Michael Heimpold <mhei@heimpold.de>
    Michael Heimpold authored
    2012-03-12 14:35:50 +0100  
    Browse Code »

01 Mar, 2012
1 commit
  • Fix incorrect test of select() return code ...
    30054b90
    Thanks to Thomas Stalder and Torello Querci for the report.
    Stéphane Raimbault authored
    2012-03-01 14:51:53 +0100  
    Browse Code »

05 Feb, 2012
1 commit
  • Fix semicolon typo and unistd.h include under windows
    6350a992
    Andrew Kravchuk authored
    2012-02-05 01:43:51 +0400  
    Browse Code »

15 Jan, 2012
5 commits
  • Return -1 on getaddrinfo error and print error in debug mode
    7e170c34
    Stéphane Raimbault authored
    2012-01-15 23:25:45 +0100  
    Browse Code »
  • Minor - Missing '\n' in debug mode
    46281355
    Stéphane Raimbault authored
    2012-01-15 23:25:45 +0100  
    Browse Code »
  • More robust way to establish the connection in non blocking mode
    146e8a08
    Stéphane Raimbault authored
    2012-01-15 23:25:45 +0100  
    Browse Code »
  • TCP - Socket in non blocking mode by default ...
    8dc21dda
    Original patch for new connect function by Thomas Stalder.
    Stéphane Raimbault authored
    2012-01-15 23:25:45 +0100  
    Browse Code »
  • Apply CLOEXEC flag for TCP protocol independent too (IPv6)
    e90f906b
    Stéphane Raimbault authored
    2012-01-15 23:16:39 +0100  
    Browse Code »

03 Jan, 2012
1 commit
  • Add missing C++ macros in public headers ...
    5d7cabc8
    Thanks to Bernhard Agthe.
    Stéphane Raimbault authored
    2012-01-03 01:42:09 +0100  
    Browse Code »

01 Jan, 2012
1 commit
  • Fix a typo for a function link in documentation
    ca602fcc
    Christos Kontas authored
    2012-01-01 22:36:45 +0100  
    Browse Code »

31 Dec, 2011
1 commit
  • New RTU receive() to ignore confirmation from other slaves (closes #18) ...
    c1e2e0b3
    - export new symbols to create specific behavior (RTU)
    - the flag can't only be set by slaves
    - new tests
    Stéphane Raimbault authored
    2011-12-31 00:47:03 +0100  
    Browse Code »

28 Dec, 2011
1 commit
  • Add comment about return code of flush functions
    81a52093
    Stéphane Raimbault authored
    2011-12-28 14:59:20 +0100  
    Browse Code »

27 Dec, 2011
1 commit
  • Move RTU filtering in CRC check to avoid useless call to modbus_reply ...
    9d5344cf
    Warning, modbus_receive returns 0 when a query is ignored.
    
    - function removed from TCP and RTU code and from backend structure
    - updated documentation
    - updated examples
    Stéphane Raimbault authored
    2011-12-27 00:15:27 +0100  
    Browse Code »

15 Dec, 2011
2 commits
  • Fix typo in message found by Christian Leutloff
    a6e63d7d
    Stéphane Raimbault authored
    2011-12-15 07:11:28 +0100  
    Browse Code »
  • Unique transaction identifier by TCP connection ...
    6564c32b
    - remove static variable in the library
    
    libabc is a really good source of inspiration!
    https://git.kernel.org/?p=linux/kernel/git/kay/libabc.git
    Stéphane Raimbault authored
    2011-12-15 07:11:04 +0100  
    Browse Code »

02 Nov, 2011
5 commits
  • Use accept4 with SOCK_CLOEXEC when available (Linux)
    2c585851
    Stéphane Raimbault authored
    2011-11-02 23:42:33 +0100  
    Browse Code »
  • Open fd and socket with the CLOEXEC flag when available
    b94ba026
    Stéphane Raimbault authored
    2011-11-02 23:15:39 +0100  
    Browse Code »
  • Exception response on report slave ID wasn't detected (closes #27)
    4cbc5252
    Stéphane Raimbault authored
    2011-11-02 08:54:26 +0100  
    Browse Code »
  • Display function codes in hexadecimal in debug mode
    7fed3ff9
    Stéphane Raimbault authored
    2011-11-02 08:38:37 +0100  
    Browse Code »
  • Fixed compilation break on platforms without TIOCSRS485 ...
    16e14ae1
    The serial mode and rts flags are now initialized in new function.
    Original patch provided by Jaime Alberto Silva
    <jaime@sgautomatizacion.com>.
    Stéphane Raimbault authored
    2011-11-02 08:04:31 +0100  
    Browse Code »

31 Oct, 2011
4 commits
  • Check slave only in RTU backend and add unit tests ...
    1941fd4a
    - new function _modbus_rtu_pre_check_confirmation
    - new special test value to trigger an invalid response
    - add unit test to cover invalid TID too
    Stéphane Raimbault authored
    2011-10-31 16:49:17 +0100  
    Browse Code »
  • Minor coding convention
    6bad3494
    Stéphane Raimbault authored
    2011-10-31 16:49:17 +0100  
    Browse Code »
  • Provides a way to disable the byte timeout.
    602a7f38
    Alex Stapleton authored
    2011-10-31 16:49:17 +0100  
    Browse Code »
  • Added slave ID check for response messages
    7ecfd411
    Alex Stapleton authored
    2011-10-31 16:49:17 +0100  
    Browse Code »

20 Oct, 2011
1 commit
  • Protects modbus_mapping_free against NULL argument ...
    98b7a6a1
    Thanks to Andrea Mattia
    Stéphane Raimbault authored
    2011-10-20 22:52:45 +0200  
    Browse Code »

29 Sep, 2011
1 commit
  • Fix check on file doc/libmodbus.7 in acinclude.m4 (closes #28)
    85135558
    Stéphane Raimbault authored
    2011-09-29 14:21:37 +0200  
    Browse Code »

28 Sep, 2011
3 commits
  • Close file descriptor when the settings don't apply in RTU ...
    c1b5d585
    Original patch provided by Thomas Stalder.
    Stéphane Raimbault authored
    2011-09-28 20:51:40 +0200  
    Browse Code »
  • unit-test.h is now generated to avoid config.h dependency
    610ff3b7
    Stéphane Raimbault authored
    2011-09-28 20:28:48 +0200  
    Browse Code »
  • Request for Windows Sockets specification version 2.2 instead of 2.0 ...
    e93f2d88
    Thanks to Pavel Mazniker for the report.
    Stéphane Raimbault authored
    2011-09-28 19:47:31 +0200  
    Browse Code »

07 Sep, 2011
1 commit
  • Appoint Ivo De Decker as Debian package maintainer ...
    c0cac3d9
    - add mising dependency on xmlto
    - describe license of the tests
    - adjust formating of licences
    - add format file
    Stéphane Raimbault authored
    2011-09-07 20:23:37 +0200  
    Browse Code »

31 Aug, 2011
2 commits
  • Small documentation fixes by shagol (closes #20).
    201a2f29
    Stéphane Raimbault authored
    2011-08-31 22:34:58 +0200  
    Browse Code »
  • Move 'RTS flow control' NEWS entry in 3.1.0 section
    9c3f5c71
    Stéphane Raimbault authored
    2011-08-31 21:21:52 +0200  
    Browse Code »

16 Aug, 2011
2 commits
  • Add documentation for modbus_tcp_listen
    9dcfed81
    Stéphane Raimbault authored
    2011-08-16 08:25:40 +0200  
    Browse Code »
  • Fix and improve documentation of modbus_set_error_recovery
    c7051e0d
    Stéphane Raimbault authored
    2011-08-16 06:56:01 +0200  
    Browse Code »

12 Aug, 2011
1 commit
  • Add again libtool as build requirement in spec file
    a92ea2eb
    Stéphane Raimbault authored
    2011-08-12 00:03:29 +0200  
    Browse Code »

02 Aug, 2011
1 commit
  • Further refinements to the libmodbus.spec file
    3dcdc39a
    Stéphane Raimbault authored
    2011-08-02 07:08:24 +0200  
    Browse Code »