is it possible to see system clock from GPIO?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2014-04-08 4:28 AM
Posted on April 08, 2014 at 13:28
Hi all,
I'm working on stm32l MCU and wonder if it is possible to get the system clock waveform from GPIO output pin? If yes, where could I find it from the datasheet?Thanks a lot,Shan
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2014-04-08 6:23 AM
Posted on April 08, 2014 at 15:23
The MCO pin (PA.8) should allow fractional internal clocks to be output. Some abstracted, but synchronous, clocks can be generated by timers.
Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
Up vote any posts that you find helpful, it shows what's working..
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2014-04-08 8:13 PM
Posted on April 09, 2014 at 05:13Thanks clive! That's a good start. I gave it a try and found the PA8 waveform frequency isn't the SYSCLK freq 32MHz but only around 2.17MHz. The frequency did change if I changed the divider value. Could anyone point out if I did anything wrong here? Many thanks! :) int main(void){ GPIO_InitTypeDef GPIO_InitStructure; RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA, ENABLE); GPIO_PinAFConfig(GPIOA, GPIO_PinSource8, GPIO_AF_MCO); GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF; GPIO_InitStructure.GPIO_OType = GPIO_OType_PP; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_40MHz; GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP; GPIO_Init(GPIOA, &GPIO_InitStructure); RCC_MCOConfig(RCC_MCOSource_SYSCLK, RCC_MCODiv_1); while(1) { delay(); }}
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2014-04-09 12:53 AM
Posted on April 09, 2014 at 09:53
Looks good.
Your SYSCLK probably is actually around 2MHz - I guess it never changed from the default nominally 2.097MHz MSI clock. JW