Skip to content
Closed
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions ArduinoCore-Linux/cores/arduino/UDP.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
EthernetUDP.cpp
UDP.cpp
Copyright (c) 2025 Phil Schatzmann. All right reserved.

This library is free software; you can redistribute it and/or
Expand All @@ -16,7 +16,7 @@
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "EthernetUDP.h"
#include "EthernetUdp.h"
Copy link

Copilot AI Apr 2, 2026

Choose a reason for hiding this comment

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

This change updates the include to the canonical EthernetUdp.h, but the repo currently contains both EthernetUdp.h and EthernetUDP.h (they only differ by case). Having both files in the same directory can break checkouts/builds on case-insensitive filesystems (e.g., Windows/macOS default). To fully resolve the case-sensitivity issue, consider removing the duplicate header and standardizing on a single filename throughout the codebase.

Copilot uses AI. Check for mistakes.
#include <errno.h>
#include <fcntl.h>
#include <netdb.h>
Expand Down Expand Up @@ -292,4 +292,4 @@ void EthernetUDP::log_e(const char *msg, int errorNo) {
Logger.error(errorStr);
}

} // namespace arduino
} // namespace arduino
2 changes: 1 addition & 1 deletion ArduinoCore-Linux/cores/arduino/UDP.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
EthernetUDP.h
UDP.h
Copyright (c) 2025 Phil Schatzmann. All right reserved.

This library is free software; you can redistribute it and/or
Expand Down
Loading