diff options
Diffstat (limited to 'src/stm32lib/examples/NVIC')
42 files changed, 0 insertions, 9771 deletions
| diff --git a/src/stm32lib/examples/NVIC/CM3_LPModes/main.c b/src/stm32lib/examples/NVIC/CM3_LPModes/main.c deleted file mode 100755 index ce11bb1..0000000 --- a/src/stm32lib/examples/NVIC/CM3_LPModes/main.c +++ /dev/null @@ -1,344 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : main.c
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Main program body
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_lib.h"
 -#include "platform_config.h"
 -
 -/* Private typedef -----------------------------------------------------------*/
 -/* Private define ------------------------------------------------------------*/
 -//#define WFISLEEPONEXIT 
 -#define WFISLEEPNOW    
 -//#define WFESEVONPEND   
 -//#define WFESEVONEVENT  
 -//#define RTC_Alarm_WFEWakeUp 
 -
 -/* Private macro -------------------------------------------------------------*/
 -/* Private variables ---------------------------------------------------------*/
 -EXTI_InitTypeDef EXTI_InitStructure;
 -GPIO_InitTypeDef GPIO_InitStructure;
 -NVIC_InitTypeDef NVIC_InitStructure;
 -vu32 LowPowerMode = 0;
 -ErrorStatus HSEStartUpStatus;
 -
 -/* Private function prototypes -----------------------------------------------*/
 -void RCC_Configuration(void);
 -void GPIO_Configuration(void);
 -void EXTI_Configuration(void);
 -void Delay(vu32 nCount);
 -
 -/* Private functions ---------------------------------------------------------*/
 -
 -/*******************************************************************************
 -* Function Name  : main
 -* Description    : Main program
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -int main(void)
 -{
 -#ifdef DEBUG
 -  debug();
 -#endif
 -  
 -  /* Configure the system clocks */
 -  RCC_Configuration();
 -
 -  /* Configure GPIOs */
 -  GPIO_Configuration();
 -
 -  /* Configures the EXTI Lines */
 -  EXTI_Configuration();
 -  
 -#ifdef  VECT_TAB_RAM  
 -  /* Set the Vector Table base location at 0x20000000 */ 
 -  NVIC_SetVectorTable(NVIC_VectTab_RAM, 0x0); 
 -#else  /* VECT_TAB_FLASH  */
 -  /* Set the Vector Table base location at 0x08000000 */ 
 -  NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0x0);   
 -#endif  
 -
 -  NVIC_PriorityGroupConfig(NVIC_PriorityGroup_1);
 -
 -  NVIC_InitStructure.NVIC_IRQChannel = EXTI15_10_IRQChannel;
 -  NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
 -  NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
 -  NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
 -  NVIC_Init(&NVIC_InitStructure);
 -  
 -  NVIC_InitStructure.NVIC_IRQChannel = EXTI0_IRQChannel;
 -  NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1;
 -  NVIC_Init(&NVIC_InitStructure);
 - 
 -  while (1)
 -  {
 -    if(LowPowerMode == 1)
 -    {
 -      LowPowerMode = 0;
 -
 -      /* Toggle GPIO_LED pin 6 */
 -      GPIO_WriteBit(GPIO_LED, GPIO_Pin_6, (BitAction)(1 - GPIO_ReadOutputDataBit(GPIO_LED, GPIO_Pin_6)));
 -      
 -      #ifdef  WFISLEEPONEXIT
 -        NVIC_SystemLPConfig(NVIC_LP_SLEEPONEXIT, ENABLE);
 -      #endif
 -
 -      #ifdef  WFISLEEPNOW
 -        NVIC_SystemLPConfig(NVIC_LP_SLEEPONEXIT, DISABLE);
 -        __WFI();
 -      #endif
 -
 -      #ifdef  WFESEVONPEND
 -        NVIC_SystemLPConfig(NVIC_LP_SEVONPEND, ENABLE);
 -        /* Boost the execution priority to 0: no further exception can be asserted */
 -		NVIC_SETPRIMASK();
 -		#ifdef RTC_Alarm_WFEWakeUp
 -		  /* Set the RTC Alarm interrupt after 6s */
 -          RTC_SetAlarm(0xFFFFFFFA);
 -          /* Wait until last write operation on RTC registers has finished */
 -          RTC_WaitForLastTask();
 -          /* Set the Counter to 0xFFFFFFF5 */
 -          RTC_SetCounter(0xFFFFFFF5);
 -          /* Wait until last write operation on RTC registers has finished */
 -          RTC_WaitForLastTask();
 -		#endif		
 -        __WFE();
 -      #endif
 -
 -      #ifdef  WFESEVONEVENT
 -       NVIC_SystemLPConfig(NVIC_LP_SEVONPEND, DISABLE);
 -		#ifdef RTC_Alarm_WFEWakeUp
 -		  /* Set the RTC Alarm interrupt after 6s */
 -          RTC_SetAlarm(0xFFFFFFFA);
 -          /* Wait until last write operation on RTC registers has finished */
 -          RTC_WaitForLastTask();
 -          /* Set the Counter to 0xFFFFFFF5 */
 -          RTC_SetCounter(0xFFFFFFF5);
 -          /* Wait until last write operation on RTC registers has finished */
 -          RTC_WaitForLastTask();
 -		#endif	   
 -        __WFE();
 -      #endif
 -    }
 -
 -    Delay(0xFFFFF);
 -
 -	/* Toggle GPIO_LED pin 9 */
 -    GPIO_WriteBit(GPIO_LED, GPIO_Pin_9, (BitAction)(1 - GPIO_ReadOutputDataBit(GPIO_LED, GPIO_Pin_9)));
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RCC_Configuration
 -* Description    : Configures the different system clocks.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RCC_Configuration(void)
 -{
 -  /* RCC system reset(for debug purpose) */
 -  RCC_DeInit();
 -
 -  /* Enable HSE */
 -  RCC_HSEConfig(RCC_HSE_ON);
 -
 -  /* Wait till HSE is ready */
 -  HSEStartUpStatus = RCC_WaitForHSEStartUp();
 -
 -  if(HSEStartUpStatus == SUCCESS)
 -  {
 -    /* Enable Prefetch Buffer */
 -    FLASH_PrefetchBufferCmd(FLASH_PrefetchBuffer_Enable);
 -
 -    /* Flash 2 wait state */
 -    FLASH_SetLatency(FLASH_Latency_2);
 - 
 -    /* HCLK = SYSCLK */
 -    RCC_HCLKConfig(RCC_SYSCLK_Div1); 
 -  
 -    /* PCLK2 = HCLK */
 -    RCC_PCLK2Config(RCC_HCLK_Div1); 
 -
 -    /* PCLK1 = HCLK/2 */
 -    RCC_PCLK1Config(RCC_HCLK_Div2);
 -
 -    /* PLLCLK = 8MHz * 9 = 72 MHz */
 -    RCC_PLLConfig(RCC_PLLSource_HSE_Div1, RCC_PLLMul_9);
 -
 -    /* Enable PLL */ 
 -    RCC_PLLCmd(ENABLE);
 -
 -    /* Wait till PLL is ready */
 -    while(RCC_GetFlagStatus(RCC_FLAG_PLLRDY) == RESET)
 -    {
 -    }
 -
 -    /* Select PLL as system clock source */
 -    RCC_SYSCLKConfig(RCC_SYSCLKSource_PLLCLK);
 -
 -    /* Wait till PLL is used as system clock source */
 -    while(RCC_GetSYSCLKSource() != 0x08)
 -    {
 -    }
 -  }  
 -  
 -  /* GPIOA, GPIOC, GPIO KEY Button, GPIO_LED and AFIO clocks enable */
 -  RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_GPIO_KEY_BUTTON | 
 -                         RCC_APB2Periph_GPIO_LED | RCC_APB2Periph_GPIOC |
 -                         RCC_APB2Periph_AFIO, ENABLE);
 -   
 -#ifdef RTC_Alarm_WFEWakeUp
 -  /* Enable the PWR and BKP Clocks */
 -  RCC_APB1PeriphClockCmd(RCC_APB1Periph_PWR | RCC_APB1Periph_BKP, ENABLE);
 -
 -  /* Configure the EXTI Line 17 as Event */
 -  EXTI_StructInit(&EXTI_InitStructure);
 -  EXTI_InitStructure.EXTI_Mode = EXTI_Mode_Event;
 -  EXTI_InitStructure.EXTI_Trigger = EXTI_Trigger_Falling;
 -  EXTI_InitStructure.EXTI_Line = EXTI_Line17;
 -  EXTI_InitStructure.EXTI_LineCmd = ENABLE;
 -  EXTI_Init(&EXTI_InitStructure);
 -  
 -  /* Allow access to BKP Domain */
 -  PWR_BackupAccessCmd(ENABLE);
 -
 -  /* Reset Backup Domain */
 -  BKP_DeInit();
 -  /* Enable LSE */
 -  RCC_LSEConfig(RCC_LSE_ON);
 -  /* Wait till LSE is ready */
 -  while(RCC_GetFlagStatus(RCC_FLAG_LSERDY) == RESET)
 -  {
 -  }
 -
 -  /* Select LSE as RTC Clock Source */
 -  RCC_RTCCLKConfig(RCC_RTCCLKSource_LSE);
 -
 -  /* Enable the RTC Clock */
 -  RCC_RTCCLKCmd(ENABLE);
 -  /* Wait for APB registers synchronisation */
 -  RTC_WaitForSynchro();
 -  
 -  /* Wait until last write operation on RTC registers has finished */
 -  RTC_WaitForLastTask();
 -  /* Set the RTC time base to 1s */
 -  RTC_SetPrescaler(32767);
 -    /* Wait until last write operation on RTC registers has finished */
 -  RTC_WaitForLastTask();
 -#endif 
 -
 -}
 -
 -/*******************************************************************************
 -* Function Name  : GPIO_Configuration
 -* Description    : Configures the used GPIO pins.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void GPIO_Configuration(void)
 -{
 -  GPIO_StructInit(&GPIO_InitStructure);
 -
 -  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6 | GPIO_Pin_8 | GPIO_Pin_9;
 -  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
 -  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
 -  GPIO_Init(GPIO_LED, &GPIO_InitStructure);
 -    
 -  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
 -  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
 -  GPIO_Init(GPIOA, &GPIO_InitStructure);
 -   
 -  GPIO_InitStructure.GPIO_Pin = GPIO_PIN_KEY_BUTTON;
 -  GPIO_Init(GPIO_KEY_BUTTON, &GPIO_InitStructure);
 -
 -  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13;
 -  GPIO_Init(GPIOC, &GPIO_InitStructure);  
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI_Configuration
 -* Description    : Configures the used EXTI lines.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI_Configuration(void)
 -{
 -  /* Connect EXTI Line0 to PA.00 */
 -  GPIO_EXTILineConfig(GPIO_PortSourceGPIOA, GPIO_PinSource0);
 -
 -  /* Configure EXTI Line0 to generate an interrupt on falling edge */ 
 -  EXTI_InitStructure.EXTI_Line = EXTI_Line0;
 -  EXTI_InitStructure.EXTI_Mode = EXTI_Mode_Interrupt;
 -  EXTI_InitStructure.EXTI_Trigger = EXTI_Trigger_Falling;
 -  EXTI_InitStructure.EXTI_LineCmd = ENABLE;
 -  EXTI_Init(&EXTI_InitStructure);
 -
 -
 -  /* Connect EXTI Line13 to PC.13 */
 -  GPIO_EXTILineConfig(GPIO_PortSourceGPIOC, GPIO_PinSource13);  
 -
 -  /* Configure EXTI Line13 to generate an event on falling edge */
 -  EXTI_InitStructure.EXTI_Line = EXTI_Line13;
 -  EXTI_Init(&EXTI_InitStructure);
 -
 -
 -  /* Connect Key Button EXTI Line to GPIO Key Button Pin */  
 -  GPIO_EXTILineConfig(GPIO_PORT_SOURCE_KEY_BUTTON, GPIO_PIN_SOURCE_KEY_BUTTON);  
 -
 -  /* Configure Key Button EXTI Line to generate an event on falling edge */
 -  EXTI_InitStructure.EXTI_Line = EXTI_LINE_KEY_BUTTON;
 -  EXTI_InitStructure.EXTI_Mode = EXTI_Mode_Event;
 -  EXTI_Init(&EXTI_InitStructure);
 -}
 -
 -/*******************************************************************************
 -* Function Name  : Delay
 -* Description    : Inserts a delay time.
 -* Input          : nCount: specifies the delay time length.
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void Delay(vu32 nCount)
 -{
 -  for(; nCount != 0; nCount--);
 -}
 -
 -#ifdef  DEBUG
 -/*******************************************************************************
 -* Function Name  : assert_failed
 -* Description    : Reports the name of the source file and the source line number
 -*                  where the assert_param error has occurred.
 -* Input          : - file: pointer to the source file name
 -*                  - line: assert_param error line source number
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void assert_failed(u8* file, u32 line)
 -{ 
 -  /* User can add his own implementation to report the file name and line number,
 -     ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
 -
 -  /* Infinite loop */
 -  while (1)
 -  {
 -  }
 -}
 -#endif
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/CM3_LPModes/platform_config.h b/src/stm32lib/examples/NVIC/CM3_LPModes/platform_config.h deleted file mode 100755 index 3deb7ba..0000000 --- a/src/stm32lib/examples/NVIC/CM3_LPModes/platform_config.h +++ /dev/null @@ -1,56 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : platform_config.h
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Evaluation board specific configuration file.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Define to prevent recursive inclusion -------------------------------------*/
 -#ifndef __PLATFORM_CONFIG_H
 -#define __PLATFORM_CONFIG_H
 -
 -/* Includes ------------------------------------------------------------------*/
 -/* Exported types ------------------------------------------------------------*/
 -/* Exported constants --------------------------------------------------------*/
 -/* Uncomment the line corresponding to the STMicroelectronics evaluation board
 -   used to run the example */
 -#if !defined (USE_STM3210B_EVAL) &&  !defined (USE_STM3210E_EVAL)
 - //#define USE_STM3210B_EVAL
 - #define USE_STM3210E_EVAL
 -#endif
 -
 -/* Define the STM32F10x hardware depending on the used evaluation board */
 -#ifdef USE_STM3210B_EVAL
 -  #define GPIO_LED                          GPIOC    
 -  #define RCC_APB2Periph_GPIO_LED           RCC_APB2Periph_GPIOC
 -  #define GPIO_KEY_BUTTON                   GPIOB
 -  #define RCC_APB2Periph_GPIO_KEY_BUTTON    RCC_APB2Periph_GPIOB
 -  #define GPIO_PIN_KEY_BUTTON               GPIO_Pin_9
 -  #define EXTI_LINE_KEY_BUTTON              EXTI_Line9
 -  #define GPIO_PORT_SOURCE_KEY_BUTTON       GPIO_PortSourceGPIOB
 -  #define GPIO_PIN_SOURCE_KEY_BUTTON        GPIO_PinSource9
 -#elif defined USE_STM3210E_EVAL
 -  #define GPIO_LED                          GPIOF    
 -  #define RCC_APB2Periph_GPIO_LED           RCC_APB2Periph_GPIOF
 -  #define GPIO_KEY_BUTTON                   GPIOG    
 -  #define RCC_APB2Periph_GPIO_KEY_BUTTON    RCC_APB2Periph_GPIOG
 -  #define GPIO_PIN_KEY_BUTTON               GPIO_Pin_8
 -  #define EXTI_LINE_KEY_BUTTON              EXTI_Line8
 -  #define GPIO_PORT_SOURCE_KEY_BUTTON       GPIO_PortSourceGPIOG
 -  #define GPIO_PIN_SOURCE_KEY_BUTTON        GPIO_PinSource8
 -#endif /* USE_STM3210B_EVAL */
 -
 -/* Exported macro ------------------------------------------------------------*/
 -/* Exported functions ------------------------------------------------------- */
 -
 -#endif /* __PLATFORM_CONFIG_H */
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/CM3_LPModes/readme.txt b/src/stm32lib/examples/NVIC/CM3_LPModes/readme.txt deleted file mode 100755 index 94d2ef3..0000000 --- a/src/stm32lib/examples/NVIC/CM3_LPModes/readme.txt +++ /dev/null @@ -1,137 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : readme.txt
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Description of the NVIC CM3 Low Power Example.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -Example description
 -===================
 -This example describes how to use the NVIC firmware library to demonstrate the 
 -Cortex-M3 low power modes capabilities (WFE and WFI). 
 -
 -This example uses three EXTI lines(Wakeup button EXTI Line, Key button EXTI Line
 -& Tamper button EXTI Line)to generate interrupts and event on each falling edge.
 -The Wakeup button EXTI Line and Tamper button EXTI Line are configured in 
 -interrupt mode and the Key button EXTI Line in event mode. The user has to select
 -which low power mode would execute through a five define in the main code.
 -
 -These choices are:
 -
 -   - Wait For Interrupt (WFI) Sleep On Exit: in this mode the WFI instruction is
 -    excecuted automatically on an exception Return. The exception will be executed
 -    if has enough priority to run and the core will return in the WFI mode. 
 -    To run this behaviour proceed as following:
 -      
 -      * Choose the #WFISLEEPONEXIT define and comment others defines
 -      * run the example
 -      * The Wakeup button EXTI Line toggles LD4.
 -      * Push the Tamper button, the SLEEPONEXIT function is selected
 -      Any edge on the Wakeup button EXTI Line or Tamper button EXTI Line will 
 -      execute the EXTI interrupt, when exit from the ISR the core will enter WFI
 -      mode. Any time you push the Wakeup button the core exit from WFI mode, 
 -      LD4 is toggled then the  core enters again in WFI mode.
 -      This behavior is repeated in an infinite loop.
 -
 -    - Wait For Interrupt (WFI) Sleep Now: in this mode the WFI instruction is 
 -      excecuted directly. To run this behaviour proceed as following:
 -
 -      * Choose the #WFISLEEPNOW define and comment others defines
 -      * run the example
 -      * The Tamper button EXTI Line will toggle LD1 and put the core in the WFI mode.  
 -      * To wakeup the Core use the Wakeup button that will toggle the LD3.
 -      This behavior is repeated in an infinite loop.
 -  
 -   - Wait For Event (WFE) SEV ON PEND: in this mode the WFE instruction is excecuted
 -     directly and the main instruction stream (execution priority) is boosted by the
 -     register PRIMASK (main priority = 0).
 -     To run this behaviour proceed as following:
 -
 -     * Choose the #WFESEVONPEND define and comment others defines
 -     * run the example
 -     * The Tamper button EXTI Line will boost the execution priority to 0 (no 
 -       interrupt will be  executed after due to the priority boosting), toggle 
 -       LD1 and put the core in WFE mode. 
 -     * To wakeUp the Core use the Wakeup button that will not toggle the LD3 but
 -       will only wakeup the core from the WFE (SEV ON PEND). 
 -       This EXTI Line interrupt has passed from unpended state to a pended state 
 -       which wakeup the core from the WFE.
 -     * To wakeup the core also you can use theTamper button configured in event
 -       mode.
 -     * if the #RTC_Alarm_WFEWakeUp define is enabled, the RTC alarm will wakeUp 
 -       the Core after 6 seconds (if none of Tamper button EXTI Line and Key 
 -       button EXTI Line was used before this delay to wakeUp the Core)
 -  
 -   - Wait For Event (WFE) SEV ON EVENT: in this mode the WFE instruction is 
 -     excecuted directly. To run this behaviour proceed as following:
 -
 -    * Choose the #WFESEVONEVENT define and comment others defines
 -    * run the example
 -    * The Tamper button EXTI Line will toggle LD1 and put the core in the WFE mode. 
 -    * To wakeup the Core use the Wakeup button that will toggle the LD3.
 -    * To wakeup the core also you can use the Key button configured in event mode.
 -    * if the #RTC_Alarm_WFEWakeUp define is enabled, the RTC alarm will wakeUp 
 -      the Core after 6 seconds (if none of Tamper button EXTI Line and Key button
 -      EXTI Line was used before this delay to wakeup the Core)
 -      This behavior is repeated in an infinite loop.
 -
 -LD4 is toggled to indicate whether the MCU is in RUN or in low power mode.
 -
 -Directory contents
 -==================
 -platform_config.h    Evaluation board specific configuration file
 -stm32f10x_conf.h     Library Configuration file
 -stm32f10x_it.c       Interrupt handlers
 -stm32f10x_it.h       Interrupt handlers header file
 -main.c               Main program
 -
 -
 -Hardware environment
 -====================
 -This example runs on STMicroelectronics STM3210B-EVAL and STM3210E-EVAL evaluation
 -boards and can be easily tailored to any other hardware.
 -To select the STMicroelectronics evaluation board used to run the example, uncomment
 -the corresponding line in platform_config.h file.
 -
 - + STM3210B-EVAL 
 -    - Use LD1, LD2, LD3 and LD4 leds connected respectively to PC.06, PC.07, PC.08
 -      and PC.09 pins
 -    - Use the Key push-button connected to pin PB.09 (EXTI Line9).
 -    - Use the Wakeup push-button connected to pin PA.00 (EXTI Line0).
 -    - Use the Tamper push-button connected to pin PC.13 (EXTI Line13).     
 -
 - + STM3210E-EVAL
 -    - Use LD1, LD2, LD3 and LD4 leds connected respectively to PF.06, PF0.7, PF.08
 -      and PF.09 pins
 -    - Use the Key push-button connected to pin PG.08 (EXTI Line8).
 -    - Use the Wakeup push-button connected to pin PA.00 (EXTI Line0).
 -    - Use the Tamper push-button connected to pin PC.13 (EXTI Line13). 
 -       
 -How to use it
 -=============
 -In order to make the program work, you must do the following :
 -- Create a project and setup all your toolchain's start-up files
 -- Compile the directory content files and required Library files :
 -  + stm32f10x_lib.c
 -  + stm32f10x_exti.c
 -  + stm32f10x_gpio.c
 -  + stm32f10x_rcc.c
 -  + stm32f10x_nvic.c
 -  + stm32f10x_rtc.c
 -  + stm32f10x_pwr.c
 -  + stm32f10x_bkp.c
 -  + stm32f10x_flash.c
 -    
 -- Link all compiled files and load your image into target memory
 -- Run the example
 -
 -
 -******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE******
 diff --git a/src/stm32lib/examples/NVIC/CM3_LPModes/stm32f10x_conf.h b/src/stm32lib/examples/NVIC/CM3_LPModes/stm32f10x_conf.h deleted file mode 100755 index a04dca1..0000000 --- a/src/stm32lib/examples/NVIC/CM3_LPModes/stm32f10x_conf.h +++ /dev/null @@ -1,170 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : stm32f10x_conf.h
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Library configuration file.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Define to prevent recursive inclusion -------------------------------------*/
 -#ifndef __STM32F10x_CONF_H
 -#define __STM32F10x_CONF_H
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_type.h"
 -
 -/* Exported types ------------------------------------------------------------*/
 -/* Exported constants --------------------------------------------------------*/
 -/* Uncomment the line below to compile the library in DEBUG mode, this will expanse
 -   the "assert_param" macro in the firmware library code (see "Exported macro"
 -   section below) */
 -/*#define DEBUG    1*/
 -
 -/* Comment the line below to disable the specific peripheral inclusion */
 -/************************************* ADC ************************************/
 -//#define _ADC
 -//#define _ADC1
 -//#define _ADC2
 -//#define _ADC3
 -
 -/************************************* BKP ************************************/
 -#define _BKP 
 -
 -/************************************* CAN ************************************/
 -//#define _CAN
 -
 -/************************************* CRC ************************************/
 -//#define _CRC
 -
 -/************************************* DAC ************************************/
 -//#define _DAC
 -
 -/************************************* DBGMCU *********************************/
 -//#define _DBGMCU
 -
 -/************************************* DMA ************************************/
 -//#define _DMA
 -//#define _DMA1_Channel1
 -//#define _DMA1_Channel2
 -//#define _DMA1_Channel3
 -//#define _DMA1_Channel4
 -//#define _DMA1_Channel5
 -//#define _DMA1_Channel6
 -//#define _DMA1_Channel7
 -//#define _DMA2_Channel1
 -//#define _DMA2_Channel2
 -//#define _DMA2_Channel3
 -//#define _DMA2_Channel4
 -//#define _DMA2_Channel5
 -
 -/************************************* EXTI ***********************************/
 -#define _EXTI
 -
 -/************************************* FLASH and Option Bytes *****************/
 -#define _FLASH
 -/* Uncomment the line below to enable FLASH program/erase/protections functions,
 -   otherwise only FLASH configuration (latency, prefetch, half cycle) functions
 -   are enabled */
 -/* #define _FLASH_PROG */
 -
 -/************************************* FSMC ***********************************/
 -//#define _FSMC
 -
 -/************************************* GPIO ***********************************/
 -#define _GPIO
 -#define _GPIOA
 -#define _GPIOB
 -#define _GPIOC
 -//#define _GPIOD
 -//#define _GPIOE
 -#define _GPIOF
 -#define _GPIOG
 -#define _AFIO
 -
 -/************************************* I2C ************************************/
 -//#define _I2C
 -//#define _I2C1
 -//#define _I2C2
 -
 -/************************************* IWDG ***********************************/
 -//#define _IWDG
 -
 -/************************************* NVIC ***********************************/
 -#define _NVIC
 -
 -/************************************* PWR ************************************/
 -#define _PWR
 -
 -/************************************* RCC ************************************/
 -#define _RCC
 -
 -/************************************* RTC ************************************/
 -#define _RTC
 -
 -/************************************* SDIO ***********************************/
 -//#define _SDIO
 -
 -/************************************* SPI ************************************/
 -//#define _SPI
 -//#define _SPI1
 -//#define _SPI2
 -//#define _SPI3
 -
 -/************************************* SysTick ********************************/
 -//#define _SysTick
 -
 -/************************************* TIM ************************************/
 -//#define _TIM
 -//#define _TIM1
 -//#define _TIM2
 -//#define _TIM3
 -//#define _TIM4
 -//#define _TIM5
 -//#define _TIM6
 -//#define _TIM7
 -//#define _TIM8
 -
 -/************************************* USART **********************************/
 -//#define _USART
 -//#define _USART1
 -//#define _USART2
 -//#define _USART3
 -//#define _UART4
 -//#define _UART5
 -
 -/************************************* WWDG ***********************************/
 -//#define _WWDG
 -
 -/* In the following line adjust the value of External High Speed oscillator (HSE)
 -   used in your application */
 -#define HSE_Value    ((u32)8000000) /* Value of the External oscillator in Hz*/
 -
 -/* Exported macro ------------------------------------------------------------*/
 -#ifdef  DEBUG
 -/*******************************************************************************
 -* 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. 
 -* 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. 
 -*                    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);
 -#else
 -  #define assert_param(expr) ((void)0)
 -#endif /* DEBUG */
 -
 -#endif /* __STM32F10x_CONF_H */
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/CM3_LPModes/stm32f10x_it.c b/src/stm32lib/examples/NVIC/CM3_LPModes/stm32f10x_it.c deleted file mode 100755 index 4413799..0000000 --- a/src/stm32lib/examples/NVIC/CM3_LPModes/stm32f10x_it.c +++ /dev/null @@ -1,825 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : stm32f10x_it.c
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Main Interrupt Service Routines.
 -*                      This file provides template for all exceptions handler
 -*                      and peripherals interrupt service routine.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_it.h"
 -#include "platform_config.h"
 -
 -/* Private typedef -----------------------------------------------------------*/
 -/* Private define ------------------------------------------------------------*/
 -/* Private macro -------------------------------------------------------------*/
 -/* Private variables ---------------------------------------------------------*/
 -extern vu32 LowPowerMode;
 -
 -/* Private function prototypes -----------------------------------------------*/
 -/* Private functions ---------------------------------------------------------*/
 -
 -/*******************************************************************************
 -* Function Name  : NMIException
 -* Description    : This function handles NMI exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void NMIException(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : HardFaultException
 -* Description    : This function handles Hard Fault exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void HardFaultException(void)
 -{
 -  /* Go to infinite loop when Hard Fault exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : MemManageException
 -* Description    : This function handles Memory Manage exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void MemManageException(void)
 -{
 -  /* Go to infinite loop when Memory Manage exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : BusFaultException
 -* Description    : This function handles Bus Fault exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void BusFaultException(void)
 -{
 -  /* Go to infinite loop when Bus Fault exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : UsageFaultException
 -* Description    : This function handles Usage Fault exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void UsageFaultException(void)
 -{
 -  /* Go to infinite loop when Usage Fault exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DebugMonitor
 -* Description    : This function handles Debug Monitor exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DebugMonitor(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SVCHandler
 -* Description    : This function handles SVCall exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SVCHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : PendSVC
 -* Description    : This function handles PendSVC exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void PendSVC(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SysTickHandler
 -* Description    : This function handles SysTick Handler.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SysTickHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : WWDG_IRQHandler
 -* Description    : This function handles WWDG interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void WWDG_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : PVD_IRQHandler
 -* Description    : This function handles PVD interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void PVD_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TAMPER_IRQHandler
 -* Description    : This function handles Tamper interrupt request. 
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TAMPER_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RTC_IRQHandler
 -* Description    : This function handles RTC global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RTC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : FLASH_IRQHandler
 -* Description    : This function handles Flash interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void FLASH_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RCC_IRQHandler
 -* Description    : This function handles RCC interrupt request. 
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RCC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI0_IRQHandler
 -* Description    : This function handles External interrupt Line 0 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI0_IRQHandler(void)
 -{
 -  /* Clear EXTI line0 pending bit */
 -  EXTI_ClearITPendingBit(EXTI_Line0);
 -  
 -  /* Toggle GPIO_LED pin 8 */
 -  GPIO_WriteBit(GPIO_LED, GPIO_Pin_8, (BitAction)(1 - GPIO_ReadOutputDataBit(GPIO_LED, GPIO_Pin_8)));
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI1_IRQHandler
 -* Description    : This function handles External interrupt Line 1 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI2_IRQHandler
 -* Description    : This function handles External interrupt Line 2 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI3_IRQHandler
 -* Description    : This function handles External interrupt Line 3 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI4_IRQHandler
 -* Description    : This function handles External interrupt Line 4 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel1_IRQHandler
 -* Description    : This function handles DMA1 Channel 1 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel2_IRQHandler
 -* Description    : This function handles DMA1 Channel 2 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel3_IRQHandler
 -* Description    : This function handles DMA1 Channel 3 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel4_IRQHandler
 -* Description    : This function handles DMA1 Channel 4 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel5_IRQHandler
 -* Description    : This function handles DMA1 Channel 5 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel6_IRQHandler
 -* Description    : This function handles DMA1 Channel 6 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel6_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel7_IRQHandler
 -* Description    : This function handles DMA1 Channel 7 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel7_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : ADC1_2_IRQHandler
 -* Description    : This function handles ADC1 and ADC2 global interrupts requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void ADC1_2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USB_HP_CAN_TX_IRQHandler
 -* Description    : This function handles USB High Priority or CAN TX interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USB_HP_CAN_TX_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USB_LP_CAN_RX0_IRQHandler
 -* Description    : This function handles USB Low Priority or CAN RX0 interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USB_LP_CAN_RX0_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : CAN_RX1_IRQHandler
 -* Description    : This function handles CAN RX1 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void CAN_RX1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : CAN_SCE_IRQHandler
 -* Description    : This function handles CAN SCE interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void CAN_SCE_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI9_5_IRQHandler
 -* Description    : This function handles External lines 9 to 5 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI9_5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_BRK_IRQHandler
 -* Description    : This function handles TIM1 Break interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_BRK_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_UP_IRQHandler
 -* Description    : This function handles TIM1 overflow and update interrupt 
 -*                  request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_UP_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_TRG_COM_IRQHandler
 -* Description    : This function handles TIM1 Trigger and commutation interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_TRG_COM_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_CC_IRQHandler
 -* Description    : This function handles TIM1 capture compare interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_CC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM2_IRQHandler
 -* Description    : This function handles TIM2 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM3_IRQHandler
 -* Description    : This function handles TIM3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM4_IRQHandler
 -* Description    : This function handles TIM4 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C1_EV_IRQHandler
 -* Description    : This function handles I2C1 Event interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C1_EV_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C1_ER_IRQHandler
 -* Description    : This function handles I2C1 Error interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C1_ER_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C2_EV_IRQHandler
 -* Description    : This function handles I2C2 Event interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C2_EV_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C2_ER_IRQHandler
 -* Description    : This function handles I2C2 Error interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C2_ER_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SPI1_IRQHandler
 -* Description    : This function handles SPI1 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SPI1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SPI2_IRQHandler
 -* Description    : This function handles SPI2 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SPI2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USART1_IRQHandler
 -* Description    : This function handles USART1 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USART1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USART2_IRQHandler
 -* Description    : This function handles USART2 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USART2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USART3_IRQHandler
 -* Description    : This function handles USART3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USART3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI15_10_IRQHandler
 -* Description    : This function handles External lines 15 to 10 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI15_10_IRQHandler(void)
 -{
 -  if(EXTI_GetITStatus(EXTI_Line13) != RESET)
 -  {
 -    /* Clear EXTI line13 pending bit */
 -    EXTI_ClearITPendingBit(EXTI_Line13);
 -	
 -    LowPowerMode = 1;	
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RTCAlarm_IRQHandler
 -* Description    : This function handles RTC Alarm interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RTCAlarm_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USBWakeUp_IRQHandler
 -* Description    : This function handles USB WakeUp interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USBWakeUp_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_BRK_IRQHandler
 -* Description    : This function handles TIM8 Break interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_BRK_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_UP_IRQHandler
 -* Description    : This function handles TIM8 overflow and update interrupt 
 -*                  request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_UP_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_TRG_COM_IRQHandler
 -* Description    : This function handles TIM8 Trigger and commutation interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_TRG_COM_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_CC_IRQHandler
 -* Description    : This function handles TIM8 capture compare interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_CC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : ADC3_IRQHandler
 -* Description    : This function handles ADC3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void ADC3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : FSMC_IRQHandler
 -* Description    : This function handles FSMC global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void FSMC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SDIO_IRQHandler
 -* Description    : This function handles SDIO global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SDIO_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM5_IRQHandler
 -* Description    : This function handles TIM5 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SPI3_IRQHandler
 -* Description    : This function handles SPI3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SPI3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : UART4_IRQHandler
 -* Description    : This function handles UART4 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void UART4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : UART5_IRQHandler
 -* Description    : This function handles UART5 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void UART5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM6_IRQHandler
 -* Description    : This function handles TIM6 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM6_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM7_IRQHandler
 -* Description    : This function handles TIM7 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM7_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel1_IRQHandler
 -* Description    : This function handles DMA2 Channel 1 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel2_IRQHandler
 -* Description    : This function handles DMA2 Channel 2 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel3_IRQHandler
 -* Description    : This function handles DMA2 Channel 3 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel4_5_IRQHandler
 -* Description    : This function handles DMA2 Channel 4 and DMA2 Channel 5
 -*                  interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel4_5_IRQHandler(void)
 -{
 -}
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/CM3_LPModes/stm32f10x_it.h b/src/stm32lib/examples/NVIC/CM3_LPModes/stm32f10x_it.h deleted file mode 100755 index e74b6cc..0000000 --- a/src/stm32lib/examples/NVIC/CM3_LPModes/stm32f10x_it.h +++ /dev/null @@ -1,100 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : stm32f10x_it.h
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : This file contains the headers of the interrupt handlers.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Define to prevent recursive inclusion -------------------------------------*/
 -#ifndef __STM32F10x_IT_H
 -#define __STM32F10x_IT_H
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_lib.h"
 -
 -/* Exported types ------------------------------------------------------------*/
 -/* Exported constants --------------------------------------------------------*/
 -/* Exported macro ------------------------------------------------------------*/
 -/* Exported functions ------------------------------------------------------- */
 -
 -void NMIException(void);
 -void HardFaultException(void);
 -void MemManageException(void);
 -void BusFaultException(void);
 -void UsageFaultException(void);
 -void DebugMonitor(void);
 -void SVCHandler(void);
 -void PendSVC(void);
 -void SysTickHandler(void);
 -void WWDG_IRQHandler(void);
 -void PVD_IRQHandler(void);
 -void TAMPER_IRQHandler(void);
 -void RTC_IRQHandler(void);
 -void FLASH_IRQHandler(void);
 -void RCC_IRQHandler(void);
 -void EXTI0_IRQHandler(void);
 -void EXTI1_IRQHandler(void);
 -void EXTI2_IRQHandler(void);
 -void EXTI3_IRQHandler(void);
 -void EXTI4_IRQHandler(void);
 -void DMA1_Channel1_IRQHandler(void);
 -void DMA1_Channel2_IRQHandler(void);
 -void DMA1_Channel3_IRQHandler(void);
 -void DMA1_Channel4_IRQHandler(void);
 -void DMA1_Channel5_IRQHandler(void);
 -void DMA1_Channel6_IRQHandler(void);
 -void DMA1_Channel7_IRQHandler(void);
 -void ADC1_2_IRQHandler(void);
 -void USB_HP_CAN_TX_IRQHandler(void);
 -void USB_LP_CAN_RX0_IRQHandler(void);
 -void CAN_RX1_IRQHandler(void);
 -void CAN_SCE_IRQHandler(void);
 -void EXTI9_5_IRQHandler(void);
 -void TIM1_BRK_IRQHandler(void);
 -void TIM1_UP_IRQHandler(void);
 -void TIM1_TRG_COM_IRQHandler(void);
 -void TIM1_CC_IRQHandler(void);
 -void TIM2_IRQHandler(void);
 -void TIM3_IRQHandler(void);
 -void TIM4_IRQHandler(void);
 -void I2C1_EV_IRQHandler(void);
 -void I2C1_ER_IRQHandler(void);
 -void I2C2_EV_IRQHandler(void);
 -void I2C2_ER_IRQHandler(void);
 -void SPI1_IRQHandler(void);
 -void SPI2_IRQHandler(void);
 -void USART1_IRQHandler(void);
 -void USART2_IRQHandler(void);
 -void USART3_IRQHandler(void);
 -void EXTI15_10_IRQHandler(void);
 -void RTCAlarm_IRQHandler(void);
 -void USBWakeUp_IRQHandler(void);
 -void TIM8_BRK_IRQHandler(void);
 -void TIM8_UP_IRQHandler(void);
 -void TIM8_TRG_COM_IRQHandler(void);
 -void TIM8_CC_IRQHandler(void);
 -void ADC3_IRQHandler(void);
 -void FSMC_IRQHandler(void);
 -void SDIO_IRQHandler(void);
 -void TIM5_IRQHandler(void);
 -void SPI3_IRQHandler(void);
 -void UART4_IRQHandler(void);
 -void UART5_IRQHandler(void);
 -void TIM6_IRQHandler(void);
 -void TIM7_IRQHandler(void);
 -void DMA2_Channel1_IRQHandler(void);
 -void DMA2_Channel2_IRQHandler(void);
 -void DMA2_Channel3_IRQHandler(void);
 -void DMA2_Channel4_5_IRQHandler(void);
 -					 
 -#endif /* __STM32F10x_IT_H */
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/DMA_WFIMode/main.c b/src/stm32lib/examples/NVIC/DMA_WFIMode/main.c deleted file mode 100755 index 130c0a8..0000000 --- a/src/stm32lib/examples/NVIC/DMA_WFIMode/main.c +++ /dev/null @@ -1,352 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : main.c
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Main program body
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_lib.h"
 -#include "platform_config.h"
 -
 -/* Private typedef -----------------------------------------------------------*/
 -/* Private define ------------------------------------------------------------*/
 -#define USART1_DR_Address    0x40013804
 -
 -/* Private macro -------------------------------------------------------------*/
 -/* Private variables ---------------------------------------------------------*/
 -NVIC_InitTypeDef  NVIC_InitStructure;
 -DMA_InitTypeDef  DMA_InitStructure;
 -
 -vu32 LowPowerMode = 0;
 -u16 DST_Buffer[10]= {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
 -ErrorStatus HSEStartUpStatus;
 -
 -/* Private function prototypes -----------------------------------------------*/
 -void RCC_Configuration(void);
 -void GPIO_Configuration(void);
 -void EXTI_Configuration(void);
 -void DMA_Configuration(void);
 -void USART_Configuration(void);
 -u8 Buffercmp16(u16* pBuffer1, u16* pBuffer2, u16 BufferLength);
 -void Delay(vu32 nCount);
 -
 -/* Private functions ---------------------------------------------------------*/
 -
 -/*******************************************************************************
 -* Function Name  : main
 -* Description    : Main program.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -int main(void)
 -{
 -#ifdef DEBUG
 -  debug();
 -#endif
 -
 -  /* Configure the system clocks */
 -  RCC_Configuration();
 -
 -  /* Configure GPIOs */
 -  GPIO_Configuration();
 -
 -  /* Configures the EXTI Lines */
 -  EXTI_Configuration();
 -  
 -  /* Configures the DMA Channel */
 -  DMA_Configuration();
 -  
 -  /* Configures the USART1 */
 -  USART_Configuration();
 -    
 -#ifdef  VECT_TAB_RAM
 -  /* Set the Vector Table base location at 0x20000000 */ 
 -  NVIC_SetVectorTable(NVIC_VectTab_RAM, 0x0);
 -#else  /* VECT_TAB_FLASH  */
 -  /* Set the Vector Table base location at 0x08000000 */ 
 -  NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0x0);
 -#endif
 -
 -  NVIC_PriorityGroupConfig(NVIC_PriorityGroup_1);
 -  
 -  /* Enable the DMA1 Channel 5 Interrupt */
 -  NVIC_InitStructure.NVIC_IRQChannel = DMA1_Channel5_IRQChannel;
 -  NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
 -  NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
 -  NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
 -  NVIC_Init(&NVIC_InitStructure);
 -
 -  /* Enable the EXTI9_5  Interrupt */
 -  NVIC_InitStructure.NVIC_IRQChannel = EXTI9_5_IRQChannel;
 -  NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1;
 -  NVIC_Init(&NVIC_InitStructure);
 -    
 -  while (1)
 -  {
 -    if(LowPowerMode == 1)
 -    {
 -
 -      GPIO_ResetBits(GPIO_LED, GPIO_Pin_7 | GPIO_Pin_8);
 -
 -      /* Request to enter WFI mode */
 -      __WFI();
 -      LowPowerMode = 0;
 -    }
 -
 -    Delay(0xFFFFF);
 -    GPIO_WriteBit(GPIO_LED, GPIO_Pin_6, (BitAction)(1 - GPIO_ReadOutputDataBit(GPIO_LED, GPIO_Pin_6)));
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RCC_Configuration
 -* Description    : Configures the different system clocks
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RCC_Configuration(void)
 -{
 -  /* RCC system reset(for debug purpose) */
 -  RCC_DeInit();
 -
 -  /* Enable HSE */
 -  RCC_HSEConfig(RCC_HSE_ON);
 -
 -  /* Wait till HSE is ready */
 -  HSEStartUpStatus = RCC_WaitForHSEStartUp();
 -
 -  if(HSEStartUpStatus == SUCCESS)
 -  {
 -    /* Enable Prefetch Buffer */
 -    FLASH_PrefetchBufferCmd(FLASH_PrefetchBuffer_Enable);
 -
 -    /* Flash 2 wait state */
 -    FLASH_SetLatency(FLASH_Latency_2);
 - 
 -    /* HCLK = SYSCLK */
 -    RCC_HCLKConfig(RCC_SYSCLK_Div1); 
 -
 -    /* PCLK2 = HCLK */
 -    RCC_PCLK2Config(RCC_HCLK_Div1); 
 -
 -    /* PCLK1 = HCLK/2 */
 -    RCC_PCLK1Config(RCC_HCLK_Div2);
 -
 -    /* PLLCLK = 8MHz * 9 = 72 MHz */
 -    RCC_PLLConfig(RCC_PLLSource_HSE_Div1, RCC_PLLMul_9);
 -
 -    /* Enable PLL */ 
 -    RCC_PLLCmd(ENABLE);
 -
 -    /* Wait till PLL is ready */
 -    while(RCC_GetFlagStatus(RCC_FLAG_PLLRDY) == RESET)
 -    {
 -    }
 -
 -    /* Select PLL as system clock source */
 -    RCC_SYSCLKConfig(RCC_SYSCLKSource_PLLCLK);
 -
 -    /* Wait till PLL is used as system clock source */
 -    while(RCC_GetSYSCLKSource() != 0x08)
 -    {
 -    }
 -  }
 -
 -  /* Enable USART1, GPIOA, GPIO_LED, GPIO_KEY_BUTTON and AFIO clocks */
 -  RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA | 
 -                         RCC_APB2Periph_GPIO_LED | RCC_APB2Periph_GPIO_KEY_BUTTON |
 -                         RCC_APB2Periph_AFIO, ENABLE);  
 -
 -  /* DMA1 clock enable */
 -  RCC_AHBPeriphClockCmd(RCC_AHBPeriph_DMA1, ENABLE);
 -}
 -
 -/*******************************************************************************
 -* Function Name  : GPIO_Configuration
 -* Description    : Configures the used GPIO pins.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void GPIO_Configuration(void)
 -{
 -  GPIO_InitTypeDef  GPIO_InitStructure;
 -
 -  /* Configure GPIO_LED Pin 6, GPIO_LED Pin 7 and GPIO_LED Pin 8 as
 -     Output push-pull */
 -  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6 |GPIO_Pin_7 | GPIO_Pin_8;
 -  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
 -  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
 -  GPIO_Init(GPIO_LED, &GPIO_InitStructure);
 -  
 -  /* Configure USART1 Rx (PA.10) as input floating */
 -  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
 -  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
 -  GPIO_Init(GPIOA, &GPIO_InitStructure);
 -
 -  /* Configure GPIO KEY Button Pin as input floating */
 -  GPIO_InitStructure.GPIO_Pin = GPIO_PIN_KEY_BUTTON;
 -  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
 -  GPIO_Init(GPIO_KEY_BUTTON, &GPIO_InitStructure);  
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI_Configuration
 -* Description    : Configures the used EXTI line.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI_Configuration(void)
 -{
 -  EXTI_InitTypeDef EXTI_InitStructure;
 -
 -  /* Connect KEY Button EXTI Line to GPIO KEY Button Pin */
 -  GPIO_EXTILineConfig(GPIO_PORT_SOURCE_KEY_BUTTON, GPIO_PIN_SOURCE_KEY_BUTTON);
 -
 -  /* Configure KEY Button EXTI Line to generate an interrupt on falling edge */  
 -  EXTI_InitStructure.EXTI_Line = EXTI_LINE_KEY_BUTTON;
 -  EXTI_InitStructure.EXTI_Mode = EXTI_Mode_Interrupt;
 -  EXTI_InitStructure.EXTI_Trigger = EXTI_Trigger_Falling;
 -  EXTI_InitStructure.EXTI_LineCmd = ENABLE;
 -  EXTI_Init(&EXTI_InitStructure);  
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA_Configuration
 -* Description    : Configures the used DMA Channel.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA_Configuration(void)
 -{
 -  DMA_InitTypeDef  DMA_InitStructure;
 -
 -  /* DMA1 Channel5 Config */
 -  DMA_DeInit(DMA1_Channel5);
 -  DMA_InitStructure.DMA_PeripheralBaseAddr = USART1_DR_Address;
 -  DMA_InitStructure.DMA_MemoryBaseAddr = (u32)DST_Buffer;
 -  DMA_InitStructure.DMA_DIR = DMA_DIR_PeripheralSRC;
 -  DMA_InitStructure.DMA_BufferSize = 10;
 -  DMA_InitStructure.DMA_PeripheralInc = DMA_PeripheralInc_Disable;
 -  DMA_InitStructure.DMA_MemoryInc = DMA_MemoryInc_Enable;
 -  DMA_InitStructure.DMA_PeripheralDataSize = DMA_PeripheralDataSize_HalfWord;
 -  DMA_InitStructure.DMA_MemoryDataSize = DMA_MemoryDataSize_HalfWord;
 -  DMA_InitStructure.DMA_Mode = DMA_Mode_Normal;
 -  DMA_InitStructure.DMA_Priority = DMA_Priority_High;
 -  DMA_InitStructure.DMA_M2M = DMA_M2M_Disable;
 -  DMA_Init(DMA1_Channel5, &DMA_InitStructure);
 -
 -  /* Enable Channel5 Transfer complete interrupt */
 -  DMA_ITConfig(DMA1_Channel5, DMA_IT_TC, ENABLE);
 -  
 -  /* DMA1 Channel5 enable */
 -  DMA_Cmd(DMA1_Channel5, ENABLE);
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USART_Configuration
 -* Description    : Configures the USART1.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USART_Configuration(void)
 -{
 -  USART_InitTypeDef  USART_InitStructure;
 -
 -/* USART1 configuration ------------------------------------------------------*/
 -  /* USART1 configured as follow:
 -        - BaudRate = 9600 baud  
 -        - Word Length = 8 Bits
 -        - One Stop Bit
 -        - No parity
 -        - Hardware flow control disabled (RTS and CTS signals)
 -        - Receive and transmit enabled
 -  */
 -  USART_InitStructure.USART_BaudRate = 9600;
 -  USART_InitStructure.USART_WordLength = USART_WordLength_8b;
 -  USART_InitStructure.USART_StopBits = USART_StopBits_1;
 -  USART_InitStructure.USART_Parity = USART_Parity_No;
 -  USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
 -  USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
 -
 -  USART_Init(USART1, &USART_InitStructure);
 -  
 -  USART_DMACmd(USART1, USART_DMAReq_Rx, ENABLE);
 -  
 -  /* Enable the USART1 */  
 -  USART_Cmd(USART1, ENABLE);
 -}
 -
 -/*******************************************************************************
 -* Function Name  : Buffercmp16
 -* Description    : Compares two buffers.
 -* Input          : - pBuffer1, pBuffer2: buffers to be compared.
 -*                : - BufferLength: buffer's length
 -* Output         : None
 -* Return         : 0: pBuffer1 identical to pBuffer2
 -*                  1: pBuffer1 differs from pBuffer2
 -*******************************************************************************/
 -u8 Buffercmp16(u16* pBuffer1, u16* pBuffer2, u16 BufferLength)
 -{
 -  while(BufferLength--)
 -  {
 -    if(*pBuffer1 != *pBuffer2)
 -    {
 -      return 1;
 -    }
 -
 -    pBuffer1++;
 -    pBuffer2++;
 -  }
 -  return 0;
 -}
 -
 -/*******************************************************************************
 -* Function Name  : Delay
 -* Description    : Inserts a delay time.
 -* Input          : nCount: specifies the delay time length.
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void Delay(vu32 nCount)
 -{
 -  for(; nCount != 0; nCount--);
 -}
 -
 -#ifdef  DEBUG
 -/*******************************************************************************
 -* Function Name  : assert_failed
 -* Description    : Reports the name of the source file and the source line number
 -*                  where the assert_param error has occurred.
 -* Input          : - file: pointer to the source file name
 -*                  - line: assert_param error line source number
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void assert_failed(u8* file, u32 line)
 -{ 
 -  /* User can add his own implementation to report the file name and line number,
 -     ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
 -
 -  /* Infinite loop */
 -  while (1)
 -  {
 -  }
 -}
 -#endif
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/DMA_WFIMode/platform_config.h b/src/stm32lib/examples/NVIC/DMA_WFIMode/platform_config.h deleted file mode 100755 index 3deb7ba..0000000 --- a/src/stm32lib/examples/NVIC/DMA_WFIMode/platform_config.h +++ /dev/null @@ -1,56 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : platform_config.h
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Evaluation board specific configuration file.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Define to prevent recursive inclusion -------------------------------------*/
 -#ifndef __PLATFORM_CONFIG_H
 -#define __PLATFORM_CONFIG_H
 -
 -/* Includes ------------------------------------------------------------------*/
 -/* Exported types ------------------------------------------------------------*/
 -/* Exported constants --------------------------------------------------------*/
 -/* Uncomment the line corresponding to the STMicroelectronics evaluation board
 -   used to run the example */
 -#if !defined (USE_STM3210B_EVAL) &&  !defined (USE_STM3210E_EVAL)
 - //#define USE_STM3210B_EVAL
 - #define USE_STM3210E_EVAL
 -#endif
 -
 -/* Define the STM32F10x hardware depending on the used evaluation board */
 -#ifdef USE_STM3210B_EVAL
 -  #define GPIO_LED                          GPIOC    
 -  #define RCC_APB2Periph_GPIO_LED           RCC_APB2Periph_GPIOC
 -  #define GPIO_KEY_BUTTON                   GPIOB
 -  #define RCC_APB2Periph_GPIO_KEY_BUTTON    RCC_APB2Periph_GPIOB
 -  #define GPIO_PIN_KEY_BUTTON               GPIO_Pin_9
 -  #define EXTI_LINE_KEY_BUTTON              EXTI_Line9
 -  #define GPIO_PORT_SOURCE_KEY_BUTTON       GPIO_PortSourceGPIOB
 -  #define GPIO_PIN_SOURCE_KEY_BUTTON        GPIO_PinSource9
 -#elif defined USE_STM3210E_EVAL
 -  #define GPIO_LED                          GPIOF    
 -  #define RCC_APB2Periph_GPIO_LED           RCC_APB2Periph_GPIOF
 -  #define GPIO_KEY_BUTTON                   GPIOG    
 -  #define RCC_APB2Periph_GPIO_KEY_BUTTON    RCC_APB2Periph_GPIOG
 -  #define GPIO_PIN_KEY_BUTTON               GPIO_Pin_8
 -  #define EXTI_LINE_KEY_BUTTON              EXTI_Line8
 -  #define GPIO_PORT_SOURCE_KEY_BUTTON       GPIO_PortSourceGPIOG
 -  #define GPIO_PIN_SOURCE_KEY_BUTTON        GPIO_PinSource8
 -#endif /* USE_STM3210B_EVAL */
 -
 -/* Exported macro ------------------------------------------------------------*/
 -/* Exported functions ------------------------------------------------------- */
 -
 -#endif /* __PLATFORM_CONFIG_H */
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/DMA_WFIMode/readme.txt b/src/stm32lib/examples/NVIC/DMA_WFIMode/readme.txt deleted file mode 100755 index ee99fcd..0000000 --- a/src/stm32lib/examples/NVIC/DMA_WFIMode/readme.txt +++ /dev/null @@ -1,103 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : readme.txt
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Description of the NVIC DMA in WFI mode Example.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -Example description
 -===================
 -This example shows how to enters the system to WFI mode with DMA transfer enabled
 -and wake-up from this mode by the DMA End of Transfer interrupt.
 -
 -In the associated software, the system clock is set to 72 MHz, the DMA1 Channel5
 -is configured to transfer 10 data from the USART1 data register to a predefined 
 -buffer, DST_Buffer, and to generate an interrupt at the end of the transfer.
 -The USART1 receives data from Hyperterminal.
 -A LED1 is toggled with a frequency depending on the system
 -clock, this is used to indicate whether the MCU is in WFI or RUN mode. 
 -
 -A falling edge on the selected EXTI Line will put the core in the WFI mode, causing the 
 -led pin to stop toggling.
 -To wake-up from WFI mode you have to send the sequence (0, 1, 2, 3, 4, 5, 6, 7, 8, 9)
 -from the Hyperterminal to the USART1. These bytes will be transferred by the DMA from
 -the USART1 receive data register to the predefined buffer, then generates an interrupt
 -which exits the system from WFI mode. 
 -The LED1 restarts toggling and a LED2 will toggle if the buffer is correctly received 
 -else a LED3 is toggled.
 -
 -
 -Directory contents
 -==================
 -platform_config.h    Evaluation board specific configuration file
 -stm32f10x_conf.h     Library Configuration file
 -stm32f10x_it.c       Interrupt handlers
 -stm32f10x_it.h       Interrupt handlers header file
 -main.c               Main program
 -
 -
 -Hardware environment
 -====================
 -This example runs on STMicroelectronics STM3210B-EVAL and STM3210E-EVAL evaluation
 -boards and can be easily tailored to any other hardware.
 -To select the STMicroelectronics evaluation board used to run the example, uncomment
 -the corresponding line in platform_config.h file.
 -
 - + STM3210B-EVAL 
 -    - Use LD1, LD2, LD3 and LD4 leds connected respectively to PC.06, PC.07, PC.08
 -      and PC.09 pins
 -    - The USART1 signals (Rx, Tx) must be connected to a DB9 connector using a RS232
 -      transceiver.
 -    - Connect a null-modem female/female RS232 cable between the DB9 connector, 
 -      CN6 on STM3210B-EVAL board, and PC serial port.   
 -    - Hyperterminal configuration:
 -       - Word Length = 8 Bits
 -       - One Stop Bit
 -       - No parity
 -       - BaudRate = 9600 baud
 -       - flow control: None   
 -    - Use the Key push-button connected to pin PB.09 (EXTI Line9).
 - 
 - + STM3210E-EVAL
 -    - Use LD1, LD2, LD3 and LD4 leds connected respectively to PF.06, PF0.7, PF.08
 -      and PF.09 pins
 -    - The USART1 signals (Rx, Tx) must be connected to a DB9 connector using a RS232
 -      transceiver.
 -    - Connect a null-modem female/female RS232 cable between the DB9 connector,
 -      CN12 on STM3210E-EVAL board, and PC serial port.   
 -    - Hyperterminal configuration:
 -       - Word Length = 8 Bits
 -       - One Stop Bit
 -       - No parity
 -       - BaudRate = 9600 baud
 -       - flow control: None 
 -    - Use the Key push-button connected to pin PG.08 (EXTI Line8).         
 -
 -     
 -How to use it
 -=============
 -In order to make the program work, you must do the following :
 -- Create a project and setup all your toolchain's start-up files
 -- Compile the directory content files and required Library files :
 -  + stm32f10x_lib.c
 -  + stm32f10x_exti.c
 -  + stm32f10x_gpio.c
 -  + stm32f10x_rcc.c
 -  + stm32f10x_nvic.c
 -  + stm32f10x_flash.c
 -  + stm32f10x_dma.c
 -  + stm32f10x_usart.c
 -    
 -- Link all compiled files and load your image into target memory
 -- Run the example
 -
 -
 -******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE******
 diff --git a/src/stm32lib/examples/NVIC/DMA_WFIMode/stm32f10x_conf.h b/src/stm32lib/examples/NVIC/DMA_WFIMode/stm32f10x_conf.h deleted file mode 100755 index c286a47..0000000 --- a/src/stm32lib/examples/NVIC/DMA_WFIMode/stm32f10x_conf.h +++ /dev/null @@ -1,169 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : stm32f10x_conf.h
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Library configuration file.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Define to prevent recursive inclusion -------------------------------------*/
 -#ifndef __STM32F10x_CONF_H
 -#define __STM32F10x_CONF_H
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_type.h"
 -
 -/* Exported types ------------------------------------------------------------*/
 -/* Exported constants --------------------------------------------------------*/
 -/* Uncomment the line below to compile the library in DEBUG mode, this will expanse
 -   the "assert_param" macro in the firmware library code (see "Exported macro"
 -   section below) */
 -/*#define DEBUG    1*/
 -
 -/* Comment the line below to disable the specific peripheral inclusion */
 -/************************************* ADC ************************************/
 -//#define _ADC
 -//#define _ADC1
 -//#define _ADC2
 -//#define _ADC3
 -
 -/************************************* BKP ************************************/
 -//#define _BKP 
 -
 -/************************************* CAN ************************************/
 -//#define _CAN
 -
 -/************************************* CRC ************************************/
 -//#define _CRC
 -
 -/************************************* DAC ************************************/
 -//#define _DAC
 -
 -/************************************* DBGMCU *********************************/
 -//#define _DBGMCU
 -/************************************* DMA ************************************/
 -#define _DMA
 -//#define _DMA1_Channel1
 -//#define _DMA1_Channel2
 -//#define _DMA1_Channel3
 -//#define _DMA1_Channel4
 -#define _DMA1_Channel5
 -//#define _DMA1_Channel6
 -//#define _DMA1_Channel7
 -//#define _DMA2_Channel1
 -//#define _DMA2_Channel2
 -//#define _DMA2_Channel3
 -//#define _DMA2_Channel4
 -//#define _DMA2_Channel5
 -
 -/************************************* EXTI ***********************************/
 -#define _EXTI
 -
 -/************************************* FLASH and Option Bytes *****************/
 -#define _FLASH
 -/* Uncomment the line below to enable FLASH program/erase/protections functions,
 -   otherwise only FLASH configuration (latency, prefetch, half cycle) functions
 -   are enabled */
 -/* #define _FLASH_PROG */
 -
 -/************************************* FSMC ***********************************/
 -//#define _FSMC
 -
 -/************************************* GPIO ***********************************/
 -#define _GPIO
 -#define _GPIOA
 -#define _GPIOB
 -#define _GPIOC
 -//#define _GPIOD
 -//#define _GPIOE
 -#define _GPIOF
 -#define _GPIOG
 -#define _AFIO
 -
 -/************************************* I2C ************************************/
 -//#define _I2C
 -//#define _I2C1
 -//#define _I2C2
 -
 -/************************************* IWDG ***********************************/
 -//#define _IWDG
 -
 -/************************************* NVIC ***********************************/
 -#define _NVIC
 -
 -/************************************* PWR ************************************/
 -//#define _PWR
 -
 -/************************************* RCC ************************************/
 -#define _RCC
 -
 -/************************************* RTC ************************************/
 -//#define _RTC
 -
 -/************************************* SDIO ***********************************/
 -//#define _SDIO
 -
 -/************************************* SPI ************************************/
 -//#define _SPI
 -//#define _SPI1
 -//#define _SPI2
 -//#define _SPI3
 -
 -/************************************* SysTick ********************************/
 -//#define _SysTick
 -
 -/************************************* TIM ************************************/
 -//#define _TIM
 -//#define _TIM1
 -//#define _TIM2
 -//#define _TIM3
 -//#define _TIM4
 -//#define _TIM5
 -//#define _TIM6
 -//#define _TIM7
 -//#define _TIM8
 -
 -/************************************* USART **********************************/
 -#define _USART
 -#define _USART1
 -//#define _USART2
 -//#define _USART3
 -//#define _UART4
 -//#define _UART5
 -
 -/************************************* WWDG ***********************************/
 -//#define _WWDG
 -
 -/* In the following line adjust the value of External High Speed oscillator (HSE)
 -   used in your application */
 -#define HSE_Value    ((u32)8000000) /* Value of the External oscillator in Hz*/
 -
 -/* Exported macro ------------------------------------------------------------*/
 -#ifdef  DEBUG
 -/*******************************************************************************
 -* 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. 
 -* 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. 
 -*                    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);
 -#else
 -  #define assert_param(expr) ((void)0)
 -#endif /* DEBUG */
 -
 -#endif /* __STM32F10x_CONF_H */
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/DMA_WFIMode/stm32f10x_it.c b/src/stm32lib/examples/NVIC/DMA_WFIMode/stm32f10x_it.c deleted file mode 100755 index 6aae663..0000000 --- a/src/stm32lib/examples/NVIC/DMA_WFIMode/stm32f10x_it.c +++ /dev/null @@ -1,843 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : stm32f10x_it.c
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Main Interrupt Service Routines.
 -*                      This file provides template for all exceptions handler
 -*                      and peripherals interrupt service routine.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_it.h"
 -#include "platform_config.h"
 -
 -/* Private typedef -----------------------------------------------------------*/
 -/* Private define ------------------------------------------------------------*/
 -/* Private macro -------------------------------------------------------------*/
 -/* Private variables ---------------------------------------------------------*/
 -u8 TestStatus = 0;
 -u16 SRC_Buffer[10] = {0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39};
 -extern u16 DST_Buffer[10];
 -extern vu32 LowPowerMode;
 -extern u8 Buffercmp16(u16*, u16*, u16);
 -extern void DMA_Configuration(void);
 -
 -/* Private function prototypes -----------------------------------------------*/
 -/* Private functions ---------------------------------------------------------*/
 -
 -/*******************************************************************************
 -* Function Name  : NMIException
 -* Description    : This function handles NMI exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void NMIException(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : HardFaultException
 -* Description    : This function handles Hard Fault exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void HardFaultException(void)
 -{
 -  /* Go to infinite loop when Hard Fault exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : MemManageException
 -* Description    : This function handles Memory Manage exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void MemManageException(void)
 -{
 -  /* Go to infinite loop when Memory Manage exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : BusFaultException
 -* Description    : This function handles Bus Fault exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void BusFaultException(void)
 -{
 -  /* Go to infinite loop when Bus Fault exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : UsageFaultException
 -* Description    : This function handles Usage Fault exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void UsageFaultException(void)
 -{
 -  /* Go to infinite loop when Usage Fault exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DebugMonitor
 -* Description    : This function handles Debug Monitor exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DebugMonitor(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SVCHandler
 -* Description    : This function handles SVCall exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SVCHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : PendSVC
 -* Description    : This function handles PendSVC exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void PendSVC(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SysTickHandler
 -* Description    : This function handles SysTick Handler.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SysTickHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : WWDG_IRQHandler
 -* Description    : This function handles WWDG interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void WWDG_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : PVD_IRQHandler
 -* Description    : This function handles PVD interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void PVD_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TAMPER_IRQHandler
 -* Description    : This function handles Tamper interrupt request. 
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TAMPER_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RTC_IRQHandler
 -* Description    : This function handles RTC global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RTC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : FLASH_IRQHandler
 -* Description    : This function handles Flash interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void FLASH_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RCC_IRQHandler
 -* Description    : This function handles RCC interrupt request. 
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RCC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI0_IRQHandler
 -* Description    : This function handles External interrupt Line 0 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI0_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI1_IRQHandler
 -* Description    : This function handles External interrupt Line 1 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI2_IRQHandler
 -* Description    : This function handles External interrupt Line 2 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI3_IRQHandler
 -* Description    : This function handles External interrupt Line 3 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI4_IRQHandler
 -* Description    : This function handles External interrupt Line 4 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel1_IRQHandler
 -* Description    : This function handles DMA1 Channel 1 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel2_IRQHandler
 -* Description    : This function handles DMA1 Channel 2 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel3_IRQHandler
 -* Description    : This function handles DMA1 Channel 3 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel4_IRQHandler
 -* Description    : This function handles DMA1 Channel 4 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel5_IRQHandler
 -* Description    : This function handles DMA1 Channel 5 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel5_IRQHandler(void)
 -{
 -  if(DMA_GetITStatus(DMA1_IT_TC5))
 -  {
 -    DMA_ClearITPendingBit(DMA1_IT_TC5);
 -	
 -    /* Check the received buffer */
 -    TestStatus = Buffercmp16(SRC_Buffer, DST_Buffer, 10);
 -
 -    if(TestStatus == 0)
 -    {
 -      GPIO_WriteBit(GPIO_LED, GPIO_Pin_7, (BitAction)(1 - GPIO_ReadOutputDataBit(GPIO_LED, GPIO_Pin_7)));
 -    }												   
 -    else
 -    {
 -      GPIO_WriteBit(GPIO_LED, GPIO_Pin_8, (BitAction)(1 - GPIO_ReadOutputDataBit(GPIO_LED, GPIO_Pin_8)));
 -    }
 -
 -    /* Re-configure DMA1 */
 -    DMA_Configuration();
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel6_IRQHandler
 -* Description    : This function handles DMA1 Channel 6 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel6_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel7_IRQHandler
 -* Description    : This function handles DMA1 Channel 7 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel7_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : ADC1_2_IRQHandler
 -* Description    : This function handles ADC1 and ADC2 global interrupts requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void ADC1_2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USB_HP_CAN_TX_IRQHandler
 -* Description    : This function handles USB High Priority or CAN TX interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USB_HP_CAN_TX_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USB_LP_CAN_RX0_IRQHandler
 -* Description    : This function handles USB Low Priority or CAN RX0 interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USB_LP_CAN_RX0_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : CAN_RX1_IRQHandler
 -* Description    : This function handles CAN RX1 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void CAN_RX1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : CAN_SCE_IRQHandler
 -* Description    : This function handles CAN SCE interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void CAN_SCE_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI9_5_IRQHandler
 -* Description    : This function handles External lines 9 to 5 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI9_5_IRQHandler(void)
 -{
 -  if(EXTI_GetITStatus(EXTI_LINE_KEY_BUTTON) != RESET)
 -  {
 -    EXTI_ClearITPendingBit(EXTI_LINE_KEY_BUTTON);
 -  
 -    LowPowerMode = 1;
 -  }  
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_BRK_IRQHandler
 -* Description    : This function handles TIM1 Break interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_BRK_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_UP_IRQHandler
 -* Description    : This function handles TIM1 overflow and update interrupt 
 -*                  request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_UP_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_TRG_COM_IRQHandler
 -* Description    : This function handles TIM1 Trigger and commutation interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_TRG_COM_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_CC_IRQHandler
 -* Description    : This function handles TIM1 capture compare interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_CC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM2_IRQHandler
 -* Description    : This function handles TIM2 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM3_IRQHandler
 -* Description    : This function handles TIM3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM4_IRQHandler
 -* Description    : This function handles TIM4 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C1_EV_IRQHandler
 -* Description    : This function handles I2C1 Event interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C1_EV_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C1_ER_IRQHandler
 -* Description    : This function handles I2C1 Error interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C1_ER_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C2_EV_IRQHandler
 -* Description    : This function handles I2C2 Event interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C2_EV_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C2_ER_IRQHandler
 -* Description    : This function handles I2C2 Error interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C2_ER_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SPI1_IRQHandler
 -* Description    : This function handles SPI1 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SPI1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SPI2_IRQHandler
 -* Description    : This function handles SPI2 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SPI2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USART1_IRQHandler
 -* Description    : This function handles USART1 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USART1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USART2_IRQHandler
 -* Description    : This function handles USART2 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USART2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USART3_IRQHandler
 -* Description    : This function handles USART3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USART3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI15_10_IRQHandler
 -* Description    : This function handles External lines 15 to 10 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI15_10_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RTCAlarm_IRQHandler
 -* Description    : This function handles RTC Alarm interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RTCAlarm_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USBWakeUp_IRQHandler
 -* Description    : This function handles USB WakeUp interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USBWakeUp_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_BRK_IRQHandler
 -* Description    : This function handles TIM8 Break interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_BRK_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_UP_IRQHandler
 -* Description    : This function handles TIM8 overflow and update interrupt 
 -*                  request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_UP_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_TRG_COM_IRQHandler
 -* Description    : This function handles TIM8 Trigger and commutation interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_TRG_COM_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_CC_IRQHandler
 -* Description    : This function handles TIM8 capture compare interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_CC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : ADC3_IRQHandler
 -* Description    : This function handles ADC3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void ADC3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : FSMC_IRQHandler
 -* Description    : This function handles FSMC global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void FSMC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SDIO_IRQHandler
 -* Description    : This function handles SDIO global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SDIO_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM5_IRQHandler
 -* Description    : This function handles TIM5 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SPI3_IRQHandler
 -* Description    : This function handles SPI3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SPI3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : UART4_IRQHandler
 -* Description    : This function handles UART4 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void UART4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : UART5_IRQHandler
 -* Description    : This function handles UART5 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void UART5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM6_IRQHandler
 -* Description    : This function handles TIM6 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM6_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM7_IRQHandler
 -* Description    : This function handles TIM7 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM7_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel1_IRQHandler
 -* Description    : This function handles DMA2 Channel 1 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel2_IRQHandler
 -* Description    : This function handles DMA2 Channel 2 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel3_IRQHandler
 -* Description    : This function handles DMA2 Channel 3 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel4_5_IRQHandler
 -* Description    : This function handles DMA2 Channel 4 and DMA2 Channel 5
 -*                  interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel4_5_IRQHandler(void)
 -{
 -}
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/DMA_WFIMode/stm32f10x_it.h b/src/stm32lib/examples/NVIC/DMA_WFIMode/stm32f10x_it.h deleted file mode 100755 index e74b6cc..0000000 --- a/src/stm32lib/examples/NVIC/DMA_WFIMode/stm32f10x_it.h +++ /dev/null @@ -1,100 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : stm32f10x_it.h
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : This file contains the headers of the interrupt handlers.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Define to prevent recursive inclusion -------------------------------------*/
 -#ifndef __STM32F10x_IT_H
 -#define __STM32F10x_IT_H
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_lib.h"
 -
 -/* Exported types ------------------------------------------------------------*/
 -/* Exported constants --------------------------------------------------------*/
 -/* Exported macro ------------------------------------------------------------*/
 -/* Exported functions ------------------------------------------------------- */
 -
 -void NMIException(void);
 -void HardFaultException(void);
 -void MemManageException(void);
 -void BusFaultException(void);
 -void UsageFaultException(void);
 -void DebugMonitor(void);
 -void SVCHandler(void);
 -void PendSVC(void);
 -void SysTickHandler(void);
 -void WWDG_IRQHandler(void);
 -void PVD_IRQHandler(void);
 -void TAMPER_IRQHandler(void);
 -void RTC_IRQHandler(void);
 -void FLASH_IRQHandler(void);
 -void RCC_IRQHandler(void);
 -void EXTI0_IRQHandler(void);
 -void EXTI1_IRQHandler(void);
 -void EXTI2_IRQHandler(void);
 -void EXTI3_IRQHandler(void);
 -void EXTI4_IRQHandler(void);
 -void DMA1_Channel1_IRQHandler(void);
 -void DMA1_Channel2_IRQHandler(void);
 -void DMA1_Channel3_IRQHandler(void);
 -void DMA1_Channel4_IRQHandler(void);
 -void DMA1_Channel5_IRQHandler(void);
 -void DMA1_Channel6_IRQHandler(void);
 -void DMA1_Channel7_IRQHandler(void);
 -void ADC1_2_IRQHandler(void);
 -void USB_HP_CAN_TX_IRQHandler(void);
 -void USB_LP_CAN_RX0_IRQHandler(void);
 -void CAN_RX1_IRQHandler(void);
 -void CAN_SCE_IRQHandler(void);
 -void EXTI9_5_IRQHandler(void);
 -void TIM1_BRK_IRQHandler(void);
 -void TIM1_UP_IRQHandler(void);
 -void TIM1_TRG_COM_IRQHandler(void);
 -void TIM1_CC_IRQHandler(void);
 -void TIM2_IRQHandler(void);
 -void TIM3_IRQHandler(void);
 -void TIM4_IRQHandler(void);
 -void I2C1_EV_IRQHandler(void);
 -void I2C1_ER_IRQHandler(void);
 -void I2C2_EV_IRQHandler(void);
 -void I2C2_ER_IRQHandler(void);
 -void SPI1_IRQHandler(void);
 -void SPI2_IRQHandler(void);
 -void USART1_IRQHandler(void);
 -void USART2_IRQHandler(void);
 -void USART3_IRQHandler(void);
 -void EXTI15_10_IRQHandler(void);
 -void RTCAlarm_IRQHandler(void);
 -void USBWakeUp_IRQHandler(void);
 -void TIM8_BRK_IRQHandler(void);
 -void TIM8_UP_IRQHandler(void);
 -void TIM8_TRG_COM_IRQHandler(void);
 -void TIM8_CC_IRQHandler(void);
 -void ADC3_IRQHandler(void);
 -void FSMC_IRQHandler(void);
 -void SDIO_IRQHandler(void);
 -void TIM5_IRQHandler(void);
 -void SPI3_IRQHandler(void);
 -void UART4_IRQHandler(void);
 -void UART5_IRQHandler(void);
 -void TIM6_IRQHandler(void);
 -void TIM7_IRQHandler(void);
 -void DMA2_Channel1_IRQHandler(void);
 -void DMA2_Channel2_IRQHandler(void);
 -void DMA2_Channel3_IRQHandler(void);
 -void DMA2_Channel4_5_IRQHandler(void);
 -					 
 -#endif /* __STM32F10x_IT_H */
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/IRQ_Channels/main.c b/src/stm32lib/examples/NVIC/IRQ_Channels/main.c deleted file mode 100755 index 47b3df9..0000000 --- a/src/stm32lib/examples/NVIC/IRQ_Channels/main.c +++ /dev/null @@ -1,261 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : main.c
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Main program body
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_lib.h"
 -#include "platform_config.h"
 -
 -/* Private typedef -----------------------------------------------------------*/
 -/* Private define ------------------------------------------------------------*/
 -/* Private macro -------------------------------------------------------------*/
 -/* Private variables ---------------------------------------------------------*/
 -NVIC_InitTypeDef NVIC_InitStructure;
 -ErrorStatus HSEStartUpStatus;
 -  
 -/* Private function prototypes -----------------------------------------------*/
 -void RCC_Configuration(void);
 -void GPIO_Configuration(void);
 -void TIM_Configuration(void);
 -
 -/* Private functions ---------------------------------------------------------*/
 -
 -/*******************************************************************************
 -* Function Name  : main
 -* Description    : Main program.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -int main(void)
 -{
 -#ifdef DEBUG
 -  debug();
 -#endif
 -  
 -  /* Configure the system clocks */
 -  RCC_Configuration();
 -
 -  /* Configure GPIOs */
 -  GPIO_Configuration();
 -
 -  /* Configure TIMs */
 -  TIM_Configuration();
 -       
 -#ifdef  VECT_TAB_RAM  
 -  /* Set the Vector Table base location at 0x20000000 */ 
 -  NVIC_SetVectorTable(NVIC_VectTab_RAM, 0x0); 
 -#else  /* VECT_TAB_FLASH  */
 -  /* Set the Vector Table base location at 0x08000000 */ 
 -  NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0x0);   
 -#endif
 -
 -  /* Configure one bit for preemption priority */
 -  NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);
 -  
 -  /* Enable the TIM2 Interrupt */
 -  NVIC_InitStructure.NVIC_IRQChannel = TIM2_IRQChannel;
 -  NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
 -  NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
 -  NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
 -  NVIC_Init(&NVIC_InitStructure);
 -  
 -  /* Enable the TIM3 Interrupt */
 -  NVIC_InitStructure.NVIC_IRQChannel = TIM3_IRQChannel;
 -  NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1;
 -  NVIC_Init(&NVIC_InitStructure);
 - 
 -  /* Enable the TIM4 Interrupt */
 -  NVIC_InitStructure.NVIC_IRQChannel = TIM4_IRQChannel;
 -  NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 2;
 -  NVIC_Init(&NVIC_InitStructure); 
 -    
 -  while (1)
 -  {     
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RCC_Configuration
 -* Description    : Configures the different system clocks
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RCC_Configuration(void)
 -{
 -  /* RCC system reset(for debug purpose) */
 -  RCC_DeInit();
 -
 -  /* Enable HSE */
 -  RCC_HSEConfig(RCC_HSE_ON);
 -
 -  /* Wait till HSE is ready */
 -  HSEStartUpStatus = RCC_WaitForHSEStartUp();
 -
 -  if(HSEStartUpStatus == SUCCESS)
 -  {
 -    /* Enable Prefetch Buffer */
 -    FLASH_PrefetchBufferCmd(FLASH_PrefetchBuffer_Enable);
 -
 -    /* Flash 2 wait state */
 -    FLASH_SetLatency(FLASH_Latency_2);
 - 
 -    /* HCLK = SYSCLK */
 -    RCC_HCLKConfig(RCC_SYSCLK_Div1); 
 -  
 -    /* PCLK2 = HCLK */
 -    RCC_PCLK2Config(RCC_HCLK_Div1); 
 -
 -    /* PCLK1 = HCLK/2 */
 -    RCC_PCLK1Config(RCC_HCLK_Div2);
 -
 -    /* PLLCLK = 8MHz * 9 = 72 MHz */
 -    RCC_PLLConfig(RCC_PLLSource_HSE_Div1, RCC_PLLMul_9);
 -
 -    /* Enable PLL */ 
 -    RCC_PLLCmd(ENABLE);
 -
 -    /* Wait till PLL is ready */
 -    while(RCC_GetFlagStatus(RCC_FLAG_PLLRDY) == RESET)
 -    {
 -    }
 -
 -    /* Select PLL as system clock source */
 -    RCC_SYSCLKConfig(RCC_SYSCLKSource_PLLCLK);
 -
 -    /* Wait till PLL is used as system clock source */
 -    while(RCC_GetSYSCLKSource() != 0x08)
 -    {
 -    }
 -  }
 -    
 -  /* Enable GPIO_LED clock */
 -  RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIO_LED, ENABLE);
 -
 -  /* Enable TIM2, TIM3 and TIM4 clocks */
 -  RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM2 | RCC_APB1Periph_TIM3 |
 -                         RCC_APB1Periph_TIM4, ENABLE);
 -}
 -
 -/*******************************************************************************
 -* Function Name  : GPIO_Configuration
 -* Description    : Configures the used GPIO pins.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void GPIO_Configuration(void)
 -{
 -  GPIO_InitTypeDef GPIO_InitStructure;
 -
 -  /* Configure GPIO_LED pin 6, GPIO_LED pin 7, GPIO_LED pin 8 as output push-pull */
 -  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6 | GPIO_Pin_7 | GPIO_Pin_8;
 -  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
 -  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
 -  GPIO_Init(GPIO_LED, &GPIO_InitStructure);
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM_Configuration
 -* Description    : Configures the used Timers.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM_Configuration(void)
 -{ 
 -  TIM_TimeBaseInitTypeDef  TIM_TimeBaseStructure;
 -  TIM_OCInitTypeDef  TIM_OCInitStructure;
 -
 -  /* TIM2 configuration */
 -  TIM_TimeBaseStructure.TIM_Period = 0x4AF;          
 -  TIM_TimeBaseStructure.TIM_Prescaler = 0xEA5F;       
 -  TIM_TimeBaseStructure.TIM_ClockDivision = 0x0;    
 -  TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up;  
 -  TIM_TimeBaseStructure.TIM_RepetitionCounter = 0x0000;
 -  TIM_TimeBaseInit(TIM2, &TIM_TimeBaseStructure);
 -  
 -  TIM_OCStructInit(&TIM_OCInitStructure);
 -  /* Output Compare Timing Mode configuration: Channel1 */
 -  TIM_OCInitStructure.TIM_OCMode = TIM_OCMode_Timing;                   
 -  TIM_OCInitStructure.TIM_Pulse = 0x0;  
 -  TIM_OC1Init(TIM2, &TIM_OCInitStructure);
 -  
 -  /* TIM3 configuration */
 -  TIM_TimeBaseStructure.TIM_Period = 0x95F;
 -          
 -  TIM_TimeBaseInit(TIM3, &TIM_TimeBaseStructure);
 -  /* Output Compare Timing Mode configuration: Channel1 */
 -  TIM_OC1Init(TIM3, &TIM_OCInitStructure);
 -  
 -  /* TIM4 configuration */
 -  TIM_TimeBaseStructure.TIM_Period = 0xE0F;  
 -        
 -  TIM_TimeBaseInit(TIM4, &TIM_TimeBaseStructure);
 -  /* Output Compare Timing Mode configuration: Channel1 */
 -  TIM_OC1Init(TIM4, &TIM_OCInitStructure);
 -
 -  /* TIM2 enable counter */
 -  TIM_Cmd(TIM2, ENABLE);
 -  /* TIM3 enable counter */
 -  TIM_Cmd(TIM3, ENABLE);
 -  /* TIM4 enable counter */
 -  TIM_Cmd(TIM4, ENABLE);
 -
 -  /* Immediate load of TIM2 Precaler value */
 -  TIM_PrescalerConfig(TIM2, 0xEA5F, TIM_PSCReloadMode_Immediate);
 -  /* Immediate load of TIM3 Precaler value */  
 -  TIM_PrescalerConfig(TIM3, 0xEA5F, TIM_PSCReloadMode_Immediate);
 -  /* Immediate load of TIM4 Precaler value */
 -  TIM_PrescalerConfig(TIM4, 0xEA5F, TIM_PSCReloadMode_Immediate);
 -
 -  /* Clear TIM2 update pending flag */
 -  TIM_ClearFlag(TIM2, TIM_FLAG_Update);
 -  /* Clear TIM3 update pending flag */
 -  TIM_ClearFlag(TIM3, TIM_FLAG_Update);
 -  /* Clear TIM4 update pending flag */
 -  TIM_ClearFlag(TIM4, TIM_FLAG_Update);
 -
 -  /* Enable TIM2 Update interrupt */
 -  TIM_ITConfig(TIM2, TIM_IT_Update, ENABLE);
 -  /* Enable TIM3 Update interrupt */
 -  TIM_ITConfig(TIM3, TIM_IT_Update, ENABLE);
 -  /* Enable TIM4 Update interrupt */
 -  TIM_ITConfig(TIM4, TIM_IT_Update, ENABLE);
 -}
 -
 -#ifdef  DEBUG
 -/*******************************************************************************
 -* Function Name  : assert_failed
 -* Description    : Reports the name of the source file and the source line number
 -*                  where the assert_param error has occurred.
 -* Input          : - file: pointer to the source file name
 -*                  - line: assert_param error line source number
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void assert_failed(u8* file, u32 line)
 -{ 
 -  /* User can add his own implementation to report the file name and line number,
 -     ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
 -
 -  /* Infinite loop */
 -  while (1)
 -  {
 -  }
 -}
 -#endif
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/IRQ_Channels/platform_config.h b/src/stm32lib/examples/NVIC/IRQ_Channels/platform_config.h deleted file mode 100755 index 0bc5169..0000000 --- a/src/stm32lib/examples/NVIC/IRQ_Channels/platform_config.h +++ /dev/null @@ -1,44 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : platform_config.h
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Evaluation board specific configuration file.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Define to prevent recursive inclusion -------------------------------------*/
 -#ifndef __PLATFORM_CONFIG_H
 -#define __PLATFORM_CONFIG_H
 -
 -/* Includes ------------------------------------------------------------------*/
 -/* Exported types ------------------------------------------------------------*/
 -/* Exported constants --------------------------------------------------------*/
 -/* Uncomment the line corresponding to the STMicroelectronics evaluation board
 -   used to run the example */
 -#if !defined (USE_STM3210B_EVAL) &&  !defined (USE_STM3210E_EVAL)
 - //#define USE_STM3210B_EVAL
 - #define USE_STM3210E_EVAL
 -#endif
 -
 -/* Define the STM32F10x hardware depending on the used evaluation board */
 -#ifdef USE_STM3210B_EVAL
 -  #define GPIO_LED                   GPIOC    
 -  #define RCC_APB2Periph_GPIO_LED    RCC_APB2Periph_GPIOC
 -#elif defined USE_STM3210E_EVAL
 -  #define GPIO_LED                   GPIOF    
 -  #define RCC_APB2Periph_GPIO_LED    RCC_APB2Periph_GPIOF
 -#endif /* USE_STM3210B_EVAL */
 -
 -/* Exported macro ------------------------------------------------------------*/
 -/* Exported functions ------------------------------------------------------- */
 -
 -#endif /* __PLATFORM_CONFIG_H */
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/IRQ_Channels/readme.txt b/src/stm32lib/examples/NVIC/IRQ_Channels/readme.txt deleted file mode 100755 index 1cb8367..0000000 --- a/src/stm32lib/examples/NVIC/IRQ_Channels/readme.txt +++ /dev/null @@ -1,69 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : readme.txt
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Description of the NVIC IRQ Channels Example.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -Example description
 -===================
 -This example demontrates the use of the Nested Vectored Interrupt Controller (NVIC)
 -IRQ Channels configuration: 
 -
 -- Configuration of 3 TIM (TIM2..TIM4)timers to generate an interrupt on each 
 -  counter update event.
 -- The three timers are linked to their correspondant Update IRQ channel.
 -- Assignment of a ascendant IRQ priority for each IRQ channel :
 -  TIM2 has a preemption priority of 0 and TIM4 has a preemption priority of 2.
 -- In each interrupt routine: 
 -   - TIM2 toggles a LED1 each 1s 
 -   - TIM3 toggles a LED2 each 2s 
 -   - TIM4 toggles a LED3 each 3s 
 -
 -
 -Directory contents
 -==================
 -stm32f10x_conf.h  Library Configuration file
 -stm32f10x_it.c    Interrupt handlers
 -stm32f10x_it.h    Interrupt handlers header file
 -main.c            Main program
 -
 -
 -Hardware environment
 -====================
 -This example runs on STMicroelectronics STM3210B-EVAL and STM3210E-EVAL evaluation
 -boards and can be easily tailored to any other hardware.
 -To select the STMicroelectronics evaluation board used to run the example, uncomment
 -the corresponding line in platform_config.h file.
 -
 - + STM3210B-EVAL 
 -    - Use LD1, LD2 and LD3 leds connected respectively to PC.06, PC.07 and PC.08
 - 
 - + STM3210E-EVAL
 -    - Use LD1, LD2 and LD3 leds connected respectively to PF.06, PF0.7 and PF.08
 -
 -How to use it
 -=============
 -In order to make the program work, you must do the following :
 -- Create a project and setup all your toolchain's start-up files
 -- Compile the directory content files and required Library files :
 -  + stm32f10x_lib.c
 -  + stm32f10x_gpio.c
 -  + stm32f10x_rcc.c
 -  + stm32f10x_nvic.c
 -  + stm32f10x_tim.c
 -  + stm32f10x_flash.c
 -    
 -- Link all compiled files and load your image into target memory
 -- Run the example
 -
 -
 -******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE******
 diff --git a/src/stm32lib/examples/NVIC/IRQ_Channels/stm32f10x_conf.h b/src/stm32lib/examples/NVIC/IRQ_Channels/stm32f10x_conf.h deleted file mode 100755 index 3a4af67..0000000 --- a/src/stm32lib/examples/NVIC/IRQ_Channels/stm32f10x_conf.h +++ /dev/null @@ -1,170 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : stm32f10x_conf.h
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Library configuration file.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Define to prevent recursive inclusion -------------------------------------*/
 -#ifndef __STM32F10x_CONF_H
 -#define __STM32F10x_CONF_H
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_type.h"
 -
 -/* Exported types ------------------------------------------------------------*/
 -/* Exported constants --------------------------------------------------------*/
 -/* Uncomment the line below to compile the library in DEBUG mode, this will expanse
 -   the "assert_param" macro in the firmware library code (see "Exported macro"
 -   section below) */
 -/*#define DEBUG    1*/
 -
 -/* Comment the line below to disable the specific peripheral inclusion */
 -/************************************* ADC ************************************/
 -//#define _ADC
 -//#define _ADC1
 -//#define _ADC2
 -//#define _ADC3
 -
 -/************************************* BKP ************************************/
 -//#define _BKP 
 -
 -/************************************* CAN ************************************/
 -//#define _CAN
 -
 -/************************************* CRC ************************************/
 -//#define _CRC
 -
 -/************************************* DAC ************************************/
 -//#define _DAC
 -
 -/************************************* DBGMCU *********************************/
 -//#define _DBGMCU
 -
 -/************************************* DMA ************************************/
 -//#define _DMA
 -//#define _DMA1_Channel1
 -//#define _DMA1_Channel2
 -//#define _DMA1_Channel3
 -//#define _DMA1_Channel4
 -//#define _DMA1_Channel5
 -//#define _DMA1_Channel6
 -//#define _DMA1_Channel7
 -//#define _DMA2_Channel1
 -//#define _DMA2_Channel2
 -//#define _DMA2_Channel3
 -//#define _DMA2_Channel4
 -//#define _DMA2_Channel5
 -
 -/************************************* EXTI ***********************************/
 -//#define _EXTI
 -
 -/************************************* FLASH and Option Bytes *****************/
 -#define _FLASH
 -/* Uncomment the line below to enable FLASH program/erase/protections functions,
 -   otherwise only FLASH configuration (latency, prefetch, half cycle) functions
 -   are enabled */
 -/* #define _FLASH_PROG */
 -
 -/************************************* FSMC ***********************************/
 -//#define _FSMC
 -
 -/************************************* GPIO ***********************************/
 -#define _GPIO
 -//#define _GPIOA
 -//#define _GPIOB
 -#define _GPIOC
 -//#define _GPIOD
 -//#define _GPIOE
 -#define _GPIOF
 -//#define _GPIOG
 -#define _AFIO
 -
 -/************************************* I2C ************************************/
 -//#define _I2C
 -//#define _I2C1
 -//#define _I2C2
 -
 -/************************************* IWDG ***********************************/
 -//#define _IWDG
 -
 -/************************************* NVIC ***********************************/
 -#define _NVIC
 -
 -/************************************* PWR ************************************/
 -//#define _PWR
 -
 -/************************************* RCC ************************************/
 -#define _RCC
 -
 -/************************************* RTC ************************************/
 -//#define _RTC
 -
 -/************************************* SDIO ***********************************/
 -//#define _SDIO
 -
 -/************************************* SPI ************************************/
 -//#define _SPI
 -//#define _SPI1
 -//#define _SPI2
 -//#define _SPI3
 -
 -/************************************* SysTick ********************************/
 -//#define _SysTick
 -
 -/************************************* TIM ************************************/
 -#define _TIM
 -//#define _TIM1
 -#define _TIM2
 -#define _TIM3
 -#define _TIM4
 -//#define _TIM5
 -//#define _TIM6
 -//#define _TIM7
 -//#define _TIM8
 -
 -/************************************* USART **********************************/
 -//#define _USART
 -//#define _USART1
 -//#define _USART2
 -//#define _USART3
 -//#define _UART4
 -//#define _UART5
 -
 -/************************************* WWDG ***********************************/
 -//#define _WWDG
 -
 -/* In the following line adjust the value of External High Speed oscillator (HSE)
 -   used in your application */
 -#define HSE_Value    ((u32)8000000) /* Value of the External oscillator in Hz*/
 -
 -/* Exported macro ------------------------------------------------------------*/
 -#ifdef  DEBUG
 -/*******************************************************************************
 -* 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. 
 -* 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. 
 -*                    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);
 -#else
 -  #define assert_param(expr) ((void)0)
 -#endif /* DEBUG */
 -
 -#endif /* __STM32F10x_CONF_H */
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/IRQ_Channels/stm32f10x_it.c b/src/stm32lib/examples/NVIC/IRQ_Channels/stm32f10x_it.c deleted file mode 100755 index ef72393..0000000 --- a/src/stm32lib/examples/NVIC/IRQ_Channels/stm32f10x_it.c +++ /dev/null @@ -1,826 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : stm32f10x_it.c
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Main Interrupt Service Routines.
 -*                      This file provides template for all exceptions handler
 -*                      and peripherals interrupt service routine.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_it.h"
 -#include "platform_config.h"
 -
 -/* Private typedef -----------------------------------------------------------*/
 -/* Private define ------------------------------------------------------------*/
 -/* Private macro -------------------------------------------------------------*/
 -/* Private variables ---------------------------------------------------------*/
 -/* Private function prototypes -----------------------------------------------*/
 -/* Private functions ---------------------------------------------------------*/
 -
 -/*******************************************************************************
 -* Function Name  : NMIException
 -* Description    : This function handles NMI exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void NMIException(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : HardFaultException
 -* Description    : This function handles Hard Fault exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void HardFaultException(void)
 -{
 -  /* Go to infinite loop when Hard Fault exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : MemManageException
 -* Description    : This function handles Memory Manage exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void MemManageException(void)
 -{
 -  /* Go to infinite loop when Memory Manage exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : BusFaultException
 -* Description    : This function handles Bus Fault exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void BusFaultException(void)
 -{
 -  /* Go to infinite loop when Bus Fault exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : UsageFaultException
 -* Description    : This function handles Usage Fault exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void UsageFaultException(void)
 -{
 -  /* Go to infinite loop when Usage Fault exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DebugMonitor
 -* Description    : This function handles Debug Monitor exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DebugMonitor(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SVCHandler
 -* Description    : This function handles SVCall exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SVCHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : PendSVC
 -* Description    : This function handles PendSVC exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void PendSVC(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SysTickHandler
 -* Description    : This function handles SysTick Handler.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SysTickHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : WWDG_IRQHandler
 -* Description    : This function handles WWDG interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void WWDG_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : PVD_IRQHandler
 -* Description    : This function handles PVD interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void PVD_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TAMPER_IRQHandler
 -* Description    : This function handles Tamper interrupt request. 
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TAMPER_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RTC_IRQHandler
 -* Description    : This function handles RTC global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RTC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : FLASH_IRQHandler
 -* Description    : This function handles Flash interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void FLASH_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RCC_IRQHandler
 -* Description    : This function handles RCC interrupt request. 
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RCC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI0_IRQHandler
 -* Description    : This function handles External interrupt Line 0 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI0_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI1_IRQHandler
 -* Description    : This function handles External interrupt Line 1 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI2_IRQHandler
 -* Description    : This function handles External interrupt Line 2 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI3_IRQHandler
 -* Description    : This function handles External interrupt Line 3 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI4_IRQHandler
 -* Description    : This function handles External interrupt Line 4 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel1_IRQHandler
 -* Description    : This function handles DMA1 Channel 1 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel2_IRQHandler
 -* Description    : This function handles DMA1 Channel 2 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel3_IRQHandler
 -* Description    : This function handles DMA1 Channel 3 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel4_IRQHandler
 -* Description    : This function handles DMA1 Channel 4 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel5_IRQHandler
 -* Description    : This function handles DMA1 Channel 5 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel6_IRQHandler
 -* Description    : This function handles DMA1 Channel 6 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel6_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel7_IRQHandler
 -* Description    : This function handles DMA1 Channel 7 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel7_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : ADC1_2_IRQHandler
 -* Description    : This function handles ADC1 and ADC2 global interrupts requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void ADC1_2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USB_HP_CAN_TX_IRQHandler
 -* Description    : This function handles USB High Priority or CAN TX interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USB_HP_CAN_TX_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USB_LP_CAN_RX0_IRQHandler
 -* Description    : This function handles USB Low Priority or CAN RX0 interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USB_LP_CAN_RX0_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : CAN_RX1_IRQHandler
 -* Description    : This function handles CAN RX1 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void CAN_RX1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : CAN_SCE_IRQHandler
 -* Description    : This function handles CAN SCE interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void CAN_SCE_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI9_5_IRQHandler
 -* Description    : This function handles External lines 9 to 5 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI9_5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_BRK_IRQHandler
 -* Description    : This function handles TIM1 Break interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_BRK_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_UP_IRQHandler
 -* Description    : This function handles TIM1 overflow and update interrupt 
 -*                  request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_UP_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_TRG_COM_IRQHandler
 -* Description    : This function handles TIM1 Trigger and commutation interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_TRG_COM_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_CC_IRQHandler
 -* Description    : This function handles TIM1 capture compare interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_CC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM2_IRQHandler
 -* Description    : This function handles TIM2 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM2_IRQHandler(void)
 -{
 -  /* Clear TIM2 update interrupt */
 -  TIM_ClearITPendingBit(TIM2, TIM_IT_Update);
 -  
 -  /* Toggle GPIO_LED pin 6 */  
 -  GPIO_WriteBit(GPIO_LED, GPIO_Pin_6, (BitAction)(1 - GPIO_ReadOutputDataBit(GPIO_LED, GPIO_Pin_6))); 
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM3_IRQHandler
 -* Description    : This function handles TIM3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM3_IRQHandler(void)
 -{
 -  /* Clear TIM3 update interrupt */
 -  TIM_ClearITPendingBit(TIM3, TIM_IT_Update);
 -  
 -  /* Toggle GPIO_LED pin 7 */  
 -  GPIO_WriteBit(GPIO_LED, GPIO_Pin_7, (BitAction)(1 - GPIO_ReadOutputDataBit(GPIO_LED, GPIO_Pin_7))); 
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM4_IRQHandler
 -* Description    : This function handles TIM4 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM4_IRQHandler(void)
 -{
 -  /* Clear TIM4 update interrupt */
 -  TIM_ClearITPendingBit(TIM4, TIM_IT_Update);
 -  
 -  /* Toggle GPIO_LED pin 8 */
 -  GPIO_WriteBit(GPIO_LED, GPIO_Pin_8, (BitAction)(1 - GPIO_ReadOutputDataBit(GPIO_LED, GPIO_Pin_8)));
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C1_EV_IRQHandler
 -* Description    : This function handles I2C1 Event interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C1_EV_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C1_ER_IRQHandler
 -* Description    : This function handles I2C1 Error interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C1_ER_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C2_EV_IRQHandler
 -* Description    : This function handles I2C2 Event interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C2_EV_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C2_ER_IRQHandler
 -* Description    : This function handles I2C2 Error interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C2_ER_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SPI1_IRQHandler
 -* Description    : This function handles SPI1 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SPI1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SPI2_IRQHandler
 -* Description    : This function handles SPI2 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SPI2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USART1_IRQHandler
 -* Description    : This function handles USART1 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USART1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USART2_IRQHandler
 -* Description    : This function handles USART2 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USART2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USART3_IRQHandler
 -* Description    : This function handles USART3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USART3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI15_10_IRQHandler
 -* Description    : This function handles External lines 15 to 10 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI15_10_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RTCAlarm_IRQHandler
 -* Description    : This function handles RTC Alarm interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RTCAlarm_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USBWakeUp_IRQHandler
 -* Description    : This function handles USB WakeUp interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USBWakeUp_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_BRK_IRQHandler
 -* Description    : This function handles TIM8 Break interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_BRK_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_UP_IRQHandler
 -* Description    : This function handles TIM8 overflow and update interrupt 
 -*                  request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_UP_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_TRG_COM_IRQHandler
 -* Description    : This function handles TIM8 Trigger and commutation interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_TRG_COM_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_CC_IRQHandler
 -* Description    : This function handles TIM8 capture compare interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_CC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : ADC3_IRQHandler
 -* Description    : This function handles ADC3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void ADC3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : FSMC_IRQHandler
 -* Description    : This function handles FSMC global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void FSMC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SDIO_IRQHandler
 -* Description    : This function handles SDIO global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SDIO_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM5_IRQHandler
 -* Description    : This function handles TIM5 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SPI3_IRQHandler
 -* Description    : This function handles SPI3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SPI3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : UART4_IRQHandler
 -* Description    : This function handles UART4 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void UART4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : UART5_IRQHandler
 -* Description    : This function handles UART5 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void UART5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM6_IRQHandler
 -* Description    : This function handles TIM6 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM6_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM7_IRQHandler
 -* Description    : This function handles TIM7 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM7_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel1_IRQHandler
 -* Description    : This function handles DMA2 Channel 1 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel2_IRQHandler
 -* Description    : This function handles DMA2 Channel 2 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel3_IRQHandler
 -* Description    : This function handles DMA2 Channel 3 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel4_5_IRQHandler
 -* Description    : This function handles DMA2 Channel 4 and DMA2 Channel 5
 -*                  interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel4_5_IRQHandler(void)
 -{
 -}
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/IRQ_Channels/stm32f10x_it.h b/src/stm32lib/examples/NVIC/IRQ_Channels/stm32f10x_it.h deleted file mode 100755 index e74b6cc..0000000 --- a/src/stm32lib/examples/NVIC/IRQ_Channels/stm32f10x_it.h +++ /dev/null @@ -1,100 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : stm32f10x_it.h
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : This file contains the headers of the interrupt handlers.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Define to prevent recursive inclusion -------------------------------------*/
 -#ifndef __STM32F10x_IT_H
 -#define __STM32F10x_IT_H
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_lib.h"
 -
 -/* Exported types ------------------------------------------------------------*/
 -/* Exported constants --------------------------------------------------------*/
 -/* Exported macro ------------------------------------------------------------*/
 -/* Exported functions ------------------------------------------------------- */
 -
 -void NMIException(void);
 -void HardFaultException(void);
 -void MemManageException(void);
 -void BusFaultException(void);
 -void UsageFaultException(void);
 -void DebugMonitor(void);
 -void SVCHandler(void);
 -void PendSVC(void);
 -void SysTickHandler(void);
 -void WWDG_IRQHandler(void);
 -void PVD_IRQHandler(void);
 -void TAMPER_IRQHandler(void);
 -void RTC_IRQHandler(void);
 -void FLASH_IRQHandler(void);
 -void RCC_IRQHandler(void);
 -void EXTI0_IRQHandler(void);
 -void EXTI1_IRQHandler(void);
 -void EXTI2_IRQHandler(void);
 -void EXTI3_IRQHandler(void);
 -void EXTI4_IRQHandler(void);
 -void DMA1_Channel1_IRQHandler(void);
 -void DMA1_Channel2_IRQHandler(void);
 -void DMA1_Channel3_IRQHandler(void);
 -void DMA1_Channel4_IRQHandler(void);
 -void DMA1_Channel5_IRQHandler(void);
 -void DMA1_Channel6_IRQHandler(void);
 -void DMA1_Channel7_IRQHandler(void);
 -void ADC1_2_IRQHandler(void);
 -void USB_HP_CAN_TX_IRQHandler(void);
 -void USB_LP_CAN_RX0_IRQHandler(void);
 -void CAN_RX1_IRQHandler(void);
 -void CAN_SCE_IRQHandler(void);
 -void EXTI9_5_IRQHandler(void);
 -void TIM1_BRK_IRQHandler(void);
 -void TIM1_UP_IRQHandler(void);
 -void TIM1_TRG_COM_IRQHandler(void);
 -void TIM1_CC_IRQHandler(void);
 -void TIM2_IRQHandler(void);
 -void TIM3_IRQHandler(void);
 -void TIM4_IRQHandler(void);
 -void I2C1_EV_IRQHandler(void);
 -void I2C1_ER_IRQHandler(void);
 -void I2C2_EV_IRQHandler(void);
 -void I2C2_ER_IRQHandler(void);
 -void SPI1_IRQHandler(void);
 -void SPI2_IRQHandler(void);
 -void USART1_IRQHandler(void);
 -void USART2_IRQHandler(void);
 -void USART3_IRQHandler(void);
 -void EXTI15_10_IRQHandler(void);
 -void RTCAlarm_IRQHandler(void);
 -void USBWakeUp_IRQHandler(void);
 -void TIM8_BRK_IRQHandler(void);
 -void TIM8_UP_IRQHandler(void);
 -void TIM8_TRG_COM_IRQHandler(void);
 -void TIM8_CC_IRQHandler(void);
 -void ADC3_IRQHandler(void);
 -void FSMC_IRQHandler(void);
 -void SDIO_IRQHandler(void);
 -void TIM5_IRQHandler(void);
 -void SPI3_IRQHandler(void);
 -void UART4_IRQHandler(void);
 -void UART5_IRQHandler(void);
 -void TIM6_IRQHandler(void);
 -void TIM7_IRQHandler(void);
 -void DMA2_Channel1_IRQHandler(void);
 -void DMA2_Channel2_IRQHandler(void);
 -void DMA2_Channel3_IRQHandler(void);
 -void DMA2_Channel4_5_IRQHandler(void);
 -					 
 -#endif /* __STM32F10x_IT_H */
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/Priority/main.c b/src/stm32lib/examples/NVIC/Priority/main.c deleted file mode 100755 index 711d54a..0000000 --- a/src/stm32lib/examples/NVIC/Priority/main.c +++ /dev/null @@ -1,252 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : main.c
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Main program body
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_lib.h"
 -#include "platform_config.h"
 -
 -/* Private typedef -----------------------------------------------------------*/
 -/* Private define ------------------------------------------------------------*/
 -/* Private macro -------------------------------------------------------------*/
 -/* Private variables ---------------------------------------------------------*/
 -NVIC_InitTypeDef NVIC_InitStructure;
 -GPIO_InitTypeDef GPIO_InitStructure;
 -EXTI_InitTypeDef EXTI_InitStructure;
 -bool PreemptionOccured = FALSE; 
 -u8 PreemptionPriorityValue = 0; 
 -ErrorStatus HSEStartUpStatus;
 -  
 -/* Private function prototypes -----------------------------------------------*/
 -void RCC_Configuration(void);
 -void GPIO_Configuration(void);
 -void EXTI_Configuration(void);
 -void Delay(vu32 nCount);
 -  
 -/* Private functions ---------------------------------------------------------*/
 -
 -/*******************************************************************************
 -* Function Name  : main
 -* Description    : Main program.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -int main(void)
 -{
 -#ifdef DEBUG
 -  debug();
 -#endif
 -  
 -  /* Configure the system clocks */
 -  RCC_Configuration();
 -
 -  /* Configure GPIOs */
 -  GPIO_Configuration();
 -
 -  /* Configures the EXTI Lines */
 -  EXTI_Configuration();
 -       
 -#ifdef  VECT_TAB_RAM  
 -  /* Set the Vector Table base location at 0x20000000 */ 
 -  NVIC_SetVectorTable(NVIC_VectTab_RAM, 0x0); 
 -#else  /* VECT_TAB_FLASH  */
 -  /* Set the Vector Table base location at 0x08000000 */ 
 -  NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0x0);   
 -#endif
 -
 -  /* Configure one bit for preemption priority */
 -  NVIC_PriorityGroupConfig(NVIC_PriorityGroup_1);
 -  
 -  /* Enable the EXTI0 Interrupt */
 -  NVIC_InitStructure.NVIC_IRQChannel = EXTI0_IRQChannel;
 -  NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = PreemptionPriorityValue;
 -  NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
 -  NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
 -  NVIC_Init(&NVIC_InitStructure);
 -  
 -  /* Enable the EXTI9_5 Interrupt */
 -  NVIC_InitStructure.NVIC_IRQChannel = EXTI9_5_IRQChannel;
 -  NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
 -  NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
 -  NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
 -  NVIC_Init(&NVIC_InitStructure);
 -  
 -  /* Configure the SysTick Handler Priority: Preemption priority and subpriority */
 -  NVIC_SystemHandlerPriorityConfig(SystemHandler_SysTick, !PreemptionPriorityValue, 0);
 -  
 -  while (1)
 -  {
 -    if(PreemptionOccured != FALSE)
 -    {
 -      GPIO_WriteBit(GPIO_LED, GPIO_Pin_6, (BitAction)(1 - GPIO_ReadOutputDataBit(GPIO_LED, GPIO_Pin_6)));
 -      Delay(0x5FFFF);
 -      GPIO_WriteBit(GPIO_LED, GPIO_Pin_7, (BitAction)(1 - GPIO_ReadOutputDataBit(GPIO_LED, GPIO_Pin_7)));
 -      Delay(0x5FFFF);
 -      GPIO_WriteBit(GPIO_LED, GPIO_Pin_8, (BitAction)(1 - GPIO_ReadOutputDataBit(GPIO_LED, GPIO_Pin_8)));
 -      Delay(0x5FFFF);
 -      GPIO_WriteBit(GPIO_LED, GPIO_Pin_9, (BitAction)(1 - GPIO_ReadOutputDataBit(GPIO_LED, GPIO_Pin_9)));
 -      Delay(0x5FFFF); 
 -    }
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RCC_Configuration
 -* Description    : Configures the different system clocks
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RCC_Configuration(void)
 -{
 -  /* RCC system reset(for debug purpose) */
 -  RCC_DeInit();
 -
 -  /* Enable HSE */
 -  RCC_HSEConfig(RCC_HSE_ON);
 -
 -  /* Wait till HSE is ready */
 -  HSEStartUpStatus = RCC_WaitForHSEStartUp();
 -
 -  if(HSEStartUpStatus == SUCCESS)
 -  {
 -    /* Enable Prefetch Buffer */
 -    FLASH_PrefetchBufferCmd(FLASH_PrefetchBuffer_Enable);
 -
 -    /* Flash 2 wait state */
 -    FLASH_SetLatency(FLASH_Latency_2);
 - 
 -    /* HCLK = SYSCLK */
 -    RCC_HCLKConfig(RCC_SYSCLK_Div1); 
 -  
 -    /* PCLK2 = HCLK */
 -    RCC_PCLK2Config(RCC_HCLK_Div1); 
 -
 -    /* PCLK1 = HCLK/2 */
 -    RCC_PCLK1Config(RCC_HCLK_Div2);
 -
 -    /* PLLCLK = 8MHz * 9 = 72 MHz */
 -    RCC_PLLConfig(RCC_PLLSource_HSE_Div1, RCC_PLLMul_9);
 -
 -    /* Enable PLL */ 
 -    RCC_PLLCmd(ENABLE);
 -
 -    /* Wait till PLL is ready */
 -    while(RCC_GetFlagStatus(RCC_FLAG_PLLRDY) == RESET)
 -    {
 -    }
 -
 -    /* Select PLL as system clock source */
 -    RCC_SYSCLKConfig(RCC_SYSCLKSource_PLLCLK);
 -
 -    /* Wait till PLL is used as system clock source */
 -    while(RCC_GetSYSCLKSource() != 0x08)
 -    {
 -    }
 -  }
 -      
 -  /* Enable GPIOA, GPIO KEY Button, GPIO_LED and AFIO Clocks */
 -  RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_GPIO_KEY_BUTTON | 
 -                         RCC_APB2Periph_GPIO_LED | RCC_APB2Periph_AFIO, ENABLE);
 -}
 -
 -/*******************************************************************************
 -* Function Name  : GPIO_Configuration
 -* Description    : Configures the used GPIO pins.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void GPIO_Configuration(void)
 -{
 -  /* Configure GPIO_LED pin 6, GPIO_LED pin 7, GPIO_LED pin 8 and GPIO_LED pin 9 as output push-pull */
 -  GPIO_InitStructure.GPIO_Pin =  GPIO_Pin_6 | GPIO_Pin_7 | GPIO_Pin_8 | GPIO_Pin_9;  
 -  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
 -  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
 -  GPIO_Init(GPIO_LED, &GPIO_InitStructure);
 -  
 -  /* Configure PA.00 as input floating */
 -  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0;
 -  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
 -  GPIO_Init(GPIOA, &GPIO_InitStructure);
 -  
 -  /* Configure KEY Button GPIO pin as input floating */
 -  GPIO_InitStructure.GPIO_Pin = GPIO_PIN_KEY_BUTTON;
 -  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
 -  GPIO_Init(GPIO_KEY_BUTTON, &GPIO_InitStructure);
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI_Configuration
 -* Description    : Configures the used EXTI lines.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI_Configuration(void)
 -{
 -  /* Connect EXTI Line0 to PA.00 */
 -  GPIO_EXTILineConfig(GPIO_PortSourceGPIOA, GPIO_PinSource0);
 -
 -  /* Configure EXTI Line0 to generate an interrupt on falling edge */  
 -  EXTI_InitStructure.EXTI_Line = EXTI_Line0;  
 -  EXTI_InitStructure.EXTI_Mode = EXTI_Mode_Interrupt;
 -  EXTI_InitStructure.EXTI_Trigger = EXTI_Trigger_Falling;
 -  EXTI_InitStructure.EXTI_LineCmd = ENABLE;
 -  EXTI_Init(&EXTI_InitStructure);
 -  
 -  /* Connect KEY Button EXTI Line to KEY Button GPIO pin */
 -  GPIO_EXTILineConfig(GPIO_PORT_SOURCE_KEY_BUTTON, GPIO_PIN_SOURCE_KEY_BUTTON);
 -
 -  /* Configure KEY Button EXTI Line to generate an interrupt on falling edge */    
 -  EXTI_InitStructure.EXTI_Line = EXTI_LINE_KEY_BUTTON;
 -  EXTI_Init(&EXTI_InitStructure);
 -}
 -
 -/*******************************************************************************
 -* Function Name  : Delay
 -* Description    : Inserts a delay time.
 -* Input          : nCount: specifies the delay time length.
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void Delay(vu32 nCount)
 -{
 -  for(; nCount != 0; nCount--);
 -}
 -
 -#ifdef  DEBUG
 -/*******************************************************************************
 -* Function Name  : assert_failed
 -* Description    : Reports the name of the source file and the source line number
 -*                  where the assert_param error has occurred.
 -* Input          : - file: pointer to the source file name
 -*                  - line: assert_param error line source number
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void assert_failed(u8* file, u32 line)
 -{ 
 -  /* User can add his own implementation to report the file name and line number,
 -     ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
 -
 -  /* Infinite loop */
 -  while (1)
 -  {
 -  }
 -}
 -#endif
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/Priority/platform_config.h b/src/stm32lib/examples/NVIC/Priority/platform_config.h deleted file mode 100755 index 3deb7ba..0000000 --- a/src/stm32lib/examples/NVIC/Priority/platform_config.h +++ /dev/null @@ -1,56 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : platform_config.h
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Evaluation board specific configuration file.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Define to prevent recursive inclusion -------------------------------------*/
 -#ifndef __PLATFORM_CONFIG_H
 -#define __PLATFORM_CONFIG_H
 -
 -/* Includes ------------------------------------------------------------------*/
 -/* Exported types ------------------------------------------------------------*/
 -/* Exported constants --------------------------------------------------------*/
 -/* Uncomment the line corresponding to the STMicroelectronics evaluation board
 -   used to run the example */
 -#if !defined (USE_STM3210B_EVAL) &&  !defined (USE_STM3210E_EVAL)
 - //#define USE_STM3210B_EVAL
 - #define USE_STM3210E_EVAL
 -#endif
 -
 -/* Define the STM32F10x hardware depending on the used evaluation board */
 -#ifdef USE_STM3210B_EVAL
 -  #define GPIO_LED                          GPIOC    
 -  #define RCC_APB2Periph_GPIO_LED           RCC_APB2Periph_GPIOC
 -  #define GPIO_KEY_BUTTON                   GPIOB
 -  #define RCC_APB2Periph_GPIO_KEY_BUTTON    RCC_APB2Periph_GPIOB
 -  #define GPIO_PIN_KEY_BUTTON               GPIO_Pin_9
 -  #define EXTI_LINE_KEY_BUTTON              EXTI_Line9
 -  #define GPIO_PORT_SOURCE_KEY_BUTTON       GPIO_PortSourceGPIOB
 -  #define GPIO_PIN_SOURCE_KEY_BUTTON        GPIO_PinSource9
 -#elif defined USE_STM3210E_EVAL
 -  #define GPIO_LED                          GPIOF    
 -  #define RCC_APB2Periph_GPIO_LED           RCC_APB2Periph_GPIOF
 -  #define GPIO_KEY_BUTTON                   GPIOG    
 -  #define RCC_APB2Periph_GPIO_KEY_BUTTON    RCC_APB2Periph_GPIOG
 -  #define GPIO_PIN_KEY_BUTTON               GPIO_Pin_8
 -  #define EXTI_LINE_KEY_BUTTON              EXTI_Line8
 -  #define GPIO_PORT_SOURCE_KEY_BUTTON       GPIO_PortSourceGPIOG
 -  #define GPIO_PIN_SOURCE_KEY_BUTTON        GPIO_PinSource8
 -#endif /* USE_STM3210B_EVAL */
 -
 -/* Exported macro ------------------------------------------------------------*/
 -/* Exported functions ------------------------------------------------------- */
 -
 -#endif /* __PLATFORM_CONFIG_H */
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/Priority/readme.txt b/src/stm32lib/examples/NVIC/Priority/readme.txt deleted file mode 100755 index bd6c360..0000000 --- a/src/stm32lib/examples/NVIC/Priority/readme.txt +++ /dev/null @@ -1,97 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : readme.txt
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Description of the NVIC Priority Example.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -Example description
 -===================
 -This example demontrates the use of the Nested Vectored Interrupt Controller (NVIC): 
 -
 -- Configuration of 2 EXTI Lines (Wakeup button EXTI Line & Key button EXTI Line)
 -  to generate an interrupt on each falling edge and use the SysTick interrupt.
 -- These interrupts are configured with the following parameters:
 -  Wakeup button EXTI Line: o PreemptionPriority = PreemptionPriorityValue
 -                           o SubPriority = 0
 -  Key button EXTI Line:    o PreemptionPriority = 0
 -                           o SubPriority = 1           
 -  SysTick Handler: o PreemptionPriority = !PreemptionPriorityValue
 -                   o SubPriority = 0             
 -First, the PreemptionPriorityValue is equal to 0, the Wakeup button EXTI Line 
 -has higher preemption priority than the SysTick handler. 
 -
 -In the key button EXTI Line interrupt routine the Wakeup button EXTI Line and 
 -SysTick preemption priorities are inverted. 
 -In the Wakeup button EXTI Line interrupt routine the pending bit of the SysTick 
 -interrupt is set this will cause SysTick ISR to preempt the Wakeup button EXTI 
 -Line ISR only if it has higher preemption priority.
 -
 -The system behaves as following: 
 -1) The first time Key button EXTI Line interrupt occurs the SysTick preemption 
 -become higher than Wakeup button EXTI Line one. So when the Wakeup button EXTI 
 -Line interrupt occurs, the SysTick ISR is executed and the PreemptionOccured 
 -variable become TRUE and the four leds (LD1, LD2, LD3, LD4) start toggling.
 -
 -2) When the next Key button EXTI Line interrupt occurs the SysTick preemption
 -become lower than Wakeup button EXTI Line one. So when the Wakeup button EXTI Line
 -interrupt occurs, the PreemptionOccured variable became FALSE and the four leds
 -(LD1, LD2, LD3, LD4) stop toggling.
 -
 -Then this behavior is repeated from point 1) in an infinite loop.
 -
 -
 -Directory contents
 -==================
 -platform_config.h    Evaluation board specific configuration file
 -stm32f10x_conf.h     Library Configuration file
 -stm32f10x_it.c       Interrupt handlers
 -stm32f10x_it.h       Interrupt handlers header file
 -main.c               Main program
 -
 -
 -Hardware environment
 -====================
 -This example runs on STMicroelectronics STM3210B-EVAL and STM3210E-EVAL evaluation
 -boards and can be easily tailored to any other hardware.
 -To select the STMicroelectronics evaluation board used to run the example, uncomment
 -the corresponding line in platform_config.h file.
 -
 - + STM3210B-EVAL 
 -    - Use LD1, LD2, LD3 and LD4 leds connected respectively to PC.06, PC.07, PC.08
 -      and PC.09 pins
 -    - Use the Key push-button connected to pin PB.09 (EXTI Line9).
 -    - Use the Wakeup push-button connected to pin PA.00 (EXTI Line0).         
 - 
 - + STM3210E-EVAL
 -    - Use LD1, LD2, LD3 and LD4 leds connected respectively to PF.06, PF0.7, PF.08
 -      and PF.09 pins
 -    - Use the Key push-button connected to pin PG.08 (EXTI Line8).
 -    - Use the Wakeup push-button connected to pin PA.00 (EXTI Line0).
 - 
 -    
 -How to use it
 -=============
 -In order to make the program work, you must do the following :
 -- Create a project and setup all your toolchain's start-up files
 -- Compile the directory content files and required Library files :
 -  + stm32f10x_lib.c
 -  + stm32f10x_exti.c
 -  + stm32f10x_gpio.c
 -  + stm32f10x_rcc.c
 -  + stm32f10x_nvic.c
 -  + stm32f10x_flash.c
 -    
 -- Link all compiled files and load your image into target memory
 -- Run the example
 -
 -
 -******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE******
 diff --git a/src/stm32lib/examples/NVIC/Priority/stm32f10x_conf.h b/src/stm32lib/examples/NVIC/Priority/stm32f10x_conf.h deleted file mode 100755 index 5244ccd..0000000 --- a/src/stm32lib/examples/NVIC/Priority/stm32f10x_conf.h +++ /dev/null @@ -1,170 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : stm32f10x_conf.h
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Library configuration file.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Define to prevent recursive inclusion -------------------------------------*/
 -#ifndef __STM32F10x_CONF_H
 -#define __STM32F10x_CONF_H
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_type.h"
 -
 -/* Exported types ------------------------------------------------------------*/
 -/* Exported constants --------------------------------------------------------*/
 -/* Uncomment the line below to compile the library in DEBUG mode, this will expanse
 -   the "assert_param" macro in the firmware library code (see "Exported macro"
 -   section below) */
 -/*#define DEBUG    1*/
 -
 -/* Comment the line below to disable the specific peripheral inclusion */
 -/************************************* ADC ************************************/
 -//#define _ADC
 -//#define _ADC1
 -//#define _ADC2
 -//#define _ADC3
 -
 -/************************************* BKP ************************************/
 -//#define _BKP 
 -
 -/************************************* CAN ************************************/
 -//#define _CAN
 -
 -/************************************* CRC ************************************/
 -//#define _CRC
 -
 -/************************************* DAC ************************************/
 -//#define _DAC
 -
 -/************************************* DBGMCU *********************************/
 -//#define _DBGMCU
 -
 -/************************************* DMA ************************************/
 -//#define _DMA
 -//#define _DMA1_Channel1
 -//#define _DMA1_Channel2
 -//#define _DMA1_Channel3
 -//#define _DMA1_Channel4
 -//#define _DMA1_Channel5
 -//#define _DMA1_Channel6
 -//#define _DMA1_Channel7
 -//#define _DMA2_Channel1
 -//#define _DMA2_Channel2
 -//#define _DMA2_Channel3
 -//#define _DMA2_Channel4
 -//#define _DMA2_Channel5
 -
 -/************************************* EXTI ***********************************/
 -#define _EXTI
 -
 -/************************************* FLASH and Option Bytes *****************/
 -#define _FLASH
 -/* Uncomment the line below to enable FLASH program/erase/protections functions,
 -   otherwise only FLASH configuration (latency, prefetch, half cycle) functions
 -   are enabled */
 -/* #define _FLASH_PROG */
 -
 -/************************************* FSMC ***********************************/
 -//#define _FSMC
 -
 -/************************************* GPIO ***********************************/
 -#define _GPIO
 -#define _GPIOA
 -#define _GPIOB
 -#define _GPIOC
 -//#define _GPIOD
 -//#define _GPIOE
 -#define _GPIOF
 -#define _GPIOG
 -#define _AFIO
 -
 -/************************************* I2C ************************************/
 -//#define _I2C
 -//#define _I2C1
 -//#define _I2C2
 -
 -/************************************* IWDG ***********************************/
 -//#define _IWDG
 -
 -/************************************* NVIC ***********************************/
 -#define _NVIC
 -
 -/************************************* PWR ************************************/
 -//#define _PWR
 -
 -/************************************* RCC ************************************/
 -#define _RCC
 -
 -/************************************* RTC ************************************/
 -//#define _RTC
 -
 -/************************************* SDIO ***********************************/
 -//#define _SDIO
 -
 -/************************************* SPI ************************************/
 -//#define _SPI
 -//#define _SPI1
 -//#define _SPI2
 -//#define _SPI3
 -
 -/************************************* SysTick ********************************/
 -//#define _SysTick
 -
 -/************************************* TIM ************************************/
 -//#define _TIM
 -//#define _TIM1
 -//#define _TIM2
 -//#define _TIM3
 -//#define _TIM4
 -//#define _TIM5
 -//#define _TIM6
 -//#define _TIM7
 -//#define _TIM8
 -
 -/************************************* USART **********************************/
 -//#define _USART
 -//#define _USART1
 -//#define _USART2
 -//#define _USART3
 -//#define _UART4
 -//#define _UART5
 -
 -/************************************* WWDG ***********************************/
 -//#define _WWDG
 -
 -/* In the following line adjust the value of External High Speed oscillator (HSE)
 -   used in your application */
 -#define HSE_Value    ((u32)8000000) /* Value of the External oscillator in Hz*/
 -
 -/* Exported macro ------------------------------------------------------------*/
 -#ifdef  DEBUG
 -/*******************************************************************************
 -* 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. 
 -* 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. 
 -*                    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);
 -#else
 -  #define assert_param(expr) ((void)0)
 -#endif /* DEBUG */
 -
 -#endif /* __STM32F10x_CONF_H */
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/Priority/stm32f10x_it.c b/src/stm32lib/examples/NVIC/Priority/stm32f10x_it.c deleted file mode 100755 index 2a189bd..0000000 --- a/src/stm32lib/examples/NVIC/Priority/stm32f10x_it.c +++ /dev/null @@ -1,844 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : stm32f10x_it.c
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Main Interrupt Service Routines.
 -*                      This file provides template for all exceptions handler
 -*                      and peripherals interrupt service routine.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_it.h"
 -#include "platform_config.h"
 -
 -/* Private typedef -----------------------------------------------------------*/
 -/* Private define ------------------------------------------------------------*/
 -/* Private macro -------------------------------------------------------------*/
 -/* Private variables ---------------------------------------------------------*/
 -extern bool PreemptionOccured;
 -extern u8 PreemptionPriorityValue; 
 -
 -/* Private function prototypes -----------------------------------------------*/
 -/* Private functions ---------------------------------------------------------*/
 -
 -/*******************************************************************************
 -* Function Name  : NMIException
 -* Description    : This function handles NMI exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void NMIException(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : HardFaultException
 -* Description    : This function handles Hard Fault exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void HardFaultException(void)
 -{
 -  /* Go to infinite loop when Hard Fault exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : MemManageException
 -* Description    : This function handles Memory Manage exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void MemManageException(void)
 -{
 -  /* Go to infinite loop when Memory Manage exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : BusFaultException
 -* Description    : This function handles Bus Fault exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void BusFaultException(void)
 -{
 -  /* Go to infinite loop when Bus Fault exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : UsageFaultException
 -* Description    : This function handles Usage Fault exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void UsageFaultException(void)
 -{
 -  /* Go to infinite loop when Usage Fault exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DebugMonitor
 -* Description    : This function handles Debug Monitor exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DebugMonitor(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SVCHandler
 -* Description    : This function handles SVCall exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SVCHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : PendSVC
 -* Description    : This function handles PendSVC exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void PendSVC(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SysTickHandler
 -* Description    : This function handles SysTick Handler.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SysTickHandler(void)
 -{
 -  /* If the EXTI0 IRQ Handler was preempted by SysTick Handler */
 -  if(NVIC_GetIRQChannelActiveBitStatus(EXTI0_IRQChannel) != RESET)
 -  {
 -    PreemptionOccured = TRUE;
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : WWDG_IRQHandler
 -* Description    : This function handles WWDG interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void WWDG_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : PVD_IRQHandler
 -* Description    : This function handles PVD interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void PVD_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TAMPER_IRQHandler
 -* Description    : This function handles Tamper interrupt request. 
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TAMPER_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RTC_IRQHandler
 -* Description    : This function handles RTC global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RTC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : FLASH_IRQHandler
 -* Description    : This function handles Flash interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void FLASH_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RCC_IRQHandler
 -* Description    : This function handles RCC interrupt request. 
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RCC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI0_IRQHandler
 -* Description    : This function handles External interrupt Line 0 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI0_IRQHandler(void)
 -{
 -  /* Generate SysTick exception */
 -  NVIC_SetSystemHandlerPendingBit(SystemHandler_SysTick);
 -
 -  /* Clear EXTI Line0 pending bit */
 -  EXTI_ClearITPendingBit(EXTI_Line0);
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI1_IRQHandler
 -* Description    : This function handles External interrupt Line 1 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI2_IRQHandler
 -* Description    : This function handles External interrupt Line 2 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI3_IRQHandler
 -* Description    : This function handles External interrupt Line 3 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI4_IRQHandler
 -* Description    : This function handles External interrupt Line 4 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel1_IRQHandler
 -* Description    : This function handles DMA1 Channel 1 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel2_IRQHandler
 -* Description    : This function handles DMA1 Channel 2 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel3_IRQHandler
 -* Description    : This function handles DMA1 Channel 3 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel4_IRQHandler
 -* Description    : This function handles DMA1 Channel 4 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel5_IRQHandler
 -* Description    : This function handles DMA1 Channel 5 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel6_IRQHandler
 -* Description    : This function handles DMA1 Channel 6 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel6_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel7_IRQHandler
 -* Description    : This function handles DMA1 Channel 7 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel7_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : ADC1_2_IRQHandler
 -* Description    : This function handles ADC1 and ADC2 global interrupts requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void ADC1_2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USB_HP_CAN_TX_IRQHandler
 -* Description    : This function handles USB High Priority or CAN TX interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USB_HP_CAN_TX_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USB_LP_CAN_RX0_IRQHandler
 -* Description    : This function handles USB Low Priority or CAN RX0 interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USB_LP_CAN_RX0_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : CAN_RX1_IRQHandler
 -* Description    : This function handles CAN RX1 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void CAN_RX1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : CAN_SCE_IRQHandler
 -* Description    : This function handles CAN SCE interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void CAN_SCE_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI9_5_IRQHandler
 -* Description    : This function handles External lines 9 to 5 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI9_5_IRQHandler(void)
 -{
 -  NVIC_InitTypeDef NVIC_InitStructure;
 -  
 -  if(EXTI_GetITStatus(EXTI_LINE_KEY_BUTTON) != RESET)
 -  {
 -    PreemptionPriorityValue = !PreemptionPriorityValue;
 -    PreemptionOccured = FALSE;
 -
 -    /* Modify the EXTI0 Interrupt Preemption Priority */
 -    NVIC_InitStructure.NVIC_IRQChannel = EXTI0_IRQChannel;
 -    NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = PreemptionPriorityValue;
 -    NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
 -    NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
 -    NVIC_Init(&NVIC_InitStructure);
 -    
 -    /* Configure the SysTick Handler Priority: Preemption priority and subpriority */
 -    NVIC_SystemHandlerPriorityConfig(SystemHandler_SysTick, !PreemptionPriorityValue, 0);
 -    
 -    /* Clear EXTI_LINE_KEY_BUTTON pending bit */
 -    EXTI_ClearITPendingBit(EXTI_LINE_KEY_BUTTON);
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_BRK_IRQHandler
 -* Description    : This function handles TIM1 Break interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_BRK_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_UP_IRQHandler
 -* Description    : This function handles TIM1 overflow and update interrupt 
 -*                  request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_UP_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_TRG_COM_IRQHandler
 -* Description    : This function handles TIM1 Trigger and commutation interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_TRG_COM_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_CC_IRQHandler
 -* Description    : This function handles TIM1 capture compare interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_CC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM2_IRQHandler
 -* Description    : This function handles TIM2 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM3_IRQHandler
 -* Description    : This function handles TIM3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM4_IRQHandler
 -* Description    : This function handles TIM4 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C1_EV_IRQHandler
 -* Description    : This function handles I2C1 Event interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C1_EV_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C1_ER_IRQHandler
 -* Description    : This function handles I2C1 Error interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C1_ER_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C2_EV_IRQHandler
 -* Description    : This function handles I2C2 Event interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C2_EV_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C2_ER_IRQHandler
 -* Description    : This function handles I2C2 Error interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C2_ER_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SPI1_IRQHandler
 -* Description    : This function handles SPI1 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SPI1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SPI2_IRQHandler
 -* Description    : This function handles SPI2 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SPI2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USART1_IRQHandler
 -* Description    : This function handles USART1 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USART1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USART2_IRQHandler
 -* Description    : This function handles USART2 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USART2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USART3_IRQHandler
 -* Description    : This function handles USART3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USART3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI15_10_IRQHandler
 -* Description    : This function handles External lines 15 to 10 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI15_10_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RTCAlarm_IRQHandler
 -* Description    : This function handles RTC Alarm interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RTCAlarm_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USBWakeUp_IRQHandler
 -* Description    : This function handles USB WakeUp interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USBWakeUp_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_BRK_IRQHandler
 -* Description    : This function handles TIM8 Break interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_BRK_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_UP_IRQHandler
 -* Description    : This function handles TIM8 overflow and update interrupt 
 -*                  request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_UP_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_TRG_COM_IRQHandler
 -* Description    : This function handles TIM8 Trigger and commutation interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_TRG_COM_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_CC_IRQHandler
 -* Description    : This function handles TIM8 capture compare interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_CC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : ADC3_IRQHandler
 -* Description    : This function handles ADC3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void ADC3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : FSMC_IRQHandler
 -* Description    : This function handles FSMC global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void FSMC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SDIO_IRQHandler
 -* Description    : This function handles SDIO global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SDIO_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM5_IRQHandler
 -* Description    : This function handles TIM5 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SPI3_IRQHandler
 -* Description    : This function handles SPI3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SPI3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : UART4_IRQHandler
 -* Description    : This function handles UART4 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void UART4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : UART5_IRQHandler
 -* Description    : This function handles UART5 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void UART5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM6_IRQHandler
 -* Description    : This function handles TIM6 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM6_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM7_IRQHandler
 -* Description    : This function handles TIM7 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM7_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel1_IRQHandler
 -* Description    : This function handles DMA2 Channel 1 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel2_IRQHandler
 -* Description    : This function handles DMA2 Channel 2 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel3_IRQHandler
 -* Description    : This function handles DMA2 Channel 3 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel4_5_IRQHandler
 -* Description    : This function handles DMA2 Channel 4 and DMA2 Channel 5
 -*                  interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel4_5_IRQHandler(void)
 -{
 -}
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/Priority/stm32f10x_it.h b/src/stm32lib/examples/NVIC/Priority/stm32f10x_it.h deleted file mode 100755 index e74b6cc..0000000 --- a/src/stm32lib/examples/NVIC/Priority/stm32f10x_it.h +++ /dev/null @@ -1,100 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : stm32f10x_it.h
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : This file contains the headers of the interrupt handlers.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Define to prevent recursive inclusion -------------------------------------*/
 -#ifndef __STM32F10x_IT_H
 -#define __STM32F10x_IT_H
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_lib.h"
 -
 -/* Exported types ------------------------------------------------------------*/
 -/* Exported constants --------------------------------------------------------*/
 -/* Exported macro ------------------------------------------------------------*/
 -/* Exported functions ------------------------------------------------------- */
 -
 -void NMIException(void);
 -void HardFaultException(void);
 -void MemManageException(void);
 -void BusFaultException(void);
 -void UsageFaultException(void);
 -void DebugMonitor(void);
 -void SVCHandler(void);
 -void PendSVC(void);
 -void SysTickHandler(void);
 -void WWDG_IRQHandler(void);
 -void PVD_IRQHandler(void);
 -void TAMPER_IRQHandler(void);
 -void RTC_IRQHandler(void);
 -void FLASH_IRQHandler(void);
 -void RCC_IRQHandler(void);
 -void EXTI0_IRQHandler(void);
 -void EXTI1_IRQHandler(void);
 -void EXTI2_IRQHandler(void);
 -void EXTI3_IRQHandler(void);
 -void EXTI4_IRQHandler(void);
 -void DMA1_Channel1_IRQHandler(void);
 -void DMA1_Channel2_IRQHandler(void);
 -void DMA1_Channel3_IRQHandler(void);
 -void DMA1_Channel4_IRQHandler(void);
 -void DMA1_Channel5_IRQHandler(void);
 -void DMA1_Channel6_IRQHandler(void);
 -void DMA1_Channel7_IRQHandler(void);
 -void ADC1_2_IRQHandler(void);
 -void USB_HP_CAN_TX_IRQHandler(void);
 -void USB_LP_CAN_RX0_IRQHandler(void);
 -void CAN_RX1_IRQHandler(void);
 -void CAN_SCE_IRQHandler(void);
 -void EXTI9_5_IRQHandler(void);
 -void TIM1_BRK_IRQHandler(void);
 -void TIM1_UP_IRQHandler(void);
 -void TIM1_TRG_COM_IRQHandler(void);
 -void TIM1_CC_IRQHandler(void);
 -void TIM2_IRQHandler(void);
 -void TIM3_IRQHandler(void);
 -void TIM4_IRQHandler(void);
 -void I2C1_EV_IRQHandler(void);
 -void I2C1_ER_IRQHandler(void);
 -void I2C2_EV_IRQHandler(void);
 -void I2C2_ER_IRQHandler(void);
 -void SPI1_IRQHandler(void);
 -void SPI2_IRQHandler(void);
 -void USART1_IRQHandler(void);
 -void USART2_IRQHandler(void);
 -void USART3_IRQHandler(void);
 -void EXTI15_10_IRQHandler(void);
 -void RTCAlarm_IRQHandler(void);
 -void USBWakeUp_IRQHandler(void);
 -void TIM8_BRK_IRQHandler(void);
 -void TIM8_UP_IRQHandler(void);
 -void TIM8_TRG_COM_IRQHandler(void);
 -void TIM8_CC_IRQHandler(void);
 -void ADC3_IRQHandler(void);
 -void FSMC_IRQHandler(void);
 -void SDIO_IRQHandler(void);
 -void TIM5_IRQHandler(void);
 -void SPI3_IRQHandler(void);
 -void UART4_IRQHandler(void);
 -void UART5_IRQHandler(void);
 -void TIM6_IRQHandler(void);
 -void TIM7_IRQHandler(void);
 -void DMA2_Channel1_IRQHandler(void);
 -void DMA2_Channel2_IRQHandler(void);
 -void DMA2_Channel3_IRQHandler(void);
 -void DMA2_Channel4_5_IRQHandler(void);
 -					 
 -#endif /* __STM32F10x_IT_H */
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/System_Handlers/main.c b/src/stm32lib/examples/NVIC/System_Handlers/main.c deleted file mode 100755 index d9e6f30..0000000 --- a/src/stm32lib/examples/NVIC/System_Handlers/main.c +++ /dev/null @@ -1,193 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : main.c
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Main program body
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_lib.h"
 -#include "platform_config.h"
 -
 -/* Private typedef -----------------------------------------------------------*/
 -/* Private define ------------------------------------------------------------*/
 -/* Private macro -------------------------------------------------------------*/
 -/* Private variables ---------------------------------------------------------*/
 -NVIC_InitTypeDef NVIC_InitStructure;
 -ErrorStatus HSEStartUpStatus;
 -  
 -/* Private function prototypes -----------------------------------------------*/
 -void RCC_Configuration(void);
 -void GPIO_Configuration(void);
 -
 -/* Private functions ---------------------------------------------------------*/
 -
 -/*******************************************************************************
 -* Function Name  : main
 -* Description    : Main program.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -int main(void)
 -{
 -#ifdef DEBUG
 -  debug();
 -#endif
 -  
 -  /* Configure the system clocks */
 -  RCC_Configuration();
 -
 -  /* Configure GPIOs */
 -  GPIO_Configuration();
 -
 -       
 -#ifdef  VECT_TAB_RAM  
 -  /* Set the Vector Table base location at 0x20000000 */ 
 -  NVIC_SetVectorTable(NVIC_VectTab_RAM, 0x0); 
 -#else  /* VECT_TAB_FLASH  */
 -  /* Set the Vector Table base location at 0x08000000 */ 
 -  NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0x0);   
 -#endif
 -
 -  /* SysTick interrupt each 1 Hz with Counter clock equal to 72MHz/8 = 9MHz */
 -  SysTick_SetReload(9000000); 
 -  
 -  /* Enable the SysTick Interrupt */
 -  SysTick_ITConfig(ENABLE);
 -
 -  /* Enable the SysTick Counter */
 -  SysTick_CounterCmd(SysTick_Counter_Enable);
 -  
 -  /* Configure 2 bits for preemption priority 2 bits for subpriority */
 -  NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);
 -  
 -  /* Configure the SysTick Handler Priority: 
 -       - preemption priority : 2 
 -       - subpriority : 0                    */
 -  NVIC_SystemHandlerPriorityConfig(SystemHandler_SysTick, 2, 0);
 -
 -  /* Configure the PSV Handler Priority:
 -       - preemption priority : 0 
 -       - subpriority : 0                    */
 -  NVIC_SystemHandlerPriorityConfig(SystemHandler_PSV, 0, 0);
 -
 -  /* Configure the SVCall Handler Priority:
 -       - preemption priority : 1 
 -       - subpriority : 0                    */
 -
 -  NVIC_SystemHandlerPriorityConfig(SystemHandler_SVCall, 1, 0);
 -
 -  while (1)
 -  {     
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RCC_Configuration
 -* Description    : Configures the different system clocks
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RCC_Configuration(void)
 -{
 -  /* RCC system reset(for debug purpose) */
 -  RCC_DeInit();
 -
 -  /* Enable HSE */
 -  RCC_HSEConfig(RCC_HSE_ON);
 -
 -  /* Wait till HSE is ready */
 -  HSEStartUpStatus = RCC_WaitForHSEStartUp();
 -
 -  if(HSEStartUpStatus == SUCCESS)
 -  {
 -    /* Enable Prefetch Buffer */
 -    FLASH_PrefetchBufferCmd(FLASH_PrefetchBuffer_Enable);
 -
 -    /* Flash 2 wait state */
 -    FLASH_SetLatency(FLASH_Latency_2);
 - 
 -    /* HCLK = SYSCLK */
 -    RCC_HCLKConfig(RCC_SYSCLK_Div1); 
 -  
 -    /* PCLK2 = HCLK */
 -    RCC_PCLK2Config(RCC_HCLK_Div1); 
 -
 -    /* PCLK1 = HCLK/2 */
 -    RCC_PCLK1Config(RCC_HCLK_Div2);
 -
 -    /* PLLCLK = 8MHz * 9 = 72 MHz */
 -    RCC_PLLConfig(RCC_PLLSource_HSE_Div1, RCC_PLLMul_9);
 -
 -    /* Enable PLL */ 
 -    RCC_PLLCmd(ENABLE);
 -
 -    /* Wait till PLL is ready */
 -    while(RCC_GetFlagStatus(RCC_FLAG_PLLRDY) == RESET)
 -    {
 -    }
 -
 -    /* Select PLL as system clock source */
 -    RCC_SYSCLKConfig(RCC_SYSCLKSource_PLLCLK);
 -
 -    /* Wait till PLL is used as system clock source */
 -    while(RCC_GetSYSCLKSource() != 0x08)
 -    {
 -    }
 -  }
 -    
 -  /* Enable GPIO_LED clock */
 -  RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIO_LED, ENABLE);
 -}
 -
 -/*******************************************************************************
 -* Function Name  : GPIO_Configuration
 -* Description    : Configures the used GPIO pins.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void GPIO_Configuration(void)
 -{
 -  GPIO_InitTypeDef GPIO_InitStructure;
 -
 -  /* Configure GPIO_LED pin 6, GPIO_LED pin 7, GPIO_LED pin 8 and GPIO_LED pin 9 as output push-pull */
 -  GPIO_InitStructure.GPIO_Pin =  GPIO_Pin_6 | GPIO_Pin_7 | GPIO_Pin_8 | GPIO_Pin_9;
 -  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
 -  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
 -  GPIO_Init(GPIO_LED, &GPIO_InitStructure);
 -}
 -
 -#ifdef  DEBUG
 -/*******************************************************************************
 -* Function Name  : assert_failed
 -* Description    : Reports the name of the source file and the source line number
 -*                  where the assert_param error has occurred.
 -* Input          : - file: pointer to the source file name
 -*                  - line: assert_param error line source number
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void assert_failed(u8* file, u32 line)
 -{ 
 -  /* User can add his own implementation to report the file name and line number,
 -     ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
 -
 -  /* Infinite loop */
 -  while (1)
 -  {
 -  }
 -}
 -#endif
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/System_Handlers/platform_config.h b/src/stm32lib/examples/NVIC/System_Handlers/platform_config.h deleted file mode 100755 index 0bc5169..0000000 --- a/src/stm32lib/examples/NVIC/System_Handlers/platform_config.h +++ /dev/null @@ -1,44 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : platform_config.h
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Evaluation board specific configuration file.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Define to prevent recursive inclusion -------------------------------------*/
 -#ifndef __PLATFORM_CONFIG_H
 -#define __PLATFORM_CONFIG_H
 -
 -/* Includes ------------------------------------------------------------------*/
 -/* Exported types ------------------------------------------------------------*/
 -/* Exported constants --------------------------------------------------------*/
 -/* Uncomment the line corresponding to the STMicroelectronics evaluation board
 -   used to run the example */
 -#if !defined (USE_STM3210B_EVAL) &&  !defined (USE_STM3210E_EVAL)
 - //#define USE_STM3210B_EVAL
 - #define USE_STM3210E_EVAL
 -#endif
 -
 -/* Define the STM32F10x hardware depending on the used evaluation board */
 -#ifdef USE_STM3210B_EVAL
 -  #define GPIO_LED                   GPIOC    
 -  #define RCC_APB2Periph_GPIO_LED    RCC_APB2Periph_GPIOC
 -#elif defined USE_STM3210E_EVAL
 -  #define GPIO_LED                   GPIOF    
 -  #define RCC_APB2Periph_GPIO_LED    RCC_APB2Periph_GPIOF
 -#endif /* USE_STM3210B_EVAL */
 -
 -/* Exported macro ------------------------------------------------------------*/
 -/* Exported functions ------------------------------------------------------- */
 -
 -#endif /* __PLATFORM_CONFIG_H */
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/System_Handlers/readme.txt b/src/stm32lib/examples/NVIC/System_Handlers/readme.txt deleted file mode 100755 index c67dea2..0000000 --- a/src/stm32lib/examples/NVIC/System_Handlers/readme.txt +++ /dev/null @@ -1,80 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : readme.txt
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Description of the NVIC System Handlers Example.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -Example description
 -===================
 -This example demontrates the use of the Nested Vectored Interrupt Controller (NVIC) 
 -and system handlers: 
 -
 -- Assignment of a descendant system handlers preemption priority for each system
 -handler:
 -   - NMI has -1 as preemption priority
 -   - PSV has 0 preemption priority
 -   - SVCall has 1 preemption priority
 -   - SysTick has 2 preemption priority
 -
 -- Configuration of SysTick timer to generate an interrupt on each end of count
 -
 -- In the Systick handler routine: a LED1  toggle each 1s and the SVC instruction
 -is executed. This will activate the SVCall handler to preempt the current instruction 
 -stream. In the SVCall handler routine, a led connected to LED2 pin is toggling and the
 -pending bit of the PSV handler is set by software.
 -The PSV which has a higher preemption priority will preempt the SVCall handler and 
 -will toggle a LED3. Also, in this handler routine, the NMI pending bit is set and 
 -the NMI handler is activated and the LED4 is toggling.
 -
 -
 -Directory contents
 -==================
 -platform_config.h    Evaluation board specific configuration file
 -stm32f10x_conf.h     Library Configuration file
 -stm32f10x_it.c       Interrupt handlers
 -stm32f10x_it.h       Interrupt handlers header file
 -main.c               Main program
 -
 -
 -Hardware environment
 -====================
 -This example runs on STMicroelectronics STM3210B-EVAL and STM3210E-EVAL evaluation
 -boards and can be easily tailored to any other hardware.
 -To select the STMicroelectronics evaluation board used to run the example, uncomment
 -the corresponding line in platform_config.h file.
 -
 - + STM3210B-EVAL 
 -    - Use LD1, LD2, LD3 and LD4 leds connected respectively to PC.06, PC.07, PC.08
 -      and PC.09 pins
 - 
 - + STM3210E-EVAL
 -    - Use LD1, LD2, LD3 and LD4 leds connected respectively to PF.06, PF0.7, PF.08
 -      and PF.09 pins
 -
 -    
 -How to use it
 -=============
 -In order to make the program work, you must do the following :
 -- Create a project and setup all your toolchain's start-up files
 -- Compile the directory content files and required Library files :
 -  + stm32f10x_lib.c
 -  + stm32f10x_systick.c
 -  + stm32f10x_gpio.c
 -  + stm32f10x_rcc.c
 -  + stm32f10x_nvic.c
 -  + stm32f10x_flash.c
 -  
 -- Link all compiled files and load your image into target memory
 -- Run the example
 -
 -
 -******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE******
 diff --git a/src/stm32lib/examples/NVIC/System_Handlers/stm32f10x_conf.h b/src/stm32lib/examples/NVIC/System_Handlers/stm32f10x_conf.h deleted file mode 100755 index f421f9a..0000000 --- a/src/stm32lib/examples/NVIC/System_Handlers/stm32f10x_conf.h +++ /dev/null @@ -1,170 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : stm32f10x_conf.h
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Library configuration file.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Define to prevent recursive inclusion -------------------------------------*/
 -#ifndef __STM32F10x_CONF_H
 -#define __STM32F10x_CONF_H
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_type.h"
 -
 -/* Exported types ------------------------------------------------------------*/
 -/* Exported constants --------------------------------------------------------*/
 -/* Uncomment the line below to compile the library in DEBUG mode, this will expanse
 -   the "assert_param" macro in the firmware library code (see "Exported macro"
 -   section below) */
 -/*#define DEBUG    1*/
 -
 -/* Comment the line below to disable the specific peripheral inclusion */
 -/************************************* ADC ************************************/
 -//#define _ADC
 -//#define _ADC1
 -//#define _ADC2
 -//#define _ADC3
 -
 -/************************************* BKP ************************************/
 -//#define _BKP 
 -
 -/************************************* CAN ************************************/
 -//#define _CAN
 -
 -/************************************* CRC ************************************/
 -//#define _CRC
 -
 -/************************************* DAC ************************************/
 -//#define _DAC
 -
 -/************************************* DBGMCU *********************************/
 -//#define _DBGMCU
 -
 -/************************************* DMA ************************************/
 -//#define _DMA
 -//#define _DMA1_Channel1
 -//#define _DMA1_Channel2
 -//#define _DMA1_Channel3
 -//#define _DMA1_Channel4
 -//#define _DMA1_Channel5
 -//#define _DMA1_Channel6
 -//#define _DMA1_Channel7
 -//#define _DMA2_Channel1
 -//#define _DMA2_Channel2
 -//#define _DMA2_Channel3
 -//#define _DMA2_Channel4
 -//#define _DMA2_Channel5
 -
 -/************************************* EXTI ***********************************/
 -//#define _EXTI
 -
 -/************************************* FLASH and Option Bytes *****************/
 -#define _FLASH
 -/* Uncomment the line below to enable FLASH program/erase/protections functions,
 -   otherwise only FLASH configuration (latency, prefetch, half cycle) functions
 -   are enabled */
 -/* #define _FLASH_PROG */
 -
 -/************************************* FSMC ***********************************/
 -//#define _FSMC
 -
 -/************************************* GPIO ***********************************/
 -#define _GPIO
 -//#define _GPIOA
 -//#define _GPIOB
 -#define _GPIOC
 -//#define _GPIOD
 -//#define _GPIOE
 -#define _GPIOF
 -//#define _GPIOG
 -#define _AFIO
 -
 -/************************************* I2C ************************************/
 -//#define _I2C
 -//#define _I2C1
 -//#define _I2C2
 -
 -/************************************* IWDG ***********************************/
 -//#define _IWDG
 -
 -/************************************* NVIC ***********************************/
 -#define _NVIC
 -
 -/************************************* PWR ************************************/
 -//#define _PWR
 -
 -/************************************* RCC ************************************/
 -#define _RCC
 -
 -/************************************* RTC ************************************/
 -//#define _RTC
 -
 -/************************************* SDIO ***********************************/
 -//#define _SDIO
 -
 -/************************************* SPI ************************************/
 -//#define _SPI
 -//#define _SPI1
 -//#define _SPI2
 -//#define _SPI3
 -
 -/************************************* SysTick ********************************/
 -#define _SysTick
 -
 -/************************************* TIM ************************************/
 -//#define _TIM
 -//#define _TIM1
 -//#define _TIM2
 -//#define _TIM3
 -//#define _TIM4
 -//#define _TIM5
 -//#define _TIM6
 -//#define _TIM7
 -//#define _TIM8
 -
 -/************************************* USART **********************************/
 -//#define _USART
 -//#define _USART1
 -//#define _USART2
 -//#define _USART3
 -//#define _UART4
 -//#define _UART5
 -
 -/************************************* WWDG ***********************************/
 -//#define _WWDG
 -
 -/* In the following line adjust the value of External High Speed oscillator (HSE)
 -   used in your application */
 -#define HSE_Value    ((u32)8000000) /* Value of the External oscillator in Hz*/
 -
 -/* Exported macro ------------------------------------------------------------*/
 -#ifdef  DEBUG
 -/*******************************************************************************
 -* 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. 
 -* 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. 
 -*                    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);
 -#else
 -  #define assert_param(expr) ((void)0)
 -#endif /* DEBUG */
 -
 -#endif /* __STM32F10x_CONF_H */
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/System_Handlers/stm32f10x_it.c b/src/stm32lib/examples/NVIC/System_Handlers/stm32f10x_it.c deleted file mode 100755 index c588064..0000000 --- a/src/stm32lib/examples/NVIC/System_Handlers/stm32f10x_it.c +++ /dev/null @@ -1,826 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : stm32f10x_it.c
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Main Interrupt Service Routines.
 -*                      This file provides template for all exceptions handler
 -*                      and peripherals interrupt service routine.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_it.h"
 -#include "platform_config.h"
 -
 -/* Private typedef -----------------------------------------------------------*/
 -/* Private define ------------------------------------------------------------*/
 -/* Private macro -------------------------------------------------------------*/
 -/* Private variables ---------------------------------------------------------*/
 -/* Private function prototypes -----------------------------------------------*/
 -/* Private functions ---------------------------------------------------------*/
 -
 -/*******************************************************************************
 -* Function Name  : NMIException
 -* Description    : This function handles NMI exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void NMIException(void)
 -{
 -  /* Toggle GPIO_LED pin 9 */  
 -  GPIO_WriteBit(GPIO_LED, GPIO_Pin_9, (BitAction)(1 - GPIO_ReadOutputDataBit(GPIO_LED, GPIO_Pin_9)));
 -}
 -
 -/*******************************************************************************
 -* Function Name  : HardFaultException
 -* Description    : This function handles Hard Fault exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void HardFaultException(void)
 -{
 -  /* Go to infinite loop when Hard Fault exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : MemManageException
 -* Description    : This function handles Memory Manage exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void MemManageException(void)
 -{
 -  /* Go to infinite loop when Memory Manage exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : BusFaultException
 -* Description    : This function handles Bus Fault exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void BusFaultException(void)
 -{
 -  /* Go to infinite loop when Bus Fault exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : UsageFaultException
 -* Description    : This function handles Usage Fault exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void UsageFaultException(void)
 -{
 -  /* Go to infinite loop when Usage Fault exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DebugMonitor
 -* Description    : This function handles Debug Monitor exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DebugMonitor(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SVCHandler
 -* Description    : This function handles SVCall exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SVCHandler(void)
 -{
 -  /* Set the PSV system handler pending bit */
 -  NVIC_SetSystemHandlerPendingBit(SystemHandler_PSV);
 -
 -  /* Toggle GPIO_LED pin 7 */  
 -  GPIO_WriteBit(GPIO_LED, GPIO_Pin_7, (BitAction)(1 - GPIO_ReadOutputDataBit(GPIO_LED, GPIO_Pin_7)));
 -}
 -
 -/*******************************************************************************
 -* Function Name  : PendSVC
 -* Description    : This function handles PendSVC exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void PendSVC(void)
 -{
 -  /* Set the NMI system handler pending bit */
 -  NVIC_SetSystemHandlerPendingBit(SystemHandler_NMI);
 -
 -  /* Toggle GPIO_LED pin 8 */  
 -  GPIO_WriteBit(GPIO_LED, GPIO_Pin_8, (BitAction)(1 - GPIO_ReadOutputDataBit(GPIO_LED, GPIO_Pin_8)));
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SysTickHandler
 -* Description    : This function handles SysTick Handler.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SysTickHandler(void)
 -{
 -  __SVC();
 -  /* Toggle GPIO_LED pin 6 */  
 -  GPIO_WriteBit(GPIO_LED, GPIO_Pin_6, (BitAction)(1 - GPIO_ReadOutputDataBit(GPIO_LED, GPIO_Pin_6))); 
 -}
 -
 -/*******************************************************************************
 -* Function Name  : WWDG_IRQHandler
 -* Description    : This function handles WWDG interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void WWDG_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : PVD_IRQHandler
 -* Description    : This function handles PVD interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void PVD_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TAMPER_IRQHandler
 -* Description    : This function handles Tamper interrupt request. 
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TAMPER_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RTC_IRQHandler
 -* Description    : This function handles RTC global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RTC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : FLASH_IRQHandler
 -* Description    : This function handles Flash interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void FLASH_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RCC_IRQHandler
 -* Description    : This function handles RCC interrupt request. 
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RCC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI0_IRQHandler
 -* Description    : This function handles External interrupt Line 0 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI0_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI1_IRQHandler
 -* Description    : This function handles External interrupt Line 1 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI2_IRQHandler
 -* Description    : This function handles External interrupt Line 2 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI3_IRQHandler
 -* Description    : This function handles External interrupt Line 3 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI4_IRQHandler
 -* Description    : This function handles External interrupt Line 4 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel1_IRQHandler
 -* Description    : This function handles DMA1 Channel 1 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel2_IRQHandler
 -* Description    : This function handles DMA1 Channel 2 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel3_IRQHandler
 -* Description    : This function handles DMA1 Channel 3 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel4_IRQHandler
 -* Description    : This function handles DMA1 Channel 4 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel5_IRQHandler
 -* Description    : This function handles DMA1 Channel 5 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel6_IRQHandler
 -* Description    : This function handles DMA1 Channel 6 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel6_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel7_IRQHandler
 -* Description    : This function handles DMA1 Channel 7 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel7_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : ADC1_2_IRQHandler
 -* Description    : This function handles ADC1 and ADC2 global interrupts requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void ADC1_2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USB_HP_CAN_TX_IRQHandler
 -* Description    : This function handles USB High Priority or CAN TX interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USB_HP_CAN_TX_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USB_LP_CAN_RX0_IRQHandler
 -* Description    : This function handles USB Low Priority or CAN RX0 interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USB_LP_CAN_RX0_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : CAN_RX1_IRQHandler
 -* Description    : This function handles CAN RX1 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void CAN_RX1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : CAN_SCE_IRQHandler
 -* Description    : This function handles CAN SCE interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void CAN_SCE_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI9_5_IRQHandler
 -* Description    : This function handles External lines 9 to 5 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI9_5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_BRK_IRQHandler
 -* Description    : This function handles TIM1 Break interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_BRK_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_UP_IRQHandler
 -* Description    : This function handles TIM1 overflow and update interrupt 
 -*                  request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_UP_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_TRG_COM_IRQHandler
 -* Description    : This function handles TIM1 Trigger and commutation interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_TRG_COM_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_CC_IRQHandler
 -* Description    : This function handles TIM1 capture compare interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_CC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM2_IRQHandler
 -* Description    : This function handles TIM2 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM3_IRQHandler
 -* Description    : This function handles TIM3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM4_IRQHandler
 -* Description    : This function handles TIM4 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C1_EV_IRQHandler
 -* Description    : This function handles I2C1 Event interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C1_EV_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C1_ER_IRQHandler
 -* Description    : This function handles I2C1 Error interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C1_ER_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C2_EV_IRQHandler
 -* Description    : This function handles I2C2 Event interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C2_EV_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C2_ER_IRQHandler
 -* Description    : This function handles I2C2 Error interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C2_ER_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SPI1_IRQHandler
 -* Description    : This function handles SPI1 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SPI1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SPI2_IRQHandler
 -* Description    : This function handles SPI2 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SPI2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USART1_IRQHandler
 -* Description    : This function handles USART1 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USART1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USART2_IRQHandler
 -* Description    : This function handles USART2 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USART2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USART3_IRQHandler
 -* Description    : This function handles USART3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USART3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI15_10_IRQHandler
 -* Description    : This function handles External lines 15 to 10 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI15_10_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RTCAlarm_IRQHandler
 -* Description    : This function handles RTC Alarm interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RTCAlarm_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USBWakeUp_IRQHandler
 -* Description    : This function handles USB WakeUp interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USBWakeUp_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_BRK_IRQHandler
 -* Description    : This function handles TIM8 Break interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_BRK_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_UP_IRQHandler
 -* Description    : This function handles TIM8 overflow and update interrupt 
 -*                  request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_UP_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_TRG_COM_IRQHandler
 -* Description    : This function handles TIM8 Trigger and commutation interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_TRG_COM_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_CC_IRQHandler
 -* Description    : This function handles TIM8 capture compare interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_CC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : ADC3_IRQHandler
 -* Description    : This function handles ADC3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void ADC3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : FSMC_IRQHandler
 -* Description    : This function handles FSMC global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void FSMC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SDIO_IRQHandler
 -* Description    : This function handles SDIO global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SDIO_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM5_IRQHandler
 -* Description    : This function handles TIM5 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SPI3_IRQHandler
 -* Description    : This function handles SPI3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SPI3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : UART4_IRQHandler
 -* Description    : This function handles UART4 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void UART4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : UART5_IRQHandler
 -* Description    : This function handles UART5 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void UART5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM6_IRQHandler
 -* Description    : This function handles TIM6 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM6_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM7_IRQHandler
 -* Description    : This function handles TIM7 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM7_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel1_IRQHandler
 -* Description    : This function handles DMA2 Channel 1 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel2_IRQHandler
 -* Description    : This function handles DMA2 Channel 2 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel3_IRQHandler
 -* Description    : This function handles DMA2 Channel 3 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel4_5_IRQHandler
 -* Description    : This function handles DMA2 Channel 4 and DMA2 Channel 5
 -*                  interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel4_5_IRQHandler(void)
 -{
 -}
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/System_Handlers/stm32f10x_it.h b/src/stm32lib/examples/NVIC/System_Handlers/stm32f10x_it.h deleted file mode 100755 index e74b6cc..0000000 --- a/src/stm32lib/examples/NVIC/System_Handlers/stm32f10x_it.h +++ /dev/null @@ -1,100 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : stm32f10x_it.h
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : This file contains the headers of the interrupt handlers.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Define to prevent recursive inclusion -------------------------------------*/
 -#ifndef __STM32F10x_IT_H
 -#define __STM32F10x_IT_H
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_lib.h"
 -
 -/* Exported types ------------------------------------------------------------*/
 -/* Exported constants --------------------------------------------------------*/
 -/* Exported macro ------------------------------------------------------------*/
 -/* Exported functions ------------------------------------------------------- */
 -
 -void NMIException(void);
 -void HardFaultException(void);
 -void MemManageException(void);
 -void BusFaultException(void);
 -void UsageFaultException(void);
 -void DebugMonitor(void);
 -void SVCHandler(void);
 -void PendSVC(void);
 -void SysTickHandler(void);
 -void WWDG_IRQHandler(void);
 -void PVD_IRQHandler(void);
 -void TAMPER_IRQHandler(void);
 -void RTC_IRQHandler(void);
 -void FLASH_IRQHandler(void);
 -void RCC_IRQHandler(void);
 -void EXTI0_IRQHandler(void);
 -void EXTI1_IRQHandler(void);
 -void EXTI2_IRQHandler(void);
 -void EXTI3_IRQHandler(void);
 -void EXTI4_IRQHandler(void);
 -void DMA1_Channel1_IRQHandler(void);
 -void DMA1_Channel2_IRQHandler(void);
 -void DMA1_Channel3_IRQHandler(void);
 -void DMA1_Channel4_IRQHandler(void);
 -void DMA1_Channel5_IRQHandler(void);
 -void DMA1_Channel6_IRQHandler(void);
 -void DMA1_Channel7_IRQHandler(void);
 -void ADC1_2_IRQHandler(void);
 -void USB_HP_CAN_TX_IRQHandler(void);
 -void USB_LP_CAN_RX0_IRQHandler(void);
 -void CAN_RX1_IRQHandler(void);
 -void CAN_SCE_IRQHandler(void);
 -void EXTI9_5_IRQHandler(void);
 -void TIM1_BRK_IRQHandler(void);
 -void TIM1_UP_IRQHandler(void);
 -void TIM1_TRG_COM_IRQHandler(void);
 -void TIM1_CC_IRQHandler(void);
 -void TIM2_IRQHandler(void);
 -void TIM3_IRQHandler(void);
 -void TIM4_IRQHandler(void);
 -void I2C1_EV_IRQHandler(void);
 -void I2C1_ER_IRQHandler(void);
 -void I2C2_EV_IRQHandler(void);
 -void I2C2_ER_IRQHandler(void);
 -void SPI1_IRQHandler(void);
 -void SPI2_IRQHandler(void);
 -void USART1_IRQHandler(void);
 -void USART2_IRQHandler(void);
 -void USART3_IRQHandler(void);
 -void EXTI15_10_IRQHandler(void);
 -void RTCAlarm_IRQHandler(void);
 -void USBWakeUp_IRQHandler(void);
 -void TIM8_BRK_IRQHandler(void);
 -void TIM8_UP_IRQHandler(void);
 -void TIM8_TRG_COM_IRQHandler(void);
 -void TIM8_CC_IRQHandler(void);
 -void ADC3_IRQHandler(void);
 -void FSMC_IRQHandler(void);
 -void SDIO_IRQHandler(void);
 -void TIM5_IRQHandler(void);
 -void SPI3_IRQHandler(void);
 -void UART4_IRQHandler(void);
 -void UART5_IRQHandler(void);
 -void TIM6_IRQHandler(void);
 -void TIM7_IRQHandler(void);
 -void DMA2_Channel1_IRQHandler(void);
 -void DMA2_Channel2_IRQHandler(void);
 -void DMA2_Channel3_IRQHandler(void);
 -void DMA2_Channel4_5_IRQHandler(void);
 -					 
 -#endif /* __STM32F10x_IT_H */
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/VectorTable_Relocation/linker/EWARMv4/lnkarm_flash_offset.xcl b/src/stm32lib/examples/NVIC/VectorTable_Relocation/linker/EWARMv4/lnkarm_flash_offset.xcl deleted file mode 100755 index fcb8787..0000000 --- a/src/stm32lib/examples/NVIC/VectorTable_Relocation/linker/EWARMv4/lnkarm_flash_offset.xcl +++ /dev/null @@ -1,191 +0,0 @@ -/*;******************** (C) COPYRIGHT 2008 STMicroelectronics ******************
 -;* File Name          : lnkarm_flash.xcl
 -;* Author             : MCD Application Team
 -;* Version            : V2.0.1
 -;* Date               : 06/13/2008
 -;* Description        : XLINK command file template for EWARM/ICCARM
 -;* Usage              : xlink  -f lnkarm  <your_object_file(s)>
 -;*                    : -s <program start label>  <C/C++ runtime library>
 -;*******************************************************************************
 -; 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, STMICROELECTRONICS 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.
 -;******************************************************************************/
 -
 -// Code memory in FLASH
 --DROMSTART=0x8002000
 --DROMEND=0x807FFFF
 -
 -// Data in RAM
 --DRAMSTART=0x20000000
 --DRAMEND=0x2000FFFF
 -
 -//*************************************************************************
 -// -------------
 -// Code segments - may be placed anywhere in memory.
 -// -------------
 -//
 -//   INTVEC     -- Exception vector table.
 -//   SWITAB     -- Software interrupt vector table.
 -//   ICODE      -- Startup (cstartup) and exception code.
 -//   DIFUNCT    -- Dynamic initialization vectors used by C++.
 -//   CODE       -- Compiler generated code.
 -//   CODE_I     -- Compiler generated code declared __ramfunc (executes in RAM)
 -//   CODE_ID    -- Initializer for CODE_I (ROM).
 -//
 -// -------------
 -// Data segments - may be placed anywhere in memory.
 -// -------------
 -//
 -//   CSTACK      -- The stack used by C/C++ programs (system and user mode).
 -//   HEAP       -- The heap used by malloc and free in C and new and
 -//                 delete in C++.
 -//   INITTAB    -- Table containing addresses and sizes of segments that
 -//                 need to be initialized at startup (by cstartup).
 -//   CHECKSUM   -- The linker places checksum byte(s) in this segment,
 -//                 when the -J linker command line option is used.
 -//   DATA_y     -- Data objects.
 -//
 -// Where _y can be one of:
 -//
 -//   _AN        -- Holds uninitialized located objects, i.e. objects with
 -//                 an absolute location given by the @ operator or the
 -//                 #pragma location directive. Since these segments
 -//                 contain objects which already have a fixed address,
 -//                 they should not be mentioned in this linker command
 -//                 file.
 -//   _C         -- Constants (ROM).
 -//   _I         -- Initialized data (RAM).
 -//   _ID        -- The original content of _I (copied to _I by cstartup) (ROM).
 -//   _N         -- Uninitialized data (RAM).
 -//   _Z         -- Zero initialized data (RAM).
 -//
 -// Note:  Be sure to use end values for the defined address ranges.
 -//        Otherwise, the linker may allocate space outside the
 -//        intended memory range.
 -//*************************************************************************
 -
 -
 -//************************************************
 -// Inform the linker about the CPU family used.
 -//************************************************
 -
 --carm
 -
 -//*************************************************************************
 -// Segment placement - General information
 -//
 -// All numbers in the segment placement command lines below are interpreted
 -// as hexadecimal unless they are immediately preceded by a '.', which
 -// denotes decimal notation.
 -//
 -// When specifying the segment placement using the -P instead of the -Z
 -// option, the linker is free to split each segment into its segment parts
 -// and randomly place these parts within the given ranges in order to
 -// achieve a more efficient memory usage. One disadvantage, however, is
 -// that it is not possible to find the start or end address (using
 -// the assembler operators .sfb./.sfe.) of a segment which has been split
 -// and reformed.
 -//
 -// When generating an output file which is to be used for programming
 -// external ROM/Flash devices, the -M linker option is very useful
 -// (see xlink.pdf for details).
 -//*************************************************************************
 -
 -
 -//*************************************************************************
 -// Read-only segments mapped to ROM.
 -//*************************************************************************
 -
 -//************************************************
 -// Address range for reset and exception
 -// vectors (INTVEC).
 -//************************************************
 -
 --Z(CODE)INTVEC=ROMSTART-ROMEND
 -
 -//************************************************
 -// Startup code and exception routines (ICODE).
 -//************************************************
 -
 --Z(CODE)ICODE,DIFUNCT=ROMSTART-ROMEND
 --Z(CODE)SWITAB=ROMSTART-ROMEND
 -
 -//************************************************
 -// Code segments may be placed anywhere.
 -//************************************************
 -
 --Z(CODE)CODE=ROMSTART-ROMEND
 -
 -//************************************************
 -// Original ROM location for __ramfunc code copied
 -// to and executed from RAM.
 -//************************************************
 -
 --Z(CONST)CODE_ID=ROMSTART-ROMEND
 -
 -//************************************************
 -// Various constants and initializers.
 -//************************************************
 -
 --Z(CONST)INITTAB,DATA_ID,DATA_C=ROMSTART-ROMEND
 --Z(CONST)CHECKSUM=ROMSTART-ROMEND
 -
 -
 -//*************************************************************************
 -// Read/write segments mapped to RAM.
 -//*************************************************************************
 -
 -//************************************************
 -// Data segments.
 -//************************************************
 -
 --Z(DATA)DATA_I,DATA_Z,DATA_N=RAMSTART-RAMEND
 -
 -//************************************************
 -// __ramfunc code copied to and executed from RAM.
 -//************************************************
 -
 --Z(DATA)CODE_I=RAMSTART-RAMEND
 -
 -//************************************************
 -// ICCARM produces code for __ramfunc functions in
 -// CODE_I segments. The -Q XLINK command line
 -// option redirects XLINK to emit the code in the
 -// CODE_ID segment instead, but to keep symbol and
 -// debug information associated with the CODE_I
 -// segment, where the code will execute.
 -//************************************************
 -
 --QCODE_I=CODE_ID
 -
 -//*************************************************************************
 -// Stack and heap segments.
 -//*************************************************************************
 -
 --D_CSTACK_SIZE=400
 --D_HEAP_SIZE=200
 -
 --Z(DATA)CSTACK+_CSTACK_SIZE=RAMSTART-RAMEND
 --Z(DATA)HEAP+_HEAP_SIZE=RAMSTART-RAMEND
 -
 -//*************************************************************************
 -// ELF/DWARF support.
 -//
 -// Uncomment the line "-Felf" below to generate ELF/DWARF output.
 -// Available format specifiers are:
 -//
 -//   "-yn": Suppress DWARF debug output
 -//   "-yp": Multiple ELF program sections
 -//   "-yas": Format suitable for debuggers from ARM Ltd (also sets -p flag)
 -//
 -// "-Felf" and the format specifiers can also be supplied directly as
 -// command line options, or selected from the Xlink Output tab in the
 -// IAR Embedded Workbench.
 -//*************************************************************************
 -
 -// -Felf
 -
 diff --git a/src/stm32lib/examples/NVIC/VectorTable_Relocation/linker/EWARMv5/stm32f10x_flash_offset.icf b/src/stm32lib/examples/NVIC/VectorTable_Relocation/linker/EWARMv5/stm32f10x_flash_offset.icf deleted file mode 100755 index ac30a01..0000000 --- a/src/stm32lib/examples/NVIC/VectorTable_Relocation/linker/EWARMv5/stm32f10x_flash_offset.icf +++ /dev/null @@ -1,31 +0,0 @@ -/*###ICF### Section handled by ICF editor, don't touch! ****/
 -/*-Editor annotation file-*/
 -/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\a_v1_0.xml" */
 -/*-Specials-*/
 -define symbol __ICFEDIT_intvec_start__ = 0x08002000;
 -/*-Memory Regions-*/
 -define symbol __ICFEDIT_region_ROM_start__   = 0x08002000 ;
 -define symbol __ICFEDIT_region_ROM_end__     = 0x0807FFFF;
 -define symbol __ICFEDIT_region_RAM_start__   = 0x20000000;
 -define symbol __ICFEDIT_region_RAM_end__     = 0x2000FFFF;
 -/*-Sizes-*/
 -define symbol __ICFEDIT_size_cstack__   = 0x400;
 -define symbol __ICFEDIT_size_heap__     = 0x200;
 -/**** End of ICF editor section. ###ICF###*/
 -
 -
 -define memory mem with size = 4G;
 -define region ROM_region   = mem:[from __ICFEDIT_region_ROM_start__   to __ICFEDIT_region_ROM_end__];
 -define region RAM_region   = mem:[from __ICFEDIT_region_RAM_start__   to __ICFEDIT_region_RAM_end__];
 -
 -define block CSTACK    with alignment = 8, size = __ICFEDIT_size_cstack__   { };
 -define block HEAP      with alignment = 8, size = __ICFEDIT_size_heap__     { };
 -
 -initialize by copy { readwrite };
 -do not initialize  { section .noinit };
 -
 -place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
 -
 -place in ROM_region   { readonly };
 -place in RAM_region   { readwrite,
 -                        block CSTACK, block HEAP };
 diff --git a/src/stm32lib/examples/NVIC/VectorTable_Relocation/linker/HiTOP/STM32F10x_offset.lsl b/src/stm32lib/examples/NVIC/VectorTable_Relocation/linker/HiTOP/STM32F10x_offset.lsl deleted file mode 100755 index 164cf72..0000000 --- a/src/stm32lib/examples/NVIC/VectorTable_Relocation/linker/HiTOP/STM32F10x_offset.lsl +++ /dev/null @@ -1,132 +0,0 @@ -// define rom size
 -#define __ROM_SIZE               512k
 -#define __ROM_ADDR               0x08002000
 -// define ram size
 -#define __RAM_SIZE               64k
 -#define __RAM_ADDR               0x20000000
 -
 -#define __NR_OF_VECTORS          42
 -#define __VECTOR_TABLE_SIZE      (__NR_OF_VECTORS * 4)
 -#define __VECTOR_TABLE_ROM_ADDR  0x08002000
 -#define _Vectors                 0x08002000
 -
 -#define _ENTRYADDR               (0x08002001 + __VECTOR_TABLE_SIZE + 80) /* xB0 */ 
 -
 -#define _START                   max(_ENTRYADDR, 0x08002165)
 -
 -#define __RESET                  0x08002004
 -
 -#define __STACK                  0x400
 -#define __STACKADDR              (__RAM_ADDR + __RAM_SIZE - __STACK)
 -#define __HEAP                   2k
 -
 -#define __TABLE_RAM_SIZE         20
 -#define __TABLE_RAM_ADDR         (__STACKADDR - __STACK - __TABLE_RAM_SIZE)
 -
 -
 -#define __MEMORY
 -
 -#define __PROCESSOR_MODE         0x10            /* User mode */
 -#define __IRQ_BIT                0x80            /* IRQ interrupts disabled */
 -#define __FIQ_BIT                0x40            /* FIQ interrupts disabled */
 -#define __APPLICATION_MODE       (__PROCESSOR_MODE | __IRQ_BIT | __FIQ_BIT)
 -
 -
 -architecture ARM
 -{
 -   endianness
 -   {
 -      little;
 -      big;
 -   }
 -   space linear
 -   {
 -      id = 1;
 -      mau = 8;
 -      align = 4;
 -      map (size = 4G, dest = bus:local_bus);
 -
 -      copytable
 -      (
 -         align = 4,
 -         copy_unit = 1,
 -         dest = linear
 -      );
 -      start_address
 -      (
 -         // It is not strictly necessary to define a run_addr for _START
 -         // because hardware starts execution at address 0x0 which should
 -         // be the vector table with a jump to the relocatable _START, but
 -         // an absolute address can prevent the branch to be out-of-range.
 -         // Or _START may be the entry point at reset and the reset handler
 -         // copies the vector table to address 0x0 after some ROM/RAM memory
 -         // re-mapping. In that case _START should be at a fixed address
 -         // in ROM, specifically the alias of address 0x0 before memory
 -         // re-mapping.
 -         run_addr = _START,
 -         symbol = "_START"
 -      );
 -
 -      stack "stack"
 -      (
 -
 -         align = 4,
 -         min_size = __STACK,
 -         grows = high_to_low
 -      );
 -      heap "heap"
 -      (
 -         align = 4,
 -         min_size=__HEAP
 -      );
 -      section_layout
 -      {
 -         "_lc_ub_vector_table" = __VECTOR_TABLE_ROM_ADDR;
 -         "_lc_ue_vector_table" = __VECTOR_TABLE_ROM_ADDR + __VECTOR_TABLE_SIZE + 8;
 -//         "_lc_ub_table" = __TABLE_RAM_ADDR;
 -//         "_lc_ue_table" = __TABLE_RAM_ADDR + __TABLE_RAM_SIZE;
 -         "_lc_ub_vector_table_copy" := "_lc_ub_vector_table";
 -         "_lc_ue_vector_table_copy" := "_lc_ue_vector_table";
 -
 -         group ( ordered, run_addr=__VECTOR_TABLE_ROM_ADDR )
 -         {
 -            select ".text.vector";
 -            
 -         }
 -         
 -#ifdef __HEAPADDR
 -         group ( ordered, run_addr=__HEAPADDR )
 -         {
 -            select "heap";
 -         }
 -#endif
 -         group ( ordered, run_addr=__STACKADDR)
 -         {
 -            select "stack";
 -         }
 -      }
 -   }
 -   bus local_bus
 -      {
 -         mau = 8;
 -         width = 32;
 -      }
 -}
 -///////////////////////////////////////////////////////////////////
 -
 -
 -memory flash
 -{
 -    mau = 8;
 -    type = rom;
 -    size = __ROM_SIZE;
 -    map ( size = __ROM_SIZE, dest_offset = __ROM_ADDR, dest = bus:ARM:local_bus );
 -}
 -
 -memory sram
 -{
 -    mau = 8;
 -    type = ram;
 -    size = __RAM_SIZE;
 -    map ( size = __RAM_SIZE, dest_offset = __RAM_ADDR, dest = bus:ARM:local_bus );
 -}
 diff --git a/src/stm32lib/examples/NVIC/VectorTable_Relocation/linker/HiTOP/link_offset.lnk b/src/stm32lib/examples/NVIC/VectorTable_Relocation/linker/HiTOP/link_offset.lnk deleted file mode 100755 index 5bfdd21..0000000 --- a/src/stm32lib/examples/NVIC/VectorTable_Relocation/linker/HiTOP/link_offset.lnk +++ /dev/null @@ -1,5 +0,0 @@ --d"./settings/STM32F10x_offset.lsl"
 ---optimize=0
 ---map-file-format=2
 -$(LinkObjects)
 ---output=.\Objects\$(Target)
