36 lines
836 B
C
36 lines
836 B
C
![]() |
// +FHDR------------------------------------------------------------
|
||
|
// Copyright (c) 2022 SmartLogic.
|
||
|
// ALL RIGHTS RESERVED
|
||
|
// -----------------------------------------------------------------
|
||
|
// Filename : ucp_fh_test.h
|
||
|
// Author : xianfeng.du
|
||
|
// Created On : 2022-10-20
|
||
|
// Last Modified :
|
||
|
// -----------------------------------------------------------------
|
||
|
// Description:
|
||
|
//
|
||
|
//
|
||
|
// -FHDR------------------------------------------------------------
|
||
|
|
||
|
|
||
|
#ifndef __UCP_FH_TESTCASE_H__
|
||
|
#define __UCP_FH_TESTCASE_H__
|
||
|
|
||
|
#include "typedef.h"
|
||
|
|
||
|
#ifdef DISTRIBUTED_BS
|
||
|
#include "cpri_test.h"
|
||
|
#endif
|
||
|
|
||
|
#ifdef INTEGRATED_BS
|
||
|
#include "jesd_test.h"
|
||
|
extern uint32_t gJesdTestMode;
|
||
|
#endif
|
||
|
|
||
|
void fh_test_init(void);
|
||
|
void check_test_outcome(uint32_t cnt);
|
||
|
|
||
|
|
||
|
#endif
|
||
|
|