Files
luban-lite/bsp/artinchip/drv/adcim/drv_adcim.c
刘可亮 724d6bf65e v1.1.2
2025-01-08 19:12:06 +08:00

18 lines
303 B
C

/*
* Copyright (c) 2023-2024, ArtInChip Technology Co., Ltd
*
* SPDX-License-Identifier: Apache-2.0
*/
#include "aic_core.h"
#include "hal_adcim.h"
int drv_adcim_init(void)
{
if (hal_adcim_probe())
return -RT_ERROR;
else
return RT_EOK;
}
INIT_BOARD_EXPORT(drv_adcim_init);