]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS-Plus/Source/FreeRTOS-IoT-Libraries/c_sdk/standard/common/include/iot_init.h
Remove the FreeRTOS-IoT-Libraries from FreeRTOS-Plus as it was an old copy with a...
[freertos] / FreeRTOS-Plus / Source / FreeRTOS-IoT-Libraries / c_sdk / standard / common / include / iot_init.h
diff --git a/FreeRTOS-Plus/Source/FreeRTOS-IoT-Libraries/c_sdk/standard/common/include/iot_init.h b/FreeRTOS-Plus/Source/FreeRTOS-IoT-Libraries/c_sdk/standard/common/include/iot_init.h
deleted file mode 100644 (file)
index 5e27cf8..0000000
+++ /dev/null
@@ -1,67 +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_init.h\r
- * @brief Provides function signatures for common initialization and cleanup of\r
- * this SDK.\r
- */\r
-\r
-#ifndef IOT_INIT_H_\r
-#define IOT_INIT_H_\r
-\r
-/* The config header is always included first. */\r
-#include "iot_config.h"\r
-\r
-/* Standard includes. */\r
-#include <stdbool.h>\r
-\r
-/**\r
- * @brief One-time initialization function for this SDK.\r
- *\r
- * This function initializes common libraries, such as static memory and task\r
- * pool. <b>It must be called once (and only once) before calling any other\r
- * function in this SDK.</b> Calling this function more than once without first\r
- * calling `IotSdk_Cleanup` may result in a crash.\r
- *\r
- * @return `true` if initialization succeeded; `false` otherwise. Logs may be\r
- * printed in case of failure.\r
- *\r
- * @warning No thread-safety guarantees are provided for this function.\r
- */\r
-bool IotSdk_Init( void );\r
-\r
-/**\r
- * @brief One-time deinitialization function for all common libraries.\r
- *\r
- * This function frees resources taken in `IotSdk_Init`. No other function\r
- * in this SDK may be called after calling this function unless `IotSdk_Init`\r
- * is called again.\r
- *\r
- * @warning No thread-safety guarantees are provided for this function.\r
- */\r
-void IotSdk_Cleanup( void );\r
-\r
-#endif /* IOT_INIT_H_ */\r