]> git.sur5r.net Git - freertos/commitdiff
Added simple UDP demo into the mqtt project to enable the network connectivity to...
authorrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Wed, 17 Jul 2019 20:50:15 +0000 (20:50 +0000)
committerrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Wed, 17 Jul 2019 20:50:15 +0000 (20:50 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@2686 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

FreeRTOS-Plus/Demo/FreeRTOS_IoT_Libraries/mqtt/DemoTasks/SimpleUDPClientAndServer.c
FreeRTOS-Plus/Demo/FreeRTOS_IoT_Libraries/mqtt/FreeRTOSConfig.h
FreeRTOS-Plus/Demo/FreeRTOS_IoT_Libraries/mqtt/FreeRTOSIPConfig.h
FreeRTOS-Plus/Demo/FreeRTOS_IoT_Libraries/mqtt/main.c
FreeRTOS-Plus/Demo/FreeRTOS_IoT_Libraries/task_pool/main.c

index 54143c367594f74089c5c3817f2306a9f223919e..32a9aec1f1efef9c41e6e059fd5b47cb6e29c7e6 100644 (file)
 #include "FreeRTOS_IP.h"\r
 #include "FreeRTOS_Sockets.h"\r
 \r
+#if( configASSERT_DEFINED == 0 )\r
+       #error This demo uses configASSERT() to trap errors.  configASSERT() must be defined in FreeRTOSConfig.h https://www.freertos.org/a00110.html#configASSERT\r
+#endif\r
+\r
 #define simpTINY_DELAY ( ( TickType_t ) 2 )\r
 \r
 /*\r
@@ -101,6 +105,8 @@ const TickType_t x150ms = 150UL / portTICK_PERIOD_MS;
        /* Remove compiler warning about unused parameters. */\r
        ( void ) pvParameters;\r
 \r
+       FreeRTOS_printf( ( "Starting prvSimpleClientTask\r\n" ) );\r
+\r
        /* It is assumed that this task is not created until the network is up,\r
        so the IP address can be obtained immediately.  store the IP address being\r
        used in ulIPAddress.  This is done so the socket can send to a different\r
@@ -161,6 +167,8 @@ Socket_t xListeningSocket;
        /* Just to prevent compiler warnings. */\r
        ( void ) pvParameters;\r
 \r
+       FreeRTOS_printf( ( "Starting prvSimpleServerTask\r\n" ) );\r
+\r
        /* Attempt to open the socket. */\r
        xListeningSocket = FreeRTOS_socket( FREERTOS_AF_INET, FREERTOS_SOCK_DGRAM, FREERTOS_IPPROTO_UDP );\r
        configASSERT( xListeningSocket != FREERTOS_INVALID_SOCKET );\r
@@ -191,6 +199,7 @@ Socket_t xListeningSocket;
 \r
                /* Error check. */\r
                configASSERT( lBytes == ( BaseType_t ) strlen( ( const char * ) cReceivedString ) );\r
+               FreeRTOS_printf( ( "prvSimpleServerTask() recieved %s\r\n", ( const char * ) cReceivedString ) );\r
        }\r
 }\r
 /*-----------------------------------------------------------*/\r
@@ -211,6 +220,8 @@ const size_t xStringLength = strlen( pcStringToSend ) + 15;
        /* Remove compiler warning about unused parameters. */\r
        ( void ) pvParameters;\r
 \r
+       FreeRTOS_printf( ( "Starting prvSimpleZeroCopyUDPClientTask\r\n" ) );\r
+\r
        /* It is assumed that this task is not created until the network is up,\r
        so the IP address can be obtained immediately.  store the IP address being\r
        used in ulIPAddress.  This is done so the socket can send to a different\r
@@ -309,6 +320,8 @@ Socket_t xListeningSocket;
        /* Just to prevent compiler warnings. */\r
        ( void ) pvParameters;\r
 \r
+       FreeRTOS_printf( ( "Starting prvSimpleZeroCopyServerTask\r\n" ) );\r
+\r
        /* Attempt to open the socket. */\r
        xListeningSocket = FreeRTOS_socket( FREERTOS_AF_INET, FREERTOS_SOCK_DGRAM, FREERTOS_IPPROTO_UDP );\r
        configASSERT( xListeningSocket != FREERTOS_INVALID_SOCKET );\r
