Search found 7 matches

by Spooney
Tue Nov 05, 2019 2:03 pm
Forum: Hardware
Topic: esp32 wroom 32D 8MB
Replies: 2
Views: 3713

Re: esp32 wroom 32D 8MB

Hi All I did manage to find a solution I was using a USB uart with a silabs cp2102 chip on board. This has worked well for months but would not work with the 8MB modules I changed to a usb uart with the silabs cp2104 and that worked fine Actual ref on the ic is sil 2104. So I am guessing cp2104. Loo...
by Spooney
Mon Nov 04, 2019 1:41 pm
Forum: Hardware
Topic: esp32 wroom 32D 8MB
Replies: 2
Views: 3713

esp32 wroom 32D 8MB

Hi We have a small custom board that uses the wroom 32D. We have a few of these that we have been developing the esp32 program on. They are minmal boards and don't have an on board uart. We use an external usb uart instead and that works fine. Recently got some more modules and decided to get the 8M...
by Spooney
Wed Nov 07, 2018 10:43 am
Forum: ESP-IDF
Topic: esp32 wired Ethernet and mDNS
Replies: 6
Views: 8700

Re: esp32 wired Ethernet and mDNS

Hi Morris Thanks but unfortunately that did not work I now have void emac_mac_init(void) { REG_SET_BIT(EMAC_GMACCONFIG_REG, EMAC_EMACDUPLEX); REG_SET_BIT(EMAC_GMACCONFIG_REG, EMAC_EMACMII); REG_CLR_BIT(EMAC_GMACCONFIG_REG, EMAC_EMACFESPEED); REG_SET_BIT(EMAC_GMACFF_REG, EMAC_PAM); } The version of E...
by Spooney
Tue Nov 06, 2018 1:47 pm
Forum: ESP-IDF
Topic: esp32 wired Ethernet and mDNS
Replies: 6
Views: 8700

Re: esp32 wired Ethernet and mDNS

Hi Morris

Excellent! that is fast and thanks for that. Is the patch on github yet and if not any idea when or how I can get it?

Spooney
by Spooney
Tue Nov 06, 2018 10:41 am
Forum: ESP-IDF
Topic: esp32 wired Ethernet and mDNS
Replies: 6
Views: 8700

esp32 wired Ethernet and mDNS

Hi All I am trying to get mDNS working with the esp32 on the wired Ethernet connection. I have done a small program to test based on a wired Ethernet example and the example mDNS code. I have done it so that I can choose (at build time) either wifi or Ethernet. The mDNS works fine with Wifi connecti...
by Spooney
Mon Jul 09, 2018 9:53 am
Forum: ESP-IDF
Topic: UDP socket non-blocking
Replies: 3
Views: 6238

Re: UDP socket non-blocking

Hi Thanks for the suggestion but i don't think it is that. The data is just some I put there for testing. I have attached a text file of the uart output and the output screen from the sender PC. You can see the data but it is only sent the once when I send 'hello' to the esp32. It should have been s...
by Spooney
Sun Jul 08, 2018 12:16 pm
Forum: ESP-IDF
Topic: UDP socket non-blocking
Replies: 3
Views: 6238

UDP socket non-blocking

Hi I am trying to use a UDP socket to both send and receive to another device. The port is known at the outset but the IP of the remote device is not. My code sort of works in that if I send to the esp32 I can see what I sent on the uart output,, and an 'ACK' is received back from the esp32. But I c...