pr_head.c
来自「AT91所有开发板的资料 AT91所有开发板的资料」· C语言 代码 · 共 43 行
C
43 行
/*************************************************************************** Copyright ARM Limited 1998 - 2000. All rights reserved.**************************************************************************** Common routines to print out banners at the start & end of execution $Id: pr_head.c,v 1.4 2000/01/11 16:17:52 mquinn Exp $****************************************************************************/#include "uhal.h"extern char * test_name;extern char * test_ver;#define BUILD_DATE "\nDate: " __DATE__ "\n\n"void print_header( void){ uHALr_printf("\n\nARM Firmware Suite\n"); uHALr_printf("Copyright (c) ARM Ltd 1999 - 2000. All rights reserved.\n\n"); uHALr_printf(test_name); uHALr_printf(test_ver); uHALr_printf(uHAL_VERSION_STRING); uHALr_printf(BUILD_DATE);#ifdef SEMIHOSTED uHALr_printf("\n\n"); uHALr_printf("These tests may run for many seconds without allowing any\n"); uHALr_printf("software debug monitor to run. The link with the host\n"); uHALr_printf("will time out if heartbeat is enabled.\n"); uHALr_printf("\n\n");#endif}void print_end (void){ uHALr_printf("\nTests Complete\n"); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?