drv_rs485.h 422 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (c) 2006-2021, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2020-10-24 thread-liu first version
  9. */
  10. #ifndef __DRV_RS485_H__
  11. #define __DRV_RS485_H__
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #define RS485_SEND_MODE 0
  16. #define RS485_RECV_MODE 1
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20. #endif /* drv_rs485.h */