sprog.h 572 B

123456789101112131415161718192021
  1. #ifndef __SPROG_H__
  2. #define __SPROG_H__
  3. #include <serial.h>
  4. #define array_size(x) (sizeof(x)/sizeof(*x))
  5. struct sprog_family {
  6. void *(*setup)(struct serial_device *dev);
  7. void (*init)(void *arg);
  8. void (*close)(void *arg);
  9. };
  10. extern const char sprog_version[];
  11. void sprog_communicate(const struct sprog_family *fam, const char *port, int baud);
  12. void sprog_process(const struct sprog_family *fam, void *arg, int nstdin, int nstdout);
  13. int sprog_getline(char *buf, int len, int timeout);
  14. void sprog_error(const char *text, ...);
  15. void sprog_sleep(int msec);
  16. #endif