Skip to content
This repository was archived by the owner on Jan 29, 2023. It is now read-only.

Commit 5adf5c9

Browse files
authored
v1.3.0 to fix multiple-definitions linker error
### Releases v1.3.0 1. Fix multiple-definitions linker error. 2. Update examples for new STM32 core v2.3.0 3. Add example [multiFileProject](examples/multiFileProject) and [multiFileProject_LAN8720](examples/multiFileProject_LAN8720) to demo for multiple-file project to avoid `multiple-definitions` linker error 4. Update `Packages' Patches`
1 parent 7c99afd commit 5adf5c9

File tree

39 files changed

+2224
-303
lines changed

39 files changed

+2224
-303
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ If you don't find anything, please [open a new issue](https://github.com/khoih-p
1414

1515
Please ensure to specify the following:
1616

17-
* Arduino IDE version (e.g. 1.8.16) or Platform.io version
18-
* `STM32` Core Version (e.g. STM32 core v2.1.0)
17+
* Arduino IDE version (e.g. 1.8.19) or Platform.io version
18+
* `STM32` Core Version (e.g. STM32 core v2.3.0)
1919
* Board type and relevant info
2020
* Contextual information (e.g. what you were trying to achieve)
2121
* Simplest possible steps to reproduce
@@ -27,11 +27,11 @@ Please ensure to specify the following:
2727
### Example
2828

2929
```
30-
Arduino IDE version: 1.8.16
31-
STM32 Core Version 2.1.0
30+
Arduino IDE version: 1.8.19
31+
STM32 Core Version 2.3.0
3232
Nucleo-144 STM32H7 NUCLEO_H743ZI2
3333
OS: Ubuntu 20.04 LTS
34-
Linux xy-Inspiron-3593 5.4.0-86-generic #97-Ubuntu SMP Fri Sep 17 19:19:40 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
34+
Linux xy-Inspiron-3593 5.13.0-51-generic #58~20.04.1-Ubuntu SMP Tue Jun 14 11:29:12 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
3535
3636
Context:
3737
I encountered a crash while using TimerInterrupt.
@@ -52,3 +52,4 @@ There are usually some outstanding feature requests in the [existing issues list
5252
### Sending Pull Requests
5353

5454
Pull Requests with changes and fixes are also welcome!
55+

Packages_Patches/STM32/hardware/stm32/2.1.0/system/STM32F4xx/stm32f4xx_hal_conf_default.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ in voltage and temperature. */
237237
//#define LAN8742A_PHY_ADDRESS 0x00U
238238
/* Section 2: PHY configuration section */
239239
#if !defined (LAN8742A_PHY_ADDRESS)
240-
/* KH, LAN8742A PHY Address*/
240+
/* LAN8742A PHY Address*/
241241
#define LAN8742A_PHY_ADDRESS 0x00U
242242
#endif
243243
////////////////////////////////

Packages_Patches/STM32/hardware/stm32/2.1.0/system/STM32F7xx/stm32f7xx_hal_conf_default.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ in voltage and temperature. */
232232
//#define LAN8742A_PHY_ADDRESS 0x00U
233233
/* Section 2: PHY configuration section */
234234
#if !defined (LAN8742A_PHY_ADDRESS)
235-
/* KH, LAN8742A PHY Address*/
235+
/* LAN8742A PHY Address*/
236236
#define LAN8742A_PHY_ADDRESS 0x00U
237237
#endif
238238
////////////////////////////////

0 commit comments

Comments
 (0)