mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-15 19:08:54 +00:00
18 lines
307 B
C
18 lines
307 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2022-2023, ArtInChip Technology Co., Ltd
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "aic_core.h"
|
||
|
|
#include "hal_syscfg.h"
|
||
|
|
|
||
|
|
int drv_syscfg_init(void)
|
||
|
|
{
|
||
|
|
if (hal_syscfg_probe())
|
||
|
|
return -RT_ERROR;
|
||
|
|
else
|
||
|
|
return RT_EOK;
|
||
|
|
}
|
||
|
|
INIT_BOARD_EXPORT(drv_syscfg_init);
|