WiFiEspAT lib possibly locking up USB HID communication? #82
Unanswered
FeuerSturm
asked this question in
Q&A
Replies: 2 comments 2 replies
-
you could try much higher AT_BAUD_RATE so the Serial communication is faster (the WiFiEspAT library blocks while waiting for response from the AT firmware). don't forget to change the baud rate of AT firmware. |
Beta Was this translation helpful? Give feedback.
1 reply
-
only system resource used by WiFiEspAT is the Serial (UART). so only possible resource conflicts are UART interrupts or busy CPU. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey guys,
I'm having a strange problem with the iLabs Challenger 2040 WiFi MCU (RP2040 based MCU with embedded ESP8285 chip):
I'm using TinyUSB to create a generic USB HID device that listens to usb packets, reformats them and sends them via UDP to a receiver (WLED flashed ESP32).
This works perfect for an Arduino Nano RP2040 Connect but with the "same" sketch that is just modified to work with said Challenger MCU (WiFiEspAT instead of WiFiNINA lib) it is "blocking" receiving the packets via usb and I am receiving "Overlapping I/O"-errors when trying to send usb hid packets to it with the App I am using.
Anyone ever had similar problems?
This is the sketch in question, maybe one of the pros sees a blatant mistake, I've been staring at it for hours and just don't see what could be wrong. Thanks in advance!
SRGBmods_Wifi_LED_Controller_TX_BETA2.txt
!
Beta Was this translation helpful? Give feedback.
All reactions