extern void vAssertCalled( void );\r
#define configASSERT( x ) if( ( x ) == 0 ) vAssertCalled()\r
\r
-#define configNETWORK_INTERFACE_TO_USE 1L\r
+#define configNETWORK_INTERFACE_TO_USE 2L\r
\r
#define configMAC_ISR_SIMULATOR_PRIORITY ( 6 )\r
#define configLWIP_TASK_PRIORITY ( 5 )\r
#define configMAC_ADDR5 0x16\r
\r
/* IP address configuration. */\r
-#define configIP_ADDR0 192\r
-#define configIP_ADDR1 168\r
-#define configIP_ADDR2 0\r
+#define configIP_ADDR0 172\r
+#define configIP_ADDR1 25\r
+#define configIP_ADDR2 218\r
#define configIP_ADDR3 200\r
\r
/* Netmask configuration. */\r
#define configNET_MASK2 255\r
#define configNET_MASK3 0\r
\r
+/* The size of the global output buffer that is available for use when there\r
+are multiple command interpreters running at once (for example, one on a UART\r
+and one on TCP/IP). This is done to prevent an output buffer being defined by\r
+each implementation - which would waste RAM. In this case, there is only one\r
+command interpreter running, and it has its own local output buffer, so the\r
+global buffer is just set to be one byte long as it is not used and should not\r
+take up unnecessary RAM. */\r
+#define configCOMMAND_INT_MAX_OUTPUT_SIZE 1\r
+\r
#endif /* FREERTOS_CONFIG_H */\r