serial.h 826 B

1234567891011121314151617181920212223242526272829303132333435
  1. #ifndef __SERIAL_H__
  2. #define __SERIAL_H__
  3. #define SERIAL_DTR 0
  4. #define SERIAL_RTS 1
  5. struct baud_code {
  6. int baud;
  7. int code;
  8. };
  9. struct ring_buf {
  10. char data[4096];
  11. unsigned int start;
  12. unsigned int size;
  13. };
  14. struct serial_device {
  15. int fd;
  16. struct ring_buf in_buf;
  17. struct ring_buf out_buf;
  18. };
  19. extern const struct baud_code baud_codes[];
  20. int serial_open(struct serial_device *port, const char *path, int baud);
  21. void serial_close(struct serial_device *port);
  22. int serial_setbaud(struct serial_device *port, int baud);
  23. void serial_setline(struct serial_device *port, int line, int state);
  24. int serial_read(struct serial_device *port, char *buf, int len, int timeout);
  25. void serial_write(struct serial_device *port, const char *text);
  26. void serial_communicate(struct serial_device *port, int infd, int outfd);
  27. #endif