mirror of
https://github.com/k3ng/k3ng_rotator_controller.git
synced 2025-02-09 04:01:28 +00:00
2018.02.05.01
Disabled free memory check in DEBUG_DUMP for TEENSYDUINO to fix compilation erroring out (Thanks, Martin, HS0ZED)
This commit is contained in:
parent
db699f743e
commit
2b28ad4cdf
@ -336,6 +336,9 @@
|
|||||||
2018.02.02.01
|
2018.02.02.01
|
||||||
Minor updates to DEBUG_ACCEL
|
Minor updates to DEBUG_ACCEL
|
||||||
|
|
||||||
|
2018.02.05.01
|
||||||
|
Disabled free memory check in DEBUG_DUMP for TEENSYDUINO to fix compilation erroring out (Thanks, Martin, HS0ZED)
|
||||||
|
|
||||||
All library files should be placed in directories likes \sketchbook\libraries\library1\ , \sketchbook\libraries\library2\ , etc.
|
All library files should be placed in directories likes \sketchbook\libraries\library1\ , \sketchbook\libraries\library2\ , etc.
|
||||||
Anything rotator_*.* should be in the ino directory!
|
Anything rotator_*.* should be in the ino directory!
|
||||||
|
|
||||||
@ -345,7 +348,7 @@
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define CODE_VERSION "2018.02.02.01"
|
#define CODE_VERSION "2018.02.05.01"
|
||||||
|
|
||||||
#include <avr/pgmspace.h>
|
#include <avr/pgmspace.h>
|
||||||
#include <EEPROM.h>
|
#include <EEPROM.h>
|
||||||
@ -5482,6 +5485,7 @@ void output_debug(){
|
|||||||
debug.println("!");
|
debug.println("!");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if !defined(TEENSYDUINO)
|
||||||
void * HP = malloc(4);
|
void * HP = malloc(4);
|
||||||
if (HP) {free(HP);}
|
if (HP) {free(HP);}
|
||||||
unsigned long free = (unsigned long)SP - (unsigned long)HP;
|
unsigned long free = (unsigned long)SP - (unsigned long)HP;
|
||||||
@ -5491,6 +5495,7 @@ void output_debug(){
|
|||||||
debug.print(tempstring);
|
debug.print(tempstring);
|
||||||
debug.println(F("b free"));
|
debug.println(F("b free"));
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
debug.println("\n\n\n");
|
debug.println("\n\n\n");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user