From 72dcfa88663999e2484463eaaa97ab861f2c7a19 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Tue, 8 Apr 2008 15:34:54 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@256 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- demos/ARMCM3-STM32F103-GCC/stm32lib/stm32f10x_conf.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'demos/ARMCM3-STM32F103-GCC/stm32lib/stm32f10x_conf.h') diff --git a/demos/ARMCM3-STM32F103-GCC/stm32lib/stm32f10x_conf.h b/demos/ARMCM3-STM32F103-GCC/stm32lib/stm32f10x_conf.h index 59ae65d01..8e51a48fd 100644 --- a/demos/ARMCM3-STM32F103-GCC/stm32lib/stm32f10x_conf.h +++ b/demos/ARMCM3-STM32F103-GCC/stm32lib/stm32f10x_conf.h @@ -34,7 +34,7 @@ //#define _ADC2 /************************************* BKP ************************************/ -//#define _BKP +//#define _BKP /************************************* CAN ************************************/ //#define _CAN @@ -60,11 +60,11 @@ /* #define _FLASH_PROG */ /************************************* GPIO ***********************************/ -//#define _GPIO -//#define _GPIOA -//#define _GPIOB -//#define _GPIOC -//#define _GPIOD +#define _GPIO +#define _GPIOA +#define _GPIOB +#define _GPIOC +#define _GPIOD //#define _GPIOE //#define _AFIO @@ -94,7 +94,7 @@ //#define _SPI2 /************************************* SysTick ********************************/ -//#define _SysTick +#define _SysTick /************************************* TIM1 ***********************************/ //#define _TIM1 @@ -123,13 +123,13 @@ /******************************************************************************* * Macro Name : assert_param * Description : The assert_param macro is used for function's parameters check. -* It is used only if the library is compiled in DEBUG mode. +* It is used only if the library is compiled in DEBUG mode. * Input : - expr: If expr is false, it calls assert_failed function * which reports the name of the source file and the source -* line number of the call that failed. +* line number of the call that failed. * If expr is true, it returns no value. * Return : None -*******************************************************************************/ +*******************************************************************************/ #define assert_param(expr) ((expr) ? (void)0 : assert_failed((u8 *)__FILE__, __LINE__)) /* Exported functions ------------------------------------------------------- */ void assert_failed(u8* file, u32 line); -- cgit v1.2.3