⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 debugport.h

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 H
字号:
/*****************************************************************************//*  $Id: debugport.h,v 1.1 1997/07/31 22:13:22 joel Exp $  Debug Port Support*//*****************************************************************************/#if !defined(_DEBUGPORT_H_) #define _DEBUGPORT_H_#if __cplusplusextern "C" {#endif  /* normall automatic, only need when re-initialising */  void debug_port_initialise(void);    unsigned char debug_port_status(const unsigned char status);  unsigned char debug_port_in(void);  void debug_port_out(const unsigned char character);   void debug_port_write(const char *buffer);  void debug_port_write_buffer(const char *buffer, unsigned int size);  void debug_port_write_hex_uint(const unsigned int value);  void debug_port_write_hex_ulong(const unsigned long value);     /*    * special banner message for CPU specific boot code,    * initialises the debug port    */  void debug_port_banner(void);  void debug_port_printf(const char *format, ...);#if __cplusplus}#endif#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -