Martin Johnson / Space_Invaders_Demo

Dependencies:   STM32F3-Discovery

Committer:
MartinJohnson
Date:
Tue Mar 01 02:40:19 2016 +0000
Revision:
0:404dae88af71
space invaders game

Who changed what in which revision?

UserRevisionLine numberNew contents of line
MartinJohnson 0:404dae88af71 1 /**
MartinJohnson 0:404dae88af71 2 ******************************************************************************
MartinJohnson 0:404dae88af71 3 * @file stm32f30x_conf.h
MartinJohnson 0:404dae88af71 4 * @author MCD Application Team
MartinJohnson 0:404dae88af71 5 * @version V1.2.2
MartinJohnson 0:404dae88af71 6 * @date 14-August-2015
MartinJohnson 0:404dae88af71 7 * @brief Library configuration file.
MartinJohnson 0:404dae88af71 8 ******************************************************************************
MartinJohnson 0:404dae88af71 9 * @attention
MartinJohnson 0:404dae88af71 10 *
MartinJohnson 0:404dae88af71 11 * <h2><center>&copy; COPYRIGHT 2015 STMicroelectronics</center></h2>
MartinJohnson 0:404dae88af71 12 *
MartinJohnson 0:404dae88af71 13 * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
MartinJohnson 0:404dae88af71 14 * You may not use this file except in compliance with the License.
MartinJohnson 0:404dae88af71 15 * You may obtain a copy of the License at:
MartinJohnson 0:404dae88af71 16 *
MartinJohnson 0:404dae88af71 17 * http://www.st.com/software_license_agreement_liberty_v2
MartinJohnson 0:404dae88af71 18 *
MartinJohnson 0:404dae88af71 19 * Unless required by applicable law or agreed to in writing, software
MartinJohnson 0:404dae88af71 20 * distributed under the License is distributed on an "AS IS" BASIS,
MartinJohnson 0:404dae88af71 21 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
MartinJohnson 0:404dae88af71 22 * See the License for the specific language governing permissions and
MartinJohnson 0:404dae88af71 23 * limitations under the License.
MartinJohnson 0:404dae88af71 24 *
MartinJohnson 0:404dae88af71 25 ******************************************************************************
MartinJohnson 0:404dae88af71 26 */
MartinJohnson 0:404dae88af71 27
MartinJohnson 0:404dae88af71 28 /* Define to prevent recursive inclusion -------------------------------------*/
MartinJohnson 0:404dae88af71 29 #ifndef __STM32F30X_CONF_H
MartinJohnson 0:404dae88af71 30 #define __STM32F30X_CONF_H
MartinJohnson 0:404dae88af71 31
MartinJohnson 0:404dae88af71 32
MartinJohnson 0:404dae88af71 33 /* Includes ------------------------------------------------------------------*/
MartinJohnson 0:404dae88af71 34 /* Comment the line below to disable peripheral header file inclusion */
MartinJohnson 0:404dae88af71 35 #include "stm32f30x_adc.h"
MartinJohnson 0:404dae88af71 36 #include "stm32f30x_can.h"
MartinJohnson 0:404dae88af71 37 #include "stm32f30x_crc.h"
MartinJohnson 0:404dae88af71 38 #include "stm32f30x_comp.h"
MartinJohnson 0:404dae88af71 39 #include "stm32f30x_dac.h"
MartinJohnson 0:404dae88af71 40 #include "stm32f30x_dbgmcu.h"
MartinJohnson 0:404dae88af71 41 #include "stm32f30x_dma.h"
MartinJohnson 0:404dae88af71 42 #include "stm32f30x_exti.h"
MartinJohnson 0:404dae88af71 43 #include "stm32f30x_flash.h"
MartinJohnson 0:404dae88af71 44 #include "stm32f30x_fmc.h"
MartinJohnson 0:404dae88af71 45 #include "stm32f30x_gpio.h"
MartinJohnson 0:404dae88af71 46 #include "stm32f30x_hrtim.h"
MartinJohnson 0:404dae88af71 47 #include "stm32f30x_syscfg.h"
MartinJohnson 0:404dae88af71 48 #include "stm32f30x_i2c.h"
MartinJohnson 0:404dae88af71 49 #include "stm32f30x_iwdg.h"
MartinJohnson 0:404dae88af71 50 #include "stm32f30x_opamp.h"
MartinJohnson 0:404dae88af71 51 #include "stm32f30x_pwr.h"
MartinJohnson 0:404dae88af71 52 #include "stm32f30x_rcc.h"
MartinJohnson 0:404dae88af71 53 #include "stm32f30x_rtc.h"
MartinJohnson 0:404dae88af71 54 #include "stm32f30x_spi.h"
MartinJohnson 0:404dae88af71 55 #include "stm32f30x_tim.h"
MartinJohnson 0:404dae88af71 56 #include "stm32f30x_usart.h"
MartinJohnson 0:404dae88af71 57 #include "stm32f30x_wwdg.h"
MartinJohnson 0:404dae88af71 58 #include "stm32f30x_misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */
MartinJohnson 0:404dae88af71 59
MartinJohnson 0:404dae88af71 60 /* Exported types ------------------------------------------------------------*/
MartinJohnson 0:404dae88af71 61 /* Exported constants --------------------------------------------------------*/
MartinJohnson 0:404dae88af71 62 /* Uncomment the line below to expanse the "assert_param" macro in the
MartinJohnson 0:404dae88af71 63 Standard Peripheral Library drivers code */
MartinJohnson 0:404dae88af71 64 /* #define USE_FULL_ASSERT 1 */
MartinJohnson 0:404dae88af71 65
MartinJohnson 0:404dae88af71 66 /* Exported macro ------------------------------------------------------------*/
MartinJohnson 0:404dae88af71 67 #ifdef USE_FULL_ASSERT
MartinJohnson 0:404dae88af71 68
MartinJohnson 0:404dae88af71 69 /**
MartinJohnson 0:404dae88af71 70 * @brief The assert_param macro is used for function's parameters check.
MartinJohnson 0:404dae88af71 71 * @param expr: If expr is false, it calls assert_failed function which reports
MartinJohnson 0:404dae88af71 72 * the name of the source file and the source line number of the call
MartinJohnson 0:404dae88af71 73 * that failed. If expr is true, it returns no value.
MartinJohnson 0:404dae88af71 74 * @retval None
MartinJohnson 0:404dae88af71 75 */
MartinJohnson 0:404dae88af71 76 #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
MartinJohnson 0:404dae88af71 77 /* Exported functions ------------------------------------------------------- */
MartinJohnson 0:404dae88af71 78 void assert_failed(uint8_t* file, uint32_t line);
MartinJohnson 0:404dae88af71 79 #else
MartinJohnson 0:404dae88af71 80 #define assert_param(expr) ((void)0)
MartinJohnson 0:404dae88af71 81 #endif /* USE_FULL_ASSERT */
MartinJohnson 0:404dae88af71 82
MartinJohnson 0:404dae88af71 83 #endif /* __STM32F30X_CONF_H */
MartinJohnson 0:404dae88af71 84
MartinJohnson 0:404dae88af71 85 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/