📄 pr_head.c
字号:
/*************************************************************************** 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -