lpc.h 552 B

12345678910111213141516171819202122232425262728
  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_close(struct lpc_device *dev);
  13. struct lpc_part {
  14. const char *name;
  15. unsigned int part_id;
  16. int ram;
  17. int flash;
  18. };
  19. extern const struct lpc_part lpc_parts[];
  20. extern const struct sprog_family lpc_family;
  21. #endif