Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
marlin-anet-a8
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Leder
marlin-anet-a8
Commits
3571dd0a
Commit
3571dd0a
authored
Oct 14, 2017
by
Scott Lahteine
Browse files
Options
Downloads
Patches
Plain Diff
Fix Emergency Parser
Followup to #7459
parent
22c968ee
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Marlin/MarlinSerial.cpp
+2
-2
2 additions, 2 deletions
Marlin/MarlinSerial.cpp
with
2 additions
and
2 deletions
Marlin/MarlinSerial.cpp
+
2
−
2
View file @
3571dd0a
...
...
@@ -175,12 +175,12 @@
// If the character is to be stored at the index just before the tail
// (such that the head would advance to the current tail), the buffer is
// critical, so don't write the character or advance the head.
const
char
c
=
M_UDRx
;
if
(
i
!=
rx_buffer
.
tail
)
{
rx_buffer
.
buffer
[
h
]
=
M_UDRx
;
rx_buffer
.
buffer
[
h
]
=
c
;
rx_buffer
.
head
=
i
;
}
else
{
(
void
)
M_UDRx
;
#if ENABLED(SERIAL_STATS_DROPPED_RX)
if
(
!++
rx_dropped_bytes
)
++
rx_dropped_bytes
;
#endif
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment