44 lines
1.1 KiB
C
44 lines
1.1 KiB
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 <sys/time.h>
|
|
#include <unistd.h>
|
|
|
|
#include "typedef.h"
|
|
#include "ucp_printf.h"
|
|
#include "msg_transfer_mem.h"
|
|
#include "pet_sm_mgt.h"
|
|
#include "ucp_handshake.h"
|
|
#include "ospShell.h"
|
|
#include "ospLog.h"
|
|
#include "ospCfgToBin.h"
|
|
#include "drv_init.h"
|
|
|
|
#include "ucp_api_jesd.h"
|
|
#include "ucp_api_rfic.h"
|
|
|
|
int32_t test_case(uint32_t argc, int32_t* argvp)
|
|
{
|
|
UCP_PRINT_DEBUG("start running testcase 42s.");
|
|
UCP_PRINT_DEBUG("print rssi.");
|
|
|
|
UCP_API_RFIC_CellInit(200000000u);
|
|
UCP_API_RFIC_CellSetup(2575770000u, 2575770000u, 0);
|
|
|
|
return 0;
|
|
}
|
|
|