2016-04-12 05:17 AM
Folks,
I am writing some software on the STM32F107VC, but in the header files there is no trace of TIM5, its interrupt vector etc. From what I can see from the datasheet this time should be on the processor. Am I misunderstanding something important or is possible that in this very old version of FreeRTOS, the header file is incomplete? Many thanks!2016-04-12 05:28 AM
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2016-04-12 06:45 AM
Hi Mayla,
It's files like this: /******************** (C) COPYRIGHT 2007 STMicroelectronics ******************** * File Name : stm32f10x_rcc.h * Author : MCD Application Team * Date First Issued : 09/29/2006 * Description : This file contains all the functions prototypes for the * RCC firmware library. ******************************************************************************** /******************** (C) COPYRIGHT 2007 STMicroelectronics ******************** * File Name : stm32f10x_conf.h * Author : MCD Application Team * Date First Issued : 09/29/2006 * Description : Library configuration file. ******************************************************************************** etc They are very old files and this is an old version of a FreeRTOS app I'm trying to make additions to. I don't have STM32 Cube, I think it only works on Windows. Thanks, Rob2016-04-12 07:21 AM
This seems to be a very old version of the STM32F1 Standard Peripheral Library.
The more current one is V3.5.0: ****************************************************************************** * @file stm32f10x_rcc.h * @author MCD Application Team * @version V3.5.0 * @date 11-March-2011 * @brief This file contains all the functions prototypes for the RCC firmware * library. ******************************************************************************You can get it from .Then, you can also download the package here.-Mayla-To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2016-04-12 07:38 AM
Many thanks!