#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);
/*******************************************************************************
* Function Name : main
* Description : main body function
* Input : None
* Output : None
* Return : None
*******************************************************************************/
int main()
{
LED_GPIO_INIT();
CAN_Config();
CAN_ReceiveMsgStructure();
LED2_OFF;
while(1)
{
}