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
  • tests
24 Mar, 2010
1 commit
  • Remove one argument to receive_msg and modbus_slave_receive ...
    0a6ea1ac
    - the return value is used to pass the message length
    - remove the hack on exception check in modbus receive
    - update tests
    Stéphane Raimbault authored
    2010-03-24 08:40:30 +0100  
    Browse Dir »

21 Jan, 2010
39 commits
  • Fix #457200 - FreeBSD support by Norbert Koch
    f20a1860
    Stéphane Raimbault authored
    2010-01-21 11:35:28 +0100  
    Browse Dir »
  • New API to close slave TCP socket
    5f65efd8
    Stéphane Raimbault authored
    2010-01-21 11:35:28 +0100  
    Browse Dir »
  • New API modbus_read_float() and modbus_write_float() for float values
    22a68981
    Stéphane Raimbault authored
    2010-01-21 11:35:28 +0100  
    Browse Dir »
  • Fix useless ret argument in printf
    77c8c416
    Stéphane Raimbault authored
    2010-01-21 11:35:28 +0100  
    Browse Dir »
  • New function modbus_set_slave()
    237df102
    Stéphane Raimbault authored
    2010-01-21 11:35:28 +0100  
    Browse Dir »
  • Use config.h in Waf compilation ...
    62d8e2f6
    - simpler wscript_build files
    - reuse VERSION
    - add path to config.h
    Stéphane Raimbault authored
    2010-01-21 11:35:28 +0100  
    Browse Dir »
  • modbus_mapping_new returns 0 on success ...
    17994074
    - adjusts various comments on return values
    - updated tests
    - added entry to MIGRATION
    Stéphane Raimbault authored
    2010-01-21 11:35:28 +0100  
    Browse Dir »
  • Minor - White spaces cleanup
    629dc1d7
    Stéphane Raimbault authored
    2010-01-21 11:35:28 +0100  
    Browse Dir »
  • Error handling improvements ...
    14f42c18
    - new function modbus_flush
    - new names and values for error defines
    - finer recovery on error
    - merge TOO_MANY_DATA and INVALID_DATA
    - stop unit-test-master at the first error
    - FLUSH_OR_RECONNECT_ON_ERROR -> FLUSH_OR_CONNECT_ON_ERROR
    - more precise tests in unit-test-master
    Stéphane Raimbault authored
    2010-01-21 11:35:27 +0100  
    Browse Dir »
  • The slave only listen when concerned (slave ID or broadcast) ...
    cdc536c9
    - MAJOR changes to the API (see MIGRATION)
    - New unit tests
    - Removed TODO list
    - Updated NEWS & MIGRATION files
    Stéphane Raimbault authored
    2010-01-21 11:35:27 +0100  
    Browse Dir »
  • Incremente the values of HEADER_LENGTH_[RTU|TCP] defines ...
    51500e93
    This change improves the conformance with the PDU and ADU definitions of the
    Modbus protocol and reduces the number of additions.
    Stéphane Raimbault authored
    2010-01-21 11:35:27 +0100  
    Browse Dir »
  • Rename modbus/ to src/ ...
    e80dc405
    - upgrade to WAF 1.5.3
    - smaller WAF scripts
    - fix using of modbus.h with WAF
    - updated configure.ac and Makefile.am files
    - change include paths in test files
    Stéphane Raimbault authored
    2010-01-21 11:35:27 +0100  
    Browse Dir »
  • Fix the bandwith computing when a longer delay is measured ...
    795d1fd7
    - use milliseconds instead of microseconds
    - increase the number of loops to 100 000 from 10 000
    Stéphane Raimbault authored
    2010-01-21 11:35:27 +0100  
    Browse Dir »
  • Whitespace cleanup
    d8a5e555
    Stéphane Raimbault authored
    2010-01-21 11:35:26 +0100  
    Browse Dir »
  • New slave able to manage many connections on uniprocessor architecture ...
    c7a6ffb3
    - new functions modbus_slave_init_listen_tcp, modbus_slave_accept_tcp,
      modbus_slave_slave_receive.
    - removed printf in modbus.c: 'Connection closed'
    - new slave test, bandwith-slave-many-up
    - updated build scripts
    - updated MIGRATION document file
    Stéphane Raimbault authored
    2010-01-21 11:35:26 +0100  
    Browse Dir »
  • Enhance the output of the bad response test.
    f09a7471
    Stéphane Raimbault authored
    2010-01-21 11:35:26 +0100  
    Browse Dir »
  • Raise the number of loops to 10000 from 1000. ...
    9798adc7
    This new value isn't appropriate for a serial link.
    Stéphane Raimbault authored
    2010-01-21 11:35:26 +0100  
    Browse Dir »
  • Add a unit test for the bad response from the slave.
    a01bab2b
    Stéphane Raimbault authored
    2010-01-21 11:35:25 +0100  
    Browse Dir »
  • Add a note about compilation
    5cddeaba
    Stéphane Raimbault authored
    2010-01-21 11:35:25 +0100  
    Browse Dir »
  • Debian packaging ...
    857fff60
    - Add test files to examples directory in libmodbus-dev.
    - Add MIGRATION file to libmodbus-dev.
    - Define the compatibility level to 6.
    - Add MIGRATION to EXTRA_DIST in Makefile.am
    - Add README to  EXTRA_DIST in tests/Makefile.am
    - Add unit-test.h as dependency in tests/Makefile.am
    Stéphane Raimbault authored
    2010-01-21 11:35:25 +0100  
    Browse Dir »
  • Disable the debug mode.
    31b6fecd
    Stéphane Raimbault authored
    2010-01-21 11:35:25 +0100  
    Browse Dir »
  • Rename manage_query() to modbus_manage_query() and comment cleanups.
    202231da
    Stéphane Raimbault authored
    2010-01-21 11:35:25 +0100  
    Browse Dir »
  • Better unit tests. ...
    d11d30a5
    - The coil and registers are wrote by the master and not assigned by the
      slave anymore
    - The data used to write are the ones in unit-test.h
    - The read test is done after the write test
    Stéphane Raimbault authored
    2010-01-21 11:35:25 +0100  
    Browse Dir »
  • Better ouput in random-test-master.c
    1a9f8867
    Stéphane Raimbault authored
    2010-01-21 11:35:25 +0100  
    Browse Dir »
  • New random-test-slave ...
    3948142c
    - rename test-master-random => random-test-master
    - fix memset
    - update README
    - add the files to configure.ac and wscript
    Stéphane Raimbault authored
    2010-01-21 11:35:24 +0100  
    Browse Dir »
  • Check the number of points requested ...
    6683bd47
    - s/datas/data/
    - the warning is now an error
    - add some checks in modbus.c
    - add unit tests
    - remove the TODO item
    - minor 80 columns changes
    Stéphane Raimbault authored
    2010-01-21 11:35:24 +0100  
    Browse Dir »
  • Add documentation about the test programs.
    5d785208
    Stéphane Raimbault authored
    2010-01-21 11:35:24 +0100  
    Browse Dir »
  • Better use \n in printf in unit-test-master.c
    688ec1f5
    Stéphane Raimbault authored
    2010-01-21 11:35:23 +0100  
    Browse Dir »
  • New programs to benchmark the transfert rate. ...
    2b83af9e
    The results are really interesting!
    - bench-bandwidth-slave.c
    - bench-bandwidth-master.c
    Stéphane Raimbault authored
    2010-01-21 11:35:23 +0100  
    Browse Dir »
  • GNU licenses updated to the version 3.
    a017c19f
    Stéphane Raimbault authored
    2010-01-21 11:35:23 +0100  
    Browse Dir »
  • Fix incorrect number of points in unit-test-master.c
    62654acc
    Stéphane Raimbault authored
    2010-01-21 11:35:23 +0100  
    Browse Dir »
  • Use int instead of uint8_t/uint16_t in function arguments. ...
    50235c40
    It's slower to pass non aligned values.
    Stéphane Raimbault authored
    2010-01-21 11:35:22 +0100  
    Browse Dir »
  • - Rename MAX_PACKET_SIZE to MAX_MESSAGE_LENGTH ...
    23ac3281
    - Reduce the max message length to 256 (PI_M300)
    - s/size/length/
    Stéphane Raimbault authored
    2010-01-21 11:35:22 +0100  
    Browse Dir »
  • Add preset_multiple_registers in slave side ...
    7b320fa2
    - add some unit tests
    - add PRESET_MULTIPLE_REGISTERS support in manage_query()
    Stéphane Raimbault authored
    2010-01-21 11:35:22 +0100  
    Browse Dir »
  • Add force_multiple_coils on the slave side ...
    f4583400
    - cleanups in offset/resp_length vars
    - cleanups in comments
    - add FORCE_MULTIPLE_COILS in manage_query
    Stéphane Raimbault authored
    2010-01-21 11:35:22 +0100  
    Browse Dir »
  • Add preset_single_register on the server side (slave)
    ed5bed91
    Stéphane Raimbault authored
    2010-01-21 11:35:22 +0100  
    Browse Dir »
  • - Fix the server side of force_single_coil ...
    de225a19
    - Add some tests for force_single_coil
    Stéphane Raimbault authored
    2010-01-21 11:35:22 +0100  
    Browse Dir »
  • New tests
    861e6a84
    Stéphane Raimbault authored
    2010-01-21 11:35:22 +0100  
    Browse Dir »
  • FIX mapping allocation
    adbc98bc
    Stéphane Raimbault authored
    2010-01-21 11:35:22 +0100  
    Browse Dir »