git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4632 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2012-09-02 18:02:56 +00:00
parent cf3cee51d1
commit a0e4706757
1 changed files with 2 additions and 0 deletions

View File

@ -172,6 +172,8 @@ void ext_lld_channel_disable(EXTDriver *extp, expchannel_t channel) {
EXTI->IMR &= ~(1 << channel);
EXTI->EMR &= ~(1 << channel);
EXTI->RTSR &= ~(1 << channel);
EXTI->FTSR &= ~(1 << channel);
EXTI->PR = (1 << channel);
}