-
Notifications
You must be signed in to change notification settings - Fork 94
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(Other): Zephyr: MAX32660: add compat wrappers #1336
base: main
Are you sure you want to change the base?
Conversation
4f0e4c2
to
82dad15
Compare
82dad15
to
a7cd270
Compare
Some defines and structs are different so reconcile these here Signed-off-by: Matthew McClintock <[email protected]>
a7cd270
to
0a34a87
Compare
I have similar kind of PR for MAX32650 at #1337. The reviewers said that do not use MXC type macro on wrapper files. Use ADI macro if you can or change the macro file directly at *_regs.h (e.g uart_regs.h). Please review the other PR. If MXC type macro is used directly at zephyr drivers (and the board doesnt have that macro), replace the MXC macro with ADI macro on zephyr drivers and add to the wrapper file. |
${MSDK_PERIPH_SRC_DIR}/FLC | ||
${MSDK_PERIPH_SRC_DIR}/GPIO | ||
${MSDK_PERIPH_SRC_DIR}/I2C | ||
${MSDK_PERIPH_SRC_DIR}/I2S |
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.
${MSDK_PERIPH_SRC_DIR}/I2S | |
${MSDK_PERIPH_SRC_DIR}/SPIMSS |
if (CONFIG_I2S_MAX32) | ||
zephyr_library_sources( | ||
${MSDK_PERIPH_SRC_DIR}/I2S/i2s_me11.c | ||
${MSDK_PERIPH_SRC_DIR}/I2S/i2s_reva.c |
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.
${MSDK_PERIPH_SRC_DIR}/I2S/i2s_reva.c | |
${MSDK_PERIPH_SRC_DIR}/SPIMSS/i2s_reva.c |
|
||
if (CONFIG_I2S_MAX32) | ||
zephyr_library_sources( | ||
${MSDK_PERIPH_SRC_DIR}/I2S/i2s_me11.c |
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.
${MSDK_PERIPH_SRC_DIR}/I2S/i2s_me11.c | |
${MSDK_PERIPH_SRC_DIR}/SPIMSS/i2s_me11.c |
Some defines and structs are different so reconcile these here