/* * AWS IoT Device SDK for Embedded C 202211.00 * 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. */ #ifndef DEMO_CONFIG_H_ #define DEMO_CONFIG_H_ /** * @brief IP or hostname of the Greengrass core. * * #define GREENGRASS_ADDRESS "...insert here..." */ /** * @brief Greengrass MQTT broker port number. */ #ifndef MQTT_PORT #define MQTT_PORT ( 8883 ) #endif /** * @brief Path of the file containing the Greengrass core's root CA certificate. * * @note This certificate should be PEM-encoded. * * #define ROOT_CA_CERT_PATH "...insert here..." */ /** * @brief Path of the file containing the client certificate. * * Refer to the AWS documentation below for details regarding client * authentication. * https://docs.aws.amazon.com/iot/latest/developerguide/client-authentication.html * * @note This certificate should be PEM-encoded. * * #define CLIENT_CERT_PATH "...insert here..." */ /** * @brief Path of the file containing the client's private key. * * Refer to the AWS documentation below for details regarding client * authentication. * https://docs.aws.amazon.com/iot/latest/developerguide/client-authentication.html * * @note This private key should be PEM-encoded. * * #define CLIENT_PRIVATE_KEY_PATH "...insert here..." */ /** * @brief Device Thing name. * * This should the Thing name created on IoT core with the above certificate. * * #define THING_NAME "...insert here..." */ #endif /* ifndef DEMO_CONFIG_H_ */