Markus
Markus
It may is possible since TinyGSM Implements a TCP client (`TinyGsmClient`) the steps are as stated in this ticket. In short a new NETWORK stack definition for TinyGSM is needed....
there is no need for that since the the GSM module is external to the µC used, the defined need the match the CPU used. for example TinyGSM can be...
yes any think that takes a long time can have the same affect, a delay is a do nothing for x. it makes no difference if you replace do nothing...
have you enabled the debug output of the websocket lib? this sounds more and more like there is a TCP / Network stack problem on the UNO R4. if the...
ok that makes it a bit harder to see whats going on, but may try: ```cpp #define DEBUG_WEBSOCKETS(msg) \ { \ Serial1.print(msg); \ Serial1.flush(); \ } ``` with that we...
we can look at both, but make sure to clearly label the logs and conversation.
good question, have never used it. if you can edit the lib files then it my is easier to simply add the define to the WebSockets.h
my bad, try: ```cpp #define DEBUG_WEBSOCKETS(msg, ...) \ { \ Serial1.print(msg); \ Serial1.flush(); \ } ```
does the Uno R4 has `vsnprintf` I may can adapt the debug coed it it has.
have created a branch `printf_debug_port` set the define `DEBUG_PORT` to the Serial port you use. platformio.ini example: ``` build_flags = -DDEBUG_PORT=Serial ```