mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-08-21 07:30:35 +08:00
Fixed the CAN acceptance filter initialization in the STM32 driver
This commit is contained in:
@@ -472,7 +472,8 @@ uavcan::int16_t CanIface::configureFilters(const uavcan::CanFilterConfig* filter
|
||||
{
|
||||
can_->FilterRegister[filter_start_index].FR1 = 0;
|
||||
can_->FilterRegister[filter_start_index].FR2 = 0;
|
||||
can_->FA1R = 1 << filter_start_index;
|
||||
// We can't directly overwrite FA1R because that breaks the other CAN interface
|
||||
can_->FA1R |= 1U << filter_start_index; // Other filters may still be enabled, we don't care
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user