Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Arduino Core for SAMD21 CPU
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
josc941e
Arduino Core for SAMD21 CPU
Commits
f355d30e
Commit
f355d30e
authored
9 years ago
by
Sandeep Mistry
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
https://github.com/spiderkeys/ArduinoCore-samd
parents
2a6d8560
5c19b452
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/Wire/Wire.h
+18
-1
18 additions, 1 deletion
libraries/Wire/Wire.h
with
18 additions
and
1 deletion
libraries/Wire/Wire.h
+
18
−
1
View file @
f355d30e
...
...
@@ -106,6 +106,23 @@ class TwoWire : public Stream
//static const uint32_t XMIT_TIMEOUT = 100000;
};
extern
TwoWire
Wire
;
#if WIRE_INTERFACES_COUNT > 0
extern
TwoWire
Wire
;
#endif
#if WIRE_INTERFACES_COUNT > 1
extern
TwoWire
Wire1
;
#endif
#if WIRE_INTERFACES_COUNT > 2
extern
TwoWire
Wire2
;
#endif
#if WIRE_INTERFACES_COUNT > 3
extern
TwoWire
Wire3
;
#endif
#if WIRE_INTERFACES_COUNT > 4
extern
TwoWire
Wire4
;
#endif
#if WIRE_INTERFACES_COUNT > 5
extern
TwoWire
Wire5
;
#endif
#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