Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
simple-mbed-cloud-client/mbed-cloud-client/mbed-client/mbed-client/m2mconfig.h
- Committer:
- leothedragon
- Date:
- 2021-05-04
- Revision:
- 0:8f0bb79ddd48
File content as of revision 0:8f0bb79ddd48:
/* * Copyright (c) 2015 ARM Limited. All rights reserved. * SPDX-License-Identifier: Apache-2.0 * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an AS IS BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef M2MCONFIG_H #define M2MCONFIG_H /*! \file m2mconfig.h * \brief File defining all system build time configuration used by mbed-client. */ #include "mbed-client/m2mstring.h" #include <stddef.h> using namespace m2m; /** * \def MBED_CLIENT_RECONNECTION_COUNT * * \brief Sets Reconnection count for mbed Client * to attempt a reconnection re-tries until * reaches the defined value either by the application * or the default value set in Client. * By default, the value is 3. */ #undef MBED_CLIENT_RECONNECTION_COUNT /* 3 */ /** * \def MBED_CLIENT_RECONNECTION_INTERVAL * * \brief Sets Reconnection interval (in seconds) for * mbed Client to attempt a reconnection re-tries. * By default, the value is 5 seconds. */ #undef MBED_CLIENT_RECONNECTION_INTERVAL /* 5 */ /** * \def MBED_CLIENT_TCP_KEEPALIVE_INTERVAL * * \brief The number of seconds between CoAP ping messages. * By default, the value is 90 seconds. */ #undef MBED_CLIENT_TCP_KEEPALIVE_INTERVAL /* 90 */ /** * \def MBED_CLIENT_EVENT_LOOP_SIZE * * \brief Defines the size of memory allocated for * event loop (in bytes) for timer and network event * handling of mbed Client. * By default, this value is 1024 bytes.This memory is * allocated from heap */ #undef MBED_CLIENT_EVENT_LOOP_SIZE /* 1024 */ /** * \def MBED_CLIENT_SN_COAP_RESENDING_QUEUE_SIZE_MSGS * * \brief CoAP resend queue size. * mbed Client can send five types of confirmable messages at the same time, * notification, file download, register update, delayed post response and ping. * \note Reducing this value can cause some resend queue which may lead to unnecessary full registrations. * By default, the message count is 5. */ #undef MBED_CLIENT_SN_COAP_RESENDING_QUEUE_SIZE_MSGS /* 5 */ /** * \def MBED_CLIENT_MEMORY_OPTIMIZED_API * * \brief If enabled, this will reduce RAM and ROM consumption. * NOTE! This will disable usage of some API's and also change some API signatures. * By default this is disabled. */ #undef MBED_CLIENT_MEMORY_OPTIMIZED_API #if defined MBED_CONF_MBED_CLIENT_RECONNECTION_COUNT #define MBED_CLIENT_RECONNECTION_COUNT MBED_CONF_MBED_CLIENT_RECONNECTION_COUNT #endif #if defined MBED_CONF_MBED_CLIENT_RECONNECTION_INTERVAL #define MBED_CLIENT_RECONNECTION_INTERVAL MBED_CONF_MBED_CLIENT_RECONNECTION_INTERVAL #endif #if defined MBED_CONF_MBED_CLIENT_TCP_KEEPALIVE_INTERVAL #define MBED_CLIENT_TCP_KEEPALIVE_INTERVAL MBED_CONF_MBED_CLIENT_TCP_KEEPALIVE_INTERVAL #endif #if defined MBED_CONF_MBED_CLIENT_DISABLE_BOOTSTRAP_FEATURE #define MBED_CLIENT_DISABLE_BOOTSTRAP_FEATURE MBED_CONF_MBED_CLIENT_DISABLE_BOOTSTRAP_FEATURE #endif #if defined MBED_CONF_MBED_CLIENT_SN_COAP_MAX_INCOMING_MESSAGE_SIZE #define SN_COAP_MAX_INCOMING_MESSAGE_SIZE MBED_CONF_MBED_CLIENT_SN_COAP_MAX_INCOMING_MESSAGE_SIZE #endif #ifdef MBED_CONF_MBED_CLIENT_EVENT_LOOP_SIZE #define MBED_CLIENT_EVENT_LOOP_SIZE MBED_CONF_MBED_CLIENT_EVENT_LOOP_SIZE #endif #if defined MBED_CONF_MBED_CLIENT_DISABLE_INTERFACE_DESCRIPTION #define DISABLE_INTERFACE_DESCRIPTION MBED_CONF_MBED_CLIENT_DISABLE_INTERFACE_DESCRIPTION #endif #if defined MBED_CONF_MBED_CLIENT_DISABLE_RESOURCE_TYPE #define DISABLE_RESOURCE_TYPE MBED_CONF_MBED_CLIENT_DISABLE_RESOURCE_TYPE #endif #if defined MBED_CONF_MBED_CLIENT_DISABLE_DELAYED_RESPONSE #define DISABLE_DELAYED_RESPONSE MBED_CONF_MBED_CLIENT_DISABLE_DELAYED_RESPONSE #endif #if defined MBED_CONF_MBED_CLIENT_DISABLE_BLOCK_MESSAGE #define DISABLE_BLOCK_MESSAGE MBED_CONF_MBED_CLIENT_DISABLE_BLOCK_MESSAGE #endif #ifdef MBED_CONF_MBED_CLIENT_DTLS_PEER_MAX_TIMEOUT #define MBED_CLIENT_DTLS_PEER_MAX_TIMEOUT MBED_CONF_MBED_CLIENT_DTLS_PEER_MAX_TIMEOUT #endif #ifdef MBED_CONF_MBED_CLIENT_SN_COAP_RESENDING_QUEUE_SIZE_MSGS #define MBED_CLIENT_SN_COAP_RESENDING_QUEUE_SIZE_MSGS MBED_CONF_MBED_CLIENT_SN_COAP_RESENDING_QUEUE_SIZE_MSGS #endif #ifdef MBED_CLIENT_MEMORY_OPTIMIZED_API #define MEMORY_OPTIMIZED_API MBED_CLIENT_MEMORY_OPTIMIZED_API #elif defined MBED_CONF_MBED_CLIENT_MEMORY_OPTIMIZED_API #define MEMORY_OPTIMIZED_API MBED_CONF_MBED_CLIENT_MEMORY_OPTIMIZED_API #endif #if defined (__ICCARM__) #define m2m_deprecated #else #define m2m_deprecated __attribute__ ((deprecated)) #endif // This is valid for mbed-client-mbedtls // For other SSL implementation there // can be other /* *\brief A callback function for a random number * required by the mbed-client-mbedtls module. */ typedef uint32_t (*random_number_cb)(void) ; /* *\brief An entropy structure for an mbedtls entropy source. * \param entropy_source_ptr The entropy function. * \param p_source The function data. * \param threshold A minimum required from the source before entropy is released * (with mbedtls_entropy_func()) (in bytes). * \param strong MBEDTLS_ENTROPY_SOURCE_STRONG = 1 or * MBEDTSL_ENTROPY_SOURCE_WEAK = 0. * At least one strong source needs to be added. * Weaker sources (such as the cycle counter) can be used as * a complement. */ typedef struct mbedtls_entropy { int (*entropy_source_ptr)(void *, unsigned char *,size_t , size_t *); void *p_source; size_t threshold; int strong; }entropy_cb; #ifdef MBED_CLIENT_USER_CONFIG_FILE #include MBED_CLIENT_USER_CONFIG_FILE #endif #ifndef MBED_CLIENT_RECONNECTION_COUNT #define MBED_CLIENT_RECONNECTION_COUNT 3 #endif #ifndef MBED_CLIENT_RECONNECTION_INTERVAL #define MBED_CLIENT_RECONNECTION_INTERVAL 5 #endif #ifndef MBED_CLIENT_TCP_KEEPALIVE_INTERVAL #define MBED_CLIENT_TCP_KEEPALIVE_INTERVAL 90 #endif #ifndef MBED_CLIENT_EVENT_LOOP_SIZE #define MBED_CLIENT_EVENT_LOOP_SIZE 1024 #endif #ifndef SN_COAP_MAX_INCOMING_MESSAGE_SIZE #define SN_COAP_MAX_INCOMING_MESSAGE_SIZE UINT16_MAX #endif #ifndef MBED_CLIENT_DTLS_PEER_MAX_TIMEOUT #define MBED_CLIENT_DTLS_PEER_MAX_TIMEOUT 80000 #endif #ifndef MBED_CLIENT_SN_COAP_RESENDING_QUEUE_SIZE_MSGS #define MBED_CLIENT_SN_COAP_RESENDING_QUEUE_SIZE_MSGS 5 #endif #endif // M2MCONFIG_H