2023-08-30 16:21:18 +08:00
|
|
|
/*
|
2025-01-08 19:12:06 +08:00
|
|
|
* Copyright (c) 2022-2024, ArtInChip Technology Co., Ltd
|
2023-08-30 16:21:18 +08:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _ARTINCHIP_AIC_DRV_H_
|
|
|
|
|
#define _ARTINCHIP_AIC_DRV_H_
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <aic_hal.h>
|
|
|
|
|
#include "aic_drv_irq.h"
|
|
|
|
|
#include "aic_drv_gpio.h"
|
|
|
|
|
#include "aic_drv_uart.h"
|
2025-01-08 19:12:06 +08:00
|
|
|
#ifdef AIC_GE_DRV
|
2023-08-30 16:21:18 +08:00
|
|
|
#include "aic_drv_ge.h"
|
2025-01-08 19:12:06 +08:00
|
|
|
#endif
|
2023-08-30 16:21:18 +08:00
|
|
|
#include "drv_qspi.h"
|
|
|
|
|
#include "drv_efuse.h"
|
2025-01-08 19:12:06 +08:00
|
|
|
#ifdef AIC_DMA_DRV
|
2023-08-30 16:21:18 +08:00
|
|
|
#include "drv_dma.h"
|
2025-01-08 19:12:06 +08:00
|
|
|
#endif
|
2023-08-30 16:21:18 +08:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif /* _ARTINCHIP_AIC_DRV_H_ */
|