Skip to content

Commit

Permalink
2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Trusty77 committed Feb 13, 2016
1 parent 41585b6 commit f5d312e
Show file tree
Hide file tree
Showing 11 changed files with 91 additions and 28 deletions.
Binary file added History/MemoryUsage.zip
Binary file not shown.
1 change: 1 addition & 0 deletions MakeLibrary.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@..\MakeLibrary.bat
Binary file added MemoryUsage.zip
Binary file not shown.
25 changes: 25 additions & 0 deletions README.adoc
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
1 change: 0 additions & 1 deletion README.txt

This file was deleted.

19 changes: 19 additions & 0 deletions WhatsNew.TXT
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 !
43 changes: 43 additions & 0 deletions keywords.txt
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
4 changes: 2 additions & 2 deletions library.properties
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=
Expand Down
24 changes: 0 additions & 24 deletions license.txt

This file was deleted.

File renamed without changes.
2 changes: 1 addition & 1 deletion MemoryUsage.h → src/MemoryUsage.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
MemoryUsage.h - MemoryUsage library V2.0
MemoryUsage.h - MemoryUsage library V2.10
Copyright (c) 2015 Thierry Paris. All right reserved.
This library is free software; you can redistribute it and/or
Expand Down

0 comments on commit f5d312e

Please sign in to comment.