File tree Expand file tree Collapse file tree 3 files changed +32
-2
lines changed Expand file tree Collapse file tree 3 files changed +32
-2
lines changed Original file line number Diff line number Diff line change 11name =Blues Wireless Notecard
2- version =1.3.1
2+ version =1.3.2
33author =Blues Wireless
44maintainer =Blues Wireless <
[email protected] >
55sentence =An easy to use Notecard Library for Arduino.
Original file line number Diff line number Diff line change 7878#endif
7979#define D13 13
8080
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+
81111#endif
82112
83113/* *************************************************************************/
Original file line number Diff line number Diff line change @@ -1641,7 +1641,7 @@ uint32_t NoteMemAvailable()
16411641 // Allocate progressively smaller and smaller chunks
16421642 objHeader * lastObj = NULL ;
16431643 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 )) {
16451645 for (long int j = 0 ;; j ++ ) {
16461646 objHeader * thisObj ;
16471647 thisObj = (objHeader * ) _Malloc (i );
You can’t perform that action at this time.
0 commit comments