Skip to content

Commit

Permalink
[stm32xx] wrong interrupt table size
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikaël BRIDAY committed Feb 21, 2024
1 parent 4531eb9 commit ad10093
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ CPU stm32f303 {
};

INTERRUPT_COUNT nb_it {
IT_TABLE_SIZE = 97;
IT_TABLE_SIZE = 90; //74 STM32 interrupt + 16 ARM related interrupts
};

INTERRUPT NMI {SETPRIO = TRUE { NUMBER = -14; };};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ CPU stm32l432 {
};

INTERRUPT_COUNT nb_it {
IT_TABLE_SIZE = 98;
IT_TABLE_SIZE = 77; //61 STM32 interrupts + 16 ARM related interrupts.
};

#include "interruptDefs.oil"
Expand Down

0 comments on commit ad10093

Please sign in to comment.