]> git.sur5r.net Git - freertos/commitdiff
Remove the simple UDP client/server tasks from the MQTT demo as the demo's network...
authorrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Tue, 23 Jul 2019 19:23:12 +0000 (19:23 +0000)
committerrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Tue, 23 Jul 2019 19:23:12 +0000 (19:23 +0000)
Tidy up the iot_config.h header files a little.

git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@2703 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

FreeRTOS-Plus/Demo/Common/Demo_IP_Protocols/Common/FreeRTOS_TCP_server.c
FreeRTOS-Plus/Demo/FreeRTOS_IoT_Libraries/mqtt/DemoTasks/SimpleUDPClientAndServer.c [deleted file]
FreeRTOS-Plus/Demo/FreeRTOS_IoT_Libraries/mqtt/iot_config.h
FreeRTOS-Plus/Demo/FreeRTOS_IoT_Libraries/mqtt/main.c
FreeRTOS-Plus/Demo/FreeRTOS_IoT_Libraries/task_pool/iot_config.h
FreeRTOS-Plus/Source/FreeRTOS-IoT-Libraries/c_sdk/standard/common/taskpool/iot_taskpool.c
FreeRTOS-Plus/Source/FreeRTOS-IoT-Libraries/c_sdk/standard/common/taskpool/iot_taskpool_static_memory.c [deleted file]

index 3b9f8fb2f812e71fbe45b06617d9239569e9b4c7..4d8cd495e942cd24b52713c6cc030b0db6e2a47e 100644 (file)
@@ -89,7 +89,7 @@ SocketSet_t xSocketSet;
                                        xSocket = FreeRTOS_socket( FREERTOS_AF_INET, FREERTOS_SOCK_STREAM, FREERTOS_IPPROTO_TCP );\r
                                        FreeRTOS_printf( ( "TCP socket on port %d\n", ( int )xPortNumber ) );\r
 \r
