Skip to content
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

Support edma3 for s32z270dc2 #437

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions s32/README
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,5 @@ Patch List for S32Z/E:
- Clear the EOC flag before Adc_Sar_CheckAndCallEocNotification() is called to avoid the
race condition that prevents the next end of conversion callback to be executed, when
a conversion is started inside the previous end of conversion completed callback.
- Rename the DMAMUX_Type member CHCONF to CHCFG so that the MCUX DMA driver can be reused
for S32Z.
2 changes: 1 addition & 1 deletion s32/drivers/s32ze/BaseNXP/header/S32Z2_DMAMUX.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@

/** DMAMUX - Register Layout Typedef */
typedef struct {
__IO uint8_t CHCONF[DMAMUX_CHCFG_COUNT]; /**< Channel Configuration, array offset: 0x0, array step: 0x1, irregular array, not all indices are valid */
__IO uint8_t CHCFG[DMAMUX_CHCFG_COUNT]; /**< Channel Configuration, array offset: 0x0, array step: 0x1, irregular array, not all indices are valid */
} DMAMUX_Type, *DMAMUX_MemMapPtr;

/** Number of instances of the DMAMUX module. */
Expand Down
Loading