Skip to content

Commit

Permalink
Merge pull request #504 from AubrCool/fix-can.drv.errors
Browse files Browse the repository at this point in the history
Fix can.drv.errors
  • Loading branch information
BernardXiong committed Jun 17, 2015
2 parents 2fc3397 + 70aedb7 commit 562ac32
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 16 deletions.
30 changes: 15 additions & 15 deletions bsp/stm32f10x/drivers/bxcan.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ static void bxcan2_filter_init(struct rt_can_device *can)
CAN1->FMR |= FMR_FINIT;
mask = 0x01 << (i + 0);
off = i - BX_CAN2_FMRSTART;
if(i < pbxcan->fifo1filteroff) {
if(off < pbxcan->fifo1filteroff) {
if(pbxcan->filtermap[0].id32mask_cnt && off < pbxcan->filtermap[0].id32mask_cnt) {
CAN1->FS1R |= mask;
CAN1->FM1R &= ~mask;
Expand Down Expand Up @@ -586,7 +586,7 @@ static rt_int32_t bxcanfindfilter(struct stm_bxcan *pbxcan,struct rt_can_filter_
if(pitem->rtr) {
thisid |= CAN_RTR_REMOTE;
}
if((off == 0 && pfilterreg->FR1 == thisid) ||
if((*off == 0 && pfilterreg->FR1 == thisid) ||
(*off == 1 && pfilterreg->FR2 == thisid)
) {
found = 1;
Expand Down Expand Up @@ -959,14 +959,14 @@ static rt_err_t control(struct rt_can_device *can, int cmd, void *arg)
break;
case RT_CAN_CMD_SET_BAUD:
argval = (rt_uint32_t) arg;
if(argval != CAN1MBaud ||
argval != CAN800kBaud ||
argval != CAN500kBaud ||
argval != CAN250kBaud ||
argval != CAN125kBaud ||
argval != CAN100kBaud ||
argval != CAN50kBaud ||
argval != CAN20kBaud ||
if(argval != CAN1MBaud &&
argval != CAN800kBaud &&
argval != CAN500kBaud &&
argval != CAN250kBaud &&
argval != CAN125kBaud &&
argval != CAN100kBaud &&
argval != CAN50kBaud &&
argval != CAN20kBaud &&
argval != CAN10kBaud ) {
return RT_ERROR;
}
Expand Down Expand Up @@ -1063,7 +1063,7 @@ static int recvmsg(struct rt_can_device *can, void* buf, rt_uint32_t boxno)
pmsg->id = (uint32_t)0x1FFFFFFF & (pbxcan->sFIFOMailBox[boxno].RIR >> 3);
}

pmsg->rtr = (uint8_t)0x02 & pbxcan->sFIFOMailBox[boxno].RIR;
pmsg->rtr = (uint8_t) ((0x02 & pbxcan->sFIFOMailBox[boxno].RIR) >> 1);
pmsg->len = (uint8_t)0x0F & pbxcan->sFIFOMailBox[boxno].RDTR;
pmsg->data[0] = (uint8_t)0xFF & pbxcan->sFIFOMailBox[boxno].RDLR;
pmsg->data[1] = (uint8_t)0xFF & (pbxcan->sFIFOMailBox[boxno].RDLR >> 8);
Expand Down Expand Up @@ -1127,7 +1127,7 @@ static struct stm_bxcan bxcan1data =
struct rt_can_device bxcan1;
void CAN1_RX0_IRQHandler(void)
{
while(CAN1->RF0R & 0x11)
if(CAN1->RF0R & 0x03)
{
if ((CAN1->RF0R & CAN_RF0R_FOVR0) != 0)
{
Expand All @@ -1141,7 +1141,7 @@ void CAN1_RX0_IRQHandler(void)
}
void CAN1_RX1_IRQHandler(void)
{
while(CAN1->RF1R & 0x11)
if(CAN1->RF1R & 0x03)
{
if ((CAN1->RF1R & CAN_RF1R_FOVR1) != 0)
{
Expand Down Expand Up @@ -1262,7 +1262,7 @@ static struct stm_bxcan bxcan2data =
struct rt_can_device bxcan2;
void CAN2_RX0_IRQHandler(void)
{
while(CAN2->RF0R & 0x11)
if(CAN2->RF0R & 0x03)
{
if ((CAN2->RF0R & CAN_RF0R_FOVR0) != 0)
{
Expand All @@ -1276,7 +1276,7 @@ void CAN2_RX0_IRQHandler(void)
}
void CAN2_RX1_IRQHandler(void)
{
while(CAN2->RF1R & 0x11)
if(CAN2->RF1R & 0x03)
{
if ((CAN2->RF1R & CAN_RF1R_FOVR1) != 0)
{
Expand Down
4 changes: 3 additions & 1 deletion components/drivers/can/can.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ rt_inline int _can_int_rx(struct rt_can_device *can, struct rt_can_msg *data, in
can->hdr[hdr].msgs--;
}
listmsg->owner = RT_NULL;
} else
} else if(hdr == -1)
#endif /*RT_CAN_USING_HDR*/
if (!rt_list_isempty(&rx_fifo->uselist))
{
Expand Down Expand Up @@ -97,6 +97,8 @@ rt_inline int _can_int_rx(struct rt_can_device *can, struct rt_can_msg *data, in
RT_ASSERT(rx_fifo->freenumbers <= can->config.msgboxsz);
rt_hw_interrupt_enable(level);
listmsg = RT_NULL;
} else {
break;
}
data ++; msgs -= sizeof(struct rt_can_msg);
}
Expand Down

0 comments on commit 562ac32

Please sign in to comment.