From c0bf3cd7f9f571e94f5fd9fa23683674d0f918e6 Mon Sep 17 00:00:00 2001 From: Richard Barry Date: Sun, 17 Apr 2011 10:32:09 +0000 Subject: [PATCH] Add in basic uIP files into the A2F demo. Ping is working, but nothing else has been tested yet. This check in includes some modifications to the MAC driver to make the Rx zero copy. --- Demo/CORTEX_A2F200_SoftConsole/.cproject | 5 +- .../FreeRTOSConfig.h | 2 +- .../MicroSemi_Code/drivers/OLED/oled.h | 3 +- .../MicroSemi_Code/drivers/bsp_config.h | 28 + .../MicroSemi_Code/drivers/mac/nettype.h | 233 ------ .../MicroSemi_Code/drivers/mac/tcpip.c | 748 ------------------ .../MicroSemi_Code/drivers/mac/tcpip.h | 234 ------ .../mss_ethernet_mac/mss_ethernet_mac.c | 11 +- .../mss_ethernet_mac/mss_ethernet_mac.h | 2 +- .../mss_ethernet_mac/mss_ethernet_mac_conf.h | 2 +- Demo/CORTEX_A2F200_SoftConsole/OLED.c | 82 ++ .../WebServer/EMAC.c | 60 +- .../WebServer/uip-conf.h | 8 +- Demo/CORTEX_A2F200_SoftConsole/main-full.c | 21 + 14 files changed, 199 insertions(+), 1240 deletions(-) create mode 100644 Demo/CORTEX_A2F200_SoftConsole/MicroSemi_Code/drivers/bsp_config.h delete mode 100644 Demo/CORTEX_A2F200_SoftConsole/MicroSemi_Code/drivers/mac/nettype.h delete mode 100644 Demo/CORTEX_A2F200_SoftConsole/MicroSemi_Code/drivers/mac/tcpip.c delete mode 100644 Demo/CORTEX_A2F200_SoftConsole/MicroSemi_Code/drivers/mac/tcpip.h create mode 100644 Demo/CORTEX_A2F200_SoftConsole/OLED.c diff --git a/Demo/CORTEX_A2F200_SoftConsole/.cproject b/Demo/CORTEX_A2F200_SoftConsole/.cproject index 074e9bfa8f..fe976ba58f 100644 --- a/Demo/CORTEX_A2F200_SoftConsole/.cproject +++ b/Demo/CORTEX_A2F200_SoftConsole/.cproject @@ -439,6 +439,9 @@