From fcaffd130fc54db8e9adfc25c24063744bc460fe Mon Sep 17 00:00:00 2001 From: richardbarry 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. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1361 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- 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 074e9bfa8..fe976ba58 100644 --- a/Demo/CORTEX_A2F200_SoftConsole/.cproject +++ b/Demo/CORTEX_A2F200_SoftConsole/.cproject @@ -439,6 +439,9 @@