-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
stm32: Add support for ETH RMII peripheral #3808
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
Closed
Closed
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
08313c7
HAL ethernet module enabled
boochow 3d47878
add ethernet module to modnetwork
boochow e287629
add ethernetif.c from STM32CubeMX sample (STM32Cube_FW_F7_V1.8.0/Proj…
boochow c0cec2f
stm32: STM32 ethernet driver integrated.
boochow 3a16090
stm32: ethernetif.c selects hal header file according to MCU_SERIES C…
boochow 836bdc5
stm32:NUCLEO_F767ZI/stm32f7xx_hal_conf.h corrected PHY_CONFIG_DELAY v…
boochow 7ccee7c
stm32: ethernet dma table/data buffer moved to fixed RAM area(0x2002000)
boochow 5cfeae6
stm32: ethernetif.c pin configuration changed to refer pin.csv and mp…
boochow 05b153e
stm32: added: generate mac address from hardware id
boochow 6d5e063
stm32: ethernetif.c removed unnecessary comment lines.
boochow edd7e0b
stm32: boards/NUCLEO_F767ZI/stm32f7x_hal_conf.h shortend PHY_RESET_DE…
boochow bb2cc7b
stm32: ethernetif.c mac address generator changed to use fnv-1 hash a…
boochow 4699bae
stm32/boards/stm32f746.ld: Add ethernet DMA descriptor table in RAM.
forester3 726a940
stm32/boards/STM32F7DISC: Enable ETH peripheral.
forester3 42183dc
stm32/ethernetif: Update pin usage.
dpgeorge 7903dee
stm32/boards/NUCLEO_F767ZI: Enable lwIP and ETH_RMII.
dpgeorge cc0339d
stm32/mpconfigboard_common.h: Add MICROPY_HW_ENABLE_ETH_RMII option.
dpgeorge 7d5060a
stm32/ethernetif: Make TX and RX buffers just static global variables.
dpgeorge 0b1d087
stm32/network_ethernet: Use generic ifconfig helper.
dpgeorge File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Where did you obtain this file from?
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.
Specifically, the network_ethernet.c file
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.
As mentioned above, this PR was superseded by #4541 and
network_ethernet.c
was replaced bynetwork_lan.c