\ No newline at end of file diff --git a/src/stm32lib/examples/NVIC/VectorTable_Relocation/linker/RIDE/stm32f10x_flash_offset.ld b/src/stm32lib/examples/NVIC/VectorTable_Relocation/linker/RIDE/stm32f10x_flash_offset.ld deleted file mode 100755 index 0fb109f..0000000 --- a/src/stm32lib/examples/NVIC/VectorTable_Relocation/linker/RIDE/stm32f10x_flash_offset.ld +++ /dev/null @@ -1,250 +0,0 @@ -/*
 -Default linker script for STM32F10x_512K_64K
 -Copyright RAISONANCE S.A.S. 2008
 -*/
 -
 -/* include the common STM32F10x sub-script */
 -
 -/* Common part of the linker scripts for STM32 devices*/
 -
 -
 -/* default stack sizes. 
 -
 -These are used by the startup in order to allocate stacks for the different modes.
 -*/
 -
 -__Stack_Size = 1024 ;
 -
 -PROVIDE ( _Stack_Size = __Stack_Size ) ;
 -
 -__Stack_Init = _estack  - __Stack_Size ;
 -
 -/*"PROVIDE" allows to easily override these values from an object file or the commmand line.*/
 -PROVIDE ( _Stack_Init = __Stack_Init ) ;
 -
 -/*
 -There will be a link error if there is not this amount of RAM free at the end.
 -*/
 -_Minimum_Stack_Size = 0x100 ;
 -
 -
 -/* include the memory spaces definitions sub-script */
 -/*
 -Linker subscript for STM32F10x definitions with 512K Flash and 64K RAM */
 -
 -/* Memory Spaces Definitions */
 -
 -MEMORY
 -{
 -  RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 64K
 -  FLASH (rx) : ORIGIN = 0x8002000, LENGTH = 512K-0x2000
 -  FLASHB1 (rx) : ORIGIN = 0x00000000, LENGTH = 0
 -  EXTMEMB0 (rx) : ORIGIN = 0x00000000, LENGTH = 0
 -  EXTMEMB1 (rx) : ORIGIN = 0x00000000, LENGTH = 0
 -  EXTMEMB2 (rx) : ORIGIN = 0x00000000, LENGTH = 0
 -  EXTMEMB3 (rx) : ORIGIN = 0x00000000, LENGTH = 0
 -}
 -
 -/* higher address of the user mode stack */
 -_estack = 0x20010000;
 -
 -
 -
 -/* include the sections management sub-script for FLASH mode */
 -/*
 -Common part of the linker scripts for STR71x devices in FLASH mode
 -(that is, the FLASH is seen at 0)
 -Copyright RAISONANCE 2005
 -You can use, modify and distribute thisfile freely, but without any waranty.
 -*/
 -
 -
 -
 -/* Sections Definitions */
 -
 -SECTIONS
 -{
 -    /* for Cortex devices, the beginning of the startup code is stored in the .isr_vector section, which goes to FLASH */
 -    .isr_vector :
 -    {
 -	. = ALIGN(4);
 -        KEEP(*(.isr_vector))            /* Startup code */
 -	. = ALIGN(4);
 -    } >FLASH
 - 
 -    /* for some STRx devices, the beginning of the startup code is stored in the .flashtext section, which goes to FLASH */
 -    .flashtext :
 -    {
 -	. = ALIGN(4);
 -        *(.flashtext)            /* Startup code */
 -	. = ALIGN(4);
 -    } >FLASH
 - 
 -    
 -    /* the program code is stored in the .text section, which goes to Flash */
 -    .text :
 -    {
 -	    . = ALIGN(4);
 -	    
 -        *(.text)                   /* remaining code */
 -        *(.text.*)                   /* remaining code */
 -        *(.rodata)                 /* read-only data (constants) */
 -        *(.rodata*)
 -        *(.glue_7)
 -        *(.glue_7t)
 -
 -	    . = ALIGN(4);
 -   	 _etext = .;
 -	    /* This is used by the startup in order to initialize the .data secion */
 -   	 _sidata = _etext;
 -    } >FLASH
 -    
 - 
 -
 -    /* This is the initialized data section
 -    The program executes knowing that the data is in the RAM
 -    but the loader puts the initial values in the FLASH (inidata).
 -    It is one task of the startup to copy the initial values from FLASH to RAM. */
 -    .data  : AT ( _sidata )
 -    {
 -	    . = ALIGN(4);
 -        /* This is used by the startup in order to initialize the .data secion */
 -        _sdata = . ;
 -        
 -        *(.data)
 -        *(.data.*)
 -
 -	    . = ALIGN(4);
 -	    /* This is used by the startup in order to initialize the .data secion */
 -   	 _edata = . ;
 -    } >RAM
 -    
 -    
 -
 -    /* This is the uninitialized data section */
 -    .bss :
 -    {
 -	    . = ALIGN(4);
 -        /* This is used by the startup in order to initialize the .bss secion */
 -        _sbss = .;
 -        
 -        *(.bss)
 -        *(COMMON)
 -        
 -	    . = ALIGN(4);
 -	    /* This is used by the startup in order to initialize the .bss secion */
 -   	 _ebss = . ;
 -    } >RAM
 -    
 -    PROVIDE ( end = _ebss );
 -    PROVIDE ( _end = _ebss );
 -    
 -    /* This is the user stack section 
 -    This is just to check that there is enough RAM left for the User mode stack
 -    It should generate an error if it's full.
 -     */
 -    ._usrstack :
 -    {
 -	    . = ALIGN(4);
 -        _susrstack = . ;
 -        
 -        . = . + _Minimum_Stack_Size ;
 -        
 -	    . = ALIGN(4);
 -        _eusrstack = . ;
 -    } >RAM
 -    
 -
 -   
 -    /* this is the FLASH Bank1 */
 -    /* the C or assembly source must explicitly place the code or data there
 -    using the "section" attribute */
 -    .b1text :
 -    {
 -        *(.b1text)                   /* remaining code */
 -        *(.b1rodata)                 /* read-only data (constants) */
 -        *(.b1rodata*)
 -    } >FLASHB1
 -    
 -    /* this is the EXTMEM */
 -    /* the C or assembly source must explicitly place the code or data there
 -    using the "section" attribute */
 -    
 -    /* EXTMEM Bank0 */
 -    .eb0text :
 -    {
 -        *(.eb0text)                   /* remaining code */
 -        *(.eb0rodata)                 /* read-only data (constants) */
 -        *(.eb0rodata*)
 -    } >EXTMEMB0
 -    
 -    /* EXTMEM Bank1 */
 -    .eb1text :
 -    {
 -        *(.eb1text)                   /* remaining code */
 -        *(.eb1rodata)                 /* read-only data (constants) */
 -        *(.eb1rodata*)
 -    } >EXTMEMB1
 -    
 -    /* EXTMEM Bank2 */
 -    .eb2text :
 -    {
 -        *(.eb2text)                   /* remaining code */
 -        *(.eb2rodata)                 /* read-only data (constants) */
 -        *(.eb2rodata*)
 -    } >EXTMEMB2
 -    
 -    /* EXTMEM Bank0 */
 -    .eb3text :
 -    {
 -        *(.eb3text)                   /* remaining code */
 -        *(.eb3rodata)                 /* read-only data (constants) */
 -        *(.eb3rodata*)
 -    } >EXTMEMB3
 -    
 -    
 -    
 -    /* after that it's only debugging information. */
 -    
 -    /* remove the debugging information from the standard libraries */
 -    DISCARD :
 -    {
 -     libc.a ( * )
 -     libm.a ( * )
 -     libgcc.a ( * )
 -     }
 -
 -    /* Stabs debugging sections.  */
 -    .stab          0 : { *(.stab) }
 -    .stabstr       0 : { *(.stabstr) }
 -    .stab.excl     0 : { *(.stab.excl) }
 -    .stab.exclstr  0 : { *(.stab.exclstr) }
 -    .stab.index    0 : { *(.stab.index) }
 -    .stab.indexstr 0 : { *(.stab.indexstr) }
 -    .comment       0 : { *(.comment) }
 -    /* DWARF debug sections.
 -       Symbols in the DWARF debugging sections are relative to the beginning
 -       of the section so we begin them at 0.  */
 -    /* DWARF 1 */
 -    .debug          0 : { *(.debug) }
 -    .line           0 : { *(.line) }
 -    /* GNU DWARF 1 extensions */
 -    .debug_srcinfo  0 : { *(.debug_srcinfo) }
 -    .debug_sfnames  0 : { *(.debug_sfnames) }
 -    /* DWARF 1.1 and DWARF 2 */
 -    .debug_aranges  0 : { *(.debug_aranges) }
 -    .debug_pubnames 0 : { *(.debug_pubnames) }
 -    /* DWARF 2 */
 -    .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }
 -    .debug_abbrev   0 : { *(.debug_abbrev) }
 -    .debug_line     0 : { *(.debug_line) }
 -    .debug_frame    0 : { *(.debug_frame) }
 -    .debug_str      0 : { *(.debug_str) }
 -    .debug_loc      0 : { *(.debug_loc) }
 -    .debug_macinfo  0 : { *(.debug_macinfo) }
 -    /* SGI/MIPS DWARF 2 extensions */
 -    .debug_weaknames 0 : { *(.debug_weaknames) }
 -    .debug_funcnames 0 : { *(.debug_funcnames) }
 -    .debug_typenames 0 : { *(.debug_typenames) }
 -    .debug_varnames  0 : { *(.debug_varnames) }
 -}
 diff --git a/src/stm32lib/examples/NVIC/VectorTable_Relocation/main.c b/src/stm32lib/examples/NVIC/VectorTable_Relocation/main.c deleted file mode 100755 index bc22e81..0000000 --- a/src/stm32lib/examples/NVIC/VectorTable_Relocation/main.c +++ /dev/null @@ -1,216 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : main.c
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Main program body.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "main.h"
 -
 -/* Private typedef -----------------------------------------------------------*/
 -/* Private define ------------------------------------------------------------*/
 -/* Private macro -------------------------------------------------------------*/
 -/* Private variables ---------------------------------------------------------*/
 -GPIO_InitTypeDef GPIO_InitStructure;
 -static vu32 TimingDelay;
 -ErrorStatus HSEStartUpStatus;
 -
 -/* Private function prototypes -----------------------------------------------*/
 -void RCC_Configuration(void);
 -void NVIC_Configuration(void);
 -void Delay(vu32 nTime);
 -
 -/* Private functions ---------------------------------------------------------*/
 -
 -/*******************************************************************************
 -* Function Name  : main
 -* Description    : Main program.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -int main(void)
 -{
 -#ifdef DEBUG
 -  debug();
 -#endif
 -
 -  /* System Clocks Configuration */
 -  RCC_Configuration();   
 -
 -  /* Configure GPIO_LED pin 6, pin 7, pin 8 and pin 9 as Output push-pull */
 -  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6 | GPIO_Pin_7 | GPIO_Pin_8 | GPIO_Pin_9;
 -  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
 -  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
 -  GPIO_Init(GPIO_LED, &GPIO_InitStructure);
 -
 -  /* Turn on Leds connected to GPIO_LED pin 6 and pin 8 */
 -  GPIO_Write(GPIO_LED, GPIO_Pin_6 | GPIO_Pin_8);
 -
 -  /* NVIC configuration */
 -  NVIC_Configuration();
 -
 -  /* SysTick end of count event each 1ms with input clock equal to 9MHz (HCLK/8, default) */
 -  SysTick_SetReload(9000);
 -
 -  /* Enable SysTick interrupt */
 -  SysTick_ITConfig(ENABLE);
 -
 -  while (1)
 -  {
 -    /* Toggle leds connected to GPIO_LED pin 6, GPIO_LED pin 7, GPIO_LED pin 8
 -       and GPIO_LED pin 9 pins */
 -    GPIO_Write(GPIO_LED, (u16)~GPIO_ReadOutputData(GPIO_LED));
 -
 -    /* Insert 500 ms delay */
 -    Delay(500);
 -
 -    /* Toggle leds connected to GPIO_LED pin 6, pin 7, pin 8 and pin 9 */
 -    GPIO_Write(GPIO_LED, (u16)~GPIO_ReadOutputData(GPIO_LED));
 -
 -    /* Insert 300 ms delay */
 -    Delay(300);
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RCC_Configuration
 -* Description    : Configures the different system clocks.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RCC_Configuration(void)
 -{   
 -  /* RCC system reset(for debug purpose) */
 -  RCC_DeInit();
 -
 -  /* Enable HSE */
 -  RCC_HSEConfig(RCC_HSE_ON);
 -
 -  /* Wait till HSE is ready */
 -  HSEStartUpStatus = RCC_WaitForHSEStartUp();
 -
 -  if(HSEStartUpStatus == SUCCESS)
 -  {
 -    /* Enable Prefetch Buffer */
 -    FLASH_PrefetchBufferCmd(FLASH_PrefetchBuffer_Enable);
 -
 -    /* Flash 2 wait state */
 -    FLASH_SetLatency(FLASH_Latency_2);
 - 
 -    /* HCLK = SYSCLK */
 -    RCC_HCLKConfig(RCC_SYSCLK_Div1); 
 -  
 -    /* PCLK2 = HCLK */
 -    RCC_PCLK2Config(RCC_HCLK_Div1); 
 -
 -    /* PCLK1 = HCLK/2 */
 -    RCC_PCLK1Config(RCC_HCLK_Div2);
 -
 -    /* PLLCLK = 8MHz * 9 = 72 MHz */
 -    RCC_PLLConfig(RCC_PLLSource_HSE_Div1, RCC_PLLMul_9);
 -
 -    /* Enable PLL */ 
 -    RCC_PLLCmd(ENABLE);
 -
 -    /* Wait till PLL is ready */
 -    while(RCC_GetFlagStatus(RCC_FLAG_PLLRDY) == RESET)
 -    {
 -    }
 -
 -    /* Select PLL as system clock source */
 -    RCC_SYSCLKConfig(RCC_SYSCLKSource_PLLCLK);
 -
 -    /* Wait till PLL is used as system clock source */
 -    while(RCC_GetSYSCLKSource() != 0x08)
 -    {
 -    }
 -  }
 -
 -  /* Enable GPIO_LED clock */
 -  RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIO_LED, ENABLE);
 -}
 -
 -/*******************************************************************************
 -* Function Name  : NVIC_Configuration
 -* Description    : Configures Vector Table base location.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void NVIC_Configuration(void)
 -{
 -  /* Set the Vector Table base location at 0x08002000 */ 
 -  NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0x2000);
 -}
 -
 -/*******************************************************************************
 -* Function Name  : Delay
 -* Description    : Inserts a delay time.
 -* Input          : nTime: specifies the delay time length, in milliseconds.
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void Delay(u32 nTime)
 -{
 -  /* Enable the SysTick Counter */
 -  SysTick_CounterCmd(SysTick_Counter_Enable);
 -  
 -  TimingDelay = nTime;
 -
 -  while(TimingDelay != 0);
 -
 -  /* Disable SysTick Counter */
 -  SysTick_CounterCmd(SysTick_Counter_Disable);
 -  /* Clear SysTick Counter */
 -  SysTick_CounterCmd(SysTick_Counter_Clear);
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TimingDelay_Decrement
 -* Description    : Decrements the TimingDelay variable.
 -* Input          : None
 -* Output         : TimingDelay
 -* Return         : None
 -*******************************************************************************/
 -void TimingDelay_Decrement(void)
 -{
 -  if (TimingDelay != 0x00)
 -  { 
 -    TimingDelay--;
 -  }
 -}
 -
 -#ifdef  DEBUG
 -/*******************************************************************************
 -* Function Name  : assert_failed
 -* Description    : Reports the name of the source file and the source line number
 -*                  where the assert_param error has occurred.
 -* Input          : - file: pointer to the source file name
 -*                  - line: assert_param error line source number
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void assert_failed(u8* file, u32 line)
 -{ 
 -  /* User can add his own implementation to report the file name and line number,
 -     ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
 -
 -  /* Infinite loop */
 -  while (1)
 -  {
 -  }
 -}
 -#endif
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/VectorTable_Relocation/main.h b/src/stm32lib/examples/NVIC/VectorTable_Relocation/main.h deleted file mode 100755 index feefea5..0000000 --- a/src/stm32lib/examples/NVIC/VectorTable_Relocation/main.h +++ /dev/null @@ -1,32 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : main.h
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Header for main.c module
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Define to prevent recursive inclusion -------------------------------------*/
 -#ifndef __MAIN_H
 -#define __MAIN_H
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_lib.h"
 -#include "platform_config.h"
 -
 -/* Exported types ------------------------------------------------------------*/
 -/* Exported constants --------------------------------------------------------*/
 -/* Exported macro ------------------------------------------------------------*/
 -/* Exported functions ------------------------------------------------------- */
 -void TimingDelay_Decrement(void);
 -
 -#endif /* __MAIN_H */
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/VectorTable_Relocation/platform_config.h b/src/stm32lib/examples/NVIC/VectorTable_Relocation/platform_config.h deleted file mode 100755 index 0bc5169..0000000 --- a/src/stm32lib/examples/NVIC/VectorTable_Relocation/platform_config.h +++ /dev/null @@ -1,44 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : platform_config.h
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Evaluation board specific configuration file.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Define to prevent recursive inclusion -------------------------------------*/
 -#ifndef __PLATFORM_CONFIG_H
 -#define __PLATFORM_CONFIG_H
 -
 -/* Includes ------------------------------------------------------------------*/
 -/* Exported types ------------------------------------------------------------*/
 -/* Exported constants --------------------------------------------------------*/
 -/* Uncomment the line corresponding to the STMicroelectronics evaluation board
 -   used to run the example */
 -#if !defined (USE_STM3210B_EVAL) &&  !defined (USE_STM3210E_EVAL)
 - //#define USE_STM3210B_EVAL
 - #define USE_STM3210E_EVAL
 -#endif
 -
 -/* Define the STM32F10x hardware depending on the used evaluation board */
 -#ifdef USE_STM3210B_EVAL
 -  #define GPIO_LED                   GPIOC    
 -  #define RCC_APB2Periph_GPIO_LED    RCC_APB2Periph_GPIOC
 -#elif defined USE_STM3210E_EVAL
 -  #define GPIO_LED                   GPIOF    
 -  #define RCC_APB2Periph_GPIO_LED    RCC_APB2Periph_GPIOF
 -#endif /* USE_STM3210B_EVAL */
 -
 -/* Exported macro ------------------------------------------------------------*/
 -/* Exported functions ------------------------------------------------------- */
 -
 -#endif /* __PLATFORM_CONFIG_H */
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/VectorTable_Relocation/readme.txt b/src/stm32lib/examples/NVIC/VectorTable_Relocation/readme.txt deleted file mode 100755 index f9aec02..0000000 --- a/src/stm32lib/examples/NVIC/VectorTable_Relocation/readme.txt +++ /dev/null @@ -1,131 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : readme.txt
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Description of the NVIC VectorTable_Relocation Example.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -Example description
 -===================
 -This example describes how to use the NVIC firmware library to set the CortexM3 
 -vector table in a specific address other than default.
 -
 -This can be used to build program which will be loaded into Flash memory by an
 -application previously programmed from the Flash memory base address. 
 -Such application can be In-Application Programming (IAP, through USART) or
 -Device Firmware Upgrade (DFU, through USB).
 -These applications are available for download from the ST microcontrollers 
 -website: www.st.com/stm32
 -
 -The associated program implements a "Delay" function based on SysTick end of count
 -interrupt, and toggles four leds with timing defined by the "Delay" function.
 -
 -When using the IAP to load your porgram, the vector table must be relocated at
 -address 0x08002000.
 -When using the DFU to load your porgram, the vector table must be relocated at
 -address 0x08003000.
 -
 -
 -Directory contents
 -==================
 - + \linker           
 -    + \EWARMv4               
 -       + lnkarm_flash_offset.xcl       XLINK command file template for EWARM4
 -    + \EWARMv5               
 -       + stm32f10x_flash_offset.icf    ILINK command file template for EWARM5
 -    + \RIDE               
 -       + stm32f10x_flash.ld            linker script for RIDE
 -    + \HiTOP               
 -       + STM32F10x_offset.lsl          linker file for HiTOP
 -       + link_offset                   script for HiTOP
 -                                          
 - + platform_config.h    Evaluation board specific configuration file
 - + stm32f10x_conf.h     Library Configuration file
 - + stm32f10x_it.c       Interrupt handlers
 - + stm32f10x_it.h       Interrupt handlers header file
 - + main.c               Main program
 - + main.h               Header for main.c
 -
 -
 -Hardware environment
 -====================
 -This example runs on STMicroelectronics STM3210B-EVAL and STM3210E-EVAL evaluation
 -boards and can be easily tailored to any other hardware.
 -To select the STMicroelectronics evaluation board used to run the example, uncomment
 -the corresponding line in platform_config.h file.
 -
 - + STM3210B-EVAL 
 -    - Use LD1, LD2, LD3 and LD4 leds connected respectively to PC.06, PC.07, PC.08
 -      and PC.09 pins
 - 
 - + STM3210E-EVAL
 -    - Use LD1, LD2, LD3 and LD4 leds connected respectively to PF.06, PF0.7, PF.08
 -      and PF.09 pins
 -
 -    
 -How to use it
 -=============
 -In order to make the program work, you must do the following :
 -- Create a project and setup all your toolchain's start-up files:
 - + RVMDK
 -    - in the project option menu, select 'Target' window and enter 0x08002000 
 -      as IROM start address
 -    - in the project option menu, select 'Linker' window and enter 0x08002000 
 -      as R/O base address                    
 -
 - + EWARM4
 -    - use "lnkarm_flash_offset.xcl" as linker file
 -    
 - + EWARM5
 -    - use "stm32f10x_flash_offset.icf" as linker file
 -
 - + RIDE
 -    - In the Application options -> script menu, set "Use Default Script File" 
 -      to "No" and use "stm32f10x_flash_offset.ld" as Script File. 
 -      This linker is configured for STM32 High-density devices. To use it with
 -      Medium-density devices, this linker should be updated as follows: 
 -        - line39: RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 20K
 -        - line40: FLASH (rx) : ORIGIN = 0x8002000, LENGTH = 128K-0x2000
 -        - line49: _estack = 0x20005000;
 -              
 - + HiTOP
 -    - copy the "link_offset" and "STM32F10x_offset.lsl" files under "Settings" 
 -      folder which is created by default by HiTOP.
 -    - in project->settings->project->tool settings ->linker, 
 -      use "link_offset.lnk" as linker file.     
 -      This linker is configured for STM32 High-density devices. To use it with
 -      Medium-density devices, this linker should be updated as follows: 
 -        - line2: #define __ROM_SIZE               128k
 -        - line5: #define __RAM_SIZE               20k
 -        
 -- Compile the directory content files and required Library files:
 -  + stm32f10x_lib.c
 -  + stm32f10x_systick.c
 -  + stm32f10x_gpio.c
 -  + stm32f10x_rcc.c
 -  + stm32f10x_nvic.c
 -  + stm32f10x_flash.c
 -
 -- In the main.c and linker files, the vector table is relocated at address 0x08002000.
 -  You can modify this address depending on the requirement of your application. 
 -    
 -- Rebuild all files 
 -
 -- Convert the program image to a binary file, *.bin, then you can download and
 -  run it using the IAP or DFU application.
 -
 -NOTE:
 - - Medium-density devices are STM32F101xx and STM32F103xx microcontrollers where
 -   the Flash memory density ranges between 32 and 128 Kbytes.
 - - High-density devices are STM32F101xx and STM32F103xx microcontrollers where
 -   the Flash memory density ranges between 256 and 512 Kbytes.
 -
 -******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE******
 diff --git a/src/stm32lib/examples/NVIC/VectorTable_Relocation/stm32f10x_conf.h b/src/stm32lib/examples/NVIC/VectorTable_Relocation/stm32f10x_conf.h deleted file mode 100755 index f421f9a..0000000 --- a/src/stm32lib/examples/NVIC/VectorTable_Relocation/stm32f10x_conf.h +++ /dev/null @@ -1,170 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : stm32f10x_conf.h
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Library configuration file.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Define to prevent recursive inclusion -------------------------------------*/
 -#ifndef __STM32F10x_CONF_H
 -#define __STM32F10x_CONF_H
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_type.h"
 -
 -/* Exported types ------------------------------------------------------------*/
 -/* Exported constants --------------------------------------------------------*/
 -/* Uncomment the line below to compile the library in DEBUG mode, this will expanse
 -   the "assert_param" macro in the firmware library code (see "Exported macro"
 -   section below) */
 -/*#define DEBUG    1*/
 -
 -/* Comment the line below to disable the specific peripheral inclusion */
 -/************************************* ADC ************************************/
 -//#define _ADC
 -//#define _ADC1
 -//#define _ADC2
 -//#define _ADC3
 -
 -/************************************* BKP ************************************/
 -//#define _BKP 
 -
 -/************************************* CAN ************************************/
 -//#define _CAN
 -
 -/************************************* CRC ************************************/
 -//#define _CRC
 -
 -/************************************* DAC ************************************/
 -//#define _DAC
 -
 -/************************************* DBGMCU *********************************/
 -//#define _DBGMCU
 -
 -/************************************* DMA ************************************/
 -//#define _DMA
 -//#define _DMA1_Channel1
 -//#define _DMA1_Channel2
 -//#define _DMA1_Channel3
 -//#define _DMA1_Channel4
 -//#define _DMA1_Channel5
 -//#define _DMA1_Channel6
 -//#define _DMA1_Channel7
 -//#define _DMA2_Channel1
 -//#define _DMA2_Channel2
 -//#define _DMA2_Channel3
 -//#define _DMA2_Channel4
 -//#define _DMA2_Channel5
 -
 -/************************************* EXTI ***********************************/
 -//#define _EXTI
 -
 -/************************************* FLASH and Option Bytes *****************/
 -#define _FLASH
 -/* Uncomment the line below to enable FLASH program/erase/protections functions,
 -   otherwise only FLASH configuration (latency, prefetch, half cycle) functions
 -   are enabled */
 -/* #define _FLASH_PROG */
 -
 -/************************************* FSMC ***********************************/
 -//#define _FSMC
 -
 -/************************************* GPIO ***********************************/
 -#define _GPIO
 -//#define _GPIOA
 -//#define _GPIOB
 -#define _GPIOC
 -//#define _GPIOD
 -//#define _GPIOE
 -#define _GPIOF
 -//#define _GPIOG
 -#define _AFIO
 -
 -/************************************* I2C ************************************/
 -//#define _I2C
 -//#define _I2C1
 -//#define _I2C2
 -
 -/************************************* IWDG ***********************************/
 -//#define _IWDG
 -
 -/************************************* NVIC ***********************************/
 -#define _NVIC
 -
 -/************************************* PWR ************************************/
 -//#define _PWR
 -
 -/************************************* RCC ************************************/
 -#define _RCC
 -
 -/************************************* RTC ************************************/
 -//#define _RTC
 -
 -/************************************* SDIO ***********************************/
 -//#define _SDIO
 -
 -/************************************* SPI ************************************/
 -//#define _SPI
 -//#define _SPI1
 -//#define _SPI2
 -//#define _SPI3
 -
 -/************************************* SysTick ********************************/
 -#define _SysTick
 -
 -/************************************* TIM ************************************/
 -//#define _TIM
 -//#define _TIM1
 -//#define _TIM2
 -//#define _TIM3
 -//#define _TIM4
 -//#define _TIM5
 -//#define _TIM6
 -//#define _TIM7
 -//#define _TIM8
 -
 -/************************************* USART **********************************/
 -//#define _USART
 -//#define _USART1
 -//#define _USART2
 -//#define _USART3
 -//#define _UART4
 -//#define _UART5
 -
 -/************************************* WWDG ***********************************/
 -//#define _WWDG
 -
 -/* In the following line adjust the value of External High Speed oscillator (HSE)
 -   used in your application */
 -#define HSE_Value    ((u32)8000000) /* Value of the External oscillator in Hz*/
 -
 -/* Exported macro ------------------------------------------------------------*/
 -#ifdef  DEBUG
 -/*******************************************************************************
 -* 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. 
 -* 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. 
 -*                    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);
 -#else
 -  #define assert_param(expr) ((void)0)
 -#endif /* DEBUG */
 -
 -#endif /* __STM32F10x_CONF_H */
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/VectorTable_Relocation/stm32f10x_it.c b/src/stm32lib/examples/NVIC/VectorTable_Relocation/stm32f10x_it.c deleted file mode 100755 index 3f1d5aa..0000000 --- a/src/stm32lib/examples/NVIC/VectorTable_Relocation/stm32f10x_it.c +++ /dev/null @@ -1,812 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : stm32f10x_it.c
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : Main Interrupt Service Routines.
 -*                      This file provides template for all exceptions handler
 -*                      and peripherals interrupt service routine.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_it.h"
 -#include "main.h"
 -
 -/* Private typedef -----------------------------------------------------------*/
 -/* Private define ------------------------------------------------------------*/
 -/* Private macro -------------------------------------------------------------*/
 -/* Private variables ---------------------------------------------------------*/
 -/* Private function prototypes -----------------------------------------------*/
 -/* Private functions ---------------------------------------------------------*/
 -
 -/*******************************************************************************
 -* Function Name  : NMIException
 -* Description    : This function handles NMI exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void NMIException(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : HardFaultException
 -* Description    : This function handles Hard Fault exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void HardFaultException(void)
 -{
 -  /* Go to infinite loop when Hard Fault exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : MemManageException
 -* Description    : This function handles Memory Manage exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void MemManageException(void)
 -{
 -  /* Go to infinite loop when Memory Manage exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : BusFaultException
 -* Description    : This function handles Bus Fault exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void BusFaultException(void)
 -{
 -  /* Go to infinite loop when Bus Fault exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : UsageFaultException
 -* Description    : This function handles Usage Fault exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void UsageFaultException(void)
 -{
 -  /* Go to infinite loop when Usage Fault exception occurs */
 -  while (1)
 -  {
 -  }
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DebugMonitor
 -* Description    : This function handles Debug Monitor exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DebugMonitor(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SVCHandler
 -* Description    : This function handles SVCall exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SVCHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : PendSVC
 -* Description    : This function handles PendSVC exception.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void PendSVC(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SysTickHandler
 -* Description    : This function handles SysTick Handler.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SysTickHandler(void)
 -{
 -  TimingDelay_Decrement();
 -}
 -
 -/*******************************************************************************
 -* Function Name  : WWDG_IRQHandler
 -* Description    : This function handles WWDG interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void WWDG_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : PVD_IRQHandler
 -* Description    : This function handles PVD interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void PVD_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TAMPER_IRQHandler
 -* Description    : This function handles Tamper interrupt request. 
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TAMPER_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RTC_IRQHandler
 -* Description    : This function handles RTC global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RTC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : FLASH_IRQHandler
 -* Description    : This function handles Flash interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void FLASH_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RCC_IRQHandler
 -* Description    : This function handles RCC interrupt request. 
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RCC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI0_IRQHandler
 -* Description    : This function handles External interrupt Line 0 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI0_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI1_IRQHandler
 -* Description    : This function handles External interrupt Line 1 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI2_IRQHandler
 -* Description    : This function handles External interrupt Line 2 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI3_IRQHandler
 -* Description    : This function handles External interrupt Line 3 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI4_IRQHandler
 -* Description    : This function handles External interrupt Line 4 request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel1_IRQHandler
 -* Description    : This function handles DMA1 Channel 1 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel2_IRQHandler
 -* Description    : This function handles DMA1 Channel 2 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel3_IRQHandler
 -* Description    : This function handles DMA1 Channel 3 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel4_IRQHandler
 -* Description    : This function handles DMA1 Channel 4 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel5_IRQHandler
 -* Description    : This function handles DMA1 Channel 5 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel6_IRQHandler
 -* Description    : This function handles DMA1 Channel 6 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel6_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA1_Channel7_IRQHandler
 -* Description    : This function handles DMA1 Channel 7 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA1_Channel7_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : ADC1_2_IRQHandler
 -* Description    : This function handles ADC1 and ADC2 global interrupts requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void ADC1_2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USB_HP_CAN_TX_IRQHandler
 -* Description    : This function handles USB High Priority or CAN TX interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USB_HP_CAN_TX_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USB_LP_CAN_RX0_IRQHandler
 -* Description    : This function handles USB Low Priority or CAN RX0 interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USB_LP_CAN_RX0_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : CAN_RX1_IRQHandler
 -* Description    : This function handles CAN RX1 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void CAN_RX1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : CAN_SCE_IRQHandler
 -* Description    : This function handles CAN SCE interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void CAN_SCE_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI9_5_IRQHandler
 -* Description    : This function handles External lines 9 to 5 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI9_5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_BRK_IRQHandler
 -* Description    : This function handles TIM1 Break interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_BRK_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_UP_IRQHandler
 -* Description    : This function handles TIM1 overflow and update interrupt 
 -*                  request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_UP_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_TRG_COM_IRQHandler
 -* Description    : This function handles TIM1 Trigger and commutation interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_TRG_COM_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM1_CC_IRQHandler
 -* Description    : This function handles TIM1 capture compare interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM1_CC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM2_IRQHandler
 -* Description    : This function handles TIM2 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM3_IRQHandler
 -* Description    : This function handles TIM3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM4_IRQHandler
 -* Description    : This function handles TIM4 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C1_EV_IRQHandler
 -* Description    : This function handles I2C1 Event interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C1_EV_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C1_ER_IRQHandler
 -* Description    : This function handles I2C1 Error interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C1_ER_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C2_EV_IRQHandler
 -* Description    : This function handles I2C2 Event interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C2_EV_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : I2C2_ER_IRQHandler
 -* Description    : This function handles I2C2 Error interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void I2C2_ER_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SPI1_IRQHandler
 -* Description    : This function handles SPI1 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SPI1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SPI2_IRQHandler
 -* Description    : This function handles SPI2 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SPI2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USART1_IRQHandler
 -* Description    : This function handles USART1 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USART1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USART2_IRQHandler
 -* Description    : This function handles USART2 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USART2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USART3_IRQHandler
 -* Description    : This function handles USART3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USART3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : EXTI15_10_IRQHandler
 -* Description    : This function handles External lines 15 to 10 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void EXTI15_10_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : RTCAlarm_IRQHandler
 -* Description    : This function handles RTC Alarm interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void RTCAlarm_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : USBWakeUp_IRQHandler
 -* Description    : This function handles USB WakeUp interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void USBWakeUp_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_BRK_IRQHandler
 -* Description    : This function handles TIM8 Break interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_BRK_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_UP_IRQHandler
 -* Description    : This function handles TIM8 overflow and update interrupt 
 -*                  request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_UP_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_TRG_COM_IRQHandler
 -* Description    : This function handles TIM8 Trigger and commutation interrupts 
 -*                  requests.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_TRG_COM_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM8_CC_IRQHandler
 -* Description    : This function handles TIM8 capture compare interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM8_CC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : ADC3_IRQHandler
 -* Description    : This function handles ADC3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void ADC3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : FSMC_IRQHandler
 -* Description    : This function handles FSMC global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void FSMC_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SDIO_IRQHandler
 -* Description    : This function handles SDIO global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SDIO_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM5_IRQHandler
 -* Description    : This function handles TIM5 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : SPI3_IRQHandler
 -* Description    : This function handles SPI3 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void SPI3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : UART4_IRQHandler
 -* Description    : This function handles UART4 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void UART4_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : UART5_IRQHandler
 -* Description    : This function handles UART5 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void UART5_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM6_IRQHandler
 -* Description    : This function handles TIM6 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM6_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : TIM7_IRQHandler
 -* Description    : This function handles TIM7 global interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void TIM7_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel1_IRQHandler
 -* Description    : This function handles DMA2 Channel 1 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel1_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel2_IRQHandler
 -* Description    : This function handles DMA2 Channel 2 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel2_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel3_IRQHandler
 -* Description    : This function handles DMA2 Channel 3 interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel3_IRQHandler(void)
 -{
 -}
 -
 -/*******************************************************************************
 -* Function Name  : DMA2_Channel4_5_IRQHandler
 -* Description    : This function handles DMA2 Channel 4 and DMA2 Channel 5
 -*                  interrupt request.
 -* Input          : None
 -* Output         : None
 -* Return         : None
 -*******************************************************************************/
 -void DMA2_Channel4_5_IRQHandler(void)
 -{
 -}
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 diff --git a/src/stm32lib/examples/NVIC/VectorTable_Relocation/stm32f10x_it.h b/src/stm32lib/examples/NVIC/VectorTable_Relocation/stm32f10x_it.h deleted file mode 100755 index e74b6cc..0000000 --- a/src/stm32lib/examples/NVIC/VectorTable_Relocation/stm32f10x_it.h +++ /dev/null @@ -1,100 +0,0 @@ -/******************** (C) COPYRIGHT 2008 STMicroelectronics ********************
 -* File Name          : stm32f10x_it.h
 -* Author             : MCD Application Team
 -* Version            : V2.0.1
 -* Date               : 06/13/2008
 -* Description        : This file contains the headers of the interrupt handlers.
 -********************************************************************************
 -* 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, STMICROELECTRONICS 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.
 -*******************************************************************************/
 -
 -/* Define to prevent recursive inclusion -------------------------------------*/
 -#ifndef __STM32F10x_IT_H
 -#define __STM32F10x_IT_H
 -
 -/* Includes ------------------------------------------------------------------*/
 -#include "stm32f10x_lib.h"
 -
 -/* Exported types ------------------------------------------------------------*/
 -/* Exported constants --------------------------------------------------------*/
 -/* Exported macro ------------------------------------------------------------*/
 -/* Exported functions ------------------------------------------------------- */
 -
 -void NMIException(void);
 -void HardFaultException(void);
 -void MemManageException(void);
 -void BusFaultException(void);
 -void UsageFaultException(void);
 -void DebugMonitor(void);
 -void SVCHandler(void);
 -void PendSVC(void);
 -void SysTickHandler(void);
 -void WWDG_IRQHandler(void);
 -void PVD_IRQHandler(void);
 -void TAMPER_IRQHandler(void);
 -void RTC_IRQHandler(void);
 -void FLASH_IRQHandler(void);
 -void RCC_IRQHandler(void);
 -void EXTI0_IRQHandler(void);
 -void EXTI1_IRQHandler(void);
 -void EXTI2_IRQHandler(void);
 -void EXTI3_IRQHandler(void);
 -void EXTI4_IRQHandler(void);
 -void DMA1_Channel1_IRQHandler(void);
 -void DMA1_Channel2_IRQHandler(void);
 -void DMA1_Channel3_IRQHandler(void);
 -void DMA1_Channel4_IRQHandler(void);
 -void DMA1_Channel5_IRQHandler(void);
 -void DMA1_Channel6_IRQHandler(void);
 -void DMA1_Channel7_IRQHandler(void);
 -void ADC1_2_IRQHandler(void);
 -void USB_HP_CAN_TX_IRQHandler(void);
 -void USB_LP_CAN_RX0_IRQHandler(void);
 -void CAN_RX1_IRQHandler(void);
 -void CAN_SCE_IRQHandler(void);
 -void EXTI9_5_IRQHandler(void);
 -void TIM1_BRK_IRQHandler(void);
 -void TIM1_UP_IRQHandler(void);
 -void TIM1_TRG_COM_IRQHandler(void);
 -void TIM1_CC_IRQHandler(void);
 -void TIM2_IRQHandler(void);
 -void TIM3_IRQHandler(void);
 -void TIM4_IRQHandler(void);
 -void I2C1_EV_IRQHandler(void);
 -void I2C1_ER_IRQHandler(void);
 -void I2C2_EV_IRQHandler(void);
 -void I2C2_ER_IRQHandler(void);
 -void SPI1_IRQHandler(void);
 -void SPI2_IRQHandler(void);
 -void USART1_IRQHandler(void);
 -void USART2_IRQHandler(void);
 -void USART3_IRQHandler(void);
 -void EXTI15_10_IRQHandler(void);
 -void RTCAlarm_IRQHandler(void);
 -void USBWakeUp_IRQHandler(void);
 -void TIM8_BRK_IRQHandler(void);
 -void TIM8_UP_IRQHandler(void);
 -void TIM8_TRG_COM_IRQHandler(void);
 -void TIM8_CC_IRQHandler(void);
 -void ADC3_IRQHandler(void);
 -void FSMC_IRQHandler(void);
 -void SDIO_IRQHandler(void);
 -void TIM5_IRQHandler(void);
 -void SPI3_IRQHandler(void);
 -void UART4_IRQHandler(void);
 -void UART5_IRQHandler(void);
 -void TIM6_IRQHandler(void);
 -void TIM7_IRQHandler(void);
 -void DMA2_Channel1_IRQHandler(void);
 -void DMA2_Channel2_IRQHandler(void);
 -void DMA2_Channel3_IRQHandler(void);
 -void DMA2_Channel4_5_IRQHandler(void);
 -					 
 -#endif /* __STM32F10x_IT_H */
 -
 -/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
 | 
