diff options
Diffstat (limited to 'docs/src/interrupts.dox')
-rw-r--r-- | docs/src/interrupts.dox | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/interrupts.dox b/docs/src/interrupts.dox index cbebe5d5b..64f336f08 100644 --- a/docs/src/interrupts.dox +++ b/docs/src/interrupts.dox @@ -31,7 +31,7 @@ CH_IRQ_HANDLER(myIRQ) { chSysLockFromIsr();
// Invocation of some I-Class system APIs, never preemptable.
- chSysUnlockFromIsr().
+ chSysUnlockFromIsr();
// More IRQ handling code, again preemptable.
|