-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#45 Fixes to compilation issues in udp/spi systems
- Loading branch information
Robert
committed
Dec 23, 2022
1 parent
2d14d52
commit f742a5f
Showing
15 changed files
with
107 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.zcode</groupId> | ||
<artifactId>zcode-receivers-spi</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>zcode-receivers-spi-all</artifactId> | ||
<packaging>nar</packaging> | ||
<name>Zcode full peripheral set</name> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.zcode</groupId> | ||
<artifactId>zcode-receivers-spi-for-wiznet</artifactId> | ||
<version>${project.version}</version> | ||
<type>nar</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.zcode</groupId> | ||
<artifactId>zcode-receivers-spi-for-wiznet-stm32</artifactId> | ||
<version>${project.version}</version> | ||
<type>nar</type> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.zcode</groupId> | ||
<artifactId>zcode-receivers-udp</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>zcode-receivers-udp-all</artifactId> | ||
<packaging>nar</packaging> | ||
<name>Zcode full peripheral set</name> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.zcode</groupId> | ||
<artifactId>zcode-receivers-udp-core</artifactId> | ||
<version>${project.version}</version> | ||
<type>nar</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.zcode</groupId> | ||
<artifactId>zcode-receivers-wiznet-udp-ll</artifactId> | ||
<version>${project.version}</version> | ||
<type>nar</type> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -141,9 +141,9 @@ class EthernetUDP: public UDP { | |
* [email protected] 12/30/2008 | ||
*/ | ||
|
||
#include "../../../wiznet-udp/lowlevel/src/Ethernet.h" | ||
#include "../../../wiznet-udp/lowlevel/src/Dns.h" | ||
#include "../../../wiznet-udp/lowlevel/src/utility/w5100.h" | ||
#include "Ethernet.h" | ||
#include "Dns.h" | ||
#include "utility/w5100.h" | ||
|
||
/* Start EthernetUDP socket, listening at local port PORT */ | ||
template<class LL> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters