Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Disabling error interrupt conditions
  • Loading branch information
maidnl committed Jan 9, 2026
commit 5b1a2469d9d5fe1e9a8c7dabc5e09051a66bd034
2 changes: 1 addition & 1 deletion libraries/Arduino_CAN/src/R7FA6M5_CAN.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ R7FA6M5_CAN::R7FA6M5_CAN(int const can_tx_pin, int const can_rx_pin)
.p_afl = nullptr,
//.txmb_txi_enable = ((1ULL << 9) | (1ULL << 0) | 0ULL),
.txmb_txi_enable = 0xFFFFFFFFFFFFFFFF,
.error_interrupts = (R_CANFD_CFDC_CTR_EWIE_Msk | R_CANFD_CFDC_CTR_EPIE_Msk | R_CANFD_CFDC_CTR_BOEIE_Msk | R_CANFD_CFDC_CTR_BORIE_Msk | R_CANFD_CFDC_CTR_OLIE_Msk | 0U),
.error_interrupts = 0U,
.p_data_timing = nullptr,
.delay_compensation = (1),
.p_global_cfg = &_canfd_global_cfg,
Expand Down