Search found 7 matches

by aekalman
Tue Jan 30, 2018 4:15 pm
Forum: General Discussion
Topic: Can't get LAN8720 fully working
Replies: 14
Views: 20453

Re: Can't get LAN8720 fully working

On my system it’s custom, dunno about the others in this thread. Given that in two posts the 8720 registers are identical, and on two systems the TXD0 & TXD1 pins go low and remain that way for the duration, to me that suggests either a problem in the MAC, or a perpheral conflct in the ESP32 that af...
by aekalman
Tue Jan 30, 2018 10:05 am
Forum: General Discussion
Topic: Can't get LAN8720 fully working
Replies: 14
Views: 20453

Re: Can't get LAN8720 fully working

Here's a verbose dump of my system ... it's the ethernet example, with verbose logging and the appropriate Example Config for my hardware. Also, I'm calling phy_lan8720_dump_registers() from inside eth_task(). =~=~=~=~=~=~=~=~=~=~=~= PuTTY log 2018.01.30 01:59:22 =~=~=~=~=~=~=~=~=~=~=~= ets Jun 8 20...
by aekalman
Thu Jan 25, 2018 9:23 am
Forum: General Discussion
Topic: Can't get LAN8720 fully working
Replies: 14
Views: 20453

Re: Can't get LAN8720 fully working

I'm having the same problem :-(
by aekalman
Sat Dec 16, 2017 7:40 pm
Forum: General Discussion
Topic: Issue with GPIO12 and bootstrapping -- why is this happening?
Replies: 2
Views: 11540

Re: Issue with GPIO12 and bootstrapping -- why is this happening?

Hmmm ... that would make sense -- I had not thought of that. I don't recall see the manuals say that the SDIO interface goes to 1.8V I/O levels in that case (just that VDD_SDIO is sourced from the internal 1.8V regulator) -- but that would make sense. Yes, I figured there was a weak pull-up issue in...
by aekalman
Fri Dec 15, 2017 10:52 am
Forum: General Discussion
Topic: Issue with GPIO12 and bootstrapping -- why is this happening?
Replies: 2
Views: 11540

Issue with GPIO12 and bootstrapping -- why is this happening?

Hi All. Am using a SparkFun ESP32 Thing as a development platform, have been successfully working with it for 6 weeks or so. The Thing is plugged into our own board, which has stuff like an SD Card socket, Ethernet PHY, I2C peripherals, etc. During that time, GPIO12 (which is a bootstrap pin that co...
by aekalman
Fri Nov 03, 2017 9:18 pm
Forum: ESP-IDF
Topic: printf() requires a \n for output?
Replies: 2
Views: 9572

Re: printf() requires a \n for output?

Thank you -- I suspected something like that, but didn't know where to look.

Thanks again,
by aekalman
Fri Oct 27, 2017 10:41 pm
Forum: ESP-IDF
Topic: printf() requires a \n for output?
Replies: 2
Views: 9572

printf() requires a \n for output?

Hello. This is my first post. I am able to successfully build and run the hello_world application on a SparkFun ESP32 Thing module (26MHz main xtal). However, I observer that whereas these lines in the example: for (int i = 10; i >= 0; i--) { printf("Restarting in %d seconds...\n", i); vTaskDelay(10...