-
Notifications
You must be signed in to change notification settings - Fork 99
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
fix ccrx use case for rx72n #500
Conversation
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.
nit: indentation in user_settings.h for RX72n
@@ -49,6 +49,9 @@ | |||
/* #define WOLFBOOT_SIGN_ECC256 */ | |||
/* #define WOLFBOOT_SIGN_ECC384 */ | |||
/* #define WOLFBOOT_SIGN_ECC521 */ | |||
#if !defined(min) | |||
#define min(data1, data2) _builtin_min(data1, data2) | |||
#endif |
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.
align "endif" to its "if", replace tab with spaces.
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.
looks like there's a tab in L53 as well, while we use spaces everywhere.
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.
Thanks. e2Studio inserts tab as default.
No description provided.