Simulated product dispenser

Dependencies:   HTS221

Fork of mbed-cloud-workshop-connect-HTS221 by Jim Carver

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers sn_client_config.h Source File

sn_client_config.h

00001 /*
00002  * Copyright (c) 2016 ARM Limited. All rights reserved.
00003  * SPDX-License-Identifier: Apache-2.0
00004  * Licensed under the Apache License, Version 2.0 (the License); you may
00005  * not use this file except in compliance with the License.
00006  * You may obtain a copy of the License at
00007  *
00008  * http://www.apache.org/licenses/LICENSE-2.0
00009  *
00010  * Unless required by applicable law or agreed to in writing, software
00011  * distributed under the License is distributed on an AS IS BASIS, WITHOUT
00012  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00013  * See the License for the specific language governing permissions and
00014  * limitations under the License.
00015  */
00016 
00017 #ifndef SN_CLIENT_CONFIG_H
00018 #define SN_CLIENT_CONFIG_H
00019 
00020 #ifdef __DOXYGEN__
00021 
00022 /**
00023 * \brief Configuration options (set of defines and values)
00024 *
00025 *  This lists set of compile-time options that needs to be used to enable
00026 *  or disable features selectively, and set the values for the mandatory
00027 *  parameters.
00028 */
00029 
00030 /**
00031  * \def DISABLE_RESOURCE_TYPE
00032  * \brief For Disabling Resource type
00033  *
00034  */
00035 #define DISABLE_RESOURCE_TYPE
00036 
00037 /**
00038  * \def DISABLE_INTERFACE_DESCRIPTION
00039  * \brief For Disabling Resource type
00040  *
00041  */
00042 #define DISABLE_INTERFACE_DESCRIPTION
00043 
00044 /**
00045  * \def MBED_CLIENT_PRINT_COAP_PAYLOAD
00046  * \brief If enabled this will print out the CoAP package payload.
00047  */
00048 #define MBED_CLIENT_PRINT_COAP_PAYLOAD
00049 #endif
00050 
00051 #ifdef MBED_CLIENT_USER_CONFIG_FILE
00052 #include MBED_CLIENT_USER_CONFIG_FILE
00053 #endif
00054 
00055 #endif // SN_CONFIG_H