-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add BIP-85 applications to Flex and Stax #14
base: develop
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #14 +/- ##
===========================================
+ Coverage 60.04% 60.95% +0.90%
===========================================
Files 14 18 +4
Lines 1632 1670 +38
Branches 266 270 +4
===========================================
+ Hits 980 1018 +38
Misses 612 612
Partials 40 40
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
} | ||
PRINTF("BIP85 index entered is '%d'\n", bip85_index_get()); | ||
|
||
if ((bip85_index_get() >= 0) && (bip85_index_get() <= UINT32_MAX)) { |
Check warning
Code scanning / CodeQL
Unsigned comparison to zero Warning
} | ||
PRINTF("BIP85 index entered is '%d'\n", bip85_index_get()); | ||
|
||
if ((bip85_index_get() >= 0) && (bip85_index_get() <= UINT32_MAX)) { |
Check warning
Code scanning / CodeQL
Comparison result is always the same Warning
This PR adds the following BIP-85 applications for Flex and Stax devices:
The code has also been written for other BIP-85 applications such as hex output and dice throws but a UI has not yet been added for these while I decide if they will be useful or just add bloat to the app. They may appear in a future version.
I am also debating what BIP-85 applications (if any) should be added to Nano devices.
This PR is currently a work in progress while I add some function tests.