File tree 3 files changed +17
-2
lines changed
avr/libraries/IntegerEasyTransfer
3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 49
49
* messages and software reset.
50
50
* 1.1.1
51
51
* Added overloaded write method to TwoWayIntegerEasyTransfer.
52
+ * Initalized RX packet variables to zero.
52
53
*
53
54
*
54
55
* Limits of the Library
Original file line number Diff line number Diff line change 1
1
/* ******************************************************************************
2
- * IntegerEasyTransfer 1.0.0 library modified by Julian Sanin, sourced from:
2
+ * IntegerEasyTransfer 1.1.1 library modified by Julian Sanin, sourced from:
3
3
*
4
4
* EasyTransfer Arduino Library v2.1
5
5
* details and example sketch:
44
44
* The library supports a maximum of 20 uint8_t or 10 int16_t values.
45
45
* Mixed uint8_t and int16_t are allowed but care should be taken that the
46
46
* 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.
47
53
*
48
54
*
49
55
* Limits of the Library
73
79
#include " IntegerEasyTransfer.h"
74
80
75
81
void IntegerEasyTransfer::begin (Stream *theStream) {
82
+ _rx_len = 0 ;
83
+ _rx_array_inx = 0 ;
76
84
_stream = theStream;
77
85
78
86
_resetData ();
Original file line number Diff line number Diff line change 1
1
/* ******************************************************************************
2
- * IntegerEasyTransfer 1.0.0 library modified by Julian Sanin, sourced from:
2
+ * IntegerEasyTransfer 1.1.1 library modified by Julian Sanin, sourced from:
3
3
*
4
4
* EasyTransfer Arduino Library v2.1
5
5
* details and example sketch:
44
44
* The library supports a maximum of 20 uint8_t or 10 int16_t values.
45
45
* Mixed uint8_t and int16_t are allowed but care should be taken that the
46
46
* 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.
47
53
*
48
54
*
49
55
* Limits of the Library
You can’t perform that action at this time.
0 commit comments