Advertisement
Guest User

a portion of publisher_task.c

a guest
Aug 29th, 2023
54
0
117 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. The lines of code that are able to use the types:
  2.  
  3. TaskHandle_t publisher_task_handle;
  4. QueueHandle_t publisher_task_q;
  5.  
  6. The Libraries used:
  7. /* Libraries*/
  8. #include "cyhal.h"
  9. #include "cybsp.h"
  10. #include "FreeRTOS.h"
  11. #include "cycfg.h"
  12. #include "cy_pdl.h"
  13. #include "math.h"
  14.  
  15. /* Task header files */
  16. #include "publisher_task.h"
  17. #include "mqtt_task.h"
  18. #include "subscriber_task.h"
  19.  
  20. /* Configuration file for MQTT client */
  21. #include "mqtt_client_config.h"
  22.  
  23. /*Middleware libraries */
  24. #include "cy_mqtt_api.h"
  25. #include "cy_retarget_io.h"
  26.  
  27. /*DPS310*/
  28. #include "xensiv_dps3xx_mtb.h"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement