Software interrupt
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2008-01-13 10:42 PM
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 12:49 AM
Posted on May 17, 2011 at 09:49
Look in the Keil directory for the swi example.
Cheers sjoOptions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2011-05-17 12:49 AM
Posted on May 17, 2011 at 09:49
Hello,
I am using the Keil uVision with the STR91x.lib. Now I want to implement a software interrupt with the SWI_Handler(void) in 91x_it.c. If I call SWI_Handler() in the main(), it's jumping to SWI_Handler(void) in 91x_it.c. But the system is in user mode. How have I handle software interrupts?? I can't find an example with SWI_Handler from ST. ThanksOptions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2011-05-17 12:49 AM
Posted on May 17, 2011 at 09:49
The SWI_Handler will called in supervisor-mode with following:
void __swi(0) swi_func (void); call: swi_func(); Thanks for your help.