Skip to content

Commit 847a80b

Browse files
committed
ethernet: add dummy implementation of setRetransmissionTimeout, setRetransmissionCount
1 parent 809330c commit 847a80b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

libraries/Ethernet/src/Ethernet.cpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,5 +80,13 @@ void EthernetClass::end() {
8080
disconnect();
8181
}
8282

83+
void EthernetClass::setRetransmissionTimeout(uint16_t milliseconds) {
84+
(void)milliseconds;
85+
}
86+
87+
void EthernetClass::setRetransmissionCount(uint8_t num) {
88+
(void)num;
89+
}
90+
8391
EthernetClass Ethernet;
8492
#endif

0 commit comments

Comments
 (0)