fix kernel panic (vector out of range) in getReadoutRawString (#1250)

This commit is contained in:
Frank Haverland
2022-10-31 22:04:34 +01:00
committed by GitHub
parent b6b7587f0a
commit 1be49a75b1
4 changed files with 33 additions and 2 deletions

View File

@@ -4,6 +4,7 @@
#include "components/jomjol-flowcontroll/test_flowpostprocessing.cpp"
#include "components/jomjol-flowcontroll/test_flow_pp_negative.cpp"
#include "components/jomjol-flowcontroll/test_ZeigerEvalAnalogToDigitNeu.cpp"
#include "components/jomjol-flowcontroll/test_getReadoutRawString.cpp"
// SD-Card ////////////////////
#include "nvs_flash.h"
#include "esp_vfs_fat.h"
@@ -116,6 +117,9 @@ extern "C" void app_main()
RUN_TEST(test_doFlowPP1);
RUN_TEST(test_doFlowPP2);
RUN_TEST(test_doFlowPP3);
// getReadoutRawString test
RUN_TEST(test_getReadoutRawString);
UNITY_END();
}