task_ec800_upload.h 539 B

12345678910111213141516171819202122232425262728
  1. #ifndef _TASK_EC800_UPLOAD_H_
  2. #define _TASK_EC800_UPLOAD_H_
  3. //---------------私有包含
  4. #include "FreeRTOS.h"
  5. #include "task.h"
  6. #include "main.h"
  7. #include "cmsis_os.h"
  8. #include "EC800.h"
  9. #include "stdio.h"
  10. #include "turnDetection.h"
  11. #include "comm_car_485.h"
  12. #include <string.h>
  13. #include "atk_ms6050.h"
  14. // 将其声明为外部变量
  15. extern osMutexId_t mutex_rs485RecDateHandle;
  16. extern osMutexId_t s_messageDate_locationHandle;
  17. extern osThreadId_t ec800_dataUploaHandle;
  18. //---------------函数声明
  19. extern void task_ec800_content(void);
  20. #endif