@@ -343,6 +356,7 @@ Socket_t xListeningSocket;
                        /* It is expected to receive one more byte than the string length as\r
                        the NULL terminator is also transmitted. */\r
                        configASSERT( lBytes == ( ( BaseType_t ) strlen( ( const char * ) pucUDPPayloadBuffer ) + 1 ) );\r
+                       FreeRTOS_printf( ( "prvSimpleZeroCopyServerTask() recieved %s\r\n", ( const char * ) pucUDPPayloadBuffer ) );\r
                }\r
 \r
                if( lBytes >= 0 )\r
index c60557decf7c9ee770bfcb4ecd538feeabd5634d..1ab0867f1d3880f6f57e90b31bde1970d561b3aa 100644 (file)
@@ -136,7 +136,7 @@ example, on my development laptop setting configNETWORK_INTERFACE_TO_USE to 4
 results in the wired network being used, while setting\r
 configNETWORK_INTERFACE_TO_USE to 2 results in the wireless network being\r
 used. */\r
-#define configNETWORK_INTERFACE_TO_USE 4L\r
+#define configNETWORK_INTERFACE_TO_USE 3L\r
 \r
 /* The address of an echo server that will be used by the two demo echo client\r
 tasks.\r
index 7092fca6adf084410f4766fcc57f9f34893d05f6..79ce6d4290b96bbc07f7348ba14e3a3a37806fd6 100644 (file)
@@ -53,7 +53,7 @@ out the debugging messages. */
 FreeRTOS_netstat() command, and ping replies.  If ipconfigHAS_PRINTF is set to 1\r
 then FreeRTOS_printf should be set to the function used to print out the\r
 messages. */\r
-#define ipconfigHAS_PRINTF                     0\r
+#define ipconfigHAS_PRINTF                     1\r
 #if( ipconfigHAS_PRINTF == 1 )\r
        #define FreeRTOS_printf(X)                      vLoggingPrintf X\r
 #endif\r
index 6361b49b27d0c4d92712701a823d73249b542d86..5b0f4e132bab978098d9bb8fb539db5d332ee563 100644 (file)
@@ -46,18 +46,80 @@ should an assert get hit. */
 \r
 /* TCP/IP stack includes. */\r
 #include "FreeRTOS_IP.h"\r
+#include "FreeRTOS_Sockets.h"\r
+\r
+/* Demo app includes. */\r
+#include "demo_logging.h"\r
+\r
+/* Set the following constants to 1 or 0 to define which tasks to include and\r
+exclude:\r
+\r
+mainCREATE_SIMPLE_UDP_CLIENT_SERVER_TASKS:  When set to 1 two UDP client tasks\r
+and two UDP server tasks are created.  The clients talk to the servers.  One set\r
+of tasks use the standard sockets interface, and the other the zero copy sockets\r
+interface.  These tasks are self checking and will trigger a configASSERT() if\r
+they detect a difference in the data that is received from that which was sent.\r
+As these tasks use UDP, and can therefore loose packets, they will cause\r
+configASSERT() to be called when they are run in a less than perfect networking\r
+environment.\r
+\r
+mainCREATE_SIMPLE_MQTT_EXAMPLE_TASKS:  TBD\r
+*/\r
+#define mainCREATE_SIMPLE_UDP_CLIENT_SERVER_TASKS      1\r
+#define mainCREATE_SIMPLE_MQTT_EXAMPLE_TASKS           0\r
+\r
+/* Simple UDP client and server task parameters. */\r
+#define mainSIMPLE_UDP_CLIENT_SERVER_TASK_PRIORITY             ( tskIDLE_PRIORITY )\r
+#define mainSIMPLE_UDP_CLIENT_SERVER_PORT                              ( 5005UL )\r
 \r
 /*\r
  * Prototypes for the demos that can be started from this project.\r
  */\r
-extern void vStartSimpleTaskPoolDemo( void );\r
+extern void vStartSimpleMQTTDemo( void );\r
+extern void vStartSimpleUDPClientServerTasks( uint16_t usStackSize, uint32_t ulsPort, UBaseType_t uxPriority );\r
+\r
+/*\r
+ * Just seeds the simple pseudo random number generator.\r
+ *\r
+ * !!! NOTE !!!\r
+ * This is not a secure method of generating random numbers and production\r
+ * devices should use a true random number generator (TRNG).\r
+ */\r
+static void prvSRand( UBaseType_t ulSeed );\r
 \r
