ArduinoStreamUtils icon indicating copy to clipboard operation
ArduinoStreamUtils copied to clipboard

💪 Power-ups for Arduino streams

Results 10 ArduinoStreamUtils issues
Sort by recently updated
recently updated
newest added

Could be interesting to be able to grab some stats of the stream usage: - Total TX/RX bytes count - Total TX/RX packets count (writes) - Min/Max/Average read/write size The...

enhancement

@supergohan, in #18, you requested a CRC feature in StreamUtils. That's something I wanted to add for a long time, but I waited for an actual application to make sure...

enhancement

The encoding table does not match the standard Hamming(7,4) codes ... it needs an explanation https://www.gaussianwaves.com/2008/05/hamming-codes-how-it-works/

Hi, I'm using a mega as port externder for a ESP32 via UART. The idea is to send JSON files with IO-status and requests back and forth. Because the size...

Hi, does the ArduinoStreamUtils-lib work with the ARM® Cortex®-M4 XMC4700 ? Thank you King regards Stefan

bug

The main header file doesn't include `MemoryStream.hpp`. Fix: ```diff --- StreamUtils.h.orig 2019-06-05 08:30:33.000000000 +0100 +++ StreamUtils.h 2019-07-17 21:20:23.643851000 +0100 @@ -10,6 +10,7 @@ #include "StreamUtils/Prints/BufferingPrint.hpp" #include "StreamUtils/Prints/LoggingPrint.hpp" #include "StreamUtils/Streams/LoggingStream.hpp" +#include...

enhancement

I found the eeprom write slow, which was a known fact due to the EEPROM emulation in the official STM32 core. I have found using the buffered write and flush...

Hi Beniot, Many thanks for your hard work on Arduino Json and this stream utils. I am using your software in a ESP32 IDF only application. It works fine and...

question

This would be really handy to be able to easily use this library in PlatformIO project.