You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2022/05/03 17:38:32 UTC

[incubator-nuttx] branch master updated: MCAN_INT_ACKE must be on the list of MCAN_TXERR_INTS to be properly handeled

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 6e8c32e778 MCAN_INT_ACKE must be on the list of MCAN_TXERR_INTS to be properly handeled
6e8c32e778 is described below

commit 6e8c32e77896094f19f57a9672a097f4138c7186
Author: Simon Filgis <si...@ingenieurbuero-filgis.de>
AuthorDate: Tue May 3 16:33:05 2022 +0200

    MCAN_INT_ACKE must be on the list of MCAN_TXERR_INTS to be properly handeled
---
 arch/arm/src/samv7/sam_mcan.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/arm/src/samv7/sam_mcan.c b/arch/arm/src/samv7/sam_mcan.c
index 6680fdc9d7..fd5aabd6ea 100644
--- a/arch/arm/src/samv7/sam_mcan.c
+++ b/arch/arm/src/samv7/sam_mcan.c
@@ -777,7 +777,8 @@
                             MCAN_INT_TEFL)
 #define MCAN_TXDEDBUF_INTS MCAN_TXCOMMON_INTS
 
-#define MCAN_TXERR_INTS    (MCAN_INT_TEFL | MCAN_INT_PEA | MCAN_INT_PED)
+#define MCAN_TXERR_INTS    (MCAN_INT_TEFL | MCAN_INT_PEA | MCAN_INT_PED | \
+                            MCAN_INT_ACKE)
 
 /* Common-, TX- and RX-Error-Mask */