![](/media/cache/group/fe14.jpg.50x50_q85.jpg)
initial release
Dependencies: BSP_B-L475E-IOT01 MQTT
Fork of Multiprotocol by
COAP_library/sn_client_config.h@5:69b70c8fc368, 2018-08-22 (annotated)
- Committer:
- fabio_gatti
- Date:
- Wed Aug 22 21:43:31 2018 +0000
- Revision:
- 5:69b70c8fc368
- Parent:
- 3:647e37ef0eec
initial release
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
fabio_gatti | 3:647e37ef0eec | 1 | /* |
fabio_gatti | 3:647e37ef0eec | 2 | * Copyright (c) 2016 ARM Limited. All rights reserved. |
fabio_gatti | 3:647e37ef0eec | 3 | * SPDX-License-Identifier: Apache-2.0 |
fabio_gatti | 3:647e37ef0eec | 4 | * Licensed under the Apache License, Version 2.0 (the License); you may |
fabio_gatti | 3:647e37ef0eec | 5 | * not use this file except in compliance with the License. |
fabio_gatti | 3:647e37ef0eec | 6 | * You may obtain a copy of the License at |
fabio_gatti | 3:647e37ef0eec | 7 | * |
fabio_gatti | 3:647e37ef0eec | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
fabio_gatti | 3:647e37ef0eec | 9 | * |
fabio_gatti | 3:647e37ef0eec | 10 | * Unless required by applicable law or agreed to in writing, software |
fabio_gatti | 3:647e37ef0eec | 11 | * distributed under the License is distributed on an AS IS BASIS, WITHOUT |
fabio_gatti | 3:647e37ef0eec | 12 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
fabio_gatti | 3:647e37ef0eec | 13 | * See the License for the specific language governing permissions and |
fabio_gatti | 3:647e37ef0eec | 14 | * limitations under the License. |
fabio_gatti | 3:647e37ef0eec | 15 | */ |
fabio_gatti | 3:647e37ef0eec | 16 | |
fabio_gatti | 3:647e37ef0eec | 17 | #ifndef SN_CLIENT_CONFIG_H |
fabio_gatti | 3:647e37ef0eec | 18 | #define SN_CLIENT_CONFIG_H |
fabio_gatti | 3:647e37ef0eec | 19 | |
fabio_gatti | 3:647e37ef0eec | 20 | /** |
fabio_gatti | 3:647e37ef0eec | 21 | * \brief Configuration options (set of defines and values) |
fabio_gatti | 3:647e37ef0eec | 22 | * |
fabio_gatti | 3:647e37ef0eec | 23 | * This lists set of compile-time options that needs to be used to enable |
fabio_gatti | 3:647e37ef0eec | 24 | * or disable features selectively, and set the values for the mandatory |
fabio_gatti | 3:647e37ef0eec | 25 | * parameters. |
fabio_gatti | 3:647e37ef0eec | 26 | */ |
fabio_gatti | 3:647e37ef0eec | 27 | |
fabio_gatti | 3:647e37ef0eec | 28 | /** |
fabio_gatti | 3:647e37ef0eec | 29 | * \def DISABLE_RESOURCE_TYPE |
fabio_gatti | 3:647e37ef0eec | 30 | * \brief For Disabling Resource type |
fabio_gatti | 3:647e37ef0eec | 31 | * |
fabio_gatti | 3:647e37ef0eec | 32 | */ |
fabio_gatti | 3:647e37ef0eec | 33 | #undef DISABLE_RESOURCE_TYPE |
fabio_gatti | 3:647e37ef0eec | 34 | |
fabio_gatti | 3:647e37ef0eec | 35 | /** |
fabio_gatti | 3:647e37ef0eec | 36 | * \def DISABLE_INTERFACE_DESCRIPTION |
fabio_gatti | 3:647e37ef0eec | 37 | * \brief For Disabling Resource type |
fabio_gatti | 3:647e37ef0eec | 38 | * |
fabio_gatti | 3:647e37ef0eec | 39 | */ |
fabio_gatti | 3:647e37ef0eec | 40 | #undef DISABLE_INTERFACE_DESCRIPTION |
fabio_gatti | 3:647e37ef0eec | 41 | |
fabio_gatti | 3:647e37ef0eec | 42 | #ifdef MBED_CLIENT_USER_CONFIG_FILE |
fabio_gatti | 3:647e37ef0eec | 43 | #include MBED_CLIENT_USER_CONFIG_FILE |
fabio_gatti | 3:647e37ef0eec | 44 | #endif |
fabio_gatti | 3:647e37ef0eec | 45 | |
fabio_gatti | 3:647e37ef0eec | 46 | #endif // SN_CONFIG_H |