bool SerialTransfer::tick() Description: ------------ * Checks to see if any packets have been fully parsed. This is basically a wrapper around the method "available()" and is used primarily in conjunction with callbacks Inputs: ------- * void Return: ------- * bool - Whether or not a full packet has been parsed */
| 137 | * bool - Whether or not a full packet has been parsed |
| 138 | */ |
| 139 | bool SerialTransfer::tick() |
| 140 | { |
| 141 | if (available()) |
| 142 | return true; |
| 143 | |
| 144 | return false; |
| 145 | } |
| 146 | |
| 147 | |
| 148 | /* |
nothing calls this directly
no outgoing calls
no test coverage detected