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-pico
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-pico
Commits
1926473f
Commit
1926473f
authored
Mar 26, 2021
by
Earle F. Philhower, III
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid compile error when debug port unspecified
Fixes #23
parent
ac867d71
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
cores/rp2040/main.cpp
cores/rp2040/main.cpp
+6
-0
No files found.
cores/rp2040/main.cpp
View file @
1926473f
...
...
@@ -24,7 +24,9 @@ extern void setup();
extern
void
loop
();
extern
"C"
int
main
()
{
#if defined DEBUG_RP2040_PORT
DEBUG_RP2040_PORT
.
begin
();
#endif
setup
();
while
(
1
)
{
loop
();
...
...
@@ -59,7 +61,11 @@ extern "C" int main() {
extern
"C"
int
errno
;
extern
"C"
ssize_t
_write
(
int
fd
,
const
void
*
buf
,
size_t
count
)
{
#if defined DEBUG_RP2040_PORT
return
DEBUG_RP2040_PORT
.
write
((
const
char
*
)
buf
,
count
);
#else
return
0
;
#endif
}
extern
"C"
int
_chown
(
const
char
*
path
,
uid_t
owner
,
gid_t
group
)
{
...
...
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