
2. add case0 : LTE 2 ape testcase 3. add case20: NR 4 ape testcase 4. add case21: NR 8 ape testcase 5. add case22: LTE 8 ape testcase 6. add case50: PCIE EP: arm read cfg for phy
33 lines
782 B
C
33 lines
782 B
C
// +FHDR------------------------------------------------------------
|
|
// Copyright (c) 2022 SmartLogic.
|
|
// ALL RIGHTS RESERVED
|
|
// -----------------------------------------------------------------
|
|
// Filename : test.c
|
|
// Author : xianfeng.du
|
|
// Created On : 2022-11-25
|
|
// Last Modified :
|
|
// -----------------------------------------------------------------
|
|
// Description:
|
|
//
|
|
//
|
|
// -FHDR------------------------------------------------------------
|
|
|
|
#include <stddef.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include "typedef.h"
|
|
#include "ucp_printf.h"
|
|
|
|
extern uint8_t gu8_main_flag;
|
|
|
|
int32_t test_case(uint32_t argc, int32_t* argvp)
|
|
{
|
|
UCP_PRINT_DEBUG("start running testcase 50.");
|
|
|
|
gu8_main_flag = 0;
|
|
|
|
return 0;
|
|
}
|
|
|