-
Notifications
You must be signed in to change notification settings - Fork 2
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
Test error handling for SPI code #315
base: master
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #315 +/- ##
==========================================
- Coverage 87.27% 82.75% -4.53%
==========================================
Files 37 47 +10
Lines 1352 1577 +225
Branches 50 57 +7
==========================================
+ Hits 1180 1305 +125
- Misses 172 272 +100 ☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
7e5fde1
to
994e1bb
Compare
cd593b3
to
80b9b51
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FlashMock.hpp
only needs to declare what is necessary for mocking in addition toFlash.hpp
. That means you need to remove everything up to and includingextern hal::Spi spi;
and includeFlash.hpp
instead. Also remove the duplicated comments at the top of the file.
3c9064f
to
72944b6
Compare
ee5999c
to
a048173
Compare
afebffb
to
e7de75c
Compare
1969100
to
54f7c8a
Compare
191119d
to
199a3f9
Compare
fe01b0d
to
09d9d18
Compare
51e57a4
to
d5a484f
Compare
1ac2489
to
b202cf8
Compare
61c8644
to
4b579ed
Compare
4b579ed
to
e93a826
Compare
e93a826
to
5472b2c
Compare
This makes it easier to avoid cyclic dependencies.
The resume functions were not enough. We really needed the threads.
5472b2c
to
988f02b
Compare
8a7f774
to
94f23e7
Compare
Fixes #305