12345678910111213141516171819202122 |
- #ifndef __MB_RTU_DEAL_TASK_H
- #define __MB_RTU_DEAL_TASK_H
- #include "FreeRTOS.h"
- #include "task.h"
- void Air_Open_data_Send(void);
- void Air_Close_data_Send(void);
- void Air_Mode_data_Send(void);
- void Air_speed_data_Send(void);
- void Air_speed_data_Sendtemp(uint8_t hight,uint8_t low);
- void Air_set_temp_data_Send(void);
- void Floor_heating_Open_data_Send(void);
- void Floor_heating_set_temp_data_Send(void);
- void Fresh_air_Open_data_Send(void);
- void Fresh_air_speed_data_Send(void);
- void Fresh_air_speed_data_Sendtemp(uint8_t hight,uint8_t low);
- void Real_Temp_data_Send(void);
- void Real_humi_data_Send(void);
- extern TaskHandle_t MB_RTU_dealTask_Handler;
- void mb_rtu_deal_task(void *pvParameters);
- #endif
|