sprog.h 836 B

1234567891011121314151617181920212223242526272829303132
  1. #ifndef __SPROG_H__
  2. #define __SPROG_H__
  3. #include <serial.h>
  4. #define array_size(x) (sizeof(x)/sizeof(*x))
  5. struct sprog_data {
  6. int size;
  7. int alloc;
  8. unsigned char *data;
  9. };
  10. struct sprog_family {
  11. void *(*setup)(struct serial_device *dev);
  12. void (*init)(void *arg);
  13. void (*exec)(void *arg, const struct sprog_data *d);
  14. void (*close)(void *arg);
  15. };
  16. extern const char sprog_version[];
  17. void sprog_communicate(const struct sprog_family *fam, const struct sprog_data *d, const char *port, int baud);
  18. int sprog_getline(char *buf, int len, int timeout);
  19. int sprog_waitdata(int timeout);
  20. void sprog_error(const char *text, ...);
  21. void sprog_sleep(int msec);
  22. void sprog_load(struct sprog_data *d, const char *path);
  23. void sprog_append_data(struct sprog_data *d, const char *data, int len);
  24. void sprog_progress(int progress);
  25. #endif