forked from Locoduino/MemoryUsage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
91 additions
and
28 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@..\MakeLibrary.bat |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
= Memory Usage checking Library for Arduino = | ||
|
||
This is a library for Arduino to see memory usage during a program execution. | ||
|
||
For more information about this library please visit us at | ||
http://www.locoduino.org/spip.php?article149 in french | ||
|
||
== License == | ||
|
||
Copyright (c) 2015-2016 Locoduino.org. All right reserved. | ||
Copyright (c) 2015-2016 Thierry Paris. All right reserved. | ||
|
||
This library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 2.1 of the License, or (at your option) any later version. | ||
|
||
This library is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
|
||
You should have received a copy of the GNU Lesser General Public | ||
License along with this library; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
This is a library for Arduino to check your SRAM / Stack memory usage. | ||
|
||
|
||
Whats New ? | ||
|
||
06/08/2015 V2.10 | ||
- Ajout de SRamDisplay() | ||
|
||
- Add of SRamDisplay() | ||
|
||
05/08/2015 V2.00 | ||
- Ajout de mmacros d'impression... | ||
|
||
- Add printing macros... | ||
|
||
26/07/2015 V1.00 | ||
- Naissance de MemoryUsage ! | ||
|
||
- MemoryUsage is Born ! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
####################################### | ||
# Syntax Coloring Map For Matrix | ||
####################################### | ||
|
||
####################################### | ||
# Datatypes (KEYWORD1) | ||
####################################### | ||
|
||
####################################### | ||
# Methods and Functions (KEYWORD2) | ||
####################################### | ||
|
||
mu_freeRam KEYWORD2 | ||
mu_StackCount KEYWORD2 | ||
SRamDisplay KEYWORD2 | ||
|
||
MEMORY_PRINT_START KEYWORD2 | ||
MEMORY_PRINT_HEAPSTART KEYWORD2 | ||
MEMORY_PRINT_HEAPEND KEYWORD2 | ||
MEMORY_PRINT_STACKSTART KEYWORD2 | ||
MEMORY_PRINT_END KEYWORD2 | ||
|
||
MEMORY_PRINT_HEAPSIZE KEYWORD2 | ||
MEMORY_PRINT_STACKSIZE KEYWORD2 | ||
MEMORY_PRINT_FREERAM KEYWORD2 | ||
MEMORY_PRINT_TOTALSIZE KEYWORD2 | ||
|
||
STACK_DECLARE KEYWORD2 | ||
STACK_COMPUTE KEYWORD2 | ||
STACK_PRINT_TEXT KEYWORD2 | ||
STACK_PRINT KEYWORD2 | ||
|
||
FREERAM_PRINT_TEXT KEYWORD2 | ||
FREERAM_PRINT KEYWORD2 | ||
|
||
STACKPAINT_PRINT_TEXT KEYWORD2 | ||
STACKPAINT_PRINT KEYWORD2 | ||
|
||
####################################### | ||
# Constants (LITERAL1) | ||
####################################### | ||
|
||
EEPROMLIST_EMPTY_OWNER LITERAL1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name=MemoryUsage | ||
version=1.0.0 | ||
author=Thierry PARIS | ||
version=2.10.0 | ||
author=Thierry PARIS - Locoduino | ||
maintainer=Thierry PARIS <[email protected]> | ||
sentence=Use this library to check your SRAM / Stack memory usage. | ||
paragraph= | ||
|
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters