canopen_sync.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * Copyright (c) 2019 Vestas Wind Systems A/S
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <CANopen.h>
  7. /**
  8. * @brief CANopen sync thread.
  9. *
  10. * The CANopen real-time sync thread processes SYNC RPDOs and TPDOs
  11. * through the CANopenNode stack with an interval of 1 millisecond.
  12. *
  13. * @param p1 Unused
  14. * @param p2 Unused
  15. * @param p3 Unused
  16. */
  17. static void canopen_sync_thread(void *p1, void *p2, void *p3)
  18. {
  19. uint32_t start; /* cycles */
  20. uint32_t stop; /* cycles */
  21. uint32_t delta; /* cycles */
  22. uint32_t elapsed = 0; /* microseconds */
  23. bool sync;
  24. ARG_UNUSED(p1);
  25. ARG_UNUSED(p2);
  26. ARG_UNUSED(p3);
  27. while (true) {
  28. start = k_cycle_get_32();
  29. if (CO && CO->CANmodule[0] && CO->CANmodule[0]->CANnormal) {
  30. CO_LOCK_OD();
  31. sync = CO_process_SYNC(CO, elapsed);
  32. CO_process_RPDO(CO, sync);
  33. CO_process_TPDO(CO, sync, elapsed);
  34. CO_UNLOCK_OD();
  35. }
  36. k_sleep(K_MSEC(1));
  37. stop = k_cycle_get_32();
  38. delta = stop - start;
  39. elapsed = (uint32_t)k_cyc_to_ns_floor64(delta) / NSEC_PER_USEC;
  40. }
  41. }
  42. K_THREAD_DEFINE(canopen_sync, CONFIG_CANOPENNODE_SYNC_THREAD_STACK_SIZE,
  43. canopen_sync_thread, NULL, NULL, NULL,
  44. CONFIG_CANOPENNODE_SYNC_THREAD_PRIORITY, 0, 1);