PageRenderTime 50ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/proto#7/inc/stm32f10x_conf.h

https://github.com/sunilgandhi007/Juggernauts
C Header | 74 lines | 33 code | 8 blank | 33 comment | 0 complexity | 58469100c44c98066ccf544c1b6d21d2 MD5 | raw file
  1. #define STM32F10X_CL
  2. /******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
  3. * File Name : stm32f10x_conf.h
  4. * Author : MCD Application Team
  5. * Version : V3.3.0
  6. * Date : 21-March-2011
  7. * Description : Library configuration file.
  8. ********************************************************************************
  9. * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
  10. * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
  11. * AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
  12. * INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
  13. * CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
  14. * INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
  15. *******************************************************************************/
  16. /* Define to prevent recursive inclusion -------------------------------------*/
  17. #ifndef __STM32F10x_CONF_H
  18. #define __STM32F10x_CONF_H
  19. /* Includes ------------------------------------------------------------------*/
  20. /* Uncomment the line below to enable peripheral header file inclusion */
  21. #include "stm32f10x_adc.h"
  22. #include "stm32f10x_bkp.h"
  23. #include "stm32f10x_can.h"
  24. #include "stm32f10x_crc.h"
  25. #include "stm32f10x_dac.h"
  26. #include "stm32f10x_dbgmcu.h"
  27. #include "stm32f10x_dma.h"
  28. #include "stm32f10x_exti.h"
  29. #include "stm32f10x_flash.h"
  30. #include "stm32f10x_fsmc.h"
  31. #include "stm32f10x_gpio.h"
  32. #include "stm32f10x_i2c.h"
  33. #include "stm32f10x_iwdg.h"
  34. #include "stm32f10x_pwr.h"
  35. #include "stm32f10x_rcc.h"
  36. #include "stm32f10x_rtc.h"
  37. #include "stm32f10x_sdio.h"
  38. #include "stm32f10x_spi.h"
  39. #include "stm32f10x_tim.h"
  40. #include "stm32f10x_usart.h"
  41. #include "stm32f10x_wwdg.h"
  42. #include "misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */
  43. /* Exported types ------------------------------------------------------------*/
  44. /* Exported constants --------------------------------------------------------*/
  45. /* Uncomment the line below to expanse the "assert_param" macro in the
  46. Standard Peripheral Library drivers code */
  47. #define USE_FULL_ASSERT 1
  48. /* Exported macro ------------------------------------------------------------*/
  49. #ifdef USE_FULL_ASSERT
  50. /*******************************************************************************
  51. * Macro Name : assert_param
  52. * Description : The assert_param macro is used for function's parameters check.
  53. * Input : - expr: If expr is false, it calls assert_failed function
  54. * which reports the name of the source file and the source
  55. * line number of the call that failed.
  56. * If expr is true, it returns no value.
  57. * Return : None
  58. *******************************************************************************/
  59. #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
  60. /* Exported functions ------------------------------------------------------- */
  61. void assert_failed(uint8_t* file, uint32_t line);
  62. #else
  63. #define assert_param(expr) ((void)0)
  64. #endif /* USE_FULL_ASSERT */
  65. #endif /* __STM32F10x_CONF_H */
  66. /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/