Search found 15 matches

by Ing-Dom
Mon Oct 21, 2024 10:49 am
Forum: ESP32 Arduino
Topic: UDP Multicast not receiving any packets
Replies: 0
Views: 719

UDP Multicast not receiving any packets

Hi, I have a ESP32 Hardware (WROVER-E) with a LAN8720 Ethernet Phy. I want to send and receive data over udp multicast - and i just use the WifiUdp class for that purpose. I get it running with a basic programm and the multicast packets are comming in fine. The real use case is a different one, I wa...
by Ing-Dom
Sat Oct 19, 2024 8:44 am
Forum: General Discussion
Topic: ESPTool entering Bootloader, RTS / DTR sequence
Replies: 0
Views: 1400

ESPTool entering Bootloader, RTS / DTR sequence

I have a question regarding the Auo-program mechanism. I have ONE specific computer where the timing of the DTR and RTS signals are in a way entering bootloader does not work. The esptool does following sequence: pull RTS low ( => put ESP into reset) sleep pull DTR low ( => should pull GPIO0 to low,...
by Ing-Dom
Wed Aug 07, 2024 5:54 am
Forum: ESP-IDF
Topic: Usage of rmt_fill_tx_items and rmt_tx_start
Replies: 3
Views: 1519

Re: Usage of rmt_fill_tx_items and rmt_tx_start

Yes, I could switch to a task - that is plan B but requires some refactoring.

I think I can live with the limitations of rmt_tx_start (like, the limited number of rmt items).. and I really want to solve that puzzle :D

I mean, that tx end callback - it should work shouldn't it ?
by Ing-Dom
Mon Aug 05, 2024 8:28 am
Forum: ESP-IDF
Topic: Usage of rmt_fill_tx_items and rmt_tx_start
Replies: 3
Views: 1519

Re: Usage of rmt_fill_tx_items and rmt_tx_start

no one ?

whatever I try, its not working with rmt_tx_start.

I could really use some advice :)
by Ing-Dom
Wed Jul 31, 2024 7:58 pm
Forum: ESP-IDF
Topic: Usage of rmt_fill_tx_items and rmt_tx_start
Replies: 3
Views: 1519

Usage of rmt_fill_tx_items and rmt_tx_start

H ithere, I need to drive some Serial adressable RGB-LEDs (WS2813C). I use the RMT unit for that to do it as fast as possible. Due to the histry of my project it is for both RP2040 and ESP, and I want to keep it as similar as possible. Currently, I use a timer interrupt for setting my LEDs, so that ...
by Ing-Dom
Fri Jul 19, 2024 10:39 am
Forum: ESP32 Arduino
Topic: Set Ethernet Link Speed
Replies: 2
Views: 1653

Set Ethernet Link Speed

Hi, I would like to control my lan8720 phy regarding link speed (10 / 100 mbit) to save some power. There ist this method in the mac struct to do that https://docs.espressif.com/projects/esp-idf/en/release-v4.4/esp32/api-reference/network/esp_eth.html#_CPPv4N13esp_eth_mac_s9set_speedE but - how do I...
by Ing-Dom
Thu Jul 18, 2024 10:34 am
Forum: Hardware
Topic: Ethernet: PICO-V3-02 + Lan8720: some design questions
Replies: 3
Views: 1756

Re: Ethernet: PICO-V3-02 + Lan8720: some design questions

thanks for your reply. As the RX_ER Signal is not needed, I have one GPIO free now, so i choose the option to use an external 50MHz osciallator and enable them with a GPIO. To have a stable "1" at GPIO0 while startup, there is a 10k pullup (the osciallator can push pull 4mA so this 10k is no problem...
by Ing-Dom
Mon Jul 15, 2024 8:56 am
Forum: Hardware
Topic: Ethernet: PICO-V3-02 + Lan8720: some design questions
Replies: 3
Views: 1756

Re: Ethernet: PICO-V3-02 + Lan8720: some design questions

I wanted to add, I use the Pico-V3-02 + LAN8720 because it is a VERY compact solution and I have not much board space.

Thats it how it should look like when layouted in final form factor..
2024-07-15 10_53_31-3D Viewer.png
2024-07-15 10_53_31-3D Viewer.png (180.34 KiB) Viewed 1754 times
by Ing-Dom
Mon Jul 15, 2024 8:52 am
Forum: Hardware
Topic: Ethernet: PICO-V3-02 + Lan8720: some design questions
Replies: 3
Views: 1756

Ethernet: PICO-V3-02 + Lan8720: some design questions

Hi, I made a custom board with the PICO-V3-02 that should have wired Ethernet. I choose Lan8720 for that purpose. While I'm new into using ESP32 I choose to make a evboard with a lot Jumpers so I can learn first and more easily try things out. I already learned about some basic mistakes I made in my...
by Ing-Dom
Sun Jul 14, 2024 11:55 am
Forum: General Discussion
Topic: Get custom board with PICO-V3-02 SoC running
Replies: 8
Views: 2550

Re: Get custom board with PICO-V3-02 SoC running

I finally got it running.
I turned out that the missing connection on Pin 19, VDD3P3_RTC was the reason.

I had some other issues with the "one click download" but I could fix that also.

Thank you all for your help! No I can start getting Ethernet working... :)