0.2.5 AvrHeap

This commit is contained in:
rob tillaart 2021-12-13 21:05:26 +01:00
parent 45c50e1f54
commit 433e8acdd9
7 changed files with 19 additions and 11 deletions

View File

@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) 2015-2021 Rob Tillaart Copyright (c) 2015-2022 Rob Tillaart
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@ -21,4 +21,10 @@ this is useful for debugging memory allocation.
## Operation ## Operation
See example heapdemo2.ino See example heapdemo2.ino
## Future
- no development unless specific requested.
-

View File

@ -10,13 +10,14 @@
// http://forum.arduino.cc/index.php?topic=355660 // http://forum.arduino.cc/index.php?topic=355660
// //
// HISTORY // HISTORY
// 0.2.5 2021-12-13 update library.json, license
// 0.2.4 2021-10-19 update Arduino-CI + add badges // 0.2.4 2021-10-19 update Arduino-CI + add badges
// 0.2.3 2021-05027 add Arduino-CI // 0.2.3 2021-05027 add Arduino-CI
// 0.2.2 2020-12-13 arduino-CI + minimal unit tests // 0.2.2 2020-12-13 Arduino-CI + minimal unit tests
// 0.2.1 2020-05-27 update library.json // 0.2.1 2020-05-27 update library.json
// 0.2.0 2020-03-27 Removed support for pre 1.0 version // 0.2.0 2020-03-27 Removed support for pre 1.0 version
// 0.1.5 fix typo #116 - Thanks to DMNC // 0.1.5 fix typo #116 - Thanks to DMNC
// 0.1.04 new methods incl PrintTo support - Thanks to Whandall // 0.1.04 new methods including PrintTo support - Thanks to Whandall
// !! breaking interface // !! breaking interface
// 0.1.03 refactoring // 0.1.03 refactoring
// 0.1.02 added followHeap() // 0.1.02 added followHeap()

View File

@ -2,7 +2,7 @@
// //
// FILE: avrheap.h // FILE: avrheap.h
// AUTHOR: Rob Tillaart // AUTHOR: Rob Tillaart
// VERSION: 0.2.4 // VERSION: 0.2.5
// PURPOSE: experimental library for heap Arduino UNO // PURPOSE: experimental library for heap Arduino UNO
// HISTORY: See avrheap.cpp // HISTORY: See avrheap.cpp
// //
@ -17,7 +17,7 @@
#include "Printable.h" #include "Printable.h"
#define AVRHEAP_LIB_VERSION (F("0.2.4")) #define AVRHEAP_LIB_VERSION (F("0.2.5"))
class Avrheap : public Printable class Avrheap : public Printable

View File

@ -15,8 +15,9 @@
"type": "git", "type": "git",
"url": "https://github.com/RobTillaart/avrheap.git" "url": "https://github.com/RobTillaart/avrheap.git"
}, },
"version": "0.2.4", "version": "0.2.5",
"license": "MIT", "license": "MIT",
"frameworks": "arduino", "frameworks": "arduino",
"platforms": "avr" "platforms": "avr",
"headers": "avrheap.h"
} }

View File

@ -1,5 +1,5 @@
name=AvrHeap name=AvrHeap
version=0.2.4 version=0.2.5
author=Rob Tillaart <rob.tillaart@gmail.com> author=Rob Tillaart <rob.tillaart@gmail.com>
maintainer=Rob Tillaart <rob.tillaart@gmail.com> maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Library to runtime analyze the structure of the heap (AVR328). sentence=Library to runtime analyze the structure of the heap (AVR328).

View File

@ -38,8 +38,8 @@ unittest_teardown()
unittest(test_constructor) unittest(test_constructor)
{ {
Avrheap myheap; Avrheap myheap;
fprintf(stderr, "no unit tests yet"); fprintf(stderr, "no unit tests yet\n");
} }