USB Wakeup
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2010-01-16 5:34 PM
Posted on January 17, 2010 at 02:34
USB Wakeup
This discussion is locked. Please start a new topic to ask your question.
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2011-05-17 4:36 AM
Posted on May 17, 2011 at 13:36
Anyone knows, if I should be using EXTI_Trigger_Rising or EXTI_Trigger_Falling or EXTI_Trigger_Rising_Falling to wakeup from stop mode in USB.
There is no mention about this in the reference manual.Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2011-05-17 4:36 AM
Posted on May 17, 2011 at 13:36Hi, Here is the code from Joystick demo in file ''hw_config.c'' /* Configure the EXTI line 18 connected internally to the USB IP */ EXTI_ClearITPendingBit(EXTI_Line18); EXTI_InitStructure.EXTI_Line = EXTI_Line18; //USB resume from suspend mode EXTI_InitStructure.EXTI_Trigger = EXTI_Trigger_Rising; EXTI_InitStructure.EXTI_LineCmd = ENABLE; EXTI_Init(&EXTI_InitStructure); Cheers, STOne-32.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2011-05-17 4:36 AM
Posted on May 17, 2011 at 13:36
Thanks a lot STOne-32...
