kosmos/source/firmware/arch/stm32f4xx/board/stm32f4-discovery/stm32f4-discovery.c

19 lines
316 B
C
Raw Permalink Normal View History

2016-07-28 19:02:54 +00:00
/*
* bsp_stm32f4-discovery.c
*
* Created on: May 7, 2012
* Author: tkl
*/
#include "board.h"
2016-07-28 19:02:54 +00:00
2016-08-16 11:08:49 +00:00
void board_init(void)
{
#if 0
2016-07-28 19:02:54 +00:00
NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0);
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_4);
SysTick_CLKSourceConfig(RCC_SYSCLKSource_PLLCLK);
2016-08-16 11:08:49 +00:00
#endif
2016-07-28 19:02:54 +00:00
sys_tick_init(&timer_1);
}