12345678910111213141516171819202122232425262728293031 |
- #include <stdio.h>
- #include <modbus.h>
- int main(void)
- {
- printf("Compiled with libmodbus version %s\n", MB_VERSION_STRING);
- printf("Linked with libmodbus version %d.%d.%d\n",
- mb_version_major, mb_version_minor, mb_version_micro);
- if (MB_VERSION_CHECK(2, 1, 0)) {
- printf("The functions to read/write float values are available.\n");
- }
- return 0;
- }
|