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
fix(HardwareTimer): handle FDCANx irq when shared with TIMx irq
Application have to declare the phfdcan1 and phfdcan2.Example:FDCAN_HandleTypeDef myhfdcan1;FDCAN_HandleTypeDef *phfdcan1 = &myhfdcan1;#if defined(FDCAN2_BASE)FDCAN_HandleTypeDef *phfdcan2 = NULL;#endifFixes#2224.Signed-off-by: Frederic Pillon <frederic.pillon@st.com>