SerialTransfer
SerialTransfer copied to clipboard
Arduino library to transfer dynamic, packetized data fast and reliably via Serial, I2C, or SPI
I tried examples code named uart_rx_data and uart_tx_data with NodeMCU v3 to NodeMCU v3 but it didnt work. Does it work with NodeMCU ? Library version : 3.1.2 Regards
Hi! I don't quite understand the values used in the [uart_tx_file.ino](https://github.com/PowerBroker2/SerialTransfer/blob/master/examples/uart_tx_file/uart_tx_file.ino) file. Why we use `(MAX_PACKET_SIZE - 2)` in some places, and just `MAX_PACKET_SIZE` in others. In particular, the calculation...
**Is your feature request related to a problem? Please describe.** I'd like to be able to use this library to communicate with an arduino from a linux machine. However the...
**Is your feature request related to a problem? Please describe.** There are use cases where the arrival of a packet of a certain type in and of itself indicates what...
Fix issue #83 Adds documentation of SerialTransfer data members which are not valid when a callback function runs, and explains limitations on the non-blocking feature.
I get an error when using the tx/rx datum examples of ERROR: STALE PACKET regards
**Is your feature request related to a problem? Please describe.** Method and variable documentation, while comprehensive, is scattered among .h and .cpp files. I always have to dig for the...
**Describe the bug** The example arduino sketch in pySerialTransfer/README.md does a loopback echo using this line: for(uint16_t i=0; i < myTransfer.bytesRead; i++) which leads me to think I can rely...
Hello, Very good job with the library. I had a lot of struggles interconnecting Arduino's when I started out and this eliminates the trouble. I also think there should be...
As of right now this a is work in progress though I believe you might want to watch my progress. TODO: - [X] Restructure the `Packet` class - [X] Prepare...