2014-08-07 03:20 AM
Hi,
I already got a project working based on the STM32F030 and with Keil MDK. I based the project on a sample, so it was easy to get a working project. This time I don't have a discovery board with the STM32F071 and there are no samples. The startup file for this device is also missing. I tried the stm32f0xx.s, but I'm not sure if its ok. Do you have any advices how to get a working project for this device?2014-08-07 03:47 AM
Hi Steffen,
You can start using thehttp://www.st.com/web/en/catalog/tools/PF260612
and generate your initialization code based on used device. If you want to use thehttp://www.st.com/web/en/catalog/tools/PF257884
, please refer to the examples inside it where you find all required files. -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.
2014-08-07 03:54 AM
Hi Mayla,
I want to use the standard library. There are no files specific to stm32f071. It looks like there are only files for STM32F030, STM32F031, define STM32F051, STM32F072 and STM32F042. I am a little bit confused at this point2014-08-08 01:25 AM
Hey, I still have problems to get a working project with my STM32F071CB.
Where can I find the startup files and header for different devices? All I got from the library is this:#if !defined (STM32F030) && !defined (STM32F031) && !defined (STM32F051) && !defined (STM32F072) && !defined (STM32F042)
/* #define STM32F030 */
/* #define STM32F031 */
/* #define STM32F051 */
#define STM32F072
/* #define STM32F042 */
#endif
2014-08-08 03:06 AM
Hi Steffen,
Please note that STM32F071 is the same as STM32F072 where only USB & CAN were removed. So there is no problem to use the STM32F072 FW on STM32F071 products. -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.
2014-08-10 11:43 PM
Thanks a lot. This answer helps!
I wasn't sure about it's family line. I thought it was more familiar with the 51.