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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Leder
marlin-anet-a8
Commits
833c2e54
Commit
833c2e54
authored
6 years ago
by
Scott Lahteine
Browse files
Options
Downloads
Patches
Plain Diff
Add an empty flushTX to MarlinSerialUSB_Due
parent
38363902
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Marlin/src/HAL/HAL_DUE/MarlinSerialUSB_Due.cpp
+2
-2
2 additions, 2 deletions
Marlin/src/HAL/HAL_DUE/MarlinSerialUSB_Due.cpp
Marlin/src/HAL/HAL_DUE/MarlinSerialUSB_Due.h
+1
-0
1 addition, 0 deletions
Marlin/src/HAL/HAL_DUE/MarlinSerialUSB_Due.h
with
3 additions
and
2 deletions
Marlin/src/HAL/HAL_DUE/MarlinSerialUSB_Due.cpp
+
2
−
2
View file @
833c2e54
...
...
@@ -114,8 +114,8 @@ bool MarlinSerialUSB::available(void) {
(
usb_task_cdc_isenabled
()
&&
udi_cdc_is_rx_ready
());
}
void
MarlinSerialUSB
::
flush
(
void
)
{
}
void
MarlinSerialUSB
::
flush
(
void
)
{
}
void
MarlinSerialUSB
::
flushTX
(
void
)
{
}
void
MarlinSerialUSB
::
write
(
const
uint8_t
c
)
{
...
...
This diff is collapsed.
Click to expand it.
Marlin/src/HAL/HAL_DUE/MarlinSerialUSB_Due.h
+
1
−
0
View file @
833c2e54
...
...
@@ -46,6 +46,7 @@ public:
static
int
peek
(
void
);
static
int
read
(
void
);
static
void
flush
(
void
);
static
void
flushTX
(
void
);
static
bool
available
(
void
);
static
void
write
(
const
uint8_t
c
);
...
...
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