-                                       if( xSocket != FREERTOS_NO_SOCKET )\r
+                                       if( xSocket != FREERTOS_INVALID_SOCKET )\r
                                        {\r
                                                xAddress.sin_addr = FreeRTOS_GetIPAddress(); // Single NIC, currently not used\r
                                                xAddress.sin_port = FreeRTOS_htons( xPortNumber );\r
diff --git a/FreeRTOS-Plus/Demo/FreeRTOS_IoT_Libraries/mqtt/DemoTasks/SimpleUDPClientAndServer.c b/FreeRTOS-Plus/Demo/FreeRTOS_IoT_Libraries/mqtt/DemoTasks/SimpleUDPClientAndServer.c
deleted file mode 100644 (file)
index 32a9aec..0000000
+++ /dev/null
@@ -1,369 +0,0 @@
-/*\r
- * FreeRTOS Kernel V10.2.1\r
- * Copyright (C) 2017 Amazon.com, Inc. or its affiliates.  All Rights Reserved.\r
- *\r
- * Permission is hereby granted, free of charge, to any person obtaining a copy of\r
- * this software and associated documentation files (the "Software"), to deal in\r
- * the Software without restriction, including without limitation the rights to\r
- * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r
- * the Software, and to permit persons to whom the Software is furnished to do so,\r
- * subject to the following conditions:\r
- *\r
- * The above copyright notice and this permission notice shall be included in all\r
- * copies or substantial portions of the Software.\r
- *\r
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
- *\r
- * http://www.FreeRTOS.org\r
- * http://aws.amazon.com/freertos\r
- *\r
- * 1 tab == 4 spaces!\r
- */\r
-\r
-/*\r
- * Creates two transmitting tasks and two receiving tasks.  The transmitting\r
- * tasks send values that are received by the receiving tasks.  One set of tasks\r
- * uses the standard API.  The other set of tasks uses the zero copy API.\r
- *\r
- * See the following web page for essential demo usage and configuration\r
- * details:\r
- * http://www.FreeRTOS.org/FreeRTOS-Plus/FreeRTOS_Plus_TCP/examples_FreeRTOS_simulator.html\r
- */\r
-\r
-/* Standard includes. */\r
-#include <stdint.h>\r
-#include <stdio.h>\r
-\r
-/* FreeRTOS includes. */\r
-#include "FreeRTOS.h"\r
-#include "task.h"\r
-\r
-/* FreeRTOS+TCP includes. */\r
-#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
- * Uses a socket to send data without using the zero copy option.\r
- * prvSimpleServerTask() will receive the data.\r
- */\r
-static void prvSimpleClientTask( void *pvParameters );\r
-\r
-/*\r
- * Uses a socket to receive the data sent by the prvSimpleClientTask() task.\r
- * Does not use the zero copy option.\r
- */\r
-static void prvSimpleServerTask( void *pvParameters );\r
-\r
-/*\r
- * Uses a socket to send data using the zero copy option.\r
- * prvSimpleZeroCopyServerTask() will receive the data.\r
- */\r
-static void prvSimpleZeroCopyUDPClientTask( void *pvParameters );\r
-\r
-/*\r
- * Uses a socket to receive the data sent by the prvSimpleZeroCopyUDPClientTask()\r
- * task.  Uses the zero copy option.\r
- */\r
-static void prvSimpleZeroCopyServerTask( void *pvParameters );\r
-\r
-/*-----------------------------------------------------------*/\r
-\r
-void vStartSimpleUDPClientServerTasks( uint16_t usStackSize, uint32_t ulPort, UBaseType_t uxPriority )\r
-{\r
-       /* Create the client and server tasks that do not use the zero copy\r
-       interface. */\r
-       xTaskCreate( prvSimpleClientTask, "SimpCpyClnt", usStackSize, ( void * ) ulPort, uxPriority, NULL );\r
-       xTaskCreate( prvSimpleServerTask, "SimpCpySrv", usStackSize, ( void * ) ulPort, uxPriority + 1, NULL );\r
-\r
-       /* Create the client and server tasks that do use the zero copy interface. */\r
-       xTaskCreate( prvSimpleZeroCopyUDPClientTask, "SimpZCpyClnt", usStackSize, ( void * ) ( ulPort + 1 ), uxPriority, NULL );\r
-       xTaskCreate( prvSimpleZeroCopyServerTask, "SimpZCpySrv", usStackSize, ( void * ) ( ulPort + 1 ), uxPriority + 1, NULL );\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvSimpleClientTask( void *pvParameters )\r
-{\r
-Socket_t xClientSocket;\r
-struct freertos_sockaddr xDestinationAddress;\r
-uint8_t cString[ 65 ];\r
-BaseType_t lReturned;\r
-uint32_t ulCount = 0UL, ulIPAddress;\r
-const uint32_t ulLoopsPerSocket = 10UL;\r
-const TickType_t x150ms = 150UL / portTICK_PERIOD_MS;\r
-\r
-       /* 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
-       port on the same IP address. */\r
-       FreeRTOS_GetAddressConfiguration( &ulIPAddress, NULL, NULL, NULL );\r
-\r
-       /* This test sends to itself, so data sent from here is received by a server\r
-       socket on the same IP address.  Setup the freertos_sockaddr structure with\r
-       this nodes IP address, and the port number being sent to.  The strange\r
-       casting is to try and remove compiler warnings on 32 bit machines. */\r
-       xDestinationAddress.sin_addr = ulIPAddress;\r
-       xDestinationAddress.sin_port = ( uint16_t ) ( ( uint32_t ) pvParameters ) & 0xffffUL;\r
-       xDestinationAddress.sin_port = FreeRTOS_htons( xDestinationAddress.sin_port );\r
-\r
-       for( ;; )\r
-       {\r
-               /* Create the socket. */\r
-               xClientSocket = FreeRTOS_socket( FREERTOS_AF_INET, FREERTOS_SOCK_DGRAM, FREERTOS_IPPROTO_UDP );\r
-               configASSERT( xClientSocket != FREERTOS_INVALID_SOCKET );\r
-\r
-               /* The count is used to differentiate between different messages sent to\r
-               the server, and to break out of the do while loop below. */\r
-               ulCount = 0UL;\r
-\r
-               do\r
-               {\r
-                       /* Create the string that is sent to the server. */\r
-                       sprintf( ( char * ) cString, "Server received (not zero copy): Message number %lu\r\n", ulCount );\r
-\r
-                       /* Send the string to the socket.  ulFlags is set to 0, so the zero\r
-                       copy option is not selected.  That means the data from cString[] is\r
-                       copied into a network buffer inside FreeRTOS_sendto(), and cString[]\r
-                       can be reused as soon as FreeRTOS_sendto() has returned. */\r
-                       lReturned = FreeRTOS_sendto( xClientSocket, ( void * ) cString, strlen( ( const char * ) cString ), 0, &xDestinationAddress, sizeof( xDestinationAddress ) );\r
-\r
-                       ulCount++;\r
-\r
-               } while( ( lReturned != FREERTOS_SOCKET_ERROR ) && ( ulCount < ulLoopsPerSocket ) );\r
-\r
-               FreeRTOS_closesocket( xClientSocket );\r
-\r
-               /* A short delay to prevent the messages printed by the server task\r
-               scrolling off the screen too quickly, and to prevent reduce the network\r
-               loading. */\r
-               vTaskDelay( x150ms );\r
-       }\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvSimpleServerTask( void *pvParameters )\r
-{\r
-int32_t lBytes;\r
-uint8_t cReceivedString[ 60 ];\r
-struct freertos_sockaddr xClient, xBindAddress;\r
-uint32_t xClientLength = sizeof( xClient );\r
-Socket_t xListeningSocket;\r
-\r
-       /* 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
-\r
-       /* This test receives data sent from a different port on the same IP\r
-       address.  Configure the freertos_sockaddr structure with the address being\r
-       bound to.  The strange casting is to try and remove     compiler warnings on 32\r
-       bit machines.  Note that this task is only created after the network is up,\r
-       so the IP address is valid here. */\r
-       xBindAddress.sin_port = ( uint16_t ) ( ( uint32_t ) pvParameters ) & 0xffffUL;\r
-       xBindAddress.sin_port = FreeRTOS_htons( xBindAddress.sin_port );\r
-\r
-       /* Bind the socket to the port that the client task will send to. */\r
-       FreeRTOS_bind( xListeningSocket, &xBindAddress, sizeof( xBindAddress ) );\r
-\r
-       for( ;; )\r
-       {\r
-               /* Zero out the receive array so there is NULL at the end of the string\r
-               when it is printed out. */\r
-               memset( cReceivedString, 0x00, sizeof( cReceivedString ) );\r
-\r
-               /* Receive data on the socket.  ulFlags is zero, so the zero copy option\r
-               is not set and the received data is copied into the buffer pointed to by\r
-               cReceivedString.  By default the block time is portMAX_DELAY.\r
-               xClientLength is not actually used by FreeRTOS_recvfrom(), but is set\r
-               appropriately in case future versions do use it. */\r
-               lBytes = FreeRTOS_recvfrom( xListeningSocket, cReceivedString, sizeof( cReceivedString ), 0, &xClient, &xClientLength );\r
-\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
-\r
-static void prvSimpleZeroCopyUDPClientTask( void *pvParameters )\r
-{\r
-Socket_t xClientSocket;\r
-uint8_t *pucUDPPayloadBuffer;\r
-struct freertos_sockaddr xDestinationAddress;\r
-BaseType_t lReturned;\r
-uint32_t ulCount = 0UL, ulIPAddress;\r
-const uint32_t ulLoopsPerSocket = 10UL;\r
-const char *pcStringToSend = "Server received (using zero copy): Message number ";\r
-const TickType_t x150ms = 150UL / portTICK_PERIOD_MS;\r
-/* 15 is added to ensure the number, \r\n and terminating zero fit. */\r
-const size_t xStringLength = strlen( pcStringToSend ) + 15;\r
-\r
-       /* 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
-       port on the same IP address. */\r
-       FreeRTOS_GetAddressConfiguration( &ulIPAddress, NULL, NULL, NULL );\r
-\r
-       /* This test sends to itself, so data sent from here is received by a server\r
-       socket on the same IP address.  Setup the freertos_sockaddr structure with\r
-       this nodes IP address, and the port number being sent to.  The strange\r
-       casting is to try and remove compiler warnings on 32 bit machines. */\r
-       xDestinationAddress.sin_addr = ulIPAddress;\r
-       xDestinationAddress.sin_port = ( uint16_t ) ( ( uint32_t ) pvParameters ) & 0xffffUL;\r
-       xDestinationAddress.sin_port = FreeRTOS_htons( xDestinationAddress.sin_port );\r
-\r
-       for( ;; )\r
-       {\r
-               /* Create the socket. */\r
-               xClientSocket = FreeRTOS_socket( FREERTOS_AF_INET, FREERTOS_SOCK_DGRAM, FREERTOS_IPPROTO_UDP );\r
-               configASSERT( xClientSocket != FREERTOS_INVALID_SOCKET );\r
-\r
-               /* The count is used to differentiate between different messages sent to\r
-               the server, and to break out of the do while loop below. */\r
-               ulCount = 0UL;\r
-\r
-               do\r
-               {\r
-                       /* This task is going to send using the zero copy interface.  The\r
-                       data being sent is therefore written directly into a buffer that is\r
-                       passed into, rather than copied into, the FreeRTOS_sendto()\r
-                       function.\r
-\r
-                       First obtain a buffer of adequate length from the IP stack into which\r
-                       the string will be written.  Although a max delay is used, the actual\r
-                       delay will be capped to ipconfigMAX_SEND_BLOCK_TIME_TICKS, hence\r
-                       the do while loop is used to ensure a buffer is obtained. */\r
-                       do\r
-                       {\r
-                       } while( ( pucUDPPayloadBuffer = ( uint8_t * ) FreeRTOS_GetUDPPayloadBuffer( xStringLength, portMAX_DELAY ) ) == NULL );\r
-\r
-                       /* A buffer was successfully obtained.  Create the string that is\r
-                       sent to the server.  First the string is filled with zeros as this will\r
-                       effectively be the null terminator when the string is received at the other\r
-                       end.  Note that the string is being written directly into the buffer\r
-                       obtained from the IP stack above. */\r
-                       memset( ( void * ) pucUDPPayloadBuffer, 0x00, xStringLength );\r
-                       sprintf( ( char * ) pucUDPPayloadBuffer, "%s%lu\r\n", pcStringToSend, ulCount );\r
-\r
-                       /* Pass the buffer into the send function.  ulFlags has the\r
-                       FREERTOS_ZERO_COPY bit set so the IP stack will take control of the\r
-                       buffer rather than copy data out of the buffer. */\r
-                       lReturned = FreeRTOS_sendto( xClientSocket,                             /* The socket being sent to. */\r
-                                                                               ( void * ) pucUDPPayloadBuffer, /* A pointer to the the data being sent. */\r
-                                                                               strlen( ( const char * ) pucUDPPayloadBuffer ) + 1, /* The length of the data being sent - including the string's null terminator. */\r
-                                                                               FREERTOS_ZERO_COPY,                     /* ulFlags with the FREERTOS_ZERO_COPY bit set. */\r
-                                                                               &xDestinationAddress,                   /* Where the data is being sent. */\r
-                                                                               sizeof( xDestinationAddress ) );\r
-\r
-                       if( lReturned == 0 )\r
-                       {\r
-                               /* The send operation failed, so this task is still responsible\r
-                               for the buffer obtained from the IP stack.  To ensure the buffer\r
-                               is not lost it must either be used again, or, as in this case,\r
-                               returned to the IP stack using FreeRTOS_ReleaseUDPPayloadBuffer().\r
-                               pucUDPPayloadBuffer can be safely re-used after this call. */\r
-                               FreeRTOS_ReleaseUDPPayloadBuffer( ( void * ) pucUDPPayloadBuffer );\r
-                       }\r
-                       else\r
-                       {\r
-                               /* The send was successful so the IP stack is now managing the\r
-                               buffer pointed to by pucUDPPayloadBuffer, and the IP stack will\r
-                               return the buffer once it has been sent.  pucUDPPayloadBuffer can\r
-                               be safely re-used. */\r
-                       }\r
-\r
-                       ulCount++;\r
-\r
-               } while( ( lReturned != FREERTOS_SOCKET_ERROR ) && ( ulCount < ulLoopsPerSocket ) );\r
-\r
-               FreeRTOS_closesocket( xClientSocket );\r
-\r
-               /* A short delay to prevent the messages scrolling off the screen too\r
-               quickly. */\r
-               vTaskDelay( x150ms );\r
-       }\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvSimpleZeroCopyServerTask( void *pvParameters )\r
-{\r
-int32_t lBytes;\r
-uint8_t *pucUDPPayloadBuffer;\r
-struct freertos_sockaddr xClient, xBindAddress;\r
-uint32_t xClientLength = sizeof( xClient ), ulIPAddress;\r
-Socket_t xListeningSocket;\r
-\r
-       /* 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
-\r
-       /* This test receives data sent from a different port on the same IP address.\r
-       Obtain the nodes IP address.  Configure the freertos_sockaddr structure with\r
-       the address being bound to.  The strange casting is to try and remove\r
-       compiler warnings on 32 bit machines.  Note that this task is only created\r
-       after the network is up, so the IP address is valid here. */\r
-       FreeRTOS_GetAddressConfiguration( &ulIPAddress, NULL, NULL, NULL );\r
-       xBindAddress.sin_addr = ulIPAddress;\r
-       xBindAddress.sin_port = ( uint16_t ) ( ( uint32_t ) pvParameters ) & 0xffffUL;\r
-       xBindAddress.sin_port = FreeRTOS_htons( xBindAddress.sin_port );\r
-\r
-       /* Bind the socket to the port that the client task will send to. */\r
-       FreeRTOS_bind( xListeningSocket, &xBindAddress, sizeof( xBindAddress ) );\r
-\r
-       for( ;; )\r
-       {\r
-               /* Receive data on the socket.  ulFlags has the zero copy bit set\r
-               (FREERTOS_ZERO_COPY) indicating to the stack that a reference to the\r
-               received data should be passed out to this task using the second\r
-               parameter to the FreeRTOS_recvfrom() call.  When this is done the\r
-               IP stack is no longer responsible for releasing the buffer, and\r
-               the task *must* return the buffer to the stack when it is no longer\r
-               needed.  By default the block time is portMAX_DELAY. */\r
-               lBytes = FreeRTOS_recvfrom( xListeningSocket, ( void * ) &pucUDPPayloadBuffer, 0, FREERTOS_ZERO_COPY, &xClient, &xClientLength );\r
-\r
-               /* Print the received characters. */\r
-               if( lBytes > 0 )\r
-               {\r
-                       /* 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
-               {\r
-                       /* The buffer *must* be freed once it is no longer needed. */\r
-                       FreeRTOS_ReleaseUDPPayloadBuffer( pucUDPPayloadBuffer );\r
-               }\r
-       }\r
-}\r
-\r
index 1f9568618b9c844585f6670da4ac4452bdc28536..d267447793a2fb9ee068c2c1936f41c98bfd238b 100644 (file)
  */\r
 #define IOT_TASKPOOL_ENABLE_ASSERTS                 1\r
 \r
-/**\r
+/*\r
+ * The full IoT Task Pool Library has many use cases, including Linux\r
+ * development.  Typical FreeRTOS use cases do not require the full\r
+ * functionality so an optimised implementation is provided specifically for use\r
+ * with FreeRTOS.  The optimised version has a fixed number of tasks in the\r
+ * pool, each of which uses statically allocated memory to ensure creation of\r
+ * the pool is guaranteed (it does not run out of heap space).\r
+ * IOT_TASKPOOL_NUMBER_OF_WORKERS sets the number of tasks in the pool.\r
+ */\r
+#define IOT_TASKPOOL_NUMBER_OF_WORKERS               3\r
+\r
+/*\r
  * @brief Set the log level of the task pool library.\r
  *\r
  * Log messages from the task pool library at or below this setting will be\r
  */\r
 #define IOT_LOG_LEVEL_TASKPOOL                      IOT_LOG_INFO\r
 \r
-/**\r
- * @brief The number of worker tasks in the task pool.\r
- * \r
- * The minimal version of the of task pool library only supports one task pool\r
- * and the number of the worker tasks is fixed at the compile time.\r
- */\r
-#define IOT_TASKPOOL_NUMBER_OF_WORKERS              3\r
 \r
 /**\r
  * @brief The stack size (in bytes) for each worker task in the task pool.\r
 /**\r
  * @brief Enable/Disable anonymous metrics collection when using AWS IoT.\r
  *\r
- * This demo does not support TLS and so does not work with AWS IoT. Therefore,\r
+ * This demo does not use TLS and so does not work with AWS IoT. Therefore,\r
  * the metric collection must be disabled.\r
  */\r
 #define AWS_IOT_MQTT_ENABLE_METRICS                 0\r
index 5b6c054fb9566d36cdf7db514b2fbd61b41c0448..cbec6796e167c6cbe9087492b1a8c82f724cdc39 100644 (file)
  */\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
+ * TBD\r
  */\r
 \r
 /* Standard includes. */\r
@@ -51,32 +48,13 @@ should an assert get hit. */
 /* 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      0\r
-#define mainCREATE_SIMPLE_MQTT_EXAMPLE_TASKS           1\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
+ * Prototypes for the demos that can be started from this project.  Note the\r
+ * MQTT demo is not actually started until the network is already, which is\r
+ * indicated by vApplicationIPNetworkEventHook() executing - hence\r
+ * prvStartSimpleMQTTDemo() is called from inside vApplicationIPNetworkEventHook().\r
  */\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
@@ -197,18 +175,9 @@ static BaseType_t xTasksAlreadyCreated = pdFALSE;
                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
+                       /* Demos that use the nextwork are created after the nextwork is\r
+                       up. */\r
+                       vStartSimpleMQTTDemo();\r
                        xTasksAlreadyCreated = pdTRUE;\r
                }\r
 \r
index 470a13d6daddd8045d9764e91524932a637e7c0e..0121f276dbb287f0a2cc2d0f0c629166ec23638f 100644 (file)
  */\r
 #define IOT_TASKPOOL_ENABLE_ASSERTS 1\r
 \r
+/*\r
+ * The full IoT Task Pool Library has many use cases, including Linux\r
+ * development.  Typical FreeRTOS use cases do not require the full\r
+ * functionality so an optimised implementation is provided specifically for use\r
+ * with FreeRTOS.  The optimised version has a fixed number of tasks in the\r
+ * pool, each of which uses statically allocated memory to ensure creation of\r
+ * the pool is guaranteed (it does not run out of heap space).\r
+ * IOT_TASKPOOL_NUMBER_OF_WORKERS sets the number of tasks in the pool.\r
+ */\r
+#define IOT_TASKPOOL_NUMBER_OF_WORKERS               3\r
+\r
 /*\r
  * Set the log level of the task pool library.\r
  *\r
  */\r
 #define IOT_LOG_LEVEL_TASKPOOL IOT_LOG_INFO\r
 \r
-/*\r
- *\r
- */\r
-#define IOT_TASKPOOL_NUMBER_OF_WORKERS 3\r
 \r
-/*\r
- *\r
+/**\r
+ * @brief The stack size (in bytes) for each worker task in the task pool.\r
+ * \r
+ * The minimal version of the of task pool library only supports one task pool\r
+ * and the configuration of each worker task fixed at the compile time.\r
  */\r
-#define IOT_TASKPOOL_WORKER_STACK_SIZE_BYTES 2048\r
+#define IOT_TASKPOOL_WORKER_STACK_SIZE_BYTES        2048\r
 \r
 /* Include the common configuration file for FreeRTOS. */\r
 #include "iot_config_common.h"\r
index 6f90c19afec6b74c9702bef18df72830d6878dd1..0a51c3a57e64e75b210398c19af8a69250db2078 100644 (file)
  * @brief Implements the task pool functions in iot_taskpool.h\r
  */\r
 \r
+\r
+/*\r
+ * The full IoT Task Pool Library has many use cases, including Linux\r
+ * development.  Typical FreeRTOS use cases do not require the full\r
+ * functionality so an optimised implementation is provided specifically for use\r
+ * with FreeRTOS.  The optimised version has a fixed number of tasks in the\r
+ * pool, each of which uses statically allocated memory to ensure creation of\r
+ * the pool is guaranteed (it does not run out of heap space).  The constant\r
+ * IOT_TASKPOOL_NUMBER_OF_WORKERS sets the number of tasks in the pool.\r
+ *\r
+ * Unlike the full version, this optimised version:\r
+ *   + Only supports a single task pool (system task pool) at a time.\r
+ *   + Does not auto-scale by dynamically adding more tasks if the number of\r
+ *   + tasks in the pool becomes exhausted.  The number of tasks in the pool\r
+ *     are fixed at compile time.  See the task pool configuration options for\r
+ *     more information.\r
+ *   + Cannot be shut down - it exists for the lifetime of the application.\r
+ *\r
+ * As such this file does not implement the following API functions:\r
+ *   + IotTaskPool_GetSystemTaskPool()\r
+ *   + IotTaskPool_Create()\r
+ *   + IotTaskPool_Destroy()\r
+ *   + IotTaskPool_SetMaxThreads()\r
+ *\r
+ * Users who are interested in the functionality of the full IoT Task Pool\r
+ * library can us it in place of this optimised version.\r
+ */\r
+\r
+\r
 /* Kernel includes. */\r
 #include "FreeRTOS.h"\r
 #include "semphr.h"\r
@@ -224,28 +253,6 @@ static IotTaskPoolError_t _tryCancelInternal( _taskPool_t * const pTaskPool,
 \r
 /* ---------------------------------------------------------------------------------------------- */\r
 \r
-/*\r
- * The full IoT Task Pool Library has many use cases, including Linux\r
- * development.  Typical FreeRTOS use cases do not require the full\r
- * functionality so optimised version is provided specifically for use with\r
- * FreeRTOS.  Unlike the full version, this optimised version:\r
- *   + Only supports a single task pool (system task pool) at a time.\r
- *   + Does not auto-scale by dynamically adding more tasks if the number of\r
- *   + tasks in the pool becomes exhausted.  The number of tasks in the pool\r
- *     are fixed at compile time.  See the task pool configuration options for\r
- *     more information.\r
- *   + Cannot be shut down - it exists for the lifetime of the application.\r
- *\r
- * As such this file does not implement the following API functions:\r
- *   + IotTaskPool_GetSystemTaskPool()\r
- *   + IotTaskPool_Create()\r
- *   + IotTaskPool_Destroy()\r
- *   + IotTaskPool_SetMaxThreads()\r
- *\r
- * Users who are interested in the functionality of the full IoT Task Pool\r
- * library can us it in place of this optimised version.\r
- */\r
-\r
 IotTaskPoolError_t IotTaskPool_CreateSystemTaskPool( const IotTaskPoolInfo_t * const pInfo )\r
 {\r
     TASKPOOL_FUNCTION_ENTRY( IOT_TASKPOOL_SUCCESS );\r
diff --git a/FreeRTOS-Plus/Source/FreeRTOS-IoT-Libraries/c_sdk/standard/common/taskpool/iot_taskpool_static_memory.c b/FreeRTOS-Plus/Source/FreeRTOS-IoT-Libraries/c_sdk/standard/common/taskpool/iot_taskpool_static_memory.c
deleted file mode 100644 (file)
index 8de4f6e..0000000
+++ /dev/null
@@ -1,175 +0,0 @@
-/*\r
- * Amazon FreeRTOS Common V1.0.0\r
- * Copyright (C) 2018 Amazon.com, Inc. or its affiliates.  All Rights Reserved.\r
- *\r
- * Permission is hereby granted, free of charge, to any person obtaining a copy of\r
- * this software and associated documentation files (the "Software"), to deal in\r
- * the Software without restriction, including without limitation the rights to\r
- * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r
- * the Software, and to permit persons to whom the Software is furnished to do so,\r
- * subject to the following conditions:\r
- *\r
- * The above copyright notice and this permission notice shall be included in all\r
- * copies or substantial portions of the Software.\r
- *\r
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
- *\r
- * http://aws.amazon.com/freertos\r
- * http://www.FreeRTOS.org\r
- */\r
-\r
-/**\r
- * @file iot_taskpool_static_memory.c\r
- * @brief Implementation of task pool static memory functions.\r
- */\r
-\r
-/* The config header is always included first. */\r
-#include "iot_config.h"\r
-\r
-/* This file should only be compiled if dynamic memory allocation is forbidden. */\r
-#if IOT_STATIC_MEMORY_ONLY == 1\r
-\r
-/* Standard includes. */\r
-#include <stdbool.h>\r
-#include <stddef.h>\r
-#include <string.h>\r
-\r
-/* Static memory include. */\r
-#include "private/iot_static_memory.h"\r
-\r
-/* Task pool internal include. */\r
-#include "private/iot_taskpool_internal.h"\r
-\r
-/*-----------------------------------------------------------*/\r
-\r
-/* Validate static memory configuration settings. */\r
-#if IOT_TASKPOOL_JOBS_RECYCLE_LIMIT <= 0\r
-    #error "IOT_TASKPOOL_JOBS_RECYCLE_LIMIT cannot be 0 or negative."\r
-#endif\r
-\r
-/*-----------------------------------------------------------*/\r
-\r
-/*\r
- * Static memory buffers and flags, allocated and zeroed at compile-time.\r
- */\r
-static bool _pInUseTaskPools[ IOT_TASKPOOLS ] = { 0 };                                                /**< @brief Task pools in-use flags. */\r
-static _taskPool_t _pTaskPools[ IOT_TASKPOOLS ] = { { .dispatchQueue = IOT_DEQUEUE_INITIALIZER } };   /**< @brief Task pools. */\r
-\r
-static bool _pInUseTaskPoolJobs[ IOT_TASKPOOL_JOBS_RECYCLE_LIMIT ] = { 0 };                                     /**< @brief Task pool jobs in-use flags. */\r
-static _taskPoolJob_t _pTaskPoolJobs[ IOT_TASKPOOL_JOBS_RECYCLE_LIMIT ] = { { .link = IOT_LINK_INITIALIZER } }; /**< @brief Task pool jobs. */\r
-\r
-static bool _pInUseTaskPoolTimerEvents[ IOT_TASKPOOL_JOBS_RECYCLE_LIMIT ] = { 0 };                              /**< @brief Task pool timer event in-use flags. */\r
-static _taskPoolTimerEvent_t _pTaskPoolTimerEvents[ IOT_TASKPOOL_JOBS_RECYCLE_LIMIT ] = { { .link = { 0 } } };  /**< @brief Task pool timer events. */\r
-\r
-/*-----------------------------------------------------------*/\r
-\r
-void * IotTaskPool_MallocTaskPool( size_t size )\r
-{\r
-    int freeIndex = -1;\r
-    void * pNewTaskPool = NULL;\r
-\r
-    /* Check size argument. */\r
-    if( size == sizeof( _taskPool_t ) )\r
-    {\r
-        /* Find a free task pool job. */\r
-        freeIndex = IotStaticMemory_FindFree( _pInUseTaskPools, IOT_TASKPOOLS );\r
-\r
-        if( freeIndex != -1 )\r
-        {\r
-            pNewTaskPool = &( _pTaskPools[ freeIndex ] );\r
-        }\r
-    }\r
-\r
-    return pNewTaskPool;\r
-}\r
-\r
-/*-----------------------------------------------------------*/\r
-\r
-void IotTaskPool_FreeTaskPool( void * ptr )\r
-{\r
-    /* Return the in-use task pool job. */\r
-    IotStaticMemory_ReturnInUse( ptr,\r
-                                 _pTaskPools,\r
-                                 _pInUseTaskPools,\r
-                                 IOT_TASKPOOLS,\r
-                                 sizeof( _taskPool_t ) );\r
-}\r
-\r
-/*-----------------------------------------------------------*/\r
-\r
-void * IotTaskPool_MallocJob( size_t size )\r
-{\r
-    int32_t freeIndex = -1;\r
-    void * pNewJob = NULL;\r
-\r
-    /* Check size argument. */\r
-    if( size == sizeof( _taskPoolJob_t ) )\r
-    {\r
-        /* Find a free task pool job. */\r
-        freeIndex = IotStaticMemory_FindFree( _pInUseTaskPoolJobs,\r
-                                              IOT_TASKPOOL_JOBS_RECYCLE_LIMIT );\r
-\r
-        if( freeIndex != -1 )\r
-        {\r
-            pNewJob = &( _pTaskPoolJobs[ freeIndex ] );\r
-        }\r
-    }\r
-\r
-    return pNewJob;\r
-}\r
-\r
-/*-----------------------------------------------------------*/\r
-\r
-void IotTaskPool_FreeJob( void * ptr )\r
-{\r
-    /* Return the in-use task pool job. */\r
-    IotStaticMemory_ReturnInUse( ptr,\r
-                                 _pTaskPoolJobs,\r
-                                 _pInUseTaskPoolJobs,\r
-                                 IOT_TASKPOOL_JOBS_RECYCLE_LIMIT,\r
-                                 sizeof( _taskPoolJob_t ) );\r
-}\r
-\r
-/*-----------------------------------------------------------*/\r
-\r
-void * IotTaskPool_MallocTimerEvent( size_t size )\r
-{\r
-    int32_t freeIndex = -1;\r
-    void * pNewTimerEvent = NULL;\r
-\r
-    /* Check size argument. */\r
-    if( size == sizeof( _taskPoolTimerEvent_t ) )\r
-    {\r
-        /* Find a free task pool timer event. */\r
-        freeIndex = IotStaticMemory_FindFree( _pInUseTaskPoolTimerEvents,\r
-                                              IOT_TASKPOOL_JOBS_RECYCLE_LIMIT );\r
-\r
-        if( freeIndex != -1 )\r
-        {\r
-            pNewTimerEvent = &( _pTaskPoolTimerEvents[ freeIndex ] );\r
-        }\r
-    }\r
-\r
-    return pNewTimerEvent;\r
-}\r
-\r
-/*-----------------------------------------------------------*/\r
-\r
-void IotTaskPool_FreeTimerEvent( void * ptr )\r
-{\r
-    /* Return the in-use task pool timer event. */\r
-    IotStaticMemory_ReturnInUse( ptr,\r
-                                 _pTaskPoolTimerEvents,\r
-                                 _pInUseTaskPoolTimerEvents,\r
-                                 IOT_TASKPOOL_JOBS_RECYCLE_LIMIT,\r
-                                 sizeof( _taskPoolTimerEvent_t ) );\r
-}\r
-\r
-/*-----------------------------------------------------------*/\r
-\r
-#endif\r