Skip to content

Commit

Permalink
[stm32] Fix compilation error when Exti::disconnect() is used
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-durand authored and twast92 committed Sep 2, 2023
1 parent 3395235 commit c9e5227
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modm/platform/extint/stm32/exti.hpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ public:
NVIC_DisableIRQ(IRQn_Type(vector));
}
template< class Pin > static void
disableVector(uint8_t priority) { disableVector(getVectorForLine(Pin::pin)); }
disableVector() { disableVector(getVectorForLine(Pin::pin)); }

inline static void
disableVectors(MaskType mask)
Expand Down

0 comments on commit c9e5227

Please sign in to comment.