default cases necessary to complile without warnings

This commit is contained in:
Philip Odom 2018-12-20 16:59:02 -08:00
parent 38e8bd2453
commit e72d2d714a
No known key found for this signature in database
GPG Key ID: DEFE70A0F72F3DFF
2 changed files with 6 additions and 0 deletions

View File

@ -381,7 +381,10 @@ eMBMasterPoll( void )
} }
vMBMasterRunResRelease(); vMBMasterRunResRelease();
break; break;
default:
break;
} }
} }
return MB_ENOERR; return MB_ENOERR;
} }

View File

@ -339,6 +339,9 @@ xMBMasterRTUTransmitFSM( void )
} }
} }
break; break;
default:
break;
} }
return xNeedPoll; return xNeedPoll;