Increase the default number of software-limited CAN RX filters across the drivers. Some of these were chosen quite conservative, requiring custom configuration for even simple in-tree samples. Users can reduce the number of available RX filters to reduce RAM footprint as needed. Signed-off-by: Henrik Brix Andersen <henrik@brixandersen.dk>
19 lines
497 B
Plaintext
19 lines
497 B
Plaintext
# NXP SJA1000 configuration options
|
|
|
|
# Copyright (c) 2022 Henrik Brix Andersen <henrik@brixandersen.dk>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config CAN_SJA1000
|
|
bool
|
|
help
|
|
This enables support for the shared NXP SJA1000 CAN driver.
|
|
|
|
config CAN_SJA1000_MAX_FILTERS
|
|
int "Maximum number of concurrent active RX filters"
|
|
depends on CAN_SJA1000
|
|
default 16
|
|
range 1 32
|
|
help
|
|
As the NXP SJA1000 only supports one full-width RX filter, filtering of received CAN
|
|
frames are done in software.
|