WIP: develop_update #706

Draft
muellerr wants to merge 710 commits from eive/fsfw:develop_update into development
1 changed files with 2 additions and 2 deletions
Showing only changes of commit f80c5980ea - Show all commits

View File

@ -54,7 +54,7 @@ class VectorOperations {
}
static T maxAbsValue(const T *vector, uint8_t size, uint8_t *index = 0) {
T max = -1;
T max = vector[size - 1];
for (; size > 0; size--) {
T abs = vector[size - 1];
@ -72,7 +72,7 @@ class VectorOperations {
}
static T maxValue(const T *vector, uint8_t size, uint8_t *index = 0) {
T max = -1;
T max = vector[size - 1];
for (; size > 0; size--) {
if (vector[size - 1] > max) {