summaryrefslogtreecommitdiff
path: root/FreeRTOS-Plus/Test/FreeRTOS-Cellular-Interface/Integration/Test_code/test_config.h
diff options
context:
space:
mode:
authorandysun2015 <smn@amazon.com>2021-11-10 11:38:44 +0800
committerGitHub <noreply@github.com>2021-11-10 11:38:44 +0800
commit957fb26dbe68627d2d0fd7bdd242bddd347de175 (patch)
tree64ad5ccc5b85277609e318b66be6ba3ece755c4c /FreeRTOS-Plus/Test/FreeRTOS-Cellular-Interface/Integration/Test_code/test_config.h
parent223d2d0e21f185ac165068755a74b0526d6795fd (diff)
downloadfreertos-git-957fb26dbe68627d2d0fd7bdd242bddd347de175.tar.gz
Add cellular library submodule path and demo (#695)
* [Cellular] Add cellulr lib submodule and demo app * [Cellular] Fix memory violation in transport layer and add using LoggingPrintf * Update FreeRTOS Cellular Interface * Change the mbedtls usage in FreeRTOS-Plus * [Cellular] Fix missing spell * [Cellular] Add manifest.yml * Fix missing spell * Update manifest.yml * [Cellular] Add integration test * Modify the demo log level to LOG_INFO * Update cellular interface * The modification of the folder structure for cellular library * Rename the naming of demo * Adjust the location of using_mbedtls and socket_wrapper * Adjust project setting for relocating using_mbedtls and socket_wrapper * Turn off PSM mode * Add start marker for CI validation. * The modification for mbedtls platform send/recv function for cellular * Change the project file due to the changes of mbedtls platform send/recv function for cellular * Fix missing newline and remove unused file * Add missing configuration. * Make cellular and freertos tcp plus use the same transport implementation * Add comment for the macro MBEDTLS_SSL_SEND and MBEDTLS_SSL_RECV * Make changes from the github comment.
Diffstat (limited to 'FreeRTOS-Plus/Test/FreeRTOS-Cellular-Interface/Integration/Test_code/test_config.h')
-rw-r--r--FreeRTOS-Plus/Test/FreeRTOS-Cellular-Interface/Integration/Test_code/test_config.h84
1 files changed, 84 insertions, 0 deletions
diff --git a/FreeRTOS-Plus/Test/FreeRTOS-Cellular-Interface/Integration/Test_code/test_config.h b/FreeRTOS-Plus/Test/FreeRTOS-Cellular-Interface/Integration/Test_code/test_config.h
new file mode 100644
index 000000000..3ab14ee35
--- /dev/null
+++ b/FreeRTOS-Plus/Test/FreeRTOS-Cellular-Interface/Integration/Test_code/test_config.h
@@ -0,0 +1,84 @@
+/*
+ * FreeRTOS Cellular Preview Release
+ * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy of
+ * this software and associated documentation files (the "Software"), to deal in
+ * the Software without restriction, including without limitation the rights to
+ * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+ * the Software, and to permit persons to whom the Software is furnished to do so,
+ * subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+ * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+ * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ *
+ * http://aws.amazon.com/freertos
+ * http://www.FreeRTOS.org
+ */
+
+#ifndef TEST_CONFIG_H
+#define TEST_CONFIG_H
+
+/**
+ * @brief test cellular APIs.
+ */
+#define testCELLULAR_API ( 1 )
+
+/**
+ * DNS server address.
+ * #define testCELLULAR_DNS_SERVER_ADDRESS "...insert here..."
+ */
+
+/**
+ * Host name to resolve. The host name should only has one IP address.
+ * #define testCELLULAR_HOST_NAME "...insert here..."
+ */
+
+/**
+ * Host name resolved address. The resolved address should be the IP address of
+ * testCELLULAR_HOST_NAME.
+ * #define testCELLULAR_HOST_NAME_ADDRESS "...insert here..."
+ */
+
+/**
+ * Echo server address for tcp connection test.
+ * #define testCELLULAR_ECHO_SERVER_ADDRESS "...insert here..."
+ */
+
+/**
+ * Echo server port for tcp connection test.
+ * #define testCELLULAR_ECHO_SERVER_PORT ( ...insert here... )
+ */
+
+/**
+ * Repeat echo server address for EDRX echo times test.
+ * #define testCELLULAR_EDRX_ECHO_SERVER_ADDRESS "...insert here..."
+ */
+
+/**
+ * Repeat echo server port for EDRX echo times test.
+ * #define testCELLULAR_EDRX_ECHO_SERVER_PORT ( ...insert here... )
+ */
+
+/**
+ * Repeat echo server send interfal for EDRX echo times test.
+ * This settings should align with your repeat echo server settings.
+ * #define testCELLULAR_EDRX_ECHO_SERVER_DATA_SEND_INTERVAL_MS ( ...insert here... )
+ */
+
+
+#define testconfigTEST_STACKSIZE ( 1024 )
+
+#define testconfigTEST_PRIORITY ( tskIDLE_PRIORITY + 1 )
+
+/* UNITY test config. */
+#define UNITY_EXCLUDE_SETJMP_H
+
+#endif /* TEST_CONFIG_H */