-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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 renesas ra8 support. #2601
base: master
Are you sure you want to change the base?
Add renesas ra8 support. #2601
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,6 +48,7 @@ extern "C" { | |
/* Start of definition of packed structs (used by the CCRX toolchain) */ | ||
TU_ATTR_PACKED_BEGIN | ||
TU_ATTR_BIT_FIELD_ORDER_BEGIN | ||
#pragma pack(2) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I found that using the armclang compiler(ac6) without adding this code will cause it to not run properly. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If pack is wrong it should be fixed in |
||
|
||
// TODO same as RUSB2_PIPE_TR_t | ||
typedef struct TU_ATTR_PACKED _ccrx_evenaccess { | ||
|
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.
You need to put this statement inside conditional check as other MCUs don't support HS. For example
#if defined(BSP_MCU_GROUP_RA8M1)
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.
OK