Search found 21 matches
- Thu Jan 25, 2024 4:08 pm
- Forum: Hardware
- Topic: ESP32-S3 USB OTG - USB Hub support?
- Replies: 28
- Views: 27714
Re: ESP32-S3 USB OTG - USB Hub support?
With the Beta USB-Hub support would it be possible to just read the VID/PID + serial from a large number (20 devices total ie. HUBs connected to HUB with multiple devices in each) of connected USB devices (Phones in this case) and detect insertion/removal ? If so I'm very interested in testing this ...
- Fri Jun 17, 2022 12:20 pm
- Forum: Documentation
- Topic: 3D step files and gerbers(or drillfile) for ESP32-Ethernet-Kit A v.1.2
- Replies: 1
- Views: 5048
3D step files and gerbers(or drillfile) for ESP32-Ethernet-Kit A v.1.2
We’re developing some test equipment for a customer that requires ethernet and POE. This will only be produced once in a small batch of about 30 units so we’re considering basing it on your ESP32-Ethernet-Kit A v.1.2 to make a fast, easy, and still relatively cheap solution. The problem is just that...
- Sat Feb 12, 2022 12:17 pm
- Forum: Hardware
- Topic: Has the new ESP32-S3 dropped the Ethernet MAC
- Replies: 3
- Views: 6557
Re: Has the new ESP32-S3 dropped the Ethernet MAC
This is true; it does not have an Ethernet MAC. Note that this is not the only chip we have in development, and while I can't say much more, we're certainly not dropping Ethernet entirely. @ESP_Sprite: A year has gone by since the last post regarding this. So I was just wondering if there is anythi...
- Sun Apr 12, 2020 10:30 pm
- Forum: ESP IoT Solution
- Topic: BLE Connection stops adverticement on AT-Firmware
- Replies: 2
- Views: 10452
- Fri Apr 03, 2020 6:48 am
- Forum: ESP IoT Solution
- Topic: BLE Connection stops adverticement on AT-Firmware
- Replies: 2
- Views: 10452
BLE Connection stops adverticement on AT-Firmware
Hi. I'm thinking about using an ESP32 module with the AT commands firmware as an ALT beacon that is set up by another "Master" CPU. I've got it working but as soon as I connect with a phone the advertisement stops until I send AT+BLEADVSTART to the ESP32. I could send AT+BLEADVSTART every second or ...
- Tue Nov 26, 2019 11:02 pm
- Forum: Hardware
- Topic: DM9051 SPI Ethernet example?
- Replies: 4
- Views: 11908
Re: DM9051 SPI Ethernet example?
Also have a look at
https://www.microchip.com/wwwproducts/en/ENC424J600
https://www.microchip.com/wwwproducts/en/ENC424J600
- Sat Jan 05, 2019 9:53 am
- Forum: ESP-IDF
- Topic: AWS IoT and HTTPS are mutually failed
- Replies: 16
- Views: 20813
Re: AWS IoT and HTTPS are mutually failed
I finally found the final answer. It was caused by the stack overflow. Which stack? I don't know. But when I reduced the size of each my stacks, it worked. I used stack high water mark to check some stacks, including the system stacks, I could reach out but found none. Anyway, it works now. Samson ...
- Mon Dec 24, 2018 11:41 am
- Forum: ESP32 Arduino
- Topic: BUG: ESP32 dev board and reading sd card's (high power consumption + ESP32 hangs)
- Replies: 3
- Views: 7767
Re: BUG: ESP32 dev board and reading sd card's (high power consumption + ESP32 hangs)
Could it be that the esp8266 powers up the SD card on init while the ESP32 powers it up on first access? The 18mA extra draw after using the SD card is probably from it being powered. If you want to stop that I would assume that you need to power down the SD card and then do a re-init the next time ...
- Thu Mar 15, 2018 2:51 pm
- Forum: General Discussion
- Topic: Wifi / Bluetooth Problems with custom Board
- Replies: 6
- Views: 12560
Re: Wifi / Bluetooth Problems with custom Board
Just guessing but can it be a power supply issue?
Takes a lot more power to connect to an AP than to just scan for them.
Are you sure you can supply enough power to the ESP? Do you have sufficient decoupling next to the power pins?
Good luck
Jimmy
Takes a lot more power to connect to an AP than to just scan for them.
Are you sure you can supply enough power to the ESP? Do you have sufficient decoupling next to the power pins?
Good luck
Jimmy
- Sat Jan 20, 2018 9:58 pm
- Forum: Report Bugs
- Topic: ESP_LOGD crashes when a %s parameter is NULL
- Replies: 1
- Views: 5650
Re: ESP_LOGD crashes when a %s parameter is NULL
The following code snipplet results in a program crash: char *string = NULL; ESP_LOGD( TAG, "*** crash here %s", string ); Since the ESP_LOG * functions are often used for debugging, it is more than annoying when these functions themselves crash, because the parameters are not well defined. I would...