File tree Expand file tree Collapse file tree 3 files changed +17
-2
lines changed
avr/libraries/IntegerEasyTransfer Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 4949* messages and software reset.
5050* 1.1.1
5151* Added overloaded write method to TwoWayIntegerEasyTransfer.
52+ * Initalized RX packet variables to zero.
5253*
5354*
5455* Limits of the Library
Original file line number Diff line number Diff line change 11/* ******************************************************************************
2- * IntegerEasyTransfer 1.0.0 library modified by Julian Sanin, sourced from:
2+ * IntegerEasyTransfer 1.1.1 library modified by Julian Sanin, sourced from:
33*
44* EasyTransfer Arduino Library v2.1
55* details and example sketch:
4444* The library supports a maximum of 20 uint8_t or 10 int16_t values.
4545* Mixed uint8_t and int16_t are allowed but care should be taken that the
4646* values do not overflow the data buffer.
47+ * 1.1.0
48+ * Added new classes to support two way communications and extended
49+ * messages and software reset.
50+ * 1.1.1
51+ * Added overloaded write method to TwoWayIntegerEasyTransfer.
52+ * Initalized RX packet variables to zero.
4753*
4854*
4955* Limits of the Library
7379#include " IntegerEasyTransfer.h"
7480
7581void IntegerEasyTransfer::begin (Stream *theStream) {
82+ _rx_len = 0 ;
83+ _rx_array_inx = 0 ;
7684 _stream = theStream;
7785
7886 _resetData ();
Original file line number Diff line number Diff line change 11/* ******************************************************************************
2- * IntegerEasyTransfer 1.0.0 library modified by Julian Sanin, sourced from:
2+ * IntegerEasyTransfer 1.1.1 library modified by Julian Sanin, sourced from:
33*
44* EasyTransfer Arduino Library v2.1
55* details and example sketch:
4444* The library supports a maximum of 20 uint8_t or 10 int16_t values.
4545* Mixed uint8_t and int16_t are allowed but care should be taken that the
4646* values do not overflow the data buffer.
47+ * 1.1.0
48+ * Added new classes to support two way communications and extended
49+ * messages and software reset.
50+ * 1.1.1
51+ * Added overloaded write method to TwoWayIntegerEasyTransfer.
52+ * Initalized RX packet variables to zero.
4753*
4854*
4955* Limits of the Library
You can’t perform that action at this time.
0 commit comments