lpc.h 485 B

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