Search found 2210 matches

by chegewara
Fri Mar 29, 2024 3:26 am
Forum: ESP32 Arduino
Topic: Documented Version of ESP32 Arduino Core???
Replies: 3
Views: 122

Re: Documented Version of ESP32 Arduino Core???

Espressif in docs is using "latest" word as for the master, not the latest stable version.
Github is using "latest" word as for the latest released version.
by chegewara
Fri Mar 29, 2024 3:21 am
Forum: IDEs for ESP-IDF
Topic: Main task ended - COM port not available
Replies: 7
Views: 324

Re: Main task ended - COM port not available

With S3 i would say it is USB port, which disappears after flashing or at least change COMx, but you are using UART port, so its not the case.

Maybe try CTRL+T and CTRL+R after flashing, which should reboots esp32 and start fresh new logs.
by chegewara
Fri Mar 29, 2024 3:18 am
Forum: ESP-IDF
Topic: Bluetooth options disappeared from menuconfig
Replies: 4
Views: 90

Re: Bluetooth options disappeared from menuconfig

Thats odd. Main "component" does not need to use REQUIRES in CMakeLists.txt at all and is assuming all components are available. Other components, which should REQUIRES or PRIV_REQUIRES just fail to build, but you still should see all options in menuconfig available for current target, because main ...
by chegewara
Thu Mar 28, 2024 4:14 am
Forum: ESP-IDF
Topic: communication with cp210x
Replies: 2
Views: 116

Re: communication with cp210x

Did you try espressif usb host driver for cp210x?

https://github.com/espressif/esp-idf/bl ... /README.md
by chegewara
Thu Mar 28, 2024 4:10 am
Forum: General Discussion
Topic: USB Host In Transfer Failure
Replies: 3
Views: 3267

Re: USB Host In Transfer Failure

in_xfer->bEndpointAddress = 0x81;
It is long shot now, because i dont remember from top of my head. Please try

Code: Select all

in_xfer->bEndpointAddress = 0x1;
It is endpoint 1, and endpoint dir sets bit 7 or leave it 0.
by chegewara
Thu Mar 28, 2024 4:03 am
Forum: ESP-IDF
Topic: ESP32 IDF and AWS MQTT
Replies: 1
Views: 61

Re: ESP32 IDF and AWS MQTT

It may be broken, so, did you try to populate other values in this struct (instead of uri)? struct address_t { const char *uri; /*!< Complete *MQTT* broker URI */ const char *hostname; /*!< Hostname, to set ipv4 pass it as string) */ esp_mqtt_transport_t transport; /*!< Selects transport*/ const cha...
by chegewara
Thu Mar 28, 2024 3:54 am
Forum: IDEs for ESP-IDF
Topic: Main task ended - COM port not available
Replies: 7
Views: 324

Re: Main task ended - COM port not available

You didnt say anything about hardware.
Is it devkit or custom PCB, is it esp32 or esp32S2/S3?
If S2/S3, is it connected to UART or USB port on devkit (assuming its devkit)?
by chegewara
Thu Mar 28, 2024 3:51 am
Forum: ESP-IDF
Topic: Station device joins and immediately leaves or is deleted
Replies: 3
Views: 988

Re: Station device joins and immediately leaves or is deleted

I would suggest to test with different channel. Maybe channel 1 is crowded.
It seems it is working with band ht40u and failing with ht20, maybe thats the clue?

Just an observation.
by chegewara
Thu Mar 28, 2024 3:45 am
Forum: ESP-IDF
Topic: USB debug log: how to disable?
Replies: 1
Views: 62

Re: USB debug log: how to disable?

Hi, I'am usign ESP-IDF 5 on ESP32-S3. Using its USB for read a pen-drive, when it is connected I got this extra output on uart console: *** Device descriptor *** bLength 18 bDescriptorType 1 bcdUSB 2.00 bDeviceClass 0x0 bDeviceSubClass 0x0 ... [/code] How can I disable it? General Log level is set ...
by chegewara
Thu Mar 28, 2024 3:41 am
Forum: ESP-IDF
Topic: Bluetooth options disappeared from menuconfig
Replies: 4
Views: 90

Re: Bluetooth options disappeared from menuconfig

Or by any chance you are using esp32 SoC that does not have bluetooth, like esp32 S2?

Code: Select all

idf.py set-target esp32s2
It may be set in sdkconfig.defaults, so please check it.