Skip to content

Corrected NUCLEO_F429ZI f_cpu, added support for Multicast UDP (stm32Ethernet library) #198

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
wants to merge 14 commits into from
Closed
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: 1 addition & 1 deletion boards.txt
Original file line number Diff line number Diff line change
@@ -43,7 +43,7 @@ Nucleo_144.menu.pnum.NUCLEO_F429ZI.node=NODE_F429ZI
Nucleo_144.menu.pnum.NUCLEO_F429ZI.upload.maximum_size=2097152
Nucleo_144.menu.pnum.NUCLEO_F429ZI.upload.maximum_data_size=262144
Nucleo_144.menu.pnum.NUCLEO_F429ZI.build.mcu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard
Nucleo_144.menu.pnum.NUCLEO_F429ZI.build.f_cpu=16000000L
Nucleo_144.menu.pnum.NUCLEO_F429ZI.build.f_cpu=18000000L
Nucleo_144.menu.pnum.NUCLEO_F429ZI.build.board=NUCLEO_F429ZI
Nucleo_144.menu.pnum.NUCLEO_F429ZI.build.series=STM32F4xx
Nucleo_144.menu.pnum.NUCLEO_F429ZI.build.product_line=STM32F429xx
16 changes: 8 additions & 8 deletions platform.txt
Original file line number Diff line number Diff line change
@@ -126,21 +126,21 @@ recipe.size.regex.eeprom=^(?:\.eeprom)\s+([0-9]+).*
tools.massStorageCopy.cmd=massStorageCopy
tools.massStorageCopy.cmd.windows=massStorageCopy.bat
tools.massStorageCopy.cmd.macosx=massStorageCopyMacOsX
tools.massStorageCopy.path={runtime.hardware.path}/tools/win
tools.massStorageCopy.path.macosx={runtime.hardware.path}/tools/macosx
tools.massStorageCopy.path.linux={runtime.hardware.path}/tools/linux
tools.massStorageCopy.path.linux64={runtime.hardware.path}/tools/linux
tools.massStorageCopy.path={runtime.tools.STM32Tools.path}/tools/win
tools.massStorageCopy.path.macosx={runtime.tools.STM32Tools.path}/tools/macosx
tools.massStorageCopy.path.linux={runtime.tools.STM32Tools.path}/tools/linux
tools.massStorageCopy.path.linux64={runtime.tools.STM32Tools.path}/tools/linux
tools.massStorageCopy.upload.params.verbose=
tools.massStorageCopy.upload.params.quiet=
tools.massStorageCopy.upload.pattern="{path}/{cmd}" {upload.verbose} -I "{build.path}/{build.project_name}.bin" -O "{node}"

# ST-Link upload
tools.stlink_upload.cmd=stlink_upload
tools.stlink_upload.cmd.windows=stlink_upload.bat
tools.stlink_upload.path.windows={runtime.hardware.path}/tools/win
tools.stlink_upload.path.macosx={runtime.hardware.path}/tools/macosx
tools.stlink_upload.path.linux={runtime.hardware.path}/tools/linux
tools.stlink_upload.path.linux64={runtime.hardware.path}/tools/linux64
tools.stlink_upload.path.windows={runtime.tools.STM32Tools.path}/tools/win
tools.stlink_upload.path.macosx={runtime.tools.STM32Tools.path}/tools/macosx
tools.stlink_upload.path.linux={runtime.tools.STM32Tools.path}/tools/linux
tools.stlink_upload.path.linux64={runtime.tools.STM32Tools.path}/tools/linux64
tools.stlink_upload.upload.params.verbose=-d
tools.stlink_upload.upload.params.quiet=
tools.stlink_upload.upload.pattern="{path}/{cmd}" {serial.port.file} {upload.altID} {upload.usbID} "{build.path}/{build.project_name}.bin"
856 changes: 428 additions & 428 deletions system/Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_eth.c

Large diffs are not rendered by default.

871 changes: 436 additions & 435 deletions system/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c

Large diffs are not rendered by default.

876 changes: 438 additions & 438 deletions system/Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_eth.c

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions variants/DISCO_F746NG/Ethernet/lwipopts.h
Original file line number Diff line number Diff line change
@@ -246,6 +246,8 @@ The STM32F4x7 allows computing and verifying the IP, UDP, TCP and ICMP checksums
* an operating system. */
//#define ETH_INPUT_USE_IT 1

#define LWIP_IGMP 1

#endif /* __LWIPOPTS_H__ */

/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
2 changes: 2 additions & 0 deletions variants/NUCLEO_F429ZI/Ethernet/lwipopts.h
Original file line number Diff line number Diff line change
@@ -246,6 +246,8 @@ The STM32F4x7 allows computing and verifying the IP, UDP, TCP and ICMP checksums
* an operating system. */
//#define ETH_INPUT_USE_IT 1

#define LWIP_IGMP 1

#endif /* __LWIPOPTS_H__ */

/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/