mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-27 18:50:26 +08:00
df715100f2
* -以ev_hc32f4a0_lqfp176为模板进行修改 * -修改对应引脚 * -更新readme * -update readme * -添加 lckfb-hc32f4a0-lqfp100
41 lines
732 B
C
41 lines
732 B
C
/*
|
|
* Copyright (C) 2022-2024, Xiaohua Semiconductor Co., Ltd.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2022-04-28 CDT first version
|
|
*/
|
|
|
|
#ifndef __DRV_CONFIG_H__
|
|
#define __DRV_CONFIG_H__
|
|
|
|
#include <board.h>
|
|
#include <rtthread.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "dma_config.h"
|
|
#include "uart_config.h"
|
|
#include "spi_config.h"
|
|
#include "adc_config.h"
|
|
#include "dac_config.h"
|
|
#include "gpio_config.h"
|
|
#include "eth_config.h"
|
|
#include "can_config.h"
|
|
#include "sdio_config.h"
|
|
#include "pm_config.h"
|
|
#include "i2c_config.h"
|
|
#include "qspi_config.h"
|
|
#include "pulse_encoder_config.h"
|
|
#include "timer_config.h"
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|