udbg.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __UDBG_HDR
  2. #define __UDBG_HDR
  3. /*
  4.  * c 2001 PPC 64 Team, IBM Corp
  5.  *
  6.  * This program is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License
  8.  * as published by the Free Software Foundation; either version
  9.  * 2 of the License, or (at your option) any later version.
  10.  */
  11. void udbg_init_uart(void *comport);
  12. void udbg_putc(unsigned char c);
  13. unsigned char udbg_getc(void);
  14. int udbg_getc_poll(void);
  15. void udbg_puts(const char *s);
  16. int udbg_write(const char *s, int n);
  17. int udbg_read(char *buf, int buflen);
  18. struct console;
  19. void udbg_console_write(struct console *con, const char *s, unsigned int n);
  20. void udbg_puthex(unsigned long val);
  21. void udbg_printSP(const char *s);
  22. void udbg_printf(const char *fmt, ...);
  23. void udbg_ppcdbg(unsigned long flags, const char *fmt, ...);
  24. unsigned long udbg_ifdebug(unsigned long flags);
  25. void udbg_init_uart(void *comport);
  26. #endif