/* ipconfigNUM_NETWORK_BUFFERS defines the total number of network buffer that\r
are available to the IP stack. The total number of network buffers is limited\r
to ensure the total amount of RAM that can be consumed by the IP stack is capped\r
-to a pre-determinable value. NOTE: This constant is not used when all buffers\r
-are dynamically allocated and freed. */\r
+to a pre-determinable value. */\r
#define ipconfigNUM_NETWORK_BUFFERS 10\r
\r
/* A FreeRTOS queue is used to send events from application tasks to the IP\r
lower value can save RAM, depending on the buffer management scheme used. If\r
ipconfigCAN_FRAGMENT_OUTGOING_PACKETS is 1 then (ipconfigNETWORK_MTU - 28) must\r
be divisible by 8. */\r
-#define ipconfigNETWORK_MTU 1000\r
+#define ipconfigNETWORK_MTU 1500 /* Leave at 1500 for SAM4E. */\r
\r
/* Set ipconfigUSE_DNS to 1 to include a basic DNS client/resolver. DNS is used\r
through the FreeRTOS_gethostbyname() API function. */\r
#include "gmac.h"\r
\r
/** Number of buffer for RX */\r
-#define GMAC_RX_BUFFERS 16\r
+#define GMAC_RX_BUFFERS 64\r
\r
/** Number of buffer for TX */\r
-#define GMAC_TX_BUFFERS 8\r
+#define GMAC_TX_BUFFERS 16\r
\r
/** MAC PHY operation max retry count */\r
#define MAC_PHY_RETRY_MAX 1000000\r
network event hook only after a connection has been established (when the event\r
passed into the network event hook is eNetworkUp).\r
http://www.FreeRTOS.org/udp */\r
-#define mainCONNECTED_IP_TASK_PRIORITY ( configMAX_PRIORITIES - 2 )\r
+#define mainCONNECTED_IP_TASK_PRIORITY ( configMAX_PRIORITIES - 1 )\r
#define mainDISCONNECTED_IP_TASK_PRIORITY ( tskIDLE_PRIORITY )\r
\r
/* UDP command server task parameters. */\r