Fixed bug #1227.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15526 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
88dd95e70f
commit
1db669522c
|
@ -104,7 +104,7 @@ static void low_level_init(struct netif *netif) {
|
|||
|
||||
/* device capabilities */
|
||||
/* don't set NETIF_FLAG_ETHARP if this device is not an Ethernet one */
|
||||
netif->flags = NETIF_FLAG_BROADCAST | NETIF_FLAG_ETHARP | NETIF_FLAG_LINK_UP;
|
||||
netif->flags = NETIF_FLAG_BROADCAST | NETIF_FLAG_ETHARP;
|
||||
|
||||
/* Do whatever else is needed to initialize interface. */
|
||||
}
|
||||
|
|
|
@ -123,6 +123,8 @@
|
|||
- NEW: Added SPIv2 support also to STM32WB and STM32WL.
|
||||
- FIX: Re-opened and fixed bug #1100
|
||||
(backported to 20.3.5)(backported to 21.11.2).
|
||||
- FIX: Fixed invalid handling of lwIP NETIF_FLAG_LINK_UP flag (bug #1227)
|
||||
(backported to 20.3.5)(backported to 21.11.2).
|
||||
- FIX: Fixed missing TIM16/17 errata handling for STM32G0xx (bug #1226)
|
||||
(backported to 20.3.5)(backported to 21.11.2).
|
||||
- FIX: Fixed missing ADC errata handling for STM32G0xx (bug #1225)
|
||||
|
|
Loading…
Reference in New Issue