Re: [riot-devel] ESP8266 Port and Networking

2018-03-26 Thread Gunar Schorcht
Hi David, Peter, many thanks for your answers. I was already thinking about using MQTT on top of UDP which shouldn't be a problem to implement. My question was a bit different. From my understanding RIOT-OS is designed for meshed networks and the GNRC is the core element of networking. It uses de

Re: [riot-devel] ESP8266 Port and Networking

2018-03-26 Thread David Lyon
On 2018-03-26 18:25, Peter Kietzmann wrote: > Hi Gunar, David, > > I think implementing against the sock API make most sense: > > http://riot-os.org/api/group__net__sock.html > > Have a look at this PR which intends to port the ESP as an AT-based > network device: > > https://github.com/RIOT-O

Re: [riot-devel] ESP8266 Port and Networking

2018-03-26 Thread Peter Kietzmann
Hi Gunar, David, I think implementing against the sock API make most sense: http://riot-os.org/api/group__net__sock.html Have a look at this PR which intends to port the ESP as an AT-based network device: https://github.com/RIOT-OS/RIOT/pull/5898 Best Peter https://github.com/RIOT-OS/RIOT/pu

Re: [riot-devel] ESP8266 Port and Networking

2018-03-26 Thread Stefan Schmidt
Hello. On 03/25/2018 03:33 AM, Gunar Schorcht wrote: > Hello, > > most parts of my RIOT-OS port to the ESP8266 has been implemented. GPIO, > SPI, I2C, UART, PWM seem to be ready and most of local applications are > working. > > However, RIOT-OS makes no real sense without networking. Unfortunatel