Update to V4.5.0 files and directory structure.

This commit is contained in:
Richard Barry 2007-09-17 10:07:48 +00:00
parent 1362bebfdc
commit 98a9959a44
758 changed files with 53177 additions and 3139 deletions

View file

@ -22,6 +22,7 @@
* OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING INFORMATION
* CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*******************************************************************************/
#include "FreeRTOSConfig.h"
#include "91x_it.h"
/*******************************************************************************
@ -136,9 +137,9 @@ void TIM1_IRQHandler(void)
* Output : None
* Return : None
*******************************************************************************/
void TIM2_IRQHandler(void)
{
}
//void TIM2_IRQHandler(void)
//{
//}
/*******************************************************************************
* Function Name : TIM3_IRQHandler
* Description : This function handles the TIM3 interrupt request
@ -371,4 +372,16 @@ void PFQBC_IRQHandler(void)
{
}
#if configUSE_WATCHDOG_TICK == 0
/* The kernel is not using the watchdog interrupt so it can be defined here. */
void WDG_IRQHandler( void )
{
}
#else
/* The kernel is not using the timer 2 interrupt so it can be defined here. */
void TIM2_IRQHandler( void )
{
}
#endif /* configUSE_WATCHDOG_TICK */
/******************* (C) COPYRIGHT 2006 STMicroelectronics *****END OF FILE****/