You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your enhancement proposal related to a problem? Please describe.
The CAN drivers check the bus-timing parameters only at run-time with code like __ASSERT(cfg->sjw >= 1, "SJW minimum is 1");. Hence, errors are only thrown when asserts are turned on.
Describe the solution you'd like
Make the tests failing at compile-time.
Add the same chacks for every driver.
The text was updated successfully, but these errors were encountered:
Is your enhancement proposal related to a problem? Please describe.
The CAN drivers check the bus-timing parameters only at run-time with code like
__ASSERT(cfg->sjw >= 1, "SJW minimum is 1");
. Hence, errors are only thrown when asserts are turned on.Describe the solution you'd like
The text was updated successfully, but these errors were encountered: