Hi3751V560_hippo架构
实例:
1、device\hisilicon\bigfish\hippo\vendor\external 添加自定义文件,会自动参与编译,并可供hippo调用。
device\hisilicon\bigfish\hippo\vendor\external\custom_mw_temperature_control.cpp
2、device\hisilicon\bigfish\hippo\vendor\logic\setting\hi_mw_logic_system.cpp 里调用自定义的函数
// 初始化
HI_S32 HiSystem::Init()
{
s32Ret = Custom_DeviceInit();
RET_CHECK_ERR_LOG(s32Ret, "Custom_DeviceInit failure.s32Ret: 0x%x", s32Ret);
}
/* ATV 系统恢复 */
HI_S32 HiSystem::Resume(HI_MW_POWERTYPE_E powerType)
{
s32Ret = Custom_De