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

The used network controller should be configurable from the sketch #58

Open
Anton-V-K opened this issue Feb 19, 2022 · 15 comments
Open

Comments

@Anton-V-K
Copy link

The approach with selecting the network controller inside the library's config.h is hardly usable in real projects - it is impossible to tweak it for every build.

There are several approaches which can address this issue:

  1. Wrap #define NETWORK_CONTROLLER ETHERNET_CONTROLLER_W5X00 with #ifnded NETWORK_CONTROLLER and #endif so if the build system support global defines, the project will choose the proper network controller.
  2. Do a meaningful guess of the network controller (e.g., when ESP8266 or ESP32 is defined, the chances are high that WiFi is used), so for rigid build systems (like the one in Arduino IDE) the library can be used as is.

Environment info

  • IDE w/version: Arduino IDE 1.8.16
  • Platform/Board: esp8266
  • Network controller (shield or module): WiFi
@skaarj1989
Copy link
Owner

I've been thinking about refactoring into templates.
No more #define NETWORK_CONTROLLER in config.h. Instead, you will need to specialize the client/server.

WebSocketServer<WifiServer, WiFiClient> server;
WebSocketClient<EthernetClient> client;

Additionally you could use multiple network controllers in a single (more powerful) board.

@skaarj1989
Copy link
Owner

Initial commit pushed into the meta branch.

@infrafast
Copy link

infrafast commented Dec 4, 2023

thanks for your library, sorry for my noob questions:

  1. WebSocketServer<EthernetServer, EthernetClient> server;
    will instantiate a server that serves Eth ?

2): did you merge that to the main branch as for sure this would be much better than using #define

  1. I would like to be able to connect my socket server both wifi WiFi and Eth, would that be achievable with your library

thanks for your feedback

@skaarj1989
Copy link
Owner

@infrafast

  1. Yes
  2. No
  3. Yes

@infrafast
Copy link

Thanks for your rapid answer, I guess the main which is more recent has some improvement that meta do not have ? if that's the case would you be ok to merge your code from meta to main after if I sucessfully test templates with my code and provide you feedback, or is anything preventing to merge now ? thanks!

@skaarj1989
Copy link
Owner

Why do you insist on merging to master? Is there anything that prevents you from using the meta branch?
Using multiple network controllers on a single MCU is an edge case. In two years you are the second one who asked for that feature.

BTW the library (also the meta branch) is tested with autobahn testsuite.

@infrafast
Copy link

I can leave with that, it's just in term of maintenance, I guess it's better to always stick to the main whenever possible, and TBH I am not so familiar in using git... Quick practical question, I have this line in my platformIO.ini
skaarj1989/mWebSockets@^1.5.0
do you mind telling me how I should change it to use the meta branch ?

@skaarj1989
Copy link
Owner

Looks like a branch/tag should be put after # character, so you could try:
https://github.com/skaarj1989/mWebSockets#meta

@infrafast
Copy link

great, I am able to compile using the meta branch.
things works well, when I use WiFi but if I force the usage of ethernet using the if directive, I got bellow error message when compiling, would you have any idea why?

.pio/libdeps/proto/mWebSockets/src/WebSocket.hpp:298:28: error: passing 'const EthernetClient' as 'this' argument discards qualifiers [-fpermissive]

#if 0
using NetClient = WiFiClient;
using NetServer = WiFiServer;
#else
using NetClient = EthernetClient;
using NetServer = EthernetServer;
#endif

@skaarj1989
Copy link
Owner

Which MCU?

@infrafast
Copy link

infrafast commented Dec 5, 2023

PLATFORM: Espressif 32 (6.4.0) > Seeed Studio XIAO ESP32C3
HARDWARE: ESP32C3 160MHz, 320KB RAM, 4MB Flash
PACKAGES:

  • framework-arduinoespressif32 @ 3.20011.230801 (2.0.11)

@skaarj1989
Copy link
Owner

Fixed.
Could you confirm?

@infrafast
Copy link

Yes, it works, thanks a lot for your work and support. I understood that my case to have both WiFi and Eth is not the most common so I don't want to bother. Still, would you route me to a possible solution to instantiate the proper object (Eth / WiFi) at run time and not at compilation time, as simple example ?
I was thinking about creating a pointer to WebSocketServer and then be able to use the same code however I don't know how to do that with/without template ?

@Anton-V-K
Copy link
Author

possible solution to instantiate the proper object (Eth / WiFi) at run time and not at compilation time, as simple example ?

I believe, this is a good question for a separate discussion :)

@infrafast
Copy link

OK, added the discussion, I think this issue can therefore be closed ?

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

No branches or pull requests

3 participants