bandwidth-slave-one.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Copyright © 2008 Stéphane Raimbault <stephane.raimbault@gmail.com>
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #include <stdio.h>
  18. #include <unistd.h>
  19. #include <string.h>
  20. #include <stdlib.h>
  21. #include <modbus/modbus.h>
  22. int main(void)
  23. {
  24. int socket;
  25. modbus_param_t mb_param;
  26. modbus_mapping_t mb_mapping;
  27. int ret;
  28. modbus_init_tcp(&mb_param, "127.0.0.1", 1502);
  29. ret = modbus_mapping_new(&mb_mapping, MAX_STATUS, 0, MAX_REGISTERS, 0);
  30. if (ret == FALSE) {
  31. printf("Memory allocation failed\n");
  32. exit(1);
  33. }
  34. socket = modbus_slave_listen_tcp(&mb_param, 1);
  35. modbus_slave_accept_tcp(&mb_param, &socket);
  36. while (1) {
  37. uint8_t query[MAX_MESSAGE_LENGTH];
  38. int query_size;
  39. ret = modbus_slave_receive(&mb_param, -1, query, &query_size);
  40. if (ret == 0) {
  41. modbus_manage_query(&mb_param, query, query_size, &mb_mapping);
  42. } else if (ret == CONNECTION_CLOSED) {
  43. /* Connection closed by the client, end of server */
  44. break;
  45. } else {
  46. printf("Error in modbus_listen (%d)\n", ret);
  47. }
  48. }
  49. close(socket);
  50. modbus_mapping_free(&mb_mapping);
  51. modbus_close(&mb_param);
  52. return 0;
  53. }