lpc.h 620 B

1234567891011121314151617181920212223242526272829
  1. #ifndef __LPC_H__
  2. #define __LPC_H__
  3. #include <serial.h>
  4. #include <sprog.h>
  5. struct lpc_device {
  6. struct serial_device *port;
  7. const struct lpc_part *part;
  8. };
  9. struct lpc_device *lpc_setup(struct serial_device *port);
  10. void lpc_init(struct lpc_device *dev);
  11. void lpc_exec(struct lpc_device *dev, const struct sprog_data *d);
  12. void lpc_write(struct lpc_device *dev, const struct sprog_data *d);
  13. void lpc_close(struct lpc_device *dev);
  14. struct lpc_part {
  15. const char *name;
  16. unsigned int part_id;
  17. int ram;
  18. int flash;
  19. };
  20. extern const struct lpc_part lpc_parts[];
  21. extern const struct sprog_family lpc_family;
  22. #endif