Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 98b4b7b

Browse files
authoredFeb 22, 2022
Merge pull request #407 from bstbud/bf_crash_NiclaSystemlib
fix crash with some compilers due to missing return statement
2 parents 8e7e729 + ad6f6af commit 98b4b7b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎libraries/Nicla_System/src/Nicla_System.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ bool nicla::begin()
3232
th.start(&nicla::pingI2CThd);
3333
#endif
3434
started = true;
35+
36+
return true;
3537
}
3638

3739
void nicla::enableCD()

0 commit comments

Comments
 (0)
Please sign in to comment.