调整缩进

This commit is contained in:
luhuadong 2019-06-27 17:14:03 +08:00
parent 72fd4f0427
commit 97d8f14aeb
2 changed files with 20 additions and 20 deletions

View File

@ -12,24 +12,24 @@ menu "Onboard Peripheral Drivers"
select BSP_USING_UART3
default y
config BSP_USING_ETH
bool "Enable Ethernet"
select RT_USING_LWIP
default n
config BSP_USING_ETH
bool "Enable Ethernet"
select RT_USING_LWIP
default n
if BSP_USING_ETH
choice
prompt "On-board PHY chip"
default PHY_USING_LAN8720A
if BSP_USING_ETH
choice
prompt "On-board PHY chip"
default PHY_USING_LAN8720A
config PHY_USING_LAN8720A
bool "LAN8720A"
config PHY_USING_LAN8720A
bool "LAN8720A"
config PHY_USING_DM9161CEP
bool "DM9161CEP"
config PHY_USING_DM9161CEP
bool "DM9161CEP"
endchoice
endif
endchoice
endif
endmenu

View File

@ -12,10 +12,10 @@
void phy_reset(void)
{
/*
* The PHY reset pin of NUCLEO-F767ZI is connected to the MCU reset pin,
* so no additional reset is required.
*/
return ;
/*
* The PHY reset pin of NUCLEO-F767ZI is connected to the MCU reset pin,
* so no additional reset is required.
*/
return ;
}