Skip to content
Snippets Groups Projects
Commit f355d30e authored by Sandeep Mistry's avatar Sandeep Mistry
Browse files
parents 2a6d8560 5c19b452
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment