-
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 97.69% 83.92% -13.77%
===========================================
Files 33 38 +5
Lines 1039 1406 +367
Branches 25 50 +25
===========================================
+ Hits 1015 1180 +165
- Misses 24 226 +202 ☔ View full report in Codecov by Sentry. |
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
be2cb52
to
c746094
Compare
- Use proper English grammar and spelling - Add missing line breaks
Rename PeripherySupervision to SpiSupervisor, part 2
afebffb
to
e7de75c
Compare
72db7b8
to
23dee52
Compare
This makes it easier to avoid cyclic dependencies.
We actually do need this to break the cyclic dependency between `RealTime.hpp` and `FramLayout.hpp`.
1969100
to
54f7c8a
Compare
191119d
to
199a3f9
Compare
fe01b0d
to
09d9d18
Compare
51e57a4
to
d5a484f
Compare
Fixes #305