default cases necessary to complile without warnings
This commit is contained in:
parent
38e8bd2453
commit
e72d2d714a
|
@ -381,7 +381,10 @@ eMBMasterPoll( void )
|
|||
}
|
||||
vMBMasterRunResRelease();
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
return MB_ENOERR;
|
||||
}
|
||||
|
|
|
@ -339,6 +339,9 @@ xMBMasterRTUTransmitFSM( void )
|
|||
}
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return xNeedPoll;
|
||||
|
|
Loading…
Reference in New Issue