Document values of CAN bus Constants
Hi,
Since CAN.send() have no error code returned, I've to check CAN.state() and got 4. But what 4 stand for? Then I've to search code to figure out this error code.
So, it's very convenient if values of CAN bus Constants can be documented clearly.

[STM32F446RE] NUCLEO board enable CAN bus support
I have declared CAN1 and CAN2 pins in mpconfigboard.h. It has compiled well and without errors or warnings.
The only issue is that I can't bring it up.
I have the Logic Analyser connected to CAN RX and CAN TX pins (also tried with TJA1050) which are PB8 and PB9. When running the code:
from pyb import CAN
can = CAN(1, CAN.NORMAL)
# can = CAN(1, CAN.NORMAL, prescaler=2, sjw=1, bs1=14, bs2=6)
can.send('message!', 123)
I see no reaction.
I'm curious if I have missed something or It's not that easy to enable an extra interface.
PS. There was no Crystal soldered, later I have soldered one with 8MHz but nothing changed.