]> git.sur5r.net Git - freertos/commitdiff
Add additional comments to the Zynq lwIP demo.
authorrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 13 Jun 2014 14:06:43 +0000 (14:06 +0000)
committerrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 13 Jun 2014 14:06:43 +0000 (14:06 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@2259 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

FreeRTOS/Demo/CORTEX_A9_Zynq_ZC702/RTOSDemo/src/lwIP_Demo/lwIP_port/sys_arch.c
FreeRTOS/Demo/CORTEX_A9_Zynq_ZC702/RTOSDemo/src/lwIP_Demo/main_lwIP.c

index e2e880521053e3c5fc7add61c6381edc53c5aab2..bb3662e0de78f04b9dd53ef4ab15e3493852ab5c 100644 (file)
@@ -422,7 +422,6 @@ BaseType_t xHigherPriorityTaskWoken = pdFALSE;
        }\r
        else\r
        {\r
-#warning What happens if the mutex cannot be taken from an ISR in the code below\r
                xGotSemaphore = xSemaphoreTakeFromISR( *pxMutex, &xHigherPriorityTaskWoken );\r
                configASSERT( xGotSemaphore );\r
                portYIELD_FROM_ISR( xHigherPriorityTaskWoken );\r
index 7cd652da66a9caaa8b430b8203404afab5f4a277..d749abda54a0e7fc660e5ab42ef9c821a95b9955 100644 (file)
  * basic demo.  Generic functions, such FreeRTOS hook functions, and functions\r
  * required to configure the hardware are defined in main.c.\r
  ******************************************************************************\r
+ *\r
+ * The lwIP example can be configured to use either a static or dynamic IP\r
+ * address:\r
+ *    + To use a dynamically allocated IP address set LWIP_DHCP to 1 in\r
+ *      lwipopts.h and connect the target to a network that includes a DHCP\r
+ *      server.  The obtained IP address is printed to the UART console.\r
+ *    + To use a static IP address set LWIP_DHCP to 0 in lwipopts.h and set\r
+ *      the static IP address using the configIP_ADDR0 to configIP_ADDR3\r
+ *      constants at the bottom of FreeRTOSConfig.h.  Constants used to define\r
+ *      a netmask are also located at the bottom of FreeRTOSConfig.h.\r
+ *\r
+ * When connected correctly the demo uses the lwIP sockets API to create\r
+ * a FreeRTOS+CLI command console, and the lwIP raw API to create a create a\r
+ * basic HTTP web server with server side includes that generate dynamic run\r
+ * time web pages.  See http://www.freertos.org/RTOS-Xilinx-Zynq.html for more\r
+ * information.\r
  */\r
-#warning Need to update the comment above.\r
 \r
 /* Kernel includes. */\r
 #include "FreeRTOS.h"\r