Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion libraries/Network/src/NetworkUdp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,9 @@ size_t NetworkUDP::write(const uint8_t *buffer, size_t size) {
}

void NetworkUDP::flush() {
clear();
clear();
/* Reset tx buffer length */
tx_buffer_len = 0;
Comment on lines 293 to +296

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indentation style in this file is using 2 spaces, please don't change that.

}

int NetworkUDP::parsePacket() {
Expand Down
Loading