kissste wrote:Thank you for the module and help with the compilation. I have managed to compile and flash(and make htmlflash) the esp8266.
Changed IPs in config.h for my network.
Hooked HW up and powered up.
LEDs are flashing, but nothing is coming up when I try to connect via browser.
How to debug? I have tried serial port output, can't get anything.
Thank you very much
Hi Kissste,
- Are you using the latest version in github (for SDK v1.5.0)?
- If you're not getting ANY debug output then there is something wrong with the compile/load. There should be debug output from the uart0 pins @ 115200. Debug comms is enabled in globals.h, and for each of the files if wanted. I've left DHCP_DEBUG and MAIN_DEBUG enabled as default, so you should get a bit of startup debug there if its compiled properly and loaded correctly.
- As default, for the wired connection, it uses DHCP from the router to get an IP. So once you get the debug output working, then look at what IP it is assigned. Navigate to that and it will serve your webpage.
Just want to ask as well: Do you still have all the usual pullups and whatnot that are required for the ESP to work - I left them off my diagram as they're always needed anyway? (EDIT: I've updated my diagram on github to show the default esp connections needed)
As in:
- CH_PD pulled high
RST pulled high through pullup (eg 10k)
GPIO0 pulled high through pullup (eg 10k)
If you load a different project onto your esp (with the enc28j60 attached), what happens? Do you get debug comms out for that? If not then its a hardware setup issue.