You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.8 KiB

  1. From f1eb4bc7ccb09cd8d19ab641ee37637f8c34d16d Mon Sep 17 00:00:00 2001
  2. From: i-ky <gl.ivanovsky@gmail.com>
  3. Date: Tue, 10 Jul 2018 15:58:45 +0300
  4. Subject: [PATCH] Fixed MODBUS_GET_* macros in case of negative values
  5. In case resulting value should be negative it is incorrect to use '+' operator to construct it from pieces, because highest bytes will result in negative number after bitwise shift while others will stay positive. Replacing addition with '|' should solve the issue.
  6. ---
  7. src/modbus.h | 10 +++++-----
  8. 1 file changed, 5 insertions(+), 5 deletions(-)
  9. diff --git a/src/modbus.h b/src/modbus.h
  10. index f6e9a5f..c63f5ce 100644
  11. --- a/src/modbus.h
  12. +++ b/src/modbus.h
  13. @@ -245,12 +245,12 @@ MODBUS_API int modbus_reply_exception(modbus_t *ctx, const uint8_t *req,
  14. #define MODBUS_GET_HIGH_BYTE(data) (((data) >> 8) & 0xFF)
  15. #define MODBUS_GET_LOW_BYTE(data) ((data) & 0xFF)
  16. #define MODBUS_GET_INT64_FROM_INT16(tab_int16, index) \
  17. - (((int64_t)tab_int16[(index) ] << 48) + \
  18. - ((int64_t)tab_int16[(index) + 1] << 32) + \
  19. - ((int64_t)tab_int16[(index) + 2] << 16) + \
  20. + (((int64_t)tab_int16[(index) ] << 48) | \
  21. + ((int64_t)tab_int16[(index) + 1] << 32) | \
  22. + ((int64_t)tab_int16[(index) + 2] << 16) | \
  23. (int64_t)tab_int16[(index) + 3])
  24. -#define MODBUS_GET_INT32_FROM_INT16(tab_int16, index) ((tab_int16[(index)] << 16) + tab_int16[(index) + 1])
  25. -#define MODBUS_GET_INT16_FROM_INT8(tab_int8, index) ((tab_int8[(index)] << 8) + tab_int8[(index) + 1])
  26. +#define MODBUS_GET_INT32_FROM_INT16(tab_int16, index) ((tab_int16[(index)] << 16) | tab_int16[(index) + 1])
  27. +#define MODBUS_GET_INT16_FROM_INT8(tab_int8, index) ((tab_int8[(index)] << 8) | tab_int8[(index) + 1])
  28. #define MODBUS_SET_INT16_TO_INT8(tab_int8, index, value) \
  29. do { \
  30. tab_int8[(index)] = (value) >> 8; \
  31. --
  32. 2.17.1