-->
Page 29 of 77

Re: "universal I/O bridge"

PostPosted: Fri Sep 09, 2016 1:33 am
by PumpkinEater
Thanks for your quick reply. I tried to change the config.h to accept 64bit passwords

Code: Select alltypedef struct
{
   char ssid[32];
   char passwd[64];
   uint8_t   channel;
} config_ssid_t;
...
_Static_assert(offsetof(config_t, flags) == 204, "offset");

it compiled well, but as you said that might be not enough or the wrong way.
My password currently has 52 Bytes. As workaround I could properly introduce a second wifi network with shorter password.

Re: "universal I/O bridge"

PostPosted: Sat Sep 10, 2016 2:16 am
by eriksl
I'm not sure if the API even allows for such large passwords ;)

But it may very well be that somewhere in-between there is also a limiting factor. I can't check it easily because almost all code has hade some changes last weeks.

And BTW, yes, I also have an extra SSID for the ESP's, because I don't trust them securitywise to the same level as my other devices. This SSID is behind a firewall.

Re: "universal I/O bridge"

PostPosted: Thu Dec 22, 2016 1:05 pm
by eriksl
New release 15.

Most important change is the addition of UDP sockets. Both command control and uart bridge can now be used with both tcp and udp, simultanuously.

https://github.com/eriksl/esp8266-unive ... e/releases

Re: "universal I/O bridge"

PostPosted: Sun Dec 25, 2016 5:56 am
by eriksl
Now also added multicast listening.