Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Esp32 - W5500 TCP Server #8605

Closed
1 task done
Impavido85 opened this issue Sep 6, 2023 · 9 comments
Closed
1 task done

Esp32 - W5500 TCP Server #8605

Impavido85 opened this issue Sep 6, 2023 · 9 comments
Assignees
Milestone

Comments

@Impavido85
Copy link

Board

Esp32 Dev module

Device Description

DevKit

Hardware Configuration

GPIO

Version

v2.0.11

IDE Name

Arduino IDE

Operating System

windows 10

Flash frequency

80

PSRAM enabled

no

Upload speed

921000

Description

I'm using a w5500 with the esp32 and I need to get both wifi and ethernet working, as a client and as a TCP server. I have not found any examples. If I try to use the Arduino's "Ethernet.h" library, it works as a TCP client but not as a TCP server. When compiling I get the error "virtual void Server::begin(uint16_t)" How can I do? thank you all

Sketch

#include <WiFi.h>
EthernetServer serverTcpEth(portServerTCP);

Debug Message

error: cannot declare variable 'serverTcpEth' to be of abstract type 'EthernetServer'
note:   because the following virtual functions are pure within 'EthernetServer':
 class EthernetServer : public Server {
       ^~~~~~~~~~~~~~
note: 	'virtual void Server::begin(uint16_t)'
     virtual void begin(uint16_t port=0) =0;
                  ^~~~~

Other Steps to Reproduce

No response

I have checked existing issues, online documentation and the Troubleshooting Guide

  • I confirm I have checked existing issues, online documentation and Troubleshooting guide.
@Impavido85 Impavido85 added the Status: Awaiting triage Issue is waiting for triage label Sep 6, 2023
@felmue
Copy link

felmue commented Sep 6, 2023

Hello @Impavido85

this (or similar) issue has been reported before. See here and here.

Thanks
Felix

@Impavido85
Copy link
Author

Hi Felix,
Thanks for the reply. I've read, but I haven't found any solutions.
In my specific case, I need an ethernet TCP server and it doesn't compile either.

@felmue
Copy link

felmue commented Sep 7, 2023

Hello @Impavido85

it looks like it is in the works. See this PR.

Thanks
Felix

@VojtechBartoska VojtechBartoska added Status: Pending and removed Status: Awaiting triage Issue is waiting for triage labels Sep 7, 2023
@VojtechBartoska
Copy link
Contributor

Yes, this is something which will be investigated.

@kapyaar
Copy link

kapyaar commented Sep 7, 2023

@Impavido85 I saw somewhere else to change the server.h line from

virtual void begin(uint16_t port=0) =0;

to

void begin() {};

You can give it a try and see if it works.

@me-no-dev
Copy link
Member

Yes, this is something which will be investigated.

This is an external library that will be made obsolete with 3.0.0 and the ETH updates we have ready there

@Impavido85
Copy link
Author

Are there news? Thanks

@VojtechBartoska
Copy link
Contributor

Relates to #8760

@VojtechBartoska VojtechBartoska removed Resolution: Duplicate Issue is a duplicate of another issue Status: Pending labels Feb 20, 2024
@VojtechBartoska VojtechBartoska modified the milestones: 3.0.0, 3.0.0-RC1 Feb 20, 2024
@VojtechBartoska VojtechBartoska moved this from Todo to In Progress in Arduino ESP32 Core Project Roadmap Feb 20, 2024
@me-no-dev
Copy link
Member

W5500 is natively supported in Arduino v3.0.0 You can use it the same way you use WiFi

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Development

No branches or pull requests

5 participants