Search found 5 matches
- Thu Oct 21, 2021 9:00 am
- Forum: General Discussion
- Topic: Using MDIO/SMI to access a PHY's Control Register
- Replies: 0
- Views: 2052
Using MDIO/SMI to access a PHY's Control Register
I've setup a basic system using the ethernet example at https://github.com/espressif/esp-idf/tree/master/examples/ethernet/basic Now I would like to be able to power down the ethernet PHY (LAN8720) at runtime by accessing its Basic Control Register, which is located at SMI address 0x00. Which ESP32 ...
- Tue Oct 05, 2021 8:12 am
- Forum: General Discussion
- Topic: Decode stack traces
- Replies: 3
- Views: 8893
Re: Decode stack traces
The Espressif tools contain a tool called `xtensa-esp32-elf-addr2line` which will interpret the addresses for you and give you proper information about the source files, lines and function names, etc. You can feed it the entire backtrace and it will display the info for all addresses in one swoop, ...
- Tue Sep 21, 2021 10:46 am
- Forum: General Discussion
- Topic: Decode stack traces
- Replies: 3
- Views: 8893
Decode stack traces
How do you decode stack traces like this one: abort() was called at PC 0x40158ccb on core 0 Backtrace:0x40088eba:0x3ffc5030 0x40089601:0x3ffc5050 0x4008fc62:0x3ffc5070 0x40158ccb:0x3ffc50e0 0x4008c1b5:0x3ffc5110 0x4008c27d:0x3ffc5130 0x4008c585:0x3ffc5150 What I've been doing so far is dump the symb...
- Mon May 10, 2021 1:16 pm
- Forum: General Discussion
- Topic: Wifi connection dropped after 15 minutes
- Replies: 1
- Views: 3010
Wifi connection dropped after 15 minutes
Our ESP32 seems to lose Wifi connection after about 15 minutes of operation. Here's what I'm seeing in the logs: D (895423) wifi:recv deauth, reason=0x3 I (895423) wifi:state: run -> init (3c0) D (895423) wifi:recv deauth/disassoc, stop beacon/connect timer D (895423) wifi:connect status 5 -> 4 D (8...
- Thu May 06, 2021 8:24 am
- Forum: General Discussion
- Topic: Using client certificates for HTTPS requests
- Replies: 1
- Views: 6085
Using client certificates for HTTPS requests
I need to upgrade my ESP32 code to use a client certificate for secure communication with a remote server.
So far, I've used the library to issue the HTTP requests but as far as I've seen, this library doesn't support client certificates. What are my options?
Thanks,
Guy.
So far, I've used the
Code: Select all
esp_http_client
Thanks,
Guy.