Dataloger

Committer:
jhon309
Date:
Thu Aug 20 00:37:14 2015 +0000
Revision:
0:666850d06c9f
ok

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jhon309 0:666850d06c9f 1 /**
jhon309 0:666850d06c9f 2 ******************************************************************************
jhon309 0:666850d06c9f 3 * @file stm32f0xx_hal_conf_template.h
jhon309 0:666850d06c9f 4 * @author MCD Application Team
jhon309 0:666850d06c9f 5 * @version V1.2.0
jhon309 0:666850d06c9f 6 * @date 11-December-2014
jhon309 0:666850d06c9f 7 * @brief HAL configuration file.
jhon309 0:666850d06c9f 8 ******************************************************************************
jhon309 0:666850d06c9f 9 * @attention
jhon309 0:666850d06c9f 10 *
jhon309 0:666850d06c9f 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
jhon309 0:666850d06c9f 12 *
jhon309 0:666850d06c9f 13 * Redistribution and use in source and binary forms, with or without modification,
jhon309 0:666850d06c9f 14 * are permitted provided that the following conditions are met:
jhon309 0:666850d06c9f 15 * 1. Redistributions of source code must retain the above copyright notice,
jhon309 0:666850d06c9f 16 * this list of conditions and the following disclaimer.
jhon309 0:666850d06c9f 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
jhon309 0:666850d06c9f 18 * this list of conditions and the following disclaimer in the documentation
jhon309 0:666850d06c9f 19 * and/or other materials provided with the distribution.
jhon309 0:666850d06c9f 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
jhon309 0:666850d06c9f 21 * may be used to endorse or promote products derived from this software
jhon309 0:666850d06c9f 22 * without specific prior written permission.
jhon309 0:666850d06c9f 23 *
jhon309 0:666850d06c9f 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
jhon309 0:666850d06c9f 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
jhon309 0:666850d06c9f 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
jhon309 0:666850d06c9f 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
jhon309 0:666850d06c9f 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
jhon309 0:666850d06c9f 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
jhon309 0:666850d06c9f 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
jhon309 0:666850d06c9f 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
jhon309 0:666850d06c9f 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
jhon309 0:666850d06c9f 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
jhon309 0:666850d06c9f 34 *
jhon309 0:666850d06c9f 35 ******************************************************************************
jhon309 0:666850d06c9f 36 */
jhon309 0:666850d06c9f 37
jhon309 0:666850d06c9f 38 /* Define to prevent recursive inclusion -------------------------------------*/
jhon309 0:666850d06c9f 39 #ifndef __STM32F0xx_HAL_CONF_H
jhon309 0:666850d06c9f 40 #define __STM32F0xx_HAL_CONF_H
jhon309 0:666850d06c9f 41
jhon309 0:666850d06c9f 42 #ifdef __cplusplus
jhon309 0:666850d06c9f 43 extern "C" {
jhon309 0:666850d06c9f 44 #endif
jhon309 0:666850d06c9f 45
jhon309 0:666850d06c9f 46 /* Exported types ------------------------------------------------------------*/
jhon309 0:666850d06c9f 47 /* Exported constants --------------------------------------------------------*/
jhon309 0:666850d06c9f 48
jhon309 0:666850d06c9f 49 /* ########################## Module Selection ############################## */
jhon309 0:666850d06c9f 50 /**
jhon309 0:666850d06c9f 51 * @brief This is the list of modules to be used in the HAL driver
jhon309 0:666850d06c9f 52 */
jhon309 0:666850d06c9f 53 #define HAL_MODULE_ENABLED
jhon309 0:666850d06c9f 54 #define HAL_ADC_MODULE_ENABLED
jhon309 0:666850d06c9f 55 #define HAL_CAN_MODULE_ENABLED
jhon309 0:666850d06c9f 56 #define HAL_CEC_MODULE_ENABLED
jhon309 0:666850d06c9f 57 #define HAL_COMP_MODULE_ENABLED
jhon309 0:666850d06c9f 58 #define HAL_CORTEX_MODULE_ENABLED
jhon309 0:666850d06c9f 59 #define HAL_CRC_MODULE_ENABLED
jhon309 0:666850d06c9f 60 #define HAL_DAC_MODULE_ENABLED
jhon309 0:666850d06c9f 61 #define HAL_DMA_MODULE_ENABLED
jhon309 0:666850d06c9f 62 #define HAL_FLASH_MODULE_ENABLED
jhon309 0:666850d06c9f 63 #define HAL_GPIO_MODULE_ENABLED
jhon309 0:666850d06c9f 64 #define HAL_I2C_MODULE_ENABLED
jhon309 0:666850d06c9f 65 #define HAL_I2S_MODULE_ENABLED
jhon309 0:666850d06c9f 66 #define HAL_IRDA_MODULE_ENABLED
jhon309 0:666850d06c9f 67 #define HAL_IWDG_MODULE_ENABLED
jhon309 0:666850d06c9f 68 #define HAL_PCD_MODULE_ENABLED
jhon309 0:666850d06c9f 69 #define HAL_PWR_MODULE_ENABLED
jhon309 0:666850d06c9f 70 #define HAL_RCC_MODULE_ENABLED
jhon309 0:666850d06c9f 71 #define HAL_RTC_MODULE_ENABLED
jhon309 0:666850d06c9f 72 #define HAL_SMARTCARD_MODULE_ENABLED
jhon309 0:666850d06c9f 73 #define HAL_SMBUS_MODULE_ENABLED
jhon309 0:666850d06c9f 74 #define HAL_SPI_MODULE_ENABLED
jhon309 0:666850d06c9f 75 #define HAL_TIM_MODULE_ENABLED
jhon309 0:666850d06c9f 76 #define HAL_TSC_MODULE_ENABLED
jhon309 0:666850d06c9f 77 #define HAL_UART_MODULE_ENABLED
jhon309 0:666850d06c9f 78 #define HAL_USART_MODULE_ENABLED
jhon309 0:666850d06c9f 79 #define HAL_WWDG_MODULE_ENABLED
jhon309 0:666850d06c9f 80
jhon309 0:666850d06c9f 81 /* ######################### Oscillator Values adaptation ################### */
jhon309 0:666850d06c9f 82 /**
jhon309 0:666850d06c9f 83 * @brief Adjust the value of External High Speed oscillator (HSE) used in your application.
jhon309 0:666850d06c9f 84 * This value is used by the RCC HAL module to compute the system frequency
jhon309 0:666850d06c9f 85 * (when HSE is used as system clock source, directly or through the PLL).
jhon309 0:666850d06c9f 86 */
jhon309 0:666850d06c9f 87 #if !defined (HSE_VALUE)
jhon309 0:666850d06c9f 88 #define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
jhon309 0:666850d06c9f 89 #endif /* HSE_VALUE */
jhon309 0:666850d06c9f 90
jhon309 0:666850d06c9f 91 /**
jhon309 0:666850d06c9f 92 * @brief In the following line adjust the External High Speed oscillator (HSE) Startup
jhon309 0:666850d06c9f 93 * Timeout value
jhon309 0:666850d06c9f 94 */
jhon309 0:666850d06c9f 95 #if !defined (HSE_STARTUP_TIMEOUT)
jhon309 0:666850d06c9f 96 #define HSE_STARTUP_TIMEOUT ((uint32_t)500) /*!< Time out for HSE start up, in ms */
jhon309 0:666850d06c9f 97 #endif /* HSE_STARTUP_TIMEOUT */
jhon309 0:666850d06c9f 98
jhon309 0:666850d06c9f 99 /**
jhon309 0:666850d06c9f 100 * @brief Internal High Speed oscillator (HSI) value.
jhon309 0:666850d06c9f 101 * This value is used by the RCC HAL module to compute the system frequency
jhon309 0:666850d06c9f 102 * (when HSI is used as system clock source, directly or through the PLL).
jhon309 0:666850d06c9f 103 */
jhon309 0:666850d06c9f 104 #if !defined (HSI_VALUE)
jhon309 0:666850d06c9f 105 #define HSI_VALUE ((uint32_t)8000000) /*!< Value of the Internal oscillator in Hz*/
jhon309 0:666850d06c9f 106 #endif /* HSI_VALUE */
jhon309 0:666850d06c9f 107
jhon309 0:666850d06c9f 108 /**
jhon309 0:666850d06c9f 109 * @brief In the following line adjust the Internal High Speed oscillator (HSI) Startup
jhon309 0:666850d06c9f 110 * Timeout value
jhon309 0:666850d06c9f 111 */
jhon309 0:666850d06c9f 112 #if !defined (HSI_STARTUP_TIMEOUT)
jhon309 0:666850d06c9f 113 #define HSI_STARTUP_TIMEOUT ((uint32_t)5000) /*!< Time out for HSI start up */
jhon309 0:666850d06c9f 114 #endif /* HSI_STARTUP_TIMEOUT */
jhon309 0:666850d06c9f 115
jhon309 0:666850d06c9f 116 /**
jhon309 0:666850d06c9f 117 * @brief Internal High Speed oscillator for ADC (HSI14) value.
jhon309 0:666850d06c9f 118 */
jhon309 0:666850d06c9f 119 #if !defined (HSI14_VALUE)
jhon309 0:666850d06c9f 120 #define HSI14_VALUE ((uint32_t)14000000) /*!< Value of the Internal High Speed oscillator for ADC in Hz.
jhon309 0:666850d06c9f 121 The real value may vary depending on the variations
jhon309 0:666850d06c9f 122 in voltage and temperature. */
jhon309 0:666850d06c9f 123 #endif /* HSI14_VALUE */
jhon309 0:666850d06c9f 124
jhon309 0:666850d06c9f 125 /**
jhon309 0:666850d06c9f 126 * @brief Internal High Speed oscillator for USB (HSI48) value.
jhon309 0:666850d06c9f 127 */
jhon309 0:666850d06c9f 128 #if !defined (HSI48_VALUE)
jhon309 0:666850d06c9f 129 #define HSI48_VALUE ((uint32_t)48000000) /*!< Value of the Internal High Speed oscillator for USB in Hz.
jhon309 0:666850d06c9f 130 The real value may vary depending on the variations
jhon309 0:666850d06c9f 131 in voltage and temperature. */
jhon309 0:666850d06c9f 132 #endif /* HSI48_VALUE */
jhon309 0:666850d06c9f 133
jhon309 0:666850d06c9f 134 /**
jhon309 0:666850d06c9f 135 * @brief Internal Low Speed oscillator (LSI) value.
jhon309 0:666850d06c9f 136 */
jhon309 0:666850d06c9f 137 #if !defined (LSI_VALUE)
jhon309 0:666850d06c9f 138 #define LSI_VALUE ((uint32_t)40000)
jhon309 0:666850d06c9f 139 #endif /* LSI_VALUE */ /*!< Value of the Internal Low Speed oscillator in Hz
jhon309 0:666850d06c9f 140 The real value may vary depending on the variations
jhon309 0:666850d06c9f 141 in voltage and temperature. */
jhon309 0:666850d06c9f 142 /**
jhon309 0:666850d06c9f 143 * @brief External Low Speed oscillator (LSE) value.
jhon309 0:666850d06c9f 144 */
jhon309 0:666850d06c9f 145 #if !defined (LSE_VALUE)
jhon309 0:666850d06c9f 146 #define LSE_VALUE ((uint32_t)32768) /*!< Value of the External Low Speed oscillator in Hz */
jhon309 0:666850d06c9f 147 #endif /* LSE_VALUE */
jhon309 0:666850d06c9f 148
jhon309 0:666850d06c9f 149
jhon309 0:666850d06c9f 150 /* Tip: To avoid modifying this file each time you need to use different HSE,
jhon309 0:666850d06c9f 151 === you can define the HSE value in your toolchain compiler preprocessor. */
jhon309 0:666850d06c9f 152
jhon309 0:666850d06c9f 153 /* ########################### System Configuration ######################### */
jhon309 0:666850d06c9f 154 /**
jhon309 0:666850d06c9f 155 * @brief This is the HAL system configuration section
jhon309 0:666850d06c9f 156 */
jhon309 0:666850d06c9f 157 #define VDD_VALUE ((uint32_t)3300) /*!< Value of VDD in mv */
jhon309 0:666850d06c9f 158 #define TICK_INT_PRIORITY ((uint32_t)(1<<__NVIC_PRIO_BITS) - 1) /*!< tick interrupt priority (lowest by default) */
jhon309 0:666850d06c9f 159 /* Warning: Must be set to higher priority for HAL_Delay() */
jhon309 0:666850d06c9f 160 /* and HAL_GetTick() usage under interrupt context */
jhon309 0:666850d06c9f 161 #define USE_RTOS 0
jhon309 0:666850d06c9f 162 #define PREFETCH_ENABLE 1
jhon309 0:666850d06c9f 163 #define INSTRUCTION_CACHE_ENABLE 0
jhon309 0:666850d06c9f 164 #define DATA_CACHE_ENABLE 0
jhon309 0:666850d06c9f 165
jhon309 0:666850d06c9f 166 /* ########################## Assert Selection ############################## */
jhon309 0:666850d06c9f 167 /**
jhon309 0:666850d06c9f 168 * @brief Uncomment the line below to expanse the "assert_param" macro in the
jhon309 0:666850d06c9f 169 * HAL drivers code
jhon309 0:666850d06c9f 170 */
jhon309 0:666850d06c9f 171 /*#define USE_FULL_ASSERT 1*/
jhon309 0:666850d06c9f 172
jhon309 0:666850d06c9f 173 /* Includes ------------------------------------------------------------------*/
jhon309 0:666850d06c9f 174 /**
jhon309 0:666850d06c9f 175 * @brief Include module's header file
jhon309 0:666850d06c9f 176 */
jhon309 0:666850d06c9f 177
jhon309 0:666850d06c9f 178 #ifdef HAL_RCC_MODULE_ENABLED
jhon309 0:666850d06c9f 179 #include "stm32f0xx_hal_rcc.h"
jhon309 0:666850d06c9f 180 #endif /* HAL_RCC_MODULE_ENABLED */
jhon309 0:666850d06c9f 181
jhon309 0:666850d06c9f 182 #ifdef HAL_GPIO_MODULE_ENABLED
jhon309 0:666850d06c9f 183 #include "stm32f0xx_hal_gpio.h"
jhon309 0:666850d06c9f 184 #endif /* HAL_GPIO_MODULE_ENABLED */
jhon309 0:666850d06c9f 185
jhon309 0:666850d06c9f 186 #ifdef HAL_DMA_MODULE_ENABLED
jhon309 0:666850d06c9f 187 #include "stm32f0xx_hal_dma.h"
jhon309 0:666850d06c9f 188 #endif /* HAL_DMA_MODULE_ENABLED */
jhon309 0:666850d06c9f 189
jhon309 0:666850d06c9f 190 #ifdef HAL_CORTEX_MODULE_ENABLED
jhon309 0:666850d06c9f 191 #include "stm32f0xx_hal_cortex.h"
jhon309 0:666850d06c9f 192 #endif /* HAL_CORTEX_MODULE_ENABLED */
jhon309 0:666850d06c9f 193
jhon309 0:666850d06c9f 194 #ifdef HAL_ADC_MODULE_ENABLED
jhon309 0:666850d06c9f 195 #include "stm32f0xx_hal_adc.h"
jhon309 0:666850d06c9f 196 #endif /* HAL_ADC_MODULE_ENABLED */
jhon309 0:666850d06c9f 197
jhon309 0:666850d06c9f 198 #ifdef HAL_CAN_MODULE_ENABLED
jhon309 0:666850d06c9f 199 #include "stm32f0xx_hal_can.h"
jhon309 0:666850d06c9f 200 #endif /* HAL_CAN_MODULE_ENABLED */
jhon309 0:666850d06c9f 201
jhon309 0:666850d06c9f 202 #ifdef HAL_CEC_MODULE_ENABLED
jhon309 0:666850d06c9f 203 #include "stm32f0xx_hal_cec.h"
jhon309 0:666850d06c9f 204 #endif /* HAL_CEC_MODULE_ENABLED */
jhon309 0:666850d06c9f 205
jhon309 0:666850d06c9f 206 #ifdef HAL_COMP_MODULE_ENABLED
jhon309 0:666850d06c9f 207 #include "stm32f0xx_hal_comp.h"
jhon309 0:666850d06c9f 208 #endif /* HAL_COMP_MODULE_ENABLED */
jhon309 0:666850d06c9f 209
jhon309 0:666850d06c9f 210 #ifdef HAL_CRC_MODULE_ENABLED
jhon309 0:666850d06c9f 211 #include "stm32f0xx_hal_crc.h"
jhon309 0:666850d06c9f 212 #endif /* HAL_CRC_MODULE_ENABLED */
jhon309 0:666850d06c9f 213
jhon309 0:666850d06c9f 214 #ifdef HAL_DAC_MODULE_ENABLED
jhon309 0:666850d06c9f 215 #include "stm32f0xx_hal_dac.h"
jhon309 0:666850d06c9f 216 #endif /* HAL_DAC_MODULE_ENABLED */
jhon309 0:666850d06c9f 217
jhon309 0:666850d06c9f 218 #ifdef HAL_FLASH_MODULE_ENABLED
jhon309 0:666850d06c9f 219 #include "stm32f0xx_hal_flash.h"
jhon309 0:666850d06c9f 220 #endif /* HAL_FLASH_MODULE_ENABLED */
jhon309 0:666850d06c9f 221
jhon309 0:666850d06c9f 222 #ifdef HAL_I2C_MODULE_ENABLED
jhon309 0:666850d06c9f 223 #include "stm32f0xx_hal_i2c.h"
jhon309 0:666850d06c9f 224 #endif /* HAL_I2C_MODULE_ENABLED */
jhon309 0:666850d06c9f 225
jhon309 0:666850d06c9f 226 #ifdef HAL_I2S_MODULE_ENABLED
jhon309 0:666850d06c9f 227 #include "stm32f0xx_hal_i2s.h"
jhon309 0:666850d06c9f 228 #endif /* HAL_I2S_MODULE_ENABLED */
jhon309 0:666850d06c9f 229
jhon309 0:666850d06c9f 230 #ifdef HAL_IRDA_MODULE_ENABLED
jhon309 0:666850d06c9f 231 #include "stm32f0xx_hal_irda.h"
jhon309 0:666850d06c9f 232 #endif /* HAL_IRDA_MODULE_ENABLED */
jhon309 0:666850d06c9f 233
jhon309 0:666850d06c9f 234 #ifdef HAL_IWDG_MODULE_ENABLED
jhon309 0:666850d06c9f 235 #include "stm32f0xx_hal_iwdg.h"
jhon309 0:666850d06c9f 236 #endif /* HAL_IWDG_MODULE_ENABLED */
jhon309 0:666850d06c9f 237
jhon309 0:666850d06c9f 238 #ifdef HAL_PCD_MODULE_ENABLED
jhon309 0:666850d06c9f 239 #include "stm32f0xx_hal_pcd.h"
jhon309 0:666850d06c9f 240 #endif /* HAL_PCD_MODULE_ENABLED */
jhon309 0:666850d06c9f 241
jhon309 0:666850d06c9f 242 #ifdef HAL_PWR_MODULE_ENABLED
jhon309 0:666850d06c9f 243 #include "stm32f0xx_hal_pwr.h"
jhon309 0:666850d06c9f 244 #endif /* HAL_PWR_MODULE_ENABLED */
jhon309 0:666850d06c9f 245
jhon309 0:666850d06c9f 246 #ifdef HAL_RTC_MODULE_ENABLED
jhon309 0:666850d06c9f 247 #include "stm32f0xx_hal_rtc.h"
jhon309 0:666850d06c9f 248 #endif /* HAL_RTC_MODULE_ENABLED */
jhon309 0:666850d06c9f 249
jhon309 0:666850d06c9f 250 #ifdef HAL_SMARTCARD_MODULE_ENABLED
jhon309 0:666850d06c9f 251 #include "stm32f0xx_hal_smartcard.h"
jhon309 0:666850d06c9f 252 #endif /* HAL_SMARTCARD_MODULE_ENABLED */
jhon309 0:666850d06c9f 253
jhon309 0:666850d06c9f 254 #ifdef HAL_SMBUS_MODULE_ENABLED
jhon309 0:666850d06c9f 255 #include "stm32f0xx_hal_smbus.h"
jhon309 0:666850d06c9f 256 #endif /* HAL_SMBUS_MODULE_ENABLED */
jhon309 0:666850d06c9f 257
jhon309 0:666850d06c9f 258 #ifdef HAL_SPI_MODULE_ENABLED
jhon309 0:666850d06c9f 259 #include "stm32f0xx_hal_spi.h"
jhon309 0:666850d06c9f 260 #endif /* HAL_SPI_MODULE_ENABLED */
jhon309 0:666850d06c9f 261
jhon309 0:666850d06c9f 262 #ifdef HAL_TIM_MODULE_ENABLED
jhon309 0:666850d06c9f 263 #include "stm32f0xx_hal_tim.h"
jhon309 0:666850d06c9f 264 #endif /* HAL_TIM_MODULE_ENABLED */
jhon309 0:666850d06c9f 265
jhon309 0:666850d06c9f 266 #ifdef HAL_TSC_MODULE_ENABLED
jhon309 0:666850d06c9f 267 #include "stm32f0xx_hal_tsc.h"
jhon309 0:666850d06c9f 268 #endif /* HAL_TSC_MODULE_ENABLED */
jhon309 0:666850d06c9f 269
jhon309 0:666850d06c9f 270 #ifdef HAL_UART_MODULE_ENABLED
jhon309 0:666850d06c9f 271 #include "stm32f0xx_hal_uart.h"
jhon309 0:666850d06c9f 272 #endif /* HAL_UART_MODULE_ENABLED */
jhon309 0:666850d06c9f 273
jhon309 0:666850d06c9f 274 #ifdef HAL_USART_MODULE_ENABLED
jhon309 0:666850d06c9f 275 #include "stm32f0xx_hal_usart.h"
jhon309 0:666850d06c9f 276 #endif /* HAL_USART_MODULE_ENABLED */
jhon309 0:666850d06c9f 277
jhon309 0:666850d06c9f 278 #ifdef HAL_WWDG_MODULE_ENABLED
jhon309 0:666850d06c9f 279 #include "stm32f0xx_hal_wwdg.h"
jhon309 0:666850d06c9f 280 #endif /* HAL_WWDG_MODULE_ENABLED */
jhon309 0:666850d06c9f 281
jhon309 0:666850d06c9f 282 /* Exported macro ------------------------------------------------------------*/
jhon309 0:666850d06c9f 283 #ifdef USE_FULL_ASSERT
jhon309 0:666850d06c9f 284 /**
jhon309 0:666850d06c9f 285 * @brief The assert_param macro is used for function's parameters check.
jhon309 0:666850d06c9f 286 * @param expr: If expr is false, it calls assert_failed function
jhon309 0:666850d06c9f 287 * which reports the name of the source file and the source
jhon309 0:666850d06c9f 288 * line number of the call that failed.
jhon309 0:666850d06c9f 289 * If expr is true, it returns no value.
jhon309 0:666850d06c9f 290 * @retval None
jhon309 0:666850d06c9f 291 */
jhon309 0:666850d06c9f 292 #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
jhon309 0:666850d06c9f 293 /* Exported functions ------------------------------------------------------- */
jhon309 0:666850d06c9f 294 void assert_failed(uint8_t* file, uint32_t line);
jhon309 0:666850d06c9f 295 #else
jhon309 0:666850d06c9f 296 #define assert_param(expr) ((void)0)
jhon309 0:666850d06c9f 297 #endif /* USE_FULL_ASSERT */
jhon309 0:666850d06c9f 298
jhon309 0:666850d06c9f 299 #ifdef __cplusplus
jhon309 0:666850d06c9f 300 }
jhon309 0:666850d06c9f 301 #endif
jhon309 0:666850d06c9f 302
jhon309 0:666850d06c9f 303 #endif /* __STM32F0xx_HAL_CONF_H */
jhon309 0:666850d06c9f 304
jhon309 0:666850d06c9f 305
jhon309 0:666850d06c9f 306 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
jhon309 0:666850d06c9f 307