Replies: 1 comment 1 reply
-
After further investigation I see that i'm blocked at a semaphore inside
the write is limited to 128 bytes and if the total size is above that i'm blocked at |
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
-
Hello
i'm working on a ESP32s3 processor
when trying to write more than 128 bytes at a time to STDOUT(print statements/logs) the write operation apeears to jam for a significant amount of time, ~10ms for each 128 bytes.
Splitting into 128 byte chunks and waiting for ~1.4ms(which is approximately the time to send 128 bytes at a 921600 baud rate) gets around the issue.
Is there a more organized solution to this? using uselect did not yield an improvement
maybe some buffer that can be increased?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions