diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-06-11 18:19:53 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-06-27 10:50:23 -0400 |
commit | f5d5f53914d46dfccdd21399e44f8af71a8f345a (patch) | |
tree | 4ec476dccec577efd9fcca32d488401bb664d17e /src/Kconfig | |
parent | 84b2bfe3135990983d55fd4d530139cf8ddb1f33 (diff) | |
download | kutter-f5d5f53914d46dfccdd21399e44f8af71a8f345a.tar.gz kutter-f5d5f53914d46dfccdd21399e44f8af71a8f345a.tar.xz kutter-f5d5f53914d46dfccdd21399e44f8af71a8f345a.zip |
stm32: Add support for disabling the canbus filter
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig index eba05243..79cb4182 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -83,6 +83,9 @@ config CANSERIAL config CANBUS_FREQUENCY int "CAN bus speed" if LOW_LEVEL_OPTIONS && CANSERIAL default 500000 +config CANBUS_FILTER + bool + default y if CANSERIAL # Support setting gpio state at startup config INITIAL_PINS |