diff --git a/configs/fire-stm32v2/README.txt b/configs/fire-stm32v2/README.txt index 02485f812d5..d01ba3219a8 100644 --- a/configs/fire-stm32v2/README.txt +++ b/configs/fire-stm32v2/README.txt @@ -778,3 +778,9 @@ Where is one of the following: > make menuconfig Then de-select "Networking Support" -> "Networking Support" + + UPDATE: The primary problem with the ENC29J60 is a v2 board issue: The + SPI FLASH and the ENC28J60 shared the same SPI chip select signal (PA4-SPI1-NSS). + In order to finish the debug of the ENC28J60, it may be necessary to lift + the SPI FLASH chip select pin from the board. + diff --git a/net/send.c b/net/send.c index 950b3fc0bc3..8a5154191e9 100644 --- a/net/send.c +++ b/net/send.c @@ -268,7 +268,7 @@ static uint16_t send_interrupt(struct uip_driver_s *dev, void *pvconn, * then the send won't actually make it out... it will be replaced with * an ARP request. * - * NOTE 1: This could an expensive check if there are a lot of entries + * NOTE 1: This could be an expensive check if there are a lot of entries * in the ARP table. Hence, we only check on the first packet -- when * snd_sent is zero. *