📄 rtc_test.h
字号:
/********************************************************************************/
/* */
/* File Name: rtc_test.h */
/* */
/* Purpose: This file contains RTC test generic definitions. */
/* */
/* Note: None. */
/* */
/* Revision History: */
/* 03/20/2001 Laurent Sollier Create. */
/* */
/* (C) Copyright 2000 by Texas Instruments Incorporated, All Rights Reserved */
/* */
/********************************************************************************/
#ifndef _RTC_TEST_H_
#define _RTC_TEST_H_
#include "tests/rv/rv_test_filter_redirect.h"
#include "tests/rv/rv_test.h"
#if (RTC_TEST == SW_COMPILED)
#include "rvm/rvm_use_id_list.h"
#define DELAY (10000)
#define WAIT_FLAG (RVF_MS_TO_TICKS (DELAY))
extern T_RVF_MB_ID mb_rtc_test;
extern T_RV_RETURN rtc_test_path;
/********************************************************************************/
/* */
/* MACRO Name: rtc_test_trace */
/* */
/* Purpose: This macro is called to trace msg in RTC tests. */
/* */
/* Note: None. */
/* */
/* Revision History: */
/* 03/20/01 Laurent Sollier Create. */
/* */
/********************************************************************************/
#define rtc_test_trace(msg)\
{\
rvf_send_trace ( msg, sizeof(msg)-1, NULL_PARAM, RV_TRACE_LEVEL_DEBUG_HIGH, RTC_USE_ID);\
}
/********************************************************************************/
/* */
/* MACRO Name: rtc_test_error */
/* */
/* Purpose: This macro is called to trace ERROR msg in RTC tests. */
/* */
/* Note: None. */
/* */
/* Revision History: */
/* 03/20/01 Laurent Sollier Create. */
/* */
/********************************************************************************/
#define rtc_test_error(msg)\
{\
rvf_send_trace ( msg, sizeof(msg)-1, NULL_PARAM, RV_TRACE_LEVEL_ERROR, TRACE_RVTEST);\
}
#endif /* #if (RTC_TEST == SW_COMPILED) */
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -