-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix avr boards compilation error and small performance improvements (#10
) * refactor(DataTomeMvAvg): 🎨 mean and count aliases now belongs to DataTomeMvAvg instead of DataTomeAnalysis Mean and count aliases now belongs to DataTomeMvAvg instead of DataTomeAnalysis. Comments were fixed to reflect the changes. keywords.txt was updated. * style(test): 🎨 fix typing case of DataTome instances on test code * refactor(DataTomeAnalysis): ⚡ improve calculation of method var * docs: 📝 update lib description * fix(DataTomeAnalysis): 🚑 fix var method miscalculation * docs: 📝 fix docs url file name * docs(readme): 🎨 improve readme style * docs(library_metadata): 📝 update library description * fix(DataTome): 🐛 fixed the library compiling issue on avr boards #12 * fix(DataTomeAnalysis): 🐛 fix qsort callback function
- Loading branch information
1 parent
d0902ce
commit 5ca50c8
Showing
15 changed files
with
259 additions
and
160 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -14,4 +14,7 @@ build/ | |
.idea/ | ||
CMakeSettings.json | ||
|
||
.pio/ | ||
# Local Build Test | ||
main.cpp | ||
|
||
.pio/ |
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,12 +1,63 @@ | ||
{ | ||
"files.associations": { | ||
"*.postcss": "tailwindcss", | ||
"*.svelte": "svelte", | ||
"*.html": "html", | ||
"array": "cpp", | ||
"string_view": "cpp", | ||
"initializer_list": "cpp", | ||
"utility": "cpp" | ||
"utility": "cpp", | ||
"atomic": "cpp", | ||
"*.tcc": "cpp", | ||
"cctype": "cpp", | ||
"clocale": "cpp", | ||
"cmath": "cpp", | ||
"cstdarg": "cpp", | ||
"cstddef": "cpp", | ||
"cstdint": "cpp", | ||
"cstdio": "cpp", | ||
"cstdlib": "cpp", | ||
"cstring": "cpp", | ||
"ctime": "cpp", | ||
"cwchar": "cpp", | ||
"cwctype": "cpp", | ||
"deque": "cpp", | ||
"unordered_map": "cpp", | ||
"unordered_set": "cpp", | ||
"vector": "cpp", | ||
"exception": "cpp", | ||
"algorithm": "cpp", | ||
"functional": "cpp", | ||
"iterator": "cpp", | ||
"map": "cpp", | ||
"memory": "cpp", | ||
"memory_resource": "cpp", | ||
"numeric": "cpp", | ||
"optional": "cpp", | ||
"random": "cpp", | ||
"string": "cpp", | ||
"system_error": "cpp", | ||
"tuple": "cpp", | ||
"type_traits": "cpp", | ||
"fstream": "cpp", | ||
"iomanip": "cpp", | ||
"iosfwd": "cpp", | ||
"istream": "cpp", | ||
"limits": "cpp", | ||
"new": "cpp", | ||
"ostream": "cpp", | ||
"sstream": "cpp", | ||
"stdexcept": "cpp", | ||
"streambuf": "cpp", | ||
"cinttypes": "cpp", | ||
"typeinfo": "cpp" | ||
}, | ||
"conventionalCommits.scopes": [ | ||
"DataTomeAnalysis", | ||
"DataTomeMvAvg" | ||
"DataTomeMvAvg", | ||
"test", | ||
"readme", | ||
"library_metadata", | ||
"DataTome" | ||
] | ||
} |
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
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
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
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
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,9 +1,9 @@ | ||
name=DataTome | ||
version=1.6.3 | ||
version=1.7.0 | ||
author=Alexandre Hiroyuki Yamauchi <alex.hiroyuki@outlook.com> | ||
maintainer=Alexandre Hiroyuki Yamauchi <alex.hiroyuki@outlook.com> | ||
sentence=Moving Average and other statistical functions compatible with any number type. | ||
paragraph=Fully documented. Data Tome is a C++ library for data analysis and data filtering on IoT devices. Focus on the developer experience and performance. | ||
sentence=Data analysis and filtering using time series for embedded devices (IoT). All in a single C++ library, Data Tome. | ||
paragraph=Fully documented. Focus on the developer's experience and performance. | ||
category=Data Processing | ||
url=https://github.com/AlexandreHiroyuki/DataTome | ||
architectures=* |
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
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 |
---|---|---|
|
@@ -9,5 +9,6 @@ | |
|
||
#include <DataTomeAnalysis.h> | ||
#include <DataTomeMvAvg.h> | ||
#include <DataTomeUtils.h> | ||
|
||
#endif // DATA_TOME_H |
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
Oops, something went wrong.