Skip to content

Commit aa3b283

Browse files
committed
update to 3.1.11
1 parent 51672e4 commit aa3b283

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

modbus-version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@
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 \

modbus.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,10 @@ extern const unsigned int libmodbus_version_micro;
156156

157157
typedef 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+
*/
159163
typedef struct _modbus_mapping_t {
160164
int nb_bits;
161165
int start_bits;

0 commit comments

Comments
 (0)