Files
luban-lite-t3e-pro/bsp/artinchip/drv/syscfg/drv_syscfg.c

18 lines
307 B
C
Raw Normal View History

2023-08-30 16:21:18 +08:00
/*
* 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);