Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unnecessary null pointer checks #1649 #1673

Merged
merged 38 commits into from
Dec 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
2265563
fix kernel panic (vector out of range) in getReadoutRawString
haverland Oct 31, 2022
18d86ea
fix key of caches
haverland Nov 27, 2022
b798f85
Merge branch 'rolling' of https://github.com/haverland/AI-on-the-edge…
haverland Nov 27, 2022
c0ec71d
fix key of caches
haverland Nov 27, 2022
a88308b
fix key caches
haverland Nov 27, 2022
88e5fb9
fix cache keys
haverland Nov 27, 2022
7a5524e
fix cache keys
haverland Nov 27, 2022
de51656
move set variables to top
haverland Nov 27, 2022
f682fea
debug
haverland Nov 27, 2022
82d264d
fix cache-keys
haverland Nov 27, 2022
f6d47d4
fix key
haverland Nov 28, 2022
52d4f2b
testing
haverland Nov 28, 2022
4ce3202
try fix changelog
haverland Nov 28, 2022
0464a79
test
haverland Nov 28, 2022
4f51ec7
Update Changelog.md for release
invalid-email-address Nov 28, 2022
e85c0b0
Revert "Update Changelog.md for release"
haverland Nov 28, 2022
3fd797e
remove testing
haverland Nov 28, 2022
eb80e0b
Merge branch 'rolling' of https://github.com/haverland/AI-on-the-edge…
haverland Nov 28, 2022
35af5cc
fix release creation
haverland Nov 28, 2022
6b804d4
testing
haverland Nov 28, 2022
2901263
Update Changelog.md for release
invalid-email-address Nov 28, 2022
a096cf7
test
haverland Nov 28, 2022
f68695a
Merge branch 'master' of https://github.com/haverland/AI-on-the-edge-…
haverland Nov 28, 2022
de3381d
Revert "Merge branch 'master' of https://github.com/haverland/AI-on-t…
haverland Nov 28, 2022
f29f779
Revert "test"
haverland Nov 28, 2022
21bc70a
revert testing
haverland Nov 28, 2022
2b5cedf
Merge branch 'rolling' of https://github.com/haverland/AI-on-the-edge…
haverland Dec 8, 2022
1c82952
#1524 - ensure the result of ZeigerEvalHybridNeu is <10
haverland Dec 8, 2022
155eefc
Fix late digit transition #1503
haverland Dec 8, 2022
a3f4e7a
only initial_esp32_setup and update.zip as artefacts
haverland Dec 12, 2022
e3bcdc2
remove unneeded cache
haverland Dec 12, 2022
aeb8f4f
Merge branch 'jomjol:rolling' into rolling
haverland Dec 12, 2022
9aee688
rename step ota-v2 to ota
haverland Dec 12, 2022
f28b0c3
rename ota-v2 to ota
haverland Dec 12, 2022
7293ee4
Merge branch 'jomjol:rolling' into rolling
haverland Dec 18, 2022
d754b06
new models
haverland Dec 18, 2022
e01d690
Merge branch 'rolling' of https://github.com/haverland/AI-on-the-edge…
haverland Dec 22, 2022
fac7292
Remove unnecessary null pointer checks #1649
haverland Dec 22, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions code/components/jomjol_flowcontroll/ClassFlowAlignment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ bool ClassFlowAlignment::doFlow(string time)
if (!ImageTMP)
ImageTMP = new CImageBasis(ImageBasis, 5);

if (AlignAndCutImage)
delete AlignAndCutImage;
delete AlignAndCutImage;

AlignAndCutImage = new CAlignAndCutImage(ImageBasis, ImageTMP);

CRotateImage rt(AlignAndCutImage, ImageTMP, initialflip);
Expand Down
4 changes: 2 additions & 2 deletions code/components/jomjol_tfliteclass/CTfLiteClass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,8 @@ CTfLiteClass::~CTfLiteClass()
delete this->tensor_arena;
delete this->interpreter;
delete this->error_reporter;
if (modelload)
free(modelload);

free(modelload);
}


Expand Down