Search found 8 matches

by horace99
Sun Oct 20, 2024 5:02 am
Forum: ESP-IDF
Topic: Is there a way to get the number assigned to a COM port emulated by CDC?
Replies: 11
Views: 1106

Re: Is there a way to get the number assigned to a COM port emulated by CDC?

what software are you running on the PC?
how do you tell it which COM port to use?
by horace99
Sat Oct 19, 2024 12:47 pm
Forum: ESP-IDF
Topic: Is there a way to get the number assigned to a COM port emulated by CDC?
Replies: 11
Views: 1106

Re: Is there a way to get the number assigned to a COM port emulated by CDC?

when connecting microcontrollers to PCs where the Windows COM port or Linux /dev/ttyUSB* port is unknown I usually have the host software (implemented in C++, C#, Java, etc) cycle thru the connected serial ports transmitting a prompt (e.g. a "?") to each device in turn the target device would be pro...
by horace99
Thu Oct 17, 2024 11:48 am
Forum: ESP-IDF
Topic: ESP32 RMT " sync manager not supported"
Replies: 2
Views: 340

Re: ESP32 RMT " sync manager not supported"

Thanks for confirming that the ESP32 does not support sync manager.

thought it worth checking in case it was something in my code
by horace99
Thu Oct 17, 2024 8:48 am
Forum: ESP-IDF
Topic: ESP32 RMT " sync manager not supported"
Replies: 2
Views: 340

ESP32 RMT " sync manager not supported"

following on from post "ESP32S3 RMT "no free tx channels" opening third channel" https://esp32.com/viewtopic.php?f=13&t=42301 where a solution was found attempting to run code on an ESP32 with esp-idf-v5.3.1 #include <stdio.h> #include <stdbool.h> #include <unistd.h> // ESP32 RMT 1KHz three phase sq...
by horace99
Wed Oct 16, 2024 4:36 pm
Forum: ESP-IDF
Topic: ESP32S3 RMT "no free tx channels" opening third channel
Replies: 4
Views: 681

Re: ESP32S3 RMT "no free tx channels" opening third channel

thanks, that fixed it! updated code as suggested and in addition fixed timing of pulsePattern3 #include <stdio.h> #include <stdbool.h> #include <unistd.h> // ESP32S3 RMT 1KHz three phase square wave sync test #include "driver/rmt_tx.h" void app_main(void) { // while (true) { // printf("Hello from ap...
by horace99
Tue Oct 15, 2024 9:45 am
Forum: ESP32 Arduino
Topic: ESP32-S3 crash writing Neopixel LED
Replies: 2
Views: 356

Re: ESP32-S3 crash writing Neopixel LED

if you are using the Adafruit_NeoPixel library it has problems with ESP32 Arduino Core Version 3 when there are more than 85 LEDs - I use ESP32 core V 2.0.17 for such projects
by horace99
Tue Oct 15, 2024 9:18 am
Forum: ESP-IDF
Topic: ESP32S3 RMT "no free tx channels" opening third channel
Replies: 4
Views: 681

Re: ESP32S3 RMT "no free tx channels" opening third channel

version is esp-idf-v5.3.1 originally had this problem using the Arduino IDE - see https://forum.arduino.cc/t/esp32s3-rmt-no-free-tx-channels-opening-third-channel/1310503 thought it may just be an Arduino ESP32 problem so tried the ESP-IDF to check - same problem using two RMT Tx channels works OK
by horace99
Mon Oct 14, 2024 10:52 am
Forum: ESP-IDF
Topic: ESP32S3 RMT "no free tx channels" opening third channel
Replies: 4
Views: 681

ESP32S3 RMT "no free tx channels" opening third channel

using ESP32-S3-DevKitC-1 using ESP-IDE on Windows 10 attempting to generate 1KHz three phase pulses using RMT ESP32S3 technical reference manual section 37.2 states • Four TX channels • Four RX channels running the following code which attempts to open three Tx channels #include <stdio.h> #include <...