Skip to content
Snippets Groups Projects
Commit 0b3ff976 authored by Gregory Nutt's avatar Gregory Nutt
Browse files

Fix an error in SLIP escaping

parent cab24a4b
No related branches found
No related tags found
No related merge requests found
......@@ -355,12 +355,12 @@ static int slip_transmit(FAR struct slip_driver_s *priv)
if (len > 0)
{
slip_write(priv, start, len);
}
/* Reset */
/* Reset */
start = src + 1;
len = 0;
}
start = src + 1;
len = 0;
/* Then send the escape sequence */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment