Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Add non-blocking serial break/unbreak functions #8671

Merged
merged 1 commit into from
Nov 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions drivers/SerialBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,20 @@ int SerialBase::_base_putc(int c)
return c;
}

void SerialBase::set_break()
{
lock();
serial_break_set(&_serial);
mray190 marked this conversation as resolved.
Show resolved Hide resolved
unlock();
}

void SerialBase::clear_break()
{
lock();
serial_break_clear(&_serial);
unlock();
}

void SerialBase::send_break()
{
lock();
Expand Down
10 changes: 10 additions & 0 deletions drivers/SerialBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,16 @@ class SerialBase : private NonCopyable<SerialBase> {
attach(callback(obj, method), type);
}

/** Generate a break condition on the serial line
* NOTE: Clear break needs to run at least one frame after set_break is called
*/
void set_break();

/** Clear a break condition on the serial line
* NOTE: Should be run at least one frame after set_break is called
*/
void clear_break();

/** Generate a break condition on the serial line
*/
void send_break();
Expand Down