I'm working with a brand new ESP8266, I bought it on a sparkfun ESP 8266 <<The Thing>> development board: https://learn.sparkfun.com/tutorials/es ... troduction
I've connected the Rx and Tx pins to a dsPIC33 Microchip Tx and Rx pins that i have on an old explorer16 development board with an embedded LCD display. (picture 1 "Overview")
The Explorer16 board connects the two UART modules of the dsPIC33 into a socket, I've configured the UART modules in 1 stop bit, no parity and 8 data bits and 115200 baud rate speed, and I've tried to send the "AT\r\n" command to the ESP8266 microchip, but I don't get any answer from it.
I know that the UART module on my dsPIC33 is working fine, because I also have a bluetooth HC-06 device that also uses the AT commands, and I can connect the HC-06 device to the dsPIC33, establish a bluetooth connection with my cellphone, and I can send and receive commands using the HC06. Furthermore, If I connect the HC-06 to the UART1 port of my dsPIC33, and then I short circuit the Tx and Rx pins from the UART2 (the one which I will plug my ESP8266), whenever I send some data through my cellphone, I get an echo from the bluetooth device.
I've tried setting the UART2 baud rate speed to 9600, 19200, 57200, 74880 and 115200 but I can't get any response from the ESP8266 device. I've read on a manual that if you are using a 40 MHz crystal connected to the ESP8266, you must set the baud rate speed to 115200, but if you've got a 26 MHz crystal, you must use 74880 as the baud rate speed (that's why I did use this odd number).
I know that the ESP8266 is connected because the sparkfun board has a pin available that is called "RST", or DTR in some other versions. This pin is connected via a capacitor to RESET, and a buffer to the ESP8266's GPIO0 ( https://learn.sparkfun.com/tutorials/es ... e-overview ). If I connect that pin to ground using a wire, the module resets itself and I can see on my LCD display and in my cellphone some "jibber jabber", this unintelligible message appears everytime I connect the pin to ground, and is always the same. It only changes if I change the baud rate speed.
That's why I pin pointed the problem the baud rate speed, I guess I must done something wrong.
Another important information is that I checked that the sparkfun board has two LEDs whose labels are "Tx" and "Rx". I guess this LEDs must blink whenever a message is transmitted (Tx) or received (Rx) in the board. I have never seen these LED's blinking nor lighting up.
Also I noticed there is anothe LED that reads "5" in it's label. Searching on the "Sparkfun ESP8266 the Thing" documentation, apparently This pin is also tied to the on-board LED (see table "General I/O Header" here https://learn.sparkfun.com/tutorials/es ... e-overview ). However, when I connect the 5 pin to VCC (3.3 volts) the LED does not light up
Somebody has an idea or suggestion about what to try? Or maybe can pinpoint me to a good resource that I can use to solve this problem?
Best regards,