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
06 Oct, 2013
2 commits
  • Support RTU in new raw requests tests
    780e1c23
    Stéphane Raimbault authored
    2013-10-06 12:49:39 +0200  
    Browse Code »
  • Tests on reading 0 or max + 1 registers for function 0x17
    05d16704
    Stéphane Raimbault authored
    2013-10-06 11:46:32 +0200  
    Browse Code »

03 Oct, 2013
2 commits
  • Slight refactor of unit-test-client
    6cfed42b
    Stéphane Raimbault authored
    2013-10-03 20:30:51 +0200  
    Browse Code »
  • Fix remote buffer overflow vulnerability (closes #25, #105) ...
    fc73565d
    It's strongly recommended to update your libmodbus library if you
    use it in a slave/server application in a not trusted environment.
    
    Debian package of libmodbus 3.0.4 already contains a patch to
    mitigate the exploit but the patch isn't as strong than this one.
    Stéphane Raimbault authored
    2013-10-03 20:06:51 +0200  
    Browse Code »

24 Sep, 2013
1 commit
  • Improved README file
    2a9a7ddf
    Stéphane Raimbault authored
    2013-09-24 23:49:12 +0200  
    Browse Code »

23 Sep, 2013
2 commits
  • Fix indentation of Windows code
    1224ec64
    Stéphane Raimbault authored
    2013-09-23 22:59:36 +0200  
    Browse Code »
  • Explain how to define response timeouts when many RTU slaves ...
    a11805cb
    Related to https://github.com/stephane/libmodbus/issues/83
    Stéphane Raimbault authored
    2013-09-23 22:53:26 +0200  
    Browse Code »

13 Sep, 2013
1 commit
  • Fix receiving of incorrect queries in write_single and mask_write_register ...
    2c132b04
    Thank you very much James Nutaro.
    Stéphane Raimbault authored
    2013-09-13 16:20:21 +0200  
    Browse Code »

09 Sep, 2013
2 commits
  • Check return value of autoreconf. Thanks to Lauri Nurmi.
    1a4fb4eb
    Stéphane Raimbault authored
    2013-09-09 10:07:11 +0200  
    Browse Code »
  • Minor comment improvements
    558538ab
    Stéphane Raimbault authored
    2013-09-09 00:02:25 +0200  
    Browse Code »

08 Sep, 2013
1 commit
  • Constant for broacast and test ordering
    1e288713
    Stéphane Raimbault authored
    2013-09-08 23:42:30 +0200  
    Browse Code »

25 Aug, 2013
1 commit
  • Rename EXPORT by MODBUS_API
    0b22e719
    Stéphane Raimbault authored
    2013-08-25 21:16:13 +0200  
    Browse Code »

03 Jul, 2013
1 commit
  • Fix the fix of device string check. ...
    b09ff2fb
    Thanks to Jan Kardell.
    Stéphane Raimbault authored
    2013-07-03 10:35:51 +0200  
    Browse Code »

22 May, 2013
7 commits
  • Rename 'socket' variables to 's' to avoid warning on Windows
    f7799a4f
    Stéphane Raimbault authored
    2013-05-22 23:45:30 +0200  
    Browse Code »
  • Don't use reserved word 'byte' on Windows!
    ca928d50
    Stéphane Raimbault authored
    2013-05-22 23:31:39 +0200  
    Browse Code »
  • Use a unsigned long for ioctlsocket on Windows
    f720851a
    Stéphane Raimbault authored
    2013-05-22 23:25:42 +0200  
    Browse Code »
  • Avoid empty _modbus_rtu_ioctl_rts when no HAVE_DECL_TIOCM_RTS
    1bab04e5
    Stéphane Raimbault authored
    2013-05-22 23:20:06 +0200  
    Browse Code »
  • Avoid to shadow 'boolean' on weird platform (Windows)
    b657698d
    Stéphane Raimbault authored
    2013-05-22 23:15:31 +0200  
    Browse Code »
  • Avoid overriding of bswap_32 because bswap_16 is undefined
    55c276e8
    Stéphane Raimbault authored
    2013-05-22 23:09:55 +0200  
    Browse Code »
  • Try to fix MinGW compilation (EXTERN to nop) ...
    4d76d215
    This regression comes from Visual Studio patches.
    Stéphane Raimbault authored
    2013-05-22 22:49:29 +0200  
    Browse Code »

17 May, 2013
1 commit
  • Portable use of bswap_32
    702d2603
    Stéphane Raimbault authored
    2013-05-17 18:21:12 +0200  
    Browse Code »

16 May, 2013
1 commit
  • Remove (not so useful) ld options not supported on Mac OS X
    50c155a3
    Stéphane Raimbault authored
    2013-05-16 18:40:40 +0200  
    Browse Code »

14 May, 2013
1 commit
  • Update NEWS file
    e48efd38
    Stéphane Raimbault authored
    2013-05-14 07:57:10 +0200  
    Browse Code »

10 May, 2013
4 commits
  • Improve socket init and close in tests
    9ba562e5
    Stéphane Raimbault authored
    2013-05-10 01:27:50 +0200  
    Browse Code »
  • Returns -1 on invalid mode in modbus_rtu_set_rts
    b4753f7e
    Stéphane Raimbault authored
    2013-05-10 01:10:17 +0200  
    Browse Code »
  • Always set socket to -1 on close()
    d8aa5a42
    Stéphane Raimbault authored
    2013-05-10 01:07:02 +0200  
    Browse Code »
  • Protect all public functions against invalid context ...
    55d9a371
    - change return argument from void to int
    - update documentation
    Stéphane Raimbault authored
    2013-05-10 00:53:48 +0200  
    Browse Code »

05 May, 2013
1 commit
  • Sleep for delay of response timeout before reconnect (closes #77) ...
    a06255be
    Thanks to Karl Palsson.
    Stéphane Raimbault authored
    2013-05-05 01:31:59 +0200  
    Browse Code »

03 May, 2013
1 commit
  • Avoid a level of imbrication in bandwidth-server-many-up
    ef81a69e
    Stéphane Raimbault authored
    2013-05-03 16:15:43 +0200  
    Browse Code »

02 May, 2013
1 commit
  • Baud rate until 4,000,000 (POSIX), 1,000,000 (Windows) (closes #93)
    61440f55
    Stéphane Raimbault authored
    2013-05-02 21:07:44 +0200  
    Browse Code »

01 May, 2013
6 commits
  • Rename modbus_set_float_swapped to modbus_set_float_dcba
    692f6b76
    Stéphane Raimbault authored
    2013-05-01 23:58:51 +0200  
    Browse Code »
  • Missing UT_IREAL_SWAPPED
    e6e3c8e4
    Stéphane Raimbault authored
    2013-05-01 23:41:23 +0200  
    Browse Code »
  • Documentation improvements to libmodbus page
    b83f1082
    Stéphane Raimbault authored
    2013-05-01 17:08:53 +0200  
    Browse Code »
  • Documentation of new modbus_[get|set]_float_swapped functions
    8471eb62
    Stéphane Raimbault authored
    2013-05-01 16:47:23 +0200  
    Browse Code »
  • New functions to set/get swapped floats (LSB)
    997231b7
    Stéphane Raimbault authored
    2013-05-01 16:27:28 +0200  
    Browse Code »
  • Safer modbus_close
    e6b64888
    Stéphane Raimbault authored
    2013-05-01 15:57:51 +0200  
    Browse Code »

18 Apr, 2013
1 commit
  • Remove unsupported -Wtype-limits for GCC < 4.3.5 (closes #109)
    32062c78
    Stéphane Raimbault authored
    2013-04-18 09:25:19 +0200  
    Browse Code »

29 Mar, 2013
1 commit
  • Merge pull request #106 from yegorich/oos-build ...
    5e2c73de
    Enable out-of-source build
    Stéphane Raimbault authored
    2013-03-29 03:34:59 -0700  
    Browse Code »

28 Mar, 2013
1 commit
  • Enable out-of-source build ...
    d97ba9db
    Add top build directory to tests. Otherwise modbus-version.h
    won't be found during the build process.
    
    Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
    Yegor Yefremov authored
    2013-03-28 08:09:14 +0100  
    Browse Code »

25 Mar, 2013
1 commit
  • Add comment about fix alignment problem
    8bb8be2d
    Stéphane Raimbault authored
    2013-03-25 23:30:36 +0100  
    Browse Code »