You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
925 B
38 lines
925 B
4 months ago
|
/**
|
||
|
******************************************************************************
|
||
|
* @copyright Copyright (C), 2016-2022, ConvenientPower. Co., Ltd.
|
||
|
* @file drv_comm.h
|
||
|
* @version 1.0
|
||
|
* @author qing.cheng
|
||
|
* @date 2022-11-12
|
||
|
* @brief Header file of DRV_COMM_H module.
|
||
|
******************************************************************************
|
||
|
*/
|
||
|
#ifndef _DRV_COMM_H_
|
||
|
#define _DRV_COMM_H_
|
||
|
|
||
|
|
||
|
#include "core_comm.h"
|
||
|
#include "drv_clock.h"
|
||
|
#include "drv_gpio.h"
|
||
|
#include "drv_delay.h"
|
||
|
#include "drv_analog.h"
|
||
|
#include "drv_analog_trim.h"
|
||
|
#include "drv_uart.h"
|
||
|
#include "drv_watchdog.h"
|
||
|
#include "drv_extint.h"
|
||
|
#include "drv_timer.h"
|
||
|
#include "drv_adc.h"
|
||
|
#include "drv_dac.h"
|
||
|
#include "drv_dpdn.h"
|
||
|
#include "drv_mtp.h"
|
||
|
#include "drv_dma.h"
|
||
|
#include "drv_i2c.h"
|
||
|
#include "drv_pwd.h"
|
||
|
#include "drv_vd.h"
|
||
|
#include "drv_pd_phy.h"
|
||
|
#include "drv_scp_phy.h"
|
||
|
#include "drv_vfcp_phy.h"
|
||
|
#include "drv_ufcs_phy.h"
|
||
|
#endif
|