File tree 3 files changed +32
-2
lines changed
3 files changed +32
-2
lines changed Original file line number Diff line number Diff line change 1
1
name =Blues Wireless Notecard
2
- version =1.3.1
2
+ version =1.3.2
3
3
author =Blues Wireless
4
4
maintainer =Blues Wireless <
[email protected] >
5
5
sentence =An easy to use Notecard Library for Arduino.
Original file line number Diff line number Diff line change 78
78
#endif
79
79
#define D13 13
80
80
81
+ #else
82
+
83
+ #ifndef D5
84
+ #define D5 5
85
+ #endif
86
+
87
+ #ifndef D6
88
+ #define D6 6
89
+ #endif
90
+
91
+ #ifndef D9
92
+ #define D9 9
93
+ #endif
94
+
95
+ #ifndef D10
96
+ #define D10 10
97
+ #endif
98
+
99
+ #ifndef D11
100
+ #define D11 11
101
+ #endif
102
+
103
+ #ifndef D12
104
+ #define D12 12
105
+ #endif
106
+
107
+ #ifndef D13
108
+ #define D13 13
109
+ #endif
110
+
81
111
#endif
82
112
83
113
/* *************************************************************************/
Original file line number Diff line number Diff line change @@ -1641,7 +1641,7 @@ uint32_t NoteMemAvailable()
1641
1641
// Allocate progressively smaller and smaller chunks
1642
1642
objHeader * lastObj = NULL ;
1643
1643
static long int maxsize = 35000 ;
1644
- for (long int i = maxsize ; i >=sizeof (objHeader ); i = i - sizeof (objHeader )) {
1644
+ for (long int i = maxsize ; i >=( long int ) sizeof (objHeader ); i = i - sizeof (objHeader )) {
1645
1645
for (long int j = 0 ;; j ++ ) {
1646
1646
objHeader * thisObj ;
1647
1647
thisObj = (objHeader * ) _Malloc (i );
You can’t perform that action at this time.
0 commit comments