#ifndef _RS485_READ_DATA_H_ #define _RS485_READ_DATA_H_ #include "define_all.h" typedef enum { RS485_COM_IDLE = 0U, RS485_COM_PWR_ON, RS485_COM_SEND, RS485_COM_WAIT_ANSWER, RS485_COM_TIMEOUT, RS485_COM_OFF } RS485_COM_STATUS_T; // ·§ÃÅ״̬ÀàÐÍ extern __IO RS485_COM_STATUS_T rs485_com_status_g; void rs485ReadDataPro(void); #endif