Device_Flagchip_FC7240_V2/FC/fclib/fcfunc.h

36 lines
739 B
C

/**
* @file module_fclib.h
* @author Flagchip
* @brief include fclib file
* @version 2.0.0
* @date 2024-08-20
*
* SDK Version: 2.6.0
*
* @copyright Copyright (c) 2020-2024 Flagchip Semiconductors Co., Ltd.
*
*/
#ifndef _DEVICE_FCLIB_FCFUNC_H_
#define _DEVICE_FCLIB_FCFUNC_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "typedef.h"
#include "v_def.h"
void* FCFUNC_FcOwnMemcpy(uint8_t *pDest, const uint8_t *pSource, uint32_t u32Count, void_functype wdogTriggerFunc );
void* FC_OwnMemcpy(void *pDest, const void *pSource, uint32_t u32Count);
void* FC_OwnMemcpyWithWdg(void *pDest, const void *pSource, uint32_t u32Count, void_functype wdogTriggerFunc, uint32_t u32CallBackCnt );
#ifdef __cplusplus
}
#endif
#endif