44 lines
1.3 KiB
C
44 lines
1.3 KiB
C
/**
|
|
******************************************************************************
|
|
* @file HAL_conf.h
|
|
* @author AE Team
|
|
* @version V2.0.0
|
|
* @date 22/08/2017
|
|
* @brief This file contains Header file for generic microcontroller.
|
|
******************************************************************************
|
|
* @copy
|
|
*
|
|
* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
|
|
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
|
|
* TIME. AS A RESULT, MindMotion SHALL NOT BE HELD LIABLE FOR ANY
|
|
* DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
|
|
* FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
|
|
* CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
|
|
*
|
|
* <h2><center>© COPYRIGHT 2017 MindMotion</center></h2>
|
|
*/
|
|
#ifndef __HAL_CONF_H__
|
|
#define __HAL_CONF_H__
|
|
|
|
/*´Ë´¦¿ÉÌí¼Ó»òɾ³ýÍâÉè*/
|
|
#include "HAL_device.h"
|
|
#include "HAL_adc.h"
|
|
#include "HAL_bkp.h"
|
|
#include "HAL_dma.h"
|
|
#include "HAL_exti.h"
|
|
#include "HAL_flash.h"
|
|
#include "HAL_gpio.h"
|
|
#include "HAL_i2c.h"
|
|
#include "HAL_iwdg.h"
|
|
#include "HAL_pwr.h"
|
|
#include "HAL_rcc.h"
|
|
#include "HAL_spi.h"
|
|
#include "HAL_tim.h"
|
|
#include "HAL_uart.h"
|
|
#include "HAL_wwdg.h"
|
|
#include "HAL_misc.h"
|
|
#include "HAL_syscfg.h"
|
|
#endif
|
|
|
|
/*-------------------------(C) COPYRIGHT 2017 MindMotion ----------------------*/
|