2013-01-08 22:40:58 +08:00
|
|
|
/*
|
|
|
|
* File : board.c
|
|
|
|
* This file is part of RT-Thread RTOS
|
|
|
|
* COPYRIGHT (C) 2009 RT-Thread Develop Team
|
|
|
|
*
|
|
|
|
* The license and distribution terms for this file may be
|
|
|
|
* found in the file LICENSE in this distribution or at
|
|
|
|
* http://www.rt-thread.org/license/LICENSE
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2009-01-05 Bernard first implementation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rthw.h>
|
|
|
|
#include <rtthread.h>
|
|
|
|
|
|
|
|
#include "stm32f4xx.h"
|
|
|
|
#include "board.h"
|
2015-01-20 15:23:59 +08:00
|
|
|
#include "usart.h"
|
|
|
|
#include "gpio.h"
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup STM32
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*@{*/
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
* Function Name : NVIC_Configuration
|
|
|
|
* Description : Configures Vector Table base location.
|
|
|
|
* Input : None
|
|
|
|
* Output : None
|
|
|
|
* Return : None
|
|
|
|
*******************************************************************************/
|
|
|
|
void NVIC_Configuration(void)
|
|
|
|
{
|
|
|
|
#ifdef VECT_TAB_RAM
|
2014-04-25 18:37:06 +08:00
|
|
|
/* Set the Vector Table base location at 0x20000000 */
|
|
|
|
NVIC_SetVectorTable(NVIC_VectTab_RAM, 0x0);
|
2013-01-08 22:40:58 +08:00
|
|
|
#else /* VECT_TAB_FLASH */
|
2014-04-25 18:37:06 +08:00
|
|
|
/* Set the Vector Table base location at 0x08000000 */
|
|
|
|
NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0x0);
|
2013-01-08 22:40:58 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
* Function Name : SysTick_Configuration
|
|
|
|
* Description : Configures the SysTick for OS tick.
|
|
|
|
* Input : None
|
|
|
|
* Output : None
|
|
|
|
* Return : None
|
|
|
|
*******************************************************************************/
|
|
|
|
void SysTick_Configuration(void)
|
|
|
|
{
|
2014-04-25 18:37:06 +08:00
|
|
|
RCC_ClocksTypeDef rcc_clocks;
|
|
|
|
rt_uint32_t cnts;
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2014-04-25 18:37:06 +08:00
|
|
|
RCC_GetClocksFreq(&rcc_clocks);
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2014-04-25 18:37:06 +08:00
|
|
|
cnts = (rt_uint32_t)rcc_clocks.HCLK_Frequency / RT_TICK_PER_SECOND;
|
|
|
|
cnts = cnts / 8;
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2014-04-25 18:37:06 +08:00
|
|
|
SysTick_Config(cnts);
|
|
|
|
SysTick_CLKSourceConfig(SysTick_CLKSource_HCLK_Div8);
|
2013-01-08 22:40:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is the timer interrupt service routine.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void SysTick_Handler(void)
|
|
|
|
{
|
2014-04-25 18:37:06 +08:00
|
|
|
/* enter interrupt */
|
|
|
|
rt_interrupt_enter();
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2014-04-25 18:37:06 +08:00
|
|
|
rt_tick_increase();
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2014-04-25 18:37:06 +08:00
|
|
|
/* leave interrupt */
|
|
|
|
rt_interrupt_leave();
|
2013-01-08 22:40:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function will initial STM32 board.
|
|
|
|
*/
|
|
|
|
void rt_hw_board_init()
|
|
|
|
{
|
2014-04-25 18:37:06 +08:00
|
|
|
/* NVIC Configuration */
|
|
|
|
NVIC_Configuration();
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2014-04-25 18:37:06 +08:00
|
|
|
/* Configure the SysTick */
|
|
|
|
SysTick_Configuration();
|
2013-01-08 22:40:58 +08:00
|
|
|
|
2015-01-20 16:02:33 +08:00
|
|
|
stm32_hw_usart_init();
|
2015-01-20 15:23:59 +08:00
|
|
|
stm32_hw_pin_init();
|
|
|
|
|
2013-01-08 22:40:58 +08:00
|
|
|
#ifdef RT_USING_CONSOLE
|
2014-04-25 18:37:06 +08:00
|
|
|
rt_console_set_device(CONSOLE_DEVICE);
|
2013-01-08 22:40:58 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*@}*/
|