Re: ESP8266 support

2021-06-03 Thread Gregory Nutt
Then I had 2 doubts: 1. How to use the UART interface inside a device driver? Do you mean the apps/netutils/esp8266 code?  That is not a device driver, it is an application.  It uses the serial driver interface /dev/ttySx:  open(), close(), read(), write(), etc. Inside of the OS under nu

Re: ESP8266 support

2021-06-03 Thread Flavio Castro Alves Filho
To be honest, I started to work that way :-) Then I had 2 doubts: 1. How to use the UART interface inside a device driver? 2. Is it ok to duplicate the AT commands? Maybe this question was answered :-) Best regards, Flavio Em qui., 3 de jun. de 2021 às 12:53, Gregory Nutt escreveu: > > > >> L

Re: ESP8266 support

2021-06-03 Thread Gregory Nutt
Looking at NuttX source code, I couldn't find any example of an application that implements the ESP8266 functions. Is there any place where I can find reference for this use? There is a separate application in apps/netutils/esp8266. I've never tried it though, so I don't now about its state.

Re: ESP8266 support

2021-06-03 Thread Flavio Castro Alves Filho
Em qui., 3 de jun. de 2021 às 11:33, Abdelatif Guettouche escreveu: > > > Looking at NuttX source code, I couldn't find any example of an > > application that implements the ESP8266 functions. Is there any place > > where I can find reference for this use? > > There is a separate application in ap

Re: ESP8266 support

2021-06-03 Thread Flavio Castro Alves Filho
Em qui., 3 de jun. de 2021 às 11:28, Grr escreveu: > > There's a protocol to use SPI as network link, which obviously has much > bigger bandwidth and potential > > If you're not in a hurry to implement the solution and are interested in > developing a better one, count me in My hardware is closed

Re: ESP8266 support

2021-06-03 Thread Abdelatif Guettouche
> Looking at NuttX source code, I couldn't find any example of an > application that implements the ESP8266 functions. Is there any place > where I can find reference for this use? There is a separate application in apps/netutils/esp8266. I've never tried it though, so I don't now about its state

Re: ESP8266 support

2021-06-03 Thread Grr
There's a protocol to use SPI as network link, which obviously has much bigger bandwidth and potential If you're not in a hurry to implement the solution and are interested in developing a better one, count me in El jue., 3 de jun. de 2021 9:02 AM, Flavio Castro Alves Filho < flavio.al...@gmail.c

Re: ESP8266 support

2021-06-03 Thread Flavio Castro Alves Filho
Hello, I am using UART. Em qui., 3 de jun. de 2021 às 10:44, Grr escreveu: > > What physical link will you use to connect 8266 and main board? > > Your project is very interesting and opens a lot of potential for > inexpensive distributed control > > El jue., 3 de jun. de 2021 8:27 AM, Flavio C

Re: ESP8266 support

2021-06-03 Thread Grr
What physical link will you use to connect 8266 and main board? Your project is very interesting and opens a lot of potential for inexpensive distributed control El jue., 3 de jun. de 2021 8:27 AM, Flavio Castro Alves Filho < flavio.al...@gmail.com> escribió: > Hello, > > I am working on the int