Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-nRF5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-nRF5
Commits
c0eeb9c0
Commit
c0eeb9c0
authored
Jan 21, 2019
by
Manuel Koetter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix for "undefined reference to `vtable for HardwareSerial'"
parent
dd9a92d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
cores/nRF5/HardwareSerial.h
cores/nRF5/HardwareSerial.h
+3
-3
No files found.
cores/nRF5/HardwareSerial.h
View file @
c0eeb9c0
...
@@ -67,9 +67,9 @@
...
@@ -67,9 +67,9 @@
class
HardwareSerial
:
public
Stream
class
HardwareSerial
:
public
Stream
{
{
public:
public:
virtual
void
begin
(
unsigned
long
);
virtual
void
begin
(
unsigned
long
)
=
0
;
virtual
void
begin
(
unsigned
long
baudrate
,
uint16_t
config
);
virtual
void
begin
(
unsigned
long
baudrate
,
uint16_t
config
)
=
0
;
virtual
void
end
();
virtual
void
end
()
=
0
;
virtual
int
available
(
void
)
=
0
;
virtual
int
available
(
void
)
=
0
;
virtual
int
peek
(
void
)
=
0
;
virtual
int
peek
(
void
)
=
0
;
virtual
int
read
(
void
)
=
0
;
virtual
int
read
(
void
)
=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment