File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 2626#define LIBMODBUS_VERSION_MINOR (1)
2727
2828/* The micro version (3, if %LIBMODBUS_VERSION is 1.2.3) */
29- #define LIBMODBUS_VERSION_MICRO (10 )
29+ #define LIBMODBUS_VERSION_MICRO (11 )
3030
3131/* The full version, like 1.2.3 */
32- #define LIBMODBUS_VERSION 3.1.10
32+ #define LIBMODBUS_VERSION 3.1.11
3333
3434/* The full version, in string form (suited for string concatenation)
3535 */
36- #define LIBMODBUS_VERSION_STRING "3.1.10 "
36+ #define LIBMODBUS_VERSION_STRING "3.1.11 "
3737
3838/* Numerically encoded version, eg. v1.2.3 is 0x010203 */
3939#define LIBMODBUS_VERSION_HEX \
Original file line number Diff line number Diff line change @@ -156,6 +156,10 @@ extern const unsigned int libmodbus_version_micro;
156156
157157typedef struct _modbus modbus_t ;
158158
159+ /*! Memory layout in tab_xxx arrays is processor-endianness.
160+ When receiving modbus data, it is converted to processor-endianness,
161+ see read_registers().
162+ */
159163typedef struct _modbus_mapping_t {
160164 int nb_bits ;
161165 int start_bits ;
You can’t perform that action at this time.
0 commit comments