Skip to content

Commit

Permalink
firmware: drivers: isr: Suppressing rule 8.4 for dma isr routine #124
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel committed Oct 25, 2023
1 parent 218e8ef commit 0f3adfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firmware/drivers/isr/isr.c
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ __interrupt void USCI_B2_ISR(void) // cppcheck-suppress misra-c2012-8.4
}

#pragma vector=DMA_VECTOR
__interrupt void DMA0_ISR(void)
__interrupt void DMA0_ISR(void) // cppcheck-suppress misra-c2012-8.4
{
switch (__even_in_range(DMAIV, 16))
{
Expand Down

0 comments on commit 0f3adfd

Please sign in to comment.