What is this statement used for in remote command parsing rcommand #785
-
Hi, when reading through the code I stumbled across this line. Does anyone know what that increment is for? After executing this statement the function is exited. |
Beta Was this translation helpful? Give feedback.
Answered by
cyberman54
Apr 6, 2021
Replies: 1 comment 1 reply
-
This forwards the cursor (a pointer to commands or arguments) of the command parsing loop to the next command in the buffer, if there is one (while (cursor < cmdlength). This allows to send multiple commands in one downlink. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ScholliYT
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This forwards the cursor (a pointer to commands or arguments) of the command parsing loop to the next command in the buffer, if there is one (while (cursor < cmdlength). This allows to send multiple commands in one downlink.