TIM10 compare output is PF6, But I want to use PF7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2017-09-30 10:24 PM
I used STM32F429ZI
I make this sorce code
GPIOF->MODER |= 0x00002000; //PF6 AF mode
GPIOF->PUPDR |= 0x00002000; //PF6 pull downGPIOF->AFR[0]|= 0x03000000; //PF6 AF3(TIM8..11)It is good work. ( PORTF6 IDR is good working)
But I want to use PF7, so change sorce code
GPIOF->MODER |= 0x00008000; //PF7 AF mode
GPIOF->PUPDR |= 0x00008000; //PF7 pull downGPIOF->AFR[0]|= 0x30000000; //PF7 AF3(TIM8..11)But it is not work (PF7 IDR is not working) why?
PF6 -> PF7 can not?
Just only use PF6?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2017-09-30 11:00 PM
Only few of pins can be used for a certain function (or maybe only one). Press CTRL and click on the pin which is selected by default (PF6 in your case). All other possibilities will be coloured in blue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2017-10-01 1:38 AM
Thank you Obid.Matic have a nice day
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2017-10-01 5:49 AM
PF7 would need to use TIM11, no relationship to TIM10 available
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2017-10-01 8:03 AM
I found dataSheet thanks to you