-/* This example is the first in a sequence that adds IoT functionality into\r
-an existing TCP/IP project.  In this first project the TCP/IP stack is not\r
-actually used, but it is still built, which requires this array to be\r
-present. */\r
+/*\r
+ * Miscellaneous initialisation including preparing the logging and seeding the\r
+ * random number generator.\r
+ */\r
+static void prvMiscInitialisation( void );\r
+\r
+/* The default IP and MAC address used by the demo.  The address configuration\r
+defined here will be used if ipconfigUSE_DHCP is 0, or if ipconfigUSE_DHCP is\r
+1 but a DHCP server could not be contacted.  See the online documentation for\r
+more information. */\r
+static const uint8_t ucIPAddress[ 4 ] = { configIP_ADDR0, configIP_ADDR1, configIP_ADDR2, configIP_ADDR3 };\r
+static const uint8_t ucNetMask[ 4 ] = { configNET_MASK0, configNET_MASK1, configNET_MASK2, configNET_MASK3 };\r
+static const uint8_t ucGatewayAddress[ 4 ] = { configGATEWAY_ADDR0, configGATEWAY_ADDR1, configGATEWAY_ADDR2, configGATEWAY_ADDR3 };\r
+static const uint8_t ucDNSServerAddress[ 4 ] = { configDNS_SERVER_ADDR0, configDNS_SERVER_ADDR1, configDNS_SERVER_ADDR2, configDNS_SERVER_ADDR3 };\r
+\r
+/* Set the following constant to pdTRUE to log using the method indicated by the\r
+name of the constant, or pdFALSE to not log using the method indicated by the\r
+name of the constant.  Options include to standard out (xLogToStdout), to a disk\r
+file (xLogToFile), and to a UDP port (xLogToUDP).  If xLogToUDP is set to pdTRUE\r
+then UDP messages are sent to the IP address configured as the echo server\r
+address (see the configECHO_SERVER_ADDR0 definitions in FreeRTOSConfig.h) and\r
+the port number set by configPRINT_PORT in FreeRTOSConfig.h. */\r
+const BaseType_t xLogToStdout = pdTRUE, xLogToFile = pdFALSE, xLogToUDP = pdFALSE;\r
+\r
+/* Default MAC address configuration.  The demo creates a virtual network\r
+connection that uses this MAC address by accessing the raw Ethernet data\r
+to and from a real network connection on the host PC.  See the\r
+configNETWORK_INTERFACE_TO_USE definition for information on how to configure\r
+the real network connection to use. */\r
 const uint8_t ucMACAddress[ 6 ] = { configMAC_ADDR0, configMAC_ADDR1, configMAC_ADDR2, configMAC_ADDR3, configMAC_ADDR4, configMAC_ADDR5 };\r
 \r
+/* Use by the pseudo random number generator. */\r
+static UBaseType_t ulNextRand;\r
 /*-----------------------------------------------------------*/\r
 \r
 int main( void )\r
@@ -67,14 +129,20 @@ int main( void )
         * TBD\r
         */\r
 \r
-       /* Create the example that demonstrates task pool functionality.  Examples\r
-       that demonstrate networking connectivity will be added in future projects\r
-       and get started after the network has connected (from within the\r
-       vApplicationIPNetworkEventHook() function).*/\r
-       vStartSimpleTaskPoolDemo();\r
+       /* Miscellaneous initialisation including preparing the logging and seeding\r
+       the random number generator. */\r
+       prvMiscInitialisation();\r
 \r
