mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-02 10:24:11 +01:00
101 lines
3.4 KiB
C
101 lines
3.4 KiB
C
|
/**
|
||
|
******************************************************************************
|
||
|
* @addtogroup OpenPilotBL OpenPilot BootLoader
|
||
|
* @{
|
||
|
*
|
||
|
* @file ssp_timer.c
|
||
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||
|
* @brief Timer functions to be used with the SSP.
|
||
|
* @see The GNU Public License (GPL) Version 3
|
||
|
*
|
||
|
*****************************************************************************/
|
||
|
/*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation; either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful, but
|
||
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||
|
* for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License along
|
||
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
|
*/
|
||
|
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// Include files
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#include "stm32f10x_tim.h"
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// Local definitions
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#define SSP_TIMER_TIMER_BASE TIM7
|
||
|
#define SSP_TIMER_TIMER_RCC RCC_APB1Periph_TIM7
|
||
|
|
||
|
uint32_t SSP_TIMER_Init(u32 resolution)
|
||
|
{
|
||
|
// enable timer clock
|
||
|
if( SSP_TIMER_TIMER_RCC == RCC_APB2Periph_TIM1 || SSP_TIMER_TIMER_RCC == RCC_APB2Periph_TIM8 )
|
||
|
RCC_APB2PeriphClockCmd(SSP_TIMER_TIMER_RCC, ENABLE);
|
||
|
else
|
||
|
RCC_APB1PeriphClockCmd(SSP_TIMER_TIMER_RCC, ENABLE);
|
||
|
|
||
|
// time base configuration
|
||
|
TIM_TimeBaseInitTypeDef TIM_TimeBaseStructure;
|
||
|
TIM_TimeBaseStructure.TIM_Period = 0xffff; // max period
|
||
|
TIM_TimeBaseStructure.TIM_Prescaler = (72 * resolution)-1; // <resolution> uS accuracy @ 72 MHz
|
||
|
TIM_TimeBaseStructure.TIM_ClockDivision = 0;
|
||
|
TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up;
|
||
|
TIM_TimeBaseInit(SSP_TIMER_TIMER_BASE, &TIM_TimeBaseStructure);
|
||
|
|
||
|
// enable interrupt request
|
||
|
TIM_ITConfig(SSP_TIMER_TIMER_BASE, TIM_IT_Update, ENABLE);
|
||
|
|
||
|
// start counter
|
||
|
TIM_Cmd(SSP_TIMER_TIMER_BASE, ENABLE);
|
||
|
|
||
|
return 0; // no error
|
||
|
}
|
||
|
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
//! Resets the SSP_TIMER
|
||
|
//! \return < 0 on errors
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
uint32_t SSP_TIMER_Reset(void)
|
||
|
{
|
||
|
// reset counter
|
||
|
SSP_TIMER_TIMER_BASE->CNT = 1; // set to 1 instead of 0 to avoid new IRQ request
|
||
|
TIM_ClearITPendingBit(SSP_TIMER_TIMER_BASE, TIM_IT_Update);
|
||
|
|
||
|
return 0; // no error
|
||
|
}
|
||
|
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
//! Returns current value of SSP_TIMER
|
||
|
//! \return 1..65535: valid SSP_TIMER value
|
||
|
//! \return 0xffffffff: counter overrun
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
uint32_t SSP_TIMER_ValueGet(void)
|
||
|
{
|
||
|
uint32_t value = SSP_TIMER_TIMER_BASE->CNT;
|
||
|
|
||
|
if( TIM_GetITStatus(SSP_TIMER_TIMER_BASE, TIM_IT_Update) != RESET )
|
||
|
SSP_TIMER_Reset();
|
||
|
|
||
|
return value;
|
||
|
}
|
||
|
|