-
Notifications
You must be signed in to change notification settings - Fork 145
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 support for S32K148 SoC #509
base: master
Are you sure you want to change the base?
Add support for S32K148 SoC #509
Conversation
Have the changes to the SDK drivers sent to the SDK team? Here is the repo incase this has not been submitted to the SDK driver. |
@@ -1627,10 +1627,21 @@ status_t ENET_GetRxFrameSize(enet_handle_t *handle, uint32_t *length, uint8_t ri | |||
{ | |||
isReturn = true; | |||
/* The last buffer descriptor in the frame check the status of the received frame. */ | |||
if (0U != (curBuffDescrip->control & ENET_BUFFDESCRIPTOR_RX_ERR_MASK)) | |||
if (IS_ENABLED(CONFIG_ETH_NXP_ENET_IGNORE_RX_CRC_PHY_ERROR)) |
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. We will take care of that (@KevShaju) |
3e9922d
to
757c89a
Compare
Add support for S32K148 SoC. Drivers enabled: SYSMPU, GPIO, PORT, LPUART, ADC, FlexCAN, FTM, RTC, LMEM, WDOG. Signed-off-by: Marcin Wierzbicki <[email protected]>
Add support for ENET. Signed-off-by: Kevin Shaju <[email protected]>
757c89a
to
e3b7e81
Compare
@manuargue I managed to generate OsIf, clocks, and SoC related code using S32DS IDE with support for S32K1 + RTD for S32K1. Please, check. |
Add support for S32K148 SoC.
Drivers enabled: SYSMPU, GPIO, PORT, LPUART, ADC, FlexCAN, FTM, RTC, LMEM, WDOG, ENET.