STM32 CAN滤波器设置Identifier filter_我的嵌入式(硬件)学习之路_ ...

stm32的屏蔽滤波功能对ID是有要求的,mpc2515你可以直接写ID,但在STM32 这里ID必须进行移位处理.

对照下表:


Extended Id滤波器设置(已验证,只接受Receive_ID节点的数据):

/* CAN filter init */ //设置成只能接受主节点 Extended Id:01 的数据   reference manual p557
CAN_FilterInitStructure.CAN_FilterNumber=0;
CAN_FilterInitStructure.CAN_FilterMode=CAN_FilterMode_IdMask;
//CAN_FilterInitStructure.CAN_FilterMode=CAN_FilterMode_IdList;//###########################################
CAN_FilterInitStructure.CAN_FilterScale=CAN_FilterScale_32bit;
CAN_FilterInitStructure.CAN_FilterIdHigh=(((u32)Receive_ID<<3)&0xFFFF0000)>>16;
CAN_FilterInitStructure.CAN_FilterIdLow=(((u32)Receive_ID<<3)|CAN_ID_EXT|CAN_RTR_DATA)&0xFFFF;
CAN_FilterInitStructure.CAN_FilterMaskIdHigh=0xFFFF;
CAN_FilterInitStructure.CAN_FilterMaskIdLow=0xFFFF; // 1 :must match” or 0: as “don’t care
CAN_FilterInitStructure.CAN_FilterFIFOAssignment=0;
CAN_FilterInitStructure.CAN_FilterActivation=ENABLE;
CAN_FilterInit(&CAN_FilterInitStructure);

Standard Id滤波器设置:


CAN_FilterMaskId 位的含义是

Mask
Each bit of the register specifies whether the bit of the associated identifier register must
match with the corresponding bit of the expected identifier or not.
0: Don’t care, the bit is not used for the comparison
1: Must match, the bit of the incoming identifier must have the same level has specified in
the corresponding identifier register of the filter.

我们这里全部设置成1   ,也就是只接受CAN_Filter中设置的节点的数据



郑重声明:资讯 【STM32 CAN滤波器设置Identifier filter_我的嵌入式(硬件)学习之路_ ...】由 发布,版权归原作者及其所在单位,其原创性以及文中陈述文字和内容未经(企业库qiyeku.com)证实,请读者仅作参考,并请自行核实相关内容。若本文有侵犯到您的版权, 请你提供相关证明及申请并与我们联系(qiyeku # qq.com)或【在线投诉】,我们审核后将会尽快处理。
—— 相关资讯 ——