-       /* Start the scheduler - if all is well from this point on only FreeRTOS\r
-       tasks will execute. */\r
+       /* Initialise the network interface.\r
+\r
+       ***NOTE*** Tasks that use the network are created in the network event hook\r
+       when the network is connected and ready for use (see the implementation of\r
+       vApplicationIPNetworkEventHook() below).  The address values passed in here\r
+       are used if ipconfigUSE_DHCP is set to 0, or if ipconfigUSE_DHCP is set to 1\r
+       but a DHCP server cannot be     contacted. */\r
+       FreeRTOS_IPInit( ucIPAddress, ucNetMask, ucGatewayAddress, ucDNSServerAddress, ucMACAddress );\r
+\r
+       /* Start the RTOS scheduler. */\r
        vTaskStartScheduler();\r
 \r
        /* If all is well, the scheduler will now be running, and the following\r
@@ -118,46 +186,147 @@ volatile uint32_t ulLineNumber = ulLine;
 events are only received if implemented in the MAC driver. */\r
 void vApplicationIPNetworkEventHook( eIPCallbackEvent_t eNetworkEvent )\r
 {\r
-       /* This example is the first in a sequence that adds IoT functionality into\r
-       an existing TCP/IP project.  In this first project the TCP/IP stack is not\r
-       actually used, but it is still built, which requires this function to be\r
-       present.  For now this function does not need to do anything, so just ensure\r
-       the unused parameters don't cause compiler warnings and that calls to this\r
-       function are trapped by the debugger. */\r
-       __debugbreak();\r
-       ( void ) eNetworkEvent;\r
+uint32_t ulIPAddress, ulNetMask, ulGatewayAddress, ulDNSServerAddress;\r
+char cBuffer[ 16 ];\r
+static BaseType_t xTasksAlreadyCreated = pdFALSE;\r
+\r
+       /* If the network has just come up...*/\r
+       if( eNetworkEvent == eNetworkUp )\r
+       {\r
+               /* Create the tasks that use the IP stack if they have not already been\r
+               created. */\r
+               if( xTasksAlreadyCreated == pdFALSE )\r
+               {\r
+                       #if( mainCREATE_SIMPLE_UDP_CLIENT_SERVER_TASKS == 1 )\r
+                       {\r
+                               vStartSimpleUDPClientServerTasks( configMINIMAL_STACK_SIZE, mainSIMPLE_UDP_CLIENT_SERVER_PORT, mainSIMPLE_UDP_CLIENT_SERVER_TASK_PRIORITY );\r
+                       }\r
+                       #endif\r
+\r
+                       #if( mainCREATE_SIMPLE_MQTT_EXAMPLE_TASKS == 1 )\r
+                       {\r
+                               vStartSimpleMQTTDemo();\r
+                       }\r
+                       #endif\r
+\r
+                       xTasksAlreadyCreated = pdTRUE;\r
+               }\r
+\r
+               /* Print out the network configuration, which may have come from a DHCP\r
+               server. */\r
+               FreeRTOS_GetAddressConfiguration( &ulIPAddress, &ulNetMask, &ulGatewayAddress, &ulDNSServerAddress );\r
+               FreeRTOS_inet_ntoa( ulIPAddress, cBuffer );\r
+               FreeRTOS_printf( ( "\r\n\r\nIP Address: %s\r\n", cBuffer ) );/*_RB_ Should use IoT libraries logging. */\r
+\r
+               FreeRTOS_inet_ntoa( ulNetMask, cBuffer );\r
+               FreeRTOS_printf( ( "Subnet Mask: %s\r\n", cBuffer ) );\r
+\r
+               FreeRTOS_inet_ntoa( ulGatewayAddress, cBuffer );\r
+               FreeRTOS_printf( ( "Gateway Address: %s\r\n", cBuffer ) );\r
+\r
+               FreeRTOS_inet_ntoa( ulDNSServerAddress, cBuffer );\r
+               FreeRTOS_printf( ( "DNS Server Address: %s\r\n\r\n\r\n", cBuffer ) );\r
+       }\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+UBaseType_t uxRand( void )\r
+{\r
+const uint32_t ulMultiplier = 0x015a4e35UL, ulIncrement = 1UL;\r
+\r
+       /*\r
+        * Utility function to generate a pseudo random number.\r
+        *\r
+        * !!!NOTE!!!\r
+        * This is not a secure method of generating a random number.  Production\r
+        * devices should use a True Random Number Generator (TRNG).\r
+        */\r
+       ulNextRand = ( ulMultiplier * ulNextRand ) + ulIncrement;\r
+       return( ( int ) ( ulNextRand >> 16UL ) & 0x7fffUL );\r
 }\r
 /*-----------------------------------------------------------*/\r
 \r
+static void prvSRand( UBaseType_t ulSeed )\r
+{\r
+       /* Utility function to seed the pseudo random number generator. */\r
+       ulNextRand = ulSeed;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+static void prvMiscInitialisation( void )\r
+{\r
+time_t xTimeNow;\r
+uint32_t ulLoggingIPAddress;\r
+\r
+       ulLoggingIPAddress = FreeRTOS_inet_addr_quick( configECHO_SERVER_ADDR0, configECHO_SERVER_ADDR1, configECHO_SERVER_ADDR2, configECHO_SERVER_ADDR3 );\r
+       vLoggingInit( xLogToStdout, xLogToFile, xLogToUDP, ulLoggingIPAddress, configPRINT_PORT );\r
+\r
+       /* Seed the random number generator. */\r
+       time( &xTimeNow );\r
+       FreeRTOS_debug_printf( ( "Seed for randomiser: %lu\n", xTimeNow ) );\r
+       prvSRand( ( uint32_t ) xTimeNow );\r
+       FreeRTOS_debug_printf( ( "Random numbers: %08X %08X %08X %08X\n", ipconfigRAND32(), ipconfigRAND32(), ipconfigRAND32(), ipconfigRAND32() ) );\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( ipconfigUSE_LLMNR != 0 ) || ( ipconfigUSE_NBNS != 0 ) || ( ipconfigDHCP_REGISTER_HOSTNAME == 1 )\r
+\r
+       const char *pcApplicationHostnameHook( void )\r
+       {\r
+               /* Assign the name "FreeRTOS" to this network node.  This function will\r
+               be called during the DHCP: the machine will be registered with an IP\r
+               address plus this name. */\r
+               return mainHOST_NAME;\r
+       }\r
+\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( ipconfigUSE_LLMNR != 0 ) || ( ipconfigUSE_NBNS != 0 )\r
+\r
+       BaseType_t xApplicationDNSQueryHook( const char *pcName )\r
+       {\r
+       BaseType_t xReturn;\r
+\r
+               /* Determine if a name lookup is for this node.  Two names are given\r
+               to this node: that returned by pcApplicationHostnameHook() and that set\r
+               by mainDEVICE_NICK_NAME. */\r
+               if( _stricmp( pcName, pcApplicationHostnameHook() ) == 0 )\r
+               {\r
+                       xReturn = pdPASS;\r
+               }\r
+               else if( _stricmp( pcName, mainDEVICE_NICK_NAME ) == 0 )\r
+               {\r
+                       xReturn = pdPASS;\r
+               }\r
+               else\r
+               {\r
+                       xReturn = pdFAIL;\r
+               }\r
+\r
+               return xReturn;\r
+       }\r
+\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+/*\r
+ * Callback that provides the inputs necessary to generate a randomized TCP\r
+ * Initial Sequence Number per RFC 6528.  THIS IS ONLY A DUMMY IMPLEMENTATION\r
+ * THAT RETURNS A PSEUDO RANDOM NUMBER SO IS NOT INTENDED FOR USE IN PRODUCTION\r
+ * SYSTEMS.\r
+ */\r
 extern uint32_t ulApplicationGetNextSequenceNumber( uint32_t ulSourceAddress,\r
                                                                                                        uint16_t usSourcePort,\r
                                                                                                        uint32_t ulDestinationAddress,\r
                                                                                                        uint16_t usDestinationPort )\r
 {\r
-       /* This example is the first in a sequence that adds IoT functionality into\r
-       an existing TCP/IP project.  In this first project the TCP/IP stack is not\r
-       actually used, but it is still built, which requires this function to be\r
-       present.  For now this function does not need to do anything, so just ensure\r
-       the unused parameters don't cause compiler warnings and that calls to this\r
-       function are trapped by the debugger. */\r
        ( void ) ulSourceAddress;\r
        ( void ) usSourcePort;\r
        ( void ) ulDestinationAddress;\r
        ( void ) usDestinationPort;\r
-       __debugbreak();\r
-       return 0;\r
-}\r
-/*-----------------------------------------------------------*/\r
 \r
-UBaseType_t uxRand( void )\r
-{\r
-       /* This example is the first in a sequence that adds IoT functionality into\r
-       an existing TCP/IP project.  In this first project the TCP/IP stack is not\r
-       actually used, but it is still built, which requires this function to be\r
-       present.  For now this function does not need to do anything, so just ensure\r
-       the calls to the function are trapped by the debugger. */\r
-       __debugbreak();\r
-       return 0;\r
+       return uxRand();\r
 }\r
 /*-----------------------------------------------------------*/\r
 \r
index 6361b49b27d0c4d92712701a823d73249b542d86..7f42f9ab2cb81d834745038cd6b93bffd79ae82d 100644 (file)
  * 1 tab == 4 spaces!\r
  */\r
 \r
-/*\r
- * This project is a cut down version of the project described on the following\r
- * link.  Only the simple UDP client and server and the TCP echo clients are\r
- * included in the build:\r
- * http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_TCP/examples_FreeRTOS_simulator.html\r
- */\r
-\r
 /* Standard includes. */\r
 #include <stdio.h>\r
 #include <time.h>\r