32 lines
826 B
C
32 lines
826 B
C
//******************** (C) COPYRIGHT 2022 SmartLogic*******************************
|
|
// FileName : ucp_jsonTools.h (ap side)
|
|
// Author : boheng.lin@smartlogictech.com
|
|
// Date First Issued : 2023-08-16 02:37:50 PM
|
|
// Last Modified :
|
|
// Description :
|
|
// ------------------------------------------------------------
|
|
// Modification History:
|
|
// Version Date Author Modification Description
|
|
//
|
|
//**********************************************************************************
|
|
|
|
#ifndef __UCP_JSONTOOLS__
|
|
#define __UCP_JSONTOOLS__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "ucp_api_jesd.h"
|
|
|
|
extern ucp_jesd_TrxGpioCfg_t ucp_GetGpioConfig (const char *fileName);
|
|
extern void ucp_printGpioConfigStruct (ucp_jesd_TrxGpioCfg_t trxGpioCfg);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|