File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -443,6 +443,7 @@ def autoapi_prepare_jinja_env(jinja_env):
443
443
# Example configuration for intersphinx: refer to the Python standard library.
444
444
intersphinx_mapping = {"python" : ('https://docs.python.org/3/' , None ),
445
445
"register" : ('https://circuitpython.readthedocs.io/projects/register/en/latest/' , None ),
446
+ "mcp2515" : ('https://circuitpython.readthedocs.io/projects/mcp2515/en/latest/' , None ),
446
447
"typing" : ('https://circuitpython.readthedocs.io/projects/adafruit-circuitpython-typing/en/latest/' , None )}
447
448
448
449
# Adapted from sphinxcontrib-redirects
Original file line number Diff line number Diff line change 27
27
//| """CAN bus access
28
28
//|
29
29
//| The `canio` module contains low level classes to support the CAN bus
30
- //| protocol.
30
+ //| protocol on microcontrollers that have built-in CAN peripherals.
31
+ //|
32
+ //| Boards like the Adafruit RP2040 CAN Bus Feather that use an MCP2515 or
33
+ //| compatible chip use the `mcp2515:adafruit_mcp2515` module instead.
31
34
//|
32
35
//| CAN and Listener classes change hardware state and should be deinitialized when they
33
36
//| are no longer needed if the program continues after use. To do so, either
You can’t perform that action at this time.
0 commit comments