event_sample.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /*
  2. * Copyright (c) 2006-2022, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2018-08-24 yangjie the first version
  9. */
  10. /*
  11. * 程序清单:事件例程
  12. *
  13. * 程序会初始化2个线程及初始化一个静态事件对象
  14. * 一个线程等待于事件对象上,以接收事件;
  15. * 一个线程发送事件 (事件3/事件5)
  16. */
  17. #include <rtthread.h>
  18. #define THREAD_PRIORITY 9
  19. #define THREAD_TIMESLICE 5
  20. #define EVENT_FLAG3 (1 << 3)
  21. #define EVENT_FLAG5 (1 << 5)
  22. /* 事件控制块 */
  23. static struct rt_event event;
  24. ALIGN(RT_ALIGN_SIZE)
  25. static char thread1_stack[1024];
  26. static struct rt_thread thread1;
  27. /* 线程1入口函数 */
  28. static void thread1_recv_event(void *param)
  29. {
  30. rt_uint32_t e;
  31. /* 第一次接收事件,事件3或事件5任意一个可以触发线程1,接收完后清除事件标志 */
  32. if (rt_event_recv(&event, (EVENT_FLAG3 | EVENT_FLAG5),
  33. RT_EVENT_FLAG_OR | RT_EVENT_FLAG_CLEAR,
  34. RT_WAITING_FOREVER, &e) == RT_EOK)
  35. {
  36. rt_kprintf("thread1: OR recv event 0x%x\n", e);
  37. }
  38. rt_kprintf("thread1: delay 1s to prepare the second event\n");
  39. rt_thread_mdelay(1000);
  40. /* 第二次接收事件,事件3和事件5均发生时才可以触发线程1,接收完后清除事件标志 */
  41. if (rt_event_recv(&event, (EVENT_FLAG3 | EVENT_FLAG5),
  42. RT_EVENT_FLAG_AND | RT_EVENT_FLAG_CLEAR,
  43. RT_WAITING_FOREVER, &e) == RT_EOK)
  44. {
  45. rt_kprintf("thread1: AND recv event 0x%x\n", e);
  46. }
  47. rt_kprintf("thread1 leave.\n");
  48. }
  49. ALIGN(RT_ALIGN_SIZE)
  50. static char thread2_stack[1024];
  51. static struct rt_thread thread2;
  52. /* 线程2入口 */
  53. static void thread2_send_event(void *param)
  54. {
  55. rt_kprintf("thread2: send event3\n");
  56. rt_event_send(&event, EVENT_FLAG3);
  57. rt_thread_mdelay(200);
  58. rt_kprintf("thread2: send event5\n");
  59. rt_event_send(&event, EVENT_FLAG5);
  60. rt_thread_mdelay(200);
  61. rt_kprintf("thread2: send event3\n");
  62. rt_event_send(&event, EVENT_FLAG3);
  63. rt_kprintf("thread2 leave.\n");
  64. }
  65. int event_sample(void)
  66. {
  67. rt_err_t result;
  68. /* 初始化事件对象 */
  69. result = rt_event_init(&event, "event", RT_IPC_FLAG_PRIO);
  70. if (result != RT_EOK)
  71. {
  72. rt_kprintf("init event failed.\n");
  73. return -1;
  74. }
  75. rt_thread_init(&thread1,
  76. "thread1",
  77. thread1_recv_event,
  78. RT_NULL,
  79. &thread1_stack[0],
  80. sizeof(thread1_stack),
  81. THREAD_PRIORITY - 1, THREAD_TIMESLICE);
  82. rt_thread_startup(&thread1);
  83. rt_thread_init(&thread2,
  84. "thread2",
  85. thread2_send_event,
  86. RT_NULL,
  87. &thread2_stack[0],
  88. sizeof(thread2_stack),
  89. THREAD_PRIORITY, THREAD_TIMESLICE);
  90. rt_thread_startup(&thread2);
  91. return 0;
  92. }
  93. /* 导出到 msh 命令列表中 */
  94. MSH_CMD_EXPORT(event_sample, event sample);