STM32F0 DISCOVERY USER BUTTON READ
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2016-06-19 11:28 PM
Posted on June 20, 2016 at 08:28
Hi,
I am pretty new to programming micro controllers, I try to learn it by myself and couldn't find any useful source for my task. I want to make a timer which can count the period of USER button between clicking and releasing it. And after that my led interrupt should be equal to that period. I would be grateful for any kind of help.Thank you. #training #beginner #newbie
This discussion is locked. Please start a new topic to ask your question.
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2016-06-20 2:23 AM
Posted on June 20, 2016 at 11:23
Hi coloba,
Welcome to our community. Since you are newbie, I recommend you to start by taking a look to our freehttp://www.st.com/content/st_com/en/support/learning/stm32l4-online-training.html
and check ourhttp://www.st.com/content/st_com/en/support/learning/mcu-training-courses.html
for further information about training sessions. For you programming start and goal, I recommend you to run the suitable example for you inside the package, which can be: -RCC_ClockConfig: to take idea on how to configure the system clock at this path: STM32Cube_FW_F0_V1.6.0\Projects\STM32F0308-Discovery\Examples\RCC\RCC_ClockConfig - TIM_InputCapture : (in your case you select user bottom pin as timer input) at this path: STM32Cube_FW_F0_V1.6.0\Projects\STM32F0308-Discovery\Examples\TIM\TIM_InputCapture -Hannibal-