[KINETIS] Fixed issue with PIT channel IRQ on stop

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8428 35acf78f-673a-0410-8e92-d51de3d6d3f4
master
Fabio Utzig 2015-11-03 10:29:49 +00:00
parent ad4a9e2fe3
commit c1d68c3bfd
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ void gpt_lld_stop(GPTDriver *gptp) {
#endif
#if KINETIS_GPT_USE_PIT3
if (&GPTD4 == gptp) {
nvicDisableVector(PITChannel4_IRQn);
nvicDisableVector(PITChannel3_IRQn);
}
#